Repository: microsoft/calculator Branch: main Commit: ffd051967601 Files: 541 Total size: 18.3 MB Directory structure: gitextract_b4wf3xca/ ├── .clang-format ├── .config/ │ └── 1espt/ │ └── PipelineAutobaseliningConfig.yml ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── localization_suggestion.md │ ├── policies/ │ │ └── resourceManagement.yml │ ├── pull_request_template.md │ └── workflows/ │ └── action-ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── Tools/ │ ├── PGO/ │ │ ├── Microsoft.WindowsCalculator.PGO.nuspec │ │ └── build/ │ │ └── native/ │ │ ├── Microsoft.WindowsCalculator.PGO.props │ │ └── Microsoft.WindowsCalculator.PGO.targets │ ├── Scripts/ │ │ └── clang-format/ │ │ ├── clang-format-all.ps1 │ │ └── clang-format-all.sh │ └── ThreatModels/ │ └── Calculator.tm7 ├── build/ │ ├── config/ │ │ └── PoliCheckExclusions.xml │ ├── pipelines/ │ │ ├── azure-pipelines.ci-internal.yaml │ │ ├── azure-pipelines.loc.yaml │ │ ├── azure-pipelines.release.yaml │ │ └── templates/ │ │ ├── build-single-architecture.yaml │ │ ├── package-msixbundle.yaml │ │ ├── release-store.yaml │ │ ├── release-vpack.yaml │ │ ├── run-ui-tests.yaml │ │ └── run-unit-tests.yaml │ └── scripts/ │ ├── CreateMsixBundleMapping.ps1 │ ├── SignTestApp.ps1 │ ├── TurnOffAnimationEffects.ps1 │ └── UpdateAppxManifestVersion.ps1 ├── docs/ │ ├── ApplicationArchitecture.md │ ├── ManualTests.md │ ├── NewFeatureProcess.md │ └── Roadmap.md ├── nuget.config └── src/ ├── CalcManager/ │ ├── CEngine/ │ │ ├── CalcInput.cpp │ │ ├── CalcUtils.cpp │ │ ├── History.cpp │ │ ├── Number.cpp │ │ ├── Rational.cpp │ │ ├── RationalMath.cpp │ │ ├── calc.cpp │ │ ├── scicomm.cpp │ │ ├── scidisp.cpp │ │ ├── scifunc.cpp │ │ ├── scioper.cpp │ │ └── sciset.cpp │ ├── CalcManager.vcxproj │ ├── CalcManager.vcxproj.filters │ ├── CalculatorHistory.cpp │ ├── CalculatorHistory.h │ ├── CalculatorManager.cpp │ ├── CalculatorManager.h │ ├── CalculatorResource.h │ ├── CalculatorVector.h │ ├── Command.h │ ├── ExpressionCommand.cpp │ ├── ExpressionCommand.h │ ├── ExpressionCommandInterface.h │ ├── Header Files/ │ │ ├── CCommand.h │ │ ├── CalcEngine.h │ │ ├── CalcInput.h │ │ ├── CalcUtils.h │ │ ├── EngineStrings.h │ │ ├── History.h │ │ ├── ICalcDisplay.h │ │ ├── IHistoryDisplay.h │ │ ├── Number.h │ │ ├── RadixType.h │ │ ├── Rational.h │ │ └── RationalMath.h │ ├── NumberFormattingUtils.cpp │ ├── NumberFormattingUtils.h │ ├── Ratpack/ │ │ ├── CalcErr.h │ │ ├── basex.cpp │ │ ├── conv.cpp │ │ ├── exp.cpp │ │ ├── fact.cpp │ │ ├── itrans.cpp │ │ ├── itransh.cpp │ │ ├── logic.cpp │ │ ├── num.cpp │ │ ├── rat.cpp │ │ ├── ratconst.h │ │ ├── ratpak.h │ │ ├── support.cpp │ │ ├── trans.cpp │ │ └── transh.cpp │ ├── UnitConverter.cpp │ ├── UnitConverter.h │ ├── pch.cpp │ ├── pch.h │ ├── ratpak.natvis │ ├── sal_cross_platform.h │ └── winerror_cross_platform.h ├── CalcViewModel/ │ ├── CalcViewModel.rc │ ├── CalcViewModel.vcxproj │ ├── CalcViewModel.vcxproj.filters │ ├── Common/ │ │ ├── AlwaysSelectedCollectionView.h │ │ ├── AppResourceProvider.cpp │ │ ├── AppResourceProvider.h │ │ ├── Automation/ │ │ │ ├── INarratorAnnouncementHost.h │ │ │ ├── LiveRegionHost.cpp │ │ │ ├── LiveRegionHost.h │ │ │ ├── NarratorAnnouncement.cpp │ │ │ ├── NarratorAnnouncement.h │ │ │ ├── NarratorAnnouncementHostFactory.cpp │ │ │ ├── NarratorAnnouncementHostFactory.h │ │ │ ├── NarratorNotifier.cpp │ │ │ ├── NarratorNotifier.h │ │ │ ├── NotificationHost.cpp │ │ │ └── NotificationHost.h │ │ ├── BitLength.h │ │ ├── CalculatorButtonPressedEventArgs.cpp │ │ ├── CalculatorButtonPressedEventArgs.h │ │ ├── CalculatorButtonUser.h │ │ ├── CalculatorDisplay.cpp │ │ ├── CalculatorDisplay.h │ │ ├── CopyPasteManager.cpp │ │ ├── CopyPasteManager.h │ │ ├── DateCalculator.cpp │ │ ├── DateCalculator.h │ │ ├── DelegateCommand.h │ │ ├── DisplayExpressionToken.h │ │ ├── EngineResourceProvider.cpp │ │ ├── EngineResourceProvider.h │ │ ├── ExpressionCommandDeserializer.cpp │ │ ├── ExpressionCommandDeserializer.h │ │ ├── ExpressionCommandSerializer.cpp │ │ ├── ExpressionCommandSerializer.h │ │ ├── LocalizationService.cpp │ │ ├── LocalizationService.h │ │ ├── LocalizationSettings.h │ │ ├── LocalizationStringUtil.h │ │ ├── MyVirtualKey.h │ │ ├── NavCategory.cpp │ │ ├── NavCategory.h │ │ ├── NetworkManager.cpp │ │ ├── NetworkManager.h │ │ ├── NumberBase.h │ │ ├── RadixType.cpp │ │ ├── RadixType.h │ │ ├── TraceLogger.cpp │ │ ├── TraceLogger.h │ │ ├── Utils.cpp │ │ └── Utils.h │ ├── DataLoaders/ │ │ ├── CurrencyDataLoader.cpp │ │ ├── CurrencyDataLoader.h │ │ ├── CurrencyHttpClient.cpp │ │ ├── CurrencyHttpClient.h │ │ ├── DefaultFromToCurrency.json │ │ ├── UnitConverterDataConstants.h │ │ ├── UnitConverterDataLoader.cpp │ │ └── UnitConverterDataLoader.h │ ├── DateCalculatorViewModel.cpp │ ├── DateCalculatorViewModel.h │ ├── GraphingCalculator/ │ │ ├── EquationViewModel.cpp │ │ ├── EquationViewModel.h │ │ ├── GraphingCalculatorViewModel.cpp │ │ ├── GraphingCalculatorViewModel.h │ │ ├── GraphingSettingsViewModel.cpp │ │ ├── GraphingSettingsViewModel.h │ │ └── VariableViewModel.h │ ├── GraphingCalculatorEnums.h │ ├── HistoryItemViewModel.cpp │ ├── HistoryItemViewModel.h │ ├── HistoryViewModel.cpp │ ├── HistoryViewModel.h │ ├── MemoryItemViewModel.cpp │ ├── MemoryItemViewModel.h │ ├── Snapshots.cpp │ ├── Snapshots.h │ ├── StandardCalculatorViewModel.cpp │ ├── StandardCalculatorViewModel.h │ ├── UnitConverterViewModel.cpp │ ├── UnitConverterViewModel.h │ ├── pch.cpp │ ├── pch.h │ └── targetver.h ├── CalcViewModelCopyForUT/ │ ├── CalcViewModelCopyForUT.vcxproj │ ├── CalcViewModelCopyForUT.vcxproj.filters │ └── DataLoaders/ │ └── CurrencyHttpClient.cpp ├── Calculator/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── Calculator.csproj │ ├── Common/ │ │ ├── AlwaysSelectedCollectionView.cs │ │ ├── AppLifecycleLogger.cs │ │ ├── KeyboardShortcutManager.cs │ │ ├── LaunchArguments.cs │ │ └── ValidatingConverters.cs │ ├── Controls/ │ │ ├── CalculationResult.cs │ │ ├── CalculationResultAutomationPeer.cs │ │ ├── CalculatorButton.cs │ │ ├── EquationTextBox.cs │ │ ├── FlipButtons.cs │ │ ├── HorizontalNoOverflowStackPanel.cs │ │ ├── MathRichEditBox.cs │ │ ├── OperatorPanelButton.cs │ │ ├── OperatorPanelListView.cs │ │ ├── OverflowTextBlock.cs │ │ ├── OverflowTextBlockAutomationPeer.cs │ │ ├── RadixButton.cs │ │ └── SupplementaryItemsControl.cs │ ├── Converters/ │ │ ├── BooleanNegationConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── ExpressionItemTemplateSelector.cs │ │ ├── ItemSizeToVisibilityConverter.cs │ │ ├── RadixToStringConverter.cs │ │ └── VisibilityNegationConverter.cs │ ├── DesignData/ │ │ ├── DesignAppViewModel.cpp │ │ ├── DesignAppViewModel.h │ │ ├── DesignStandardCalculatorViewModel.cpp │ │ ├── DesignStandardCalculatorViewModel.h │ │ ├── DesignUnitConverterViewModel.cpp │ │ └── DesignUnitConverterViewModel.h │ ├── Package.Release.appxmanifest │ ├── Package.appxmanifest │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Resources/ │ │ ├── af-ZA/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── am-ET/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ar-SA/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── az-Latn-AZ/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── bg-BG/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ca-ES/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── cs-CZ/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── da-DK/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── de-DE/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── el-GR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── en-GB/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── en-US/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── es-ES/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── es-MX/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── et-EE/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── eu-ES/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── fa-IR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── fi-FI/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── fil-PH/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── fr-CA/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── fr-FR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── gl-ES/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── he-IL/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── hi-IN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── hr-HR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── hu-HU/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── id-ID/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── is-IS/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── it-IT/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ja-JP/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── kk-KZ/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── km-KH/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── kn-IN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ko-KR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── lo-LA/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── lt-LT/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── lv-LV/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── mk-MK/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ml-IN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ms-MY/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── nb-NO/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── nl-NL/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── pl-PL/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── pt-BR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── pt-PT/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ro-RO/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ru-RU/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── sk-SK/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── sl-SI/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── sq-AL/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── sr-Latn-RS/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── sv-SE/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── ta-IN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── te-IN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── th-TH/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── tr-TR/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── uk-UA/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── vi-VN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ ├── zh-CN/ │ │ │ ├── CEngineStrings.resw │ │ │ └── Resources.resw │ │ └── zh-TW/ │ │ ├── CEngineStrings.resw │ │ └── Resources.resw │ ├── Selectors/ │ │ ├── KeyGraphFeaturesTemplateSelector.cs │ │ └── NavViewMenuItemTemplateSelector.cs │ ├── Utils/ │ │ ├── DeflateUtils.cs │ │ ├── DelegateCommandUtils.cs │ │ ├── DispatcherTimerDelayer.cs │ │ ├── JsonUtils.cs │ │ ├── ResourceString.cs │ │ ├── ResourceVirtualKey.cs │ │ ├── ThemeHelper.cs │ │ └── VisualTree.cs │ └── Views/ │ ├── Calculator.xaml │ ├── Calculator.xaml.cs │ ├── CalculatorProgrammerBitFlipPanel.xaml │ ├── CalculatorProgrammerBitFlipPanel.xaml.cs │ ├── CalculatorProgrammerDisplayPanel.xaml │ ├── CalculatorProgrammerDisplayPanel.xaml.cs │ ├── CalculatorProgrammerOperators.xaml │ ├── CalculatorProgrammerOperators.xaml.cs │ ├── CalculatorProgrammerRadixOperators.xaml │ ├── CalculatorProgrammerRadixOperators.xaml.cs │ ├── CalculatorScientificAngleButtons.xaml │ ├── CalculatorScientificAngleButtons.xaml.cs │ ├── CalculatorScientificOperators.xaml │ ├── CalculatorScientificOperators.xaml.cs │ ├── CalculatorStandardOperators.xaml │ ├── CalculatorStandardOperators.xaml.cs │ ├── DateCalculator.xaml │ ├── DateCalculator.xaml.cs │ ├── DelighterUnitStyles.xaml │ ├── GraphingCalculator/ │ │ ├── EquationInputArea.xaml │ │ ├── EquationInputArea.xaml.cs │ │ ├── EquationStylePanelControl.xaml │ │ ├── EquationStylePanelControl.xaml.cs │ │ ├── GraphingCalculator.xaml │ │ ├── GraphingCalculator.xaml.cs │ │ ├── GraphingNumPad.xaml │ │ ├── GraphingNumPad.xaml.cs │ │ ├── GraphingSettings.xaml │ │ ├── GraphingSettings.xaml.cs │ │ ├── KeyGraphFeaturesPanel.xaml │ │ └── KeyGraphFeaturesPanel.xaml.cs │ ├── HistoryList.xaml │ ├── HistoryList.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Memory.xaml │ ├── Memory.xaml.cs │ ├── MemoryListItem.xaml │ ├── MemoryListItem.xaml.cs │ ├── NumberPad.xaml │ ├── NumberPad.xaml.cs │ ├── OperatorsPanel.xaml │ ├── OperatorsPanel.xaml.cs │ ├── Settings.xaml │ ├── Settings.xaml.cs │ ├── StateTriggers/ │ │ ├── AspectRatioTrigger.cs │ │ └── ControlSizeTrigger.cs │ ├── SupplementaryResults.xaml │ ├── SupplementaryResults.xaml.cs │ ├── TitleBar.xaml │ ├── TitleBar.xaml.cs │ ├── UnitConverter.xaml │ └── UnitConverter.xaml.cs ├── Calculator.ManagedViewModels/ │ ├── ApplicationViewModel.cs │ ├── Calculator.ManagedViewModels.csproj │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ └── Calculator.ManagedViewModels.rd.xml │ └── RelayCommand.cs ├── Calculator.sln ├── CalculatorUITestFramework/ │ ├── CalculatorApp.cs │ ├── CalculatorDriver.cs │ ├── CalculatorResults.cs │ ├── CalculatorUITestFramework.csproj │ ├── HistoryItem.cs │ ├── HistoryPanel.cs │ ├── MemoryItem.cs │ ├── MemoryPanel.cs │ ├── NavigationMenu.cs │ ├── NumberPad.cs │ ├── ProgrammerCalculatorPage.cs │ ├── ProgrammerOperatorsPanel.cs │ ├── ScientificCalculatorPage.cs │ ├── ScientificOperatorsPanel.cs │ ├── StandardAoTCalculatorPage.cs │ ├── StandardCalculatorPage.cs │ ├── StandardOperatorsPanel.cs │ ├── UnitConverterOperatorsPanel.cs │ ├── UnitConverterPage.cs │ ├── UnitConverterResults.cs │ ├── WinAppDriverLocalServer.cs │ ├── WindowsDriverExtensions.cs │ └── WindowsElementExtensions.cs ├── CalculatorUITests/ │ ├── CalculatorUITests.ci-internal.runsettings │ ├── CalculatorUITests.ci.runsettings │ ├── CalculatorUITests.csproj │ ├── CalculatorUITests.release.runsettings │ ├── CurrencyConverterFunctionalTests.cs │ ├── HistoryFunctionalTests.cs │ ├── MemoryFunctionalTests.cs │ ├── ProgrammerModeFunctionalTests.cs │ ├── ScientificModeFunctionalTests.cs │ └── StandardModeFunctionalTests.cs ├── CalculatorUnitTests/ │ ├── AsyncHelper.cpp │ ├── AsyncHelper.h │ ├── CalcEngineTests.cpp │ ├── CalcInputTest.cpp │ ├── CalculatorManagerTest.cpp │ ├── CalculatorUnitTests.rc │ ├── CalculatorUnitTests.vcxproj │ ├── CalculatorUnitTests.vcxproj.filters │ ├── CopyPasteManagerTest.cpp │ ├── CurrencyConverterUnitTests.cpp │ ├── DateCalculatorUnitTests.cpp │ ├── DateUtils.h │ ├── Helpers.h │ ├── HistoryTests.cpp │ ├── LocalizationServiceUnitTests.cpp │ ├── LocalizationSettingsUnitTests.cpp │ ├── Module.cpp │ ├── MultiWindowUnitTests.cpp │ ├── NarratorAnnouncementUnitTests.cpp │ ├── NavCategoryUnitTests.cpp │ ├── Package.appxmanifest │ ├── RationalTest.cpp │ ├── StandardViewModelUnitTests.cpp │ ├── Test.resw │ ├── UnitConverterTest.cpp │ ├── UnitConverterViewModelUnitTests.cpp │ ├── UnitConverterViewModelUnitTests.h │ ├── UnitTestApp.rd.xml │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cpp │ ├── UnitTestApp.xaml.h │ ├── UtilsTests.cpp │ ├── pch.cpp │ ├── pch.h │ └── resource.h ├── GraphControl/ │ ├── Control/ │ │ ├── Grapher.cpp │ │ └── Grapher.h │ ├── DirectX/ │ │ ├── DeviceResources.cpp │ │ ├── DeviceResources.h │ │ ├── DirectXHelper.h │ │ ├── NearestPointRenderer.cpp │ │ ├── NearestPointRenderer.h │ │ ├── RenderMain.cpp │ │ └── RenderMain.h │ ├── GraphControl.rc │ ├── GraphControl.vcxproj │ ├── GraphControl.vcxproj.filters │ ├── Logger/ │ │ ├── TraceLogger.cpp │ │ └── TraceLogger.h │ ├── Models/ │ │ ├── Equation.cpp │ │ ├── Equation.h │ │ ├── EquationCollection.h │ │ ├── KeyGraphFeaturesInfo.cpp │ │ ├── KeyGraphFeaturesInfo.h │ │ └── Variable.h │ ├── Themes/ │ │ └── generic.xaml │ ├── Utils.h │ ├── pch.cpp │ ├── pch.h │ └── winrtHeaders.h ├── GraphingImpl/ │ ├── GraphingImpl.rc │ ├── GraphingImpl.vcxproj │ ├── GraphingImpl.vcxproj.filters │ ├── Mocks/ │ │ ├── Bitmap.h │ │ ├── Graph.h │ │ ├── GraphRenderer.h │ │ ├── GraphingOptions.h │ │ ├── MathSolver.cpp │ │ └── MathSolver.h │ ├── dllmain.cpp │ ├── pch.cpp │ ├── pch.h │ └── targetver.h ├── GraphingInterfaces/ │ ├── Common.h │ ├── GraphingEnums.h │ ├── IBitmap.h │ ├── IEquation.h │ ├── IEquationOptions.h │ ├── IGraph.h │ ├── IGraphAnalyzer.h │ ├── IGraphRenderer.h │ ├── IGraphingOptions.h │ └── IMathSolver.h ├── Settings.XamlStyler ├── TraceLogging/ │ ├── TraceLogging.rc │ ├── TraceLogging.vcxproj │ ├── TraceLogging.vcxproj.filters │ ├── TraceLoggingCommon.cpp │ ├── TraceLoggingCommon.h │ ├── pch.cpp │ └── pch.h └── build/ ├── Calculator.StampAssemblyInfo.targets └── appversion.rc ================================================ FILE CONTENTS ================================================ ================================================ FILE: .clang-format ================================================ AccessModifierOffset: -4 AlignAfterOpenBracket: AlwaysBreak AlignConsecutiveAssignments: false AlignConsecutiveDeclarations: false AlignEscapedNewlines: Right AlignOperands: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: false AllowShortBlocksOnASingleLine: false AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: None AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakAfterDefinitionReturnType: None AlwaysBreakAfterReturnType: None AlwaysBreakBeforeMultilineStrings: false AlwaysBreakTemplateDeclarations: true BinPackArguments: false BinPackParameters: false BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Allman BreakBeforeInheritanceComma: false BreakBeforeTernaryOperators: true BreakConstructorInitializersBeforeComma: false BreakConstructorInitializers: BeforeComma BreakAfterJavaFieldAnnotations: true BreakStringLiterals: true ColumnLimit: 160 CommentPragmas: '^ IWYU pragma:' CompactNamespaces: true ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 4 ContinuationIndentWidth: 4 Cpp11BracedListStyle: false DerivePointerAlignment: false DisableFormat: false ExperimentalAutoDetectBinPacking: false FixNamespaceComments: false IncludeBlocks: Preserve IncludeCategories: - Regex: '^' Priority: 2 - Regex: '^<.*\.h>' Priority: 1 - Regex: '^<.*' Priority: 2 - Regex: '.*' Priority: 3 IncludeIsMainRegex: '([-_](test|unittest))?$' IndentCaseLabels: false IndentPPDirectives: None IndentWidth: 4 IndentWrappedFunctionNames: false JavaScriptQuotes: Single JavaScriptWrapImports: true KeepEmptyLinesAtTheStartOfBlocks: false MacroBlockBegin: '' MacroBlockEnd: '' MaxEmptyLinesToKeep: 1 NamespaceIndentation: All ObjCBlockIndentWidth: 4 ObjCSpaceAfterProperty: false ObjCSpaceBeforeProtocolList: true PenaltyBreakAssignment: 2 PenaltyBreakBeforeFirstCallParameter: 19 PenaltyBreakComment: 300 PenaltyBreakFirstLessLess: 120 PenaltyBreakString: 1000 PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Left ReflowComments: true SortIncludes: false SortUsingDeclarations: true SpaceAfterCStyleCast: false SpaceAfterTemplateKeyword: true SpaceBeforeAssignmentOperators: true SpaceBeforeParens: ControlStatements SpaceInEmptyParentheses: false SpacesBeforeTrailingComments: 1 SpacesInAngles: false SpacesInContainerLiterals: false SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false Standard: Cpp11 TabWidth: 4 UseTab: Never #... # unsupported rules #BreakInheritanceList: AfterColon #Language: None #ObjCBinPackProtocolList: Auto #PenaltyBreakTemplateDeclaration: 10 #SpaceBeforeCpp11BracedList: false #SpaceBeforeCtorInitializerColon: true #SpaceBeforeInheritanceColon: true #SpaceBeforeRangeBasedForLoopColon: true ================================================ FILE: .config/1espt/PipelineAutobaseliningConfig.yml ================================================ ## DO NOT MODIFY THIS FILE MANUALLY. This is part of auto-baselining from 1ES Pipeline Templates. Go to [https://aka.ms/1espt-autobaselining] for more details. pipelines: 141517: retail: source: credscan: lastModifiedDate: 2024-09-24 eslint: lastModifiedDate: 2024-09-24 armory: lastModifiedDate: 2024-09-24 binary: credscan: lastModifiedDate: 2024-09-24 binskim: lastModifiedDate: 2025-02-13 36523: retail: source: credscan: lastModifiedDate: 2024-12-02 eslint: lastModifiedDate: 2024-12-02 psscriptanalyzer: lastModifiedDate: 2024-12-02 armory: lastModifiedDate: 2024-12-02 binary: credscan: lastModifiedDate: 2024-12-02 binskim: lastModifiedDate: 2024-12-02 spotbugs: lastModifiedDate: 2024-12-02 ================================================ FILE: .editorconfig ================================================ ## IDE-independent coding style via EditorConfig: https://editorconfig.org/ root = true [*] indent_style = space indent_size = 4 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true ================================================ FILE: .gitattributes ================================================ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto ############################################################################### # Set default behavior for command prompt diff. # # This is need for earlier builds of msysgit that does not have it on by # default for csharp files. # Note: This is only used by command line ############################################################################### *.cs diff=csharp ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### *.jpg binary *.png binary *.gif binary ############################################################################### # diff behavior for common document formats # # Convert binary document formats to text before diffing them. This feature # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### *.doc diff=astextplain *.DOC diff=astextplain *.docx diff=astextplain *.DOCX diff=astextplain *.dot diff=astextplain *.DOT diff=astextplain *.pdf diff=astextplain *.PDF diff=astextplain *.rtf diff=astextplain *.RTF diff=astextplain ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Report a problem with Calculator title: '' labels: '' assignees: '' --- **Describe the bug** **Steps To Reproduce** **Expected behavior** **Screenshots** **Device and Application Information** - OS Build: - Architecture: - Application Version: - Region: - Dev Version Installed: **Additional context** **Requested Assignment** If possible, I would like to fix this. I'm just reporting this problem. I don't want to fix it. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Propose a new feature in the app title: '' labels: 'Enhancement' assignees: '' --- **Problem Statement** **Evidence or User Insights** **Proposal** **Goals** **Non-Goals** **Low-Fidelity Concept** **Requested Assignment** If possible, I would like to implement this. I'm just suggesting this idea. I don't want to implement it. ================================================ FILE: .github/ISSUE_TEMPLATE/localization_suggestion.md ================================================ --- name: Localization Suggestion about: Report a problem or suggested change to Calculator's localized content. title: '[Localization] ' labels: 'Area: World-Readiness' assignees: '' --- **Describe the bug** **Steps To Reproduce** **Expected behavior** **Screenshots** **Device and Application Information** - OS Build: - Architecture: - Application Version: - Region: - Dev Version Installed: **Additional context** ================================================ FILE: .github/policies/resourceManagement.yml ================================================ id: name: GitOps.PullRequestIssueManagement description: GitOps.PullRequestIssueManagement primitive owner: resource: repository disabled: false where: configuration: resourceManagementConfiguration: scheduledSearches: - description: frequencies: - hourly: hour: 3 filters: - isPullRequest - isOpen - hasLabel: label: needs author feedback - noActivitySince: days: 7 - isNotLabeledWith: label: no recent activity actions: - addLabel: label: no recent activity - addReply: reply: This pull request has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **7 days**. Thank you for your contributions to Windows Calculator! eventResponderTasks: - if: - payloadType: Issue_Comment - hasLabel: label: no recent activity then: - removeLabel: label: no recent activity description: - if: - payloadType: Issues - isAction: action: Closed then: - removeLabel: label: needs pitch review - removeLabel: label: needs more info - removeLabel: label: needs spec - removeLabel: label: no recent activity - removeLabel: label: help wanted - removeLabel: label: needs spec review - removeLabel: label: needs spec description: triggerOnOwnActions: true - if: - payloadType: Pull_Request_Review - isAction: action: Submitted - isReviewState: reviewState: Changes_requested then: - addLabel: label: needs author feedback description: - if: - payloadType: Pull_Request - isActivitySender: issueAuthor: True - not: isAction: action: Closed - hasLabel: label: needs author feedback then: - removeLabel: label: needs author feedback description: - if: - payloadType: Issue_Comment - isActivitySender: issueAuthor: True - hasLabel: label: needs author feedback then: - removeLabel: label: needs author feedback description: - if: - payloadType: Pull_Request_Review - isActivitySender: issueAuthor: True - hasLabel: label: needs author feedback then: - removeLabel: label: needs author feedback description: - if: - payloadType: Pull_Request - not: isAction: action: Closed - hasLabel: label: no recent activity then: - removeLabel: label: no recent activity description: - if: - payloadType: Issue_Comment - hasLabel: label: no recent activity then: - removeLabel: label: no recent activity description: - if: - payloadType: Pull_Request_Review - hasLabel: label: no recent activity then: - removeLabel: label: no recent activity description: - if: - payloadType: Issue_Comment then: - cleanEmailReply description: onFailure: onSuccess: ================================================ FILE: .github/pull_request_template.md ================================================ ## Fixes #. ### Description of the changes: - - - ### How changes were validated: - - - ================================================ FILE: .github/workflows/action-ci.yml ================================================ name: Windows Calculator Continuous Integration Pipeline run-name: WinCalc-CI-0.${{ github.run_number }} on: push: branches: [main, release/**, feature/**] pull_request: branches: [main, release/**, feature/**] workflow_dispatch: jobs: defineBuilds: name: Define builds runs-on: windows-latest env: isPR: ${{ github.event_name == 'pull_request' }} outputs: version: ${{ steps.version.outputs.version }} platformList: ${{ steps.platformList.outputs.platformList }} unitTestPlatformList: ${{ steps.unitTestPlatformList.outputs.unitTestPlatformList }} steps: - name: Generate version number id: version run: | $version = "0.${{ github.run_number }}.${{ github.run_attempt }}.0" "version=`"$version`"" | Out-File $env:GITHUB_OUTPUT -Append shell: pwsh - name: Choose platforms to build id: platformList run: | if ($env:isPR -eq $false) { 'platformList=["x64", "x86", "ARM64"]' | Out-File $env:GITHUB_OUTPUT -Append echo 'Build all platforms.' } else { 'platformList=["x64"]' | Out-File $env:GITHUB_OUTPUT -Append echo 'Build x64 only.' } shell: pwsh - name: Choose platforms for unit test id: unitTestPlatformList run: | if ($env:isPR -eq $false){ 'unitTestPlatformList=["x64", "x86"]' | Out-File $env:GITHUB_OUTPUT -Append echo 'Test x64, x86' } else{ 'unitTestPlatformList=["x64"]' | Out-File $env:GITHUB_OUTPUT -Append echo 'Test x64' } shell: pwsh build: needs: defineBuilds name: Build runs-on: windows-latest strategy: matrix: platform: ${{ fromJSON(needs.defineBuilds.outputs.platformList) }} env: buildVersion: ${{ fromJSON(needs.defineBuilds.outputs.version) }} steps: - uses: actions/checkout@v4 - uses: microsoft/setup-msbuild@v2 name: Setup msbuild - uses: nuget/setup-nuget@v2 name: Use nuget 6.x with: nuget-version: '6.x' - run: nuget restore ./src/Calculator.sln name: Restore nuget dependencies - run: | ./build/scripts/UpdateAppxManifestVersion.ps1 ` -AppxManifest ./src/Calculator/Package.appxmanifest ` -Version ${{ env.buildVersion }} shell: pwsh name: Set version number in AppxManifest - run: | msbuild ./src/Calculator.sln ` -bl:${{ github.workspace }}/output/Calculator.binlog ` -p:OutDir=${{ github.workspace }}\output\ ` -p:Platform=${{ matrix.platform }} ` -p:Configuration=Release ` -p:GenerateProjectSpecificOutputFolder=true ` -p:Version=${{ env.buildVersion }} ` -maxCpuCount ` -t:Publish ` -p:PublishDir=${{ github.workspace }}\output\publish\ shell: pwsh name: Build calculator.sln - uses: actions/upload-artifact@v4 name: Upload build outputs with: name: Build-${{ matrix.platform }} path: ${{ github.workspace }}/output - uses: actions/upload-artifact@v4 with: name: Tools-${{ matrix.platform }} path: ${{ github.workspace }}/build/scripts/SignTestApp.ps1 unitTests: needs: [defineBuilds, build] runs-on: windows-latest name: Run unit tests strategy: matrix: platform: ${{ fromJSON(needs.defineBuilds.outputs.unitTestPlatformList) }} env: testDir: ${{ github.workspace }}/download/CalculatorUnitTests/AppPackages/CalculatorUnitTests_Test steps: - uses: actions/download-artifact@v4 name: Download build outputs with: name: Build-${{ matrix.platform }} path: ${{ github.workspace }}/download - uses: actions/download-artifact@v4 name: Download tools with: name: Tools-${{ matrix.platform }} path: ${{ github.workspace }}/download/tools - run: | ${{ github.workspace }}/download/tools/SignTestApp.ps1 -AppToSign ${{ env.testDir }}/CalculatorUnitTests.msix shell: pwsh name: Install test certificate - uses: ilammy/msvc-dev-cmd@v1 # this is a workaround because microsoft/vstest-action is broken. name: Setup dev tools - run: vstest.console.exe ${{ env.testDir }}/CalculatorUnitTests.msix /Platform:${{ matrix.platform }} name: Run unit tests uiTests: needs: build runs-on: windows-latest name: Run UI tests (x64) env: appDir: ${{ github.workspace }}/download/Calculator/AppPackages/Calculator*_Test pubDir: ${{ github.workspace }}/download/publish steps: - uses: actions/download-artifact@v4 name: Download build outputs with: name: Build-x64 path: ${{ github.workspace }}/download - uses: actions/download-artifact@v4 name: Download tools with: name: Tools-x64 path: ${{ github.workspace }}/download/tools - run: | Set-DisplayResolution -Width 1920 -Height 1080 -Force shell: pwsh name: Set screen resolution - run: | ${{ github.workspace }}/download/tools/SignTestApp.ps1 -AppToSign '${{ env.appDir }}/Calculator_*.msixbundle' ${{ env.appDir }}/Add-AppDevPackage.ps1 -Force shell: powershell name: Install app - run: | Invoke-WebRequest 'https://github.com/microsoft/WinAppDriver/releases/download/v1.2.1/WindowsApplicationDriver_1.2.1.msi' ` -OutFile (New-Item -Path '${{ github.workspace }}/download2/wad.msi' -Force) cd ${{ github.workspace }}/download2 msiexec.exe /i wad.msi /quiet /passive shell: powershell name: Install WindowsApplicationDriver - uses: ilammy/msvc-dev-cmd@v1 # this is a workaround because microsoft/vstest-action is broken. name: Setup dev tools - run: | vstest.console.exe ${{ github.workspace }}\download\publish\CalculatorUITests.dll ` /Platform:x64 ` /Settings:${{ github.workspace }}\download\publish\CalculatorUITests.ci.runsettings shell: pwsh name: Run UI tests ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files *.suo *.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ # Visual Studio 2015 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUNIT *.VisualState.xml TestResult.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # .NET Core project.lock.json project.fragment.lock.json artifacts/ **/Properties/launchSettings.json *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # Visual Studio Code .vscode/ # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # Visual Studio code coverage results *.coverage *.coveragexml # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # TODO: Comment the next line if you want to checkin your web deploy settings # but database connection strings (with potential passwords) will be unencrypted *.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* # except build/, which is used as an MSBuild target. !**/packages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config # NuGet v3's project.json files produces more ignorable files *.nuget.props *.nuget.targets # Microsoft Azure Build Output csx/ *.build.csdef # Microsoft Azure Emulator ecf/ rcf/ # Windows Store app package directories and files AppPackages/ BundleArtifacts/ Package.StoreAssociation.xml _pkginfo.txt # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.publishsettings orleans.codegen.cs # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files *.mdf *.ldf *.ndf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat node_modules/ # Typescript v1 declaration files typings/ # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) *.vbw # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # JetBrains Rider .idea/ *.sln.iml # CodeRush .cr/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc # Cake - Uncomment if you are using it # tools/** # !tools/packages.config # Telerik's JustMock configuration file *.jmconfig # BizTalk build output *.btp.cs *.btm.cs *.odx.cs *.xsd.cs # Calculator specific Generated Files/ src/GraphControl/GraphingImplOverrides.props src/CalcViewModel/DataLoaders/DataLoaderConstants.h !src/x64 !src/x86 !src/out ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to Calculator The Calculator team encourages community feedback and contributions. Thank you for your interest in making Calculator better! There are several ways you can get involved. ## Reporting issues and suggesting new features If Calculator is not working properly, please file a report in the [Feedback Hub](https://insider.windows.com/en-us/fb/?contextid=130&newFeedback=True). Feedback Hub reports automatically include diagnostic data, such as the version of Calculator you're using. We are happy to hear your ideas for the future of Calculator. Check the [Feedback Hub](https://insider.windows.com/en-us/fb/?contextid=130) and see if others have submitted similar feedback. You can upvote existing feedback or submit a new suggestion. We always look at upvoted items in Feedback Hub when we decide what to work on next. We read the comments in both Feedback Hub and GitHub, and we look forward to hearing your input. Remember that all community interactions must abide by the [Code of Conduct](CODE_OF_CONDUCT.md). ## Finding issues you can help with Looking for something to work on? Issues marked [``good first issue``](https://github.com/Microsoft/calculator/labels/good%20first%20issue) are a good place to start. You can also check the [``help wanted``](https://github.com/Microsoft/calculator/labels/help%20wanted) tag to find other issues to help with. If you're interested in working on a fix, leave a comment to let everyone know and to help avoid duplicated effort from others. ## Contributions we accept We welcome your contributions to the Calculator project, especially to fix bugs and to make improvements which address the top issues reported by Calculator users. Some general guidelines: * **DO** create one pull request per Issue, and ensure that the Issue is linked in the pull request. * **DO** follow our [Coding and Style](#style-guidelines) guidelines, and keep code changes as small as possible. * **DO** include corresponding tests whenever possible. * **DO** check for additional occurrences of the same problem in other parts of the codebase before submitting your PR. * **DO** [link the issue](https://github.com/blog/957-introducing-issue-mentions) you are addressing in the pull request. * **DO** write a good description for your pull request. More detail is better. Describe *why* the change is being made and *why* you have chosen a particular solution. Describe any manual testing you performed to validate your change. * **DO NOT** submit a PR unless it is linked to an Issue marked [`triage approved`](https://github.com/Microsoft/calculator/issues?q=is%3Aissue+is%3Aopen+label%3A%22Triage%3A+Approved%22). This enables us to have a discussion on the idea before anyone invests time in an implementation. * **DO NOT** merge multiple changes into one PR unless they have the same root cause. * **DO NOT** submit pure formatting/typo changes to code that has not been modified otherwise. We follow a [user-centered process for developing features](docs/NewFeatureProcess.md). New features need sponsorship from the Calculator team, but we welcome community contributions at many stages of the process. > Submitting a pull request for an approved Issue is not a guarantee it will be approved. > The change must meet our high bar for code quality, architecture, and performance, as well as > [other requirements](#docs/NewFeatureProcess.md#technical-review). ## Making changes to the code ### Preparing your development environment To learn how to build the code and run tests, follow the instructions in the [README](README.md). ### Style guidelines The code in this project uses several different coding styles, depending on the age and history of the code. Please attempt to match the style of surrounding code as much as possible. In new components, prefer the patterns described in the [C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) and the [modern C++/WinRT language projections](https://docs.microsoft.com/en-us/windows/uwp/cpp-and-winrt-apis/). ### Testing Your change should include tests to verify new functionality wherever possible. Code should be structured so that it can be unit tested independently of the UI. [Manual test cases](docs/ManualTests.md) should be used where automated testing is not feasible. ### Git workflow Calculator uses the [GitHub flow](https://guides.github.com/introduction/flow/) where most development happens directly on the `main` branch. The `main` branch should always be in a healthy state which is ready for release. If your change is complex, please clean up the branch history before submitting a pull request. You can use [git rebase](https://docs.microsoft.com/en-us/azure/devops/repos/git/rebase#squash-local-commits) to group your changes into a small number of commits which we can review one at a time. When completing a pull request, we will generally squash your changes into a single commit. Please let us know if your pull request needs to be merged as separate commits. ## Review Process After submitting a pull request, members of the calculator team will review your code. We will assign the request to an appropriate reviewer. Any member of the community may participate in the review, but at least one member of the Calculator team will ultimately approve the request. Often, multiple iterations will be needed to responding to feedback from reviewers. Try looking at [past pull requests](https://github.com/Microsoft/calculator/pulls?q=is%3Apr+is%3Aclosed) to see what the experience might be like. ## Contributor License Agreement Before we can review and accept a pull request from you, you'll need to sign a Contributor License Agreement (CLA). The CLA ensures that the community is free to use your contributions. More information about the agreement is available on the [Microsoft web site](https://cla.opensource.microsoft.com/). Signing the CLA is an automated process, and you only need to do it once for Microsoft projects on GitHub. You don't need to sign a CLA until you're ready to create a pull request. When your pull request is created, it is classified by a bot. If the change is trivial (i.e. you just fixed a typo) then the bot will label the PR `cla-not-required`. Otherwise, it's classified as `cla-required`. In that case, the system will also tell you how you can sign the CLA. Once you have signed a CLA, the current and all future pull requests will be labeled as `cla-signed`. ================================================ FILE: LICENSE ================================================ Copyright (c) Microsoft Corporation. All rights reserved. MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: NOTICE.txt ================================================ THIRD PARTY SOFTWARE NOTICES AND INFORMATION Do Not Translate or Localize This software incorporates material from third parties. Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com, or you may send a check or money order for US $5.00, including the product name, the open source component name, and version number, to: Source Code Compliance Team Microsoft Corporation One Microsoft Way Redmond, WA 98052 USA Notwithstanding any other terms, you may reverse engineer this software to the extent required to debug changes to any libraries licensed under the GNU Lesser General Public License. --- Hebrew OpenType Layout logic The MIT License (MIT) Copyright (c) 2003, 2007 Ralph Hancock & John Hudson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # Calculator The Windows Calculator app is a modern Windows app written in C++ and C# that ships pre-installed with Windows. The app provides standard, scientific, and programmer calculator functionality, as well as a set of converters between various units of measurement and currencies. Calculator ships regularly with new features and bug fixes. You can get the latest version of Calculator in the [Microsoft Store](https://www.microsoft.com/store/apps/9WZDNCRFHVN5). [![Continuous Integration](https://github.com/microsoft/calculator/actions/workflows/action-ci.yml/badge.svg)](https://github.com/microsoft/calculator/actions/workflows/action-ci.yml) Calculator Screenshot ## Features - Standard Calculator functionality which offers basic operations and evaluates commands immediately as they are entered. - Scientific Calculator functionality which offers expanded operations and evaluates commands using order of operations. - Programmer Calculator functionality which offers common mathematical operations for developers including conversion between common bases. - Date Calculation functionality which offers the difference between two dates, as well as the ability to add/subtract years, months and/or days to/from a given input date. - Calculation history and memory capabilities. - Conversion between many units of measurement. - Currency conversion based on data retrieved from [Bing](https://www.bing.com). - [Infinite precision](https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic) for basic arithmetic operations (addition, subtraction, multiplication, division) so that calculations never lose precision. ## Getting started Prerequisites: - Your computer must be running Windows 11, build 22000 or newer. - Install the latest version of [Visual Studio](https://developer.microsoft.com/en-us/windows/downloads) (the free community edition is sufficient). - Install the "Universal Windows Platform Development" workload. - Install the optional "C++ Universal Windows Platform tools" component. - Install the latest Windows 11 SDK. ![Visual Studio Installation Screenshot](docs/Images/VSInstallationScreenshot.png) - Install the [XAML Styler](https://marketplace.visualstudio.com/items?itemName=TeamXavalon.XAMLStyler) Visual Studio extension. - Get the code: ``` git clone https://github.com/Microsoft/calculator.git ``` - Open [src\Calculator.sln](/src/Calculator.sln) in Visual Studio to build and run the Calculator app. - For a general description of the Calculator project architecture see [ApplicationArchitecture.md](docs/ApplicationArchitecture.md). - To run the UI Tests, you need to make sure that [Windows Application Driver (WinAppDriver)](https://github.com/microsoft/WinAppDriver/releases/latest) is installed. ## Contributing Want to contribute? The team encourages community feedback and contributions. Please follow our [contributing guidelines](CONTRIBUTING.md). If Calculator is not working properly, please file a report in the [Feedback Hub](https://insider.windows.com/en-us/fb/?contextid=130). We also welcome [issues submitted on GitHub](https://github.com/Microsoft/calculator/issues). ## Roadmap For information regarding Windows Calculator plans and release schedule, please see the [Windows Calculator Roadmap](docs/Roadmap.md). ### Graphing Mode Adding graphing calculator functionality [is on the project roadmap](https://github.com/Microsoft/calculator/issues/338) and we hope that this project can create a great end-user experience around graphing. To that end, the UI from the official in-box Windows Calculator is currently part of this repository, although the proprietary Microsoft-built graphing engine, which also drives graphing in Microsoft Mathematics and OneNote, is not. Community members can still be involved in the creation of the UI, however developer builds will not have graphing functionality due to the use of a [mock implementation of the engine](/src/GraphingImpl/Mocks) built on top of a [common graphing API](/src/GraphingInterfaces). ## Diagnostic Data This project collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](https://go.microsoft.com/fwlink/?LinkId=521839) to learn more. Diagnostic data is disabled in development builds by default, and can be enabled with the `SEND_DIAGNOSTICS` build flag. ## Currency Converter Windows Calculator includes a currency converter feature that uses mock data in developer builds. The data that Microsoft uses for the currency converter feature (e.g., in the retail version of the application) is not licensed for your use. The mock data will be clearly identifiable as it references planets instead of countries, and remains static regardless of selected inputs. ## Reporting Security Issues Please refer to [SECURITY.md](./SECURITY.md). ## License Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the [MIT License](./LICENSE). ================================================ FILE: SECURITY.md ================================================ ## Security Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [many more](https://opensource.microsoft.com/). If you believe you have found a security vulnerability in any Microsoft-owned repository that meets Microsoft's [definition](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)) of a security vulnerability, please report it to us as described below. ## Reporting Security Issues **Please do not report security vulnerabilities through public GitHub issues.** Instead, please report them to the Microsoft Security Response Center at [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://technet.microsoft.com/en-us/security/dn606155). You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) * Full paths of source file(s) related to the manifestation of the issue * The location of the affected source code (tag/branch/commit or direct URL) * Any special configuration required to reproduce the issue * Step-by-step instructions to reproduce the issue * Proof-of-concept or exploit code (if possible) * Impact of the issue, including how an attacker might exploit the issue This information will help us triage your report more quickly. ## Preferred Languages We prefer all communications to be in English. ## Policy Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd). ================================================ FILE: Tools/PGO/Microsoft.WindowsCalculator.PGO.nuspec ================================================ Microsoft.WindowsCalculator.PGO $version$ Microsoft sourceapps https://microsoft.visualstudio.com/Apps/_git/calculator.app false A package containing the required files for Profile Guided Optimization for Calculator. Microsoft Corporation. All rights reserved. pgo en-US ================================================ FILE: Tools/PGO/build/native/Microsoft.WindowsCalculator.PGO.props ================================================ Optimize ================================================ FILE: Tools/PGO/build/native/Microsoft.WindowsCalculator.PGO.targets ================================================ $(VCToolsInstallDir)bin\Host$(PlatformShortName)\$(PlatformShortName) $(VCToolsInstallDir)bin\$(PlatformShortName) $(MSBuildThisFileDirectory)..\..\tools\$(PlatformShortName)\Calculator.pgd PGInstrument $(VC_ReferencesPath_VC_ARM64)\pgort.lib;%(AdditionalDependencies) $(VC_ReferencesPath_VC_x86)\pgort.lib;%(AdditionalDependencies) $(VC_ReferencesPath_VC_x64)\pgort.lib;%(AdditionalDependencies) %(Filename)%(Extension) true false false PreserveNewest PGUpdate $(ProfileGuidedDatabaseFileName) ================================================ FILE: Tools/Scripts/clang-format/clang-format-all.ps1 ================================================ <# .DESCRIPTION Helper script to format all header and source files in the repository. By default, the script will recursively search under the repo root for files to format. Users can give explicit parameters indicating how the search should include and exclude filetypes. If users don't want the search functionality, they can instead provide an explicit list of files to format. .PARAMETER RepoRoot Full path to the root of the repository which is the target of the search. Will default to the root of the current working directory. .PARAMETER Include Array of filetype extensions to target for formatting. By default, targets standard extensions for header and source files. Follows the same rules as the -Include parameter for Get-ChildItem. .PARAMETER Exclude Array of filetype extensions to exclude from formatting. By default, excludes generated XAML files. Follows the same rules as the -Exclude paramter for Get-ChildItem. .PARAMETER Files Array of files to format. The script will exit if one of the provided filepaths does not exist. .EXAMPLE .\clang-format-all.ps1 Formats all header and source files under the repository root. .EXAMPLE .\clang-format-all.ps1 -RepoRoot 'S:\repos\calculator' -Include '*.h', '*.cpp' -Exclude '*.g.*' Formats all *.h and *.cpp files under 'S:\repos\calculator', excluding files with an extension like *.g.* .EXAMPLE .\clang-format-all.ps1 -File 'S:\repos\calculator\src\CalcViewModel\UnitConverterViewModel.h', 'S:\repos\calculator\src\CalcViewModel\MemoryItemViewModel.cpp' Formats the specified files. #> [CmdletBinding( DefaultParameterSetName = 'Search' )] param( [Parameter( ParameterSetName = 'Search' )] [ValidateScript({ Test-Path -PathType Container -Path $_ })] [string] $RepoRoot = "$( git rev-parse --show-toplevel )", [Parameter( ParameterSetName = 'Search' )] [string[]] $Include = ( '*.h', '*.hh', '*.hpp', '*.c', '*.cc', '*.cpp' ), [Parameter( ParameterSetName = 'Search' )] [string[]] $Exclude = '*.g.*', [Parameter( ParameterSetName = 'Explicit', Mandatory)] [ValidateScript({ $_ | Where-Object { -not (Test-Path -PathType Leaf -Path $_) } | ForEach-Object { throw "Could not find file: [$_]" } return $true })] [string[]] $Files ) if ($PSCmdlet.ParameterSetName -eq 'Explicit') { # Use the file paths we were given. $targetFiles = @($Files) } else { # Gather the files to be formatted. $targetFiles = @( Get-ChildItem -Recurse -Path $RepoRoot -Include $Include -Exclude $Exclude | Select-Object -ExpandProperty FullName ) } # Format the files. $formatParams = @( '-i' # In-place '-style=file' # Search for a .clang-format file in the parent directory of the source file. '-verbose' ) clang-format $formatParams $targetFiles ================================================ FILE: Tools/Scripts/clang-format/clang-format-all.sh ================================================ #!/bin/bash function usage { echo "Usage: $0 DIR..." exit 1 } # Variable that will hold the name of the clang-format command FMT="" # Some distros just call it clang-format. Others (e.g. Ubuntu) are insistent # that the version number be part of the command. We prefer clang-format if # that's present, otherwise we work backwards from highest version to lowest # version. for clangfmt in clang-format{,-{4,3}.{9,8,7,6,5,4,3,2,1,0}}; do if which "$clangfmt" &>/dev/null; then FMT="$clangfmt" break fi done # Check if we found a working clang-format if [ -z "$FMT" ]; then echo "failed to find clang-format" exit 1 fi SRC_PATH="$@" if [ -z "$SRC_PATH" ]; then SRC_PATH="../../../src" fi # Check all of the arguments first to make sure they're all directories for dir in "$SRC_PATH"; do if [ ! -d "${dir}" ]; then echo "${dir} is not a directory" usage fi done # Run clang-format -i on all of the things for dir in "$SRC_PATH"; do pushd "${dir}" &>/dev/null find . \ \( -name '*.c' \ -o -name '*.cc' \ -o -name '*.cpp' \ -o -name '*.h' \ -o -name '*.hh' \ -o -name '*.hpp' \) \ -exec "${FMT}" -style=file -i '{}' \; popd &>/dev/null done ================================================ FILE: Tools/ThreatModels/Calculator.tm7 ================================================ DRAWINGSURFACEd3f963ff-0a03-476e-ad6a-20239a956929DiagramNameNameRestore from snapshot URIDRAWINGSURFACE74f11287-6ca1-4e2d-a6eb-d0b1b49c6851GE.EI74f11287-6ca1-4e2d-a6eb-d0b1b49c6851Generic External InteractorNameGeneric External InteractorOut Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAuthenticates ItselfauthenticatesItselfNot ApplicableNoYes0TypetypeNot SelectedCodeHuman0MicrosoftMSNoYes0GE.EI10014809210087092820-fe38-4bf8-a928-e8a471acc7b0GE.P87092820-fe38-4bf8-a928-e8a471acc7b0Managed ApplicationNameCalculator App - UWP Application (Dotnet Native)Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Predefined Static AttributesCode TypecodeTypeManaged0Configurable AttributesAs Generic ProcessRunning AsrunningAsNot SelectedKernelSystemNetwork ServiceLocal ServiceAdministratorStandard User With ElevationStandard User Without ElevationWindows Store App8Isolation LevelIsolationNot SelectedAppContainerLow Integrity LevelMicrosoft Office Isolated Conversion Environment (MOICE)Sandbox1Accepts Input FromacceptsInputFromNot SelectedAny Remote User or EntityKernel, System, or Local AdminLocal or Network ServiceLocal Standard User With ElevationLocal Standard User Without ElevationWindows Store Apps or App Container ProcessesNothingOther0Implements or Uses an Authentication MechanismimplementsAuthenticationSchemeNoYes0Implements or Uses an Authorization MechanismimplementsCustomAuthorizationMechanismNoYes0Implements or Uses a Communication ProtocolimplementsCommunicationProtocolNoYes1Sanitizes InputhasInputSanitizersNot SelectedYesNo0Sanitizes OutputhasOutputSanitizersNot SelectedYesNo0SE.P.TMCore.NetApp127510032914064fd5280-0f1c-4410-b6b5-75781fe344d4GE.EI64fd5280-0f1c-4410-b6b5-75781fe344d4Windows RT RuntimeNameWindows RT Runtime (User Activity)Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Predefined Static AttributesAuthenticates ItselfauthenticatesItselfNot Applicable0TypetypeCode0Configurable AttributesAs Generic External InteractorMicrosoftMSNoYes0SE.EI.TMCore.WinRT1001098027710055675d76-019e-4f8a-8add-e31f7e4aa3a2GE.A55675d76-019e-4f8a-8add-e31f7e4aa3a2Free Text AnnotationNameCalculator App: Calculator is a UWP application written with C# and C++/CX and compiled with the Dotnet Native tech. Privilege level of Calculator: Current user privilege. UWP application does not support "Run as". Windows RT Runtime (User Activity): Calculator stores its snapshot data into a user activity. User Activity APIs are provide by Windows SDK for UWP under Windows.Foundation.UniversalApiContract. A UserActivity is created by an app during its execution to notify the system of a user work stream that can be continued on another device, or at another time on the same device. It provides information about a task the user is engaged in. GE.A3553730510395
Restore from snapshot URI
3bf1dba0-2532-43cf-8711-b68d3e3413e8GE.TB.L3bf1dba0-2532-43cf-8711-b68d3e3413e8AppContainer BoundaryNameCalculator Application Trust BoundaryConfigurable AttributesAs Generic Trust Line BoundarySE.TB.L.TMCore.AppContainer49393NoneNone00000000-0000-0000-0000-0000000000009315400000000-0000-0000-0000-0000000000001051677b3182a-0ea6-4be1-b696-921aa98477ecGE.DF77b3182a-0ea6-4be1-b696-921aa98477ecGeneric Data FlowName1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo1SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0Custom AttributesCustom propertyComment: The link to the document about URI Activation: https://learn.microsoft.com/en-us/windows/uwp/launch-resume/handle-uri-activationGE.DF410252EastNorthWest74f11287-6ca1-4e2d-a6eb-d0b1b49c685124314287092820-fe38-4bf8-a928-e8a471acc7b05343514fc41911-3d22-45c1-8818-de3700f34d82GE.DF4fc41911-3d22-45c1-8818-de3700f34d82BinaryName2) Calculator uses the activity ID to try retrieving the User Activity stored before.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary852243NorthEastWest87092820-fe38-4bf8-a928-e8a471acc7b062535164fd5280-0f1c-4410-b6b5-75781fe344d411033272e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e13GE.DF2e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e13BinaryName3) Calculator verifies the User Activity and then restore its state from the data saved in the User Activity.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary839415WestSouthEast64fd5280-0f1c-4410-b6b5-75781fe344d4110332787092820-fe38-4bf8-a928-e8a471acc7b06254331
DRAWINGSURFACE95b5de49-2481-4962-86f8-f44ca0ffa799DiagramNameNameSave snapshot on demandDRAWINGSURFACEc2f44e2e-18f9-4f0a-9620-fd613d85f360GE.Pc2f44e2e-18f9-4f0a-9620-fd613d85f360Managed ApplicationNameCalculator App - UWP Application (Dotnet Native)Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Predefined Static AttributesCode TypecodeTypeManaged0Configurable AttributesAs Generic ProcessRunning AsrunningAsNot SelectedKernelSystemNetwork ServiceLocal ServiceAdministratorStandard User With ElevationStandard User Without ElevationWindows Store App8Isolation LevelIsolationNot SelectedAppContainerLow Integrity LevelMicrosoft Office Isolated Conversion Environment (MOICE)Sandbox1Accepts Input FromacceptsInputFromNot SelectedAny Remote User or EntityKernel, System, or Local AdminLocal or Network ServiceLocal Standard User With ElevationLocal Standard User Without ElevationWindows Store Apps or App Container ProcessesNothingOther0Implements or Uses an Authentication MechanismimplementsAuthenticationSchemeNoYes0Implements or Uses an Authorization MechanismimplementsCustomAuthorizationMechanismNoYes0Implements or Uses a Communication ProtocolimplementsCommunicationProtocolNoYes1Sanitizes InputhasInputSanitizersNot SelectedYesNo0Sanitizes OutputhasOutputSanitizersNot SelectedYesNo0SE.P.TMCore.NetApp12756302951408ce2142b-8646-4daf-afdf-6c6867d68489GE.EI8ce2142b-8646-4daf-afdf-6c6867d68489Windows RuntimeNameRecall AppOut Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Predefined Static AttributesAuthenticates ItselfauthenticatesItselfNot Applicable0TypetypeCode0Configurable AttributesAs Generic External InteractorMicrosoftMSNoYes0SE.EI.TMCore.CRT10094024100d8fb8b09-1f09-4658-a865-8cba8069ef5fGE.EId8fb8b09-1f09-4658-a865-8cba8069ef5fWindows RT RuntimeNameWindows RT Runtime (User Activity)Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Predefined Static AttributesAuthenticates ItselfauthenticatesItselfNot Applicable0TypetypeCode0Configurable AttributesAs Generic External InteractorMicrosoftMSNoYes0SE.EI.TMCore.WinRT10011400296100eb9e4ef1-e917-40d0-a2bb-bd51c1815695GE.Aeb9e4ef1-e917-40d0-a2bb-bd51c1815695Free Text AnnotationNameRecall App: Recall is a new System Application that stores and restores the state of the apps running in foreground. Calculator App: Calculator is a UWP application written with C# and C++/CX and compiled with the Dotnet Native tech. Privilege level of Calculator: Current user privilege. UWP application does not support "Run as". Privilege level of Recall: Current user privilege or higher. Windows RT Runtime (User Activity): Calculator stores its snapshot data into a user activity. User Activity APIs are provide by Windows SDK for UWP under Windows.Foundation.UniversalApiContract. A UserActivity is created by an app during its execution to notify the system of a user work stream that can be continued on another device, or at another time on the same device. It provides information about a task the user is engaged in. GE.A4323190506395
Save snapshot on demand
4fbf0c1c-170d-4f0c-9b6d-371d634fc07dGE.TB.L4fbf0c1c-170d-4f0c-9b6d-371d634fc07dAppContainer BoundaryNameCalculator Application Trust BoundaryConfigurable AttributesAs Generic Trust Line BoundarySE.TB.L.TMCore.AppContainer440114NoneNone00000000-0000-0000-0000-0000000000009635100000000-0000-0000-0000-000000000000415033777792c-2421-448c-85b1-49fbf31d23d5GE.DF3777792c-2421-448c-85b1-49fbf31d23d5BinaryName1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary426214EastNorthWest8ce2142b-8646-4daf-afdf-6c6867d6848918974c2f44e2e-18f9-4f0a-9620-fd613d85f3605873173e95f648-6267-4b07-80eb-223b572e9ad4GE.DF3e95f648-6267-4b07-80eb-223b572e9ad4BinaryName2) Calculator retrieves a new User Activity using a newly generated GUID.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary915300NorthEastNorthWestc2f44e2e-18f9-4f0a-9620-fd613d85f360678317d8fb8b09-1f09-4658-a865-8cba8069ef5f114530146755abb-a146-4c93-8874-0a78670a9badGE.DF46755abb-a146-4c93-8874-0a78670a9badBinaryName3) Calculator stores its serialized current state into the User Activity.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary957416SouthWestSouthEastd8fb8b09-1f09-4658-a865-8cba8069ef5f1145391c2f44e2e-18f9-4f0a-9620-fd613d85f3606783990ef7348c-9dd9-4781-b8c8-f44e13b8066fGE.DF0ef7348c-9dd9-4781-b8c8-f44e13b8066fBinaryName4) Calculator returns the cooked User Activity back to the Recall app via its snapshot request.Dataflow Order15ccd509-98eb-49ad-b9c2-b4a2926d17800Out Of Scope71f3d9aa-b8ef-4e54-8126-607a1d903103falseReason For Out Of Scope752473b6-52d4-4776-9a24-202153f7d579Configurable AttributesAs Generic Data FlowPhysical NetworkchannelNot SelectedWireWi-FiBluetooth2G-4G0Source AuthenticatedauthenticatesSourceNot SelectedNoYes0Destination AuthenticatedauthenticatesDestinationNoYes0Provides ConfidentialityprovidesConfidentialityNoYes0Provides IntegrityprovidesIntegrityNoYes0Transmits XMLXMLencNoYes0Contains CookiesCookiesYesNo0SOAP PayloadSOAPNoYes0REST PayloadRESTNoYes0RSS PayloadRSSNoYes0JSON PayloadJSONNoYes0Forgery Protection54851a3b-65da-4902-b4e0-94ef015be735Not SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change data0SE.DF.TMCore.Binary364305SouthWestSouthc2f44e2e-18f9-4f0a-9620-fd613d85f3605873998ce2142b-8646-4daf-afdf-6c6867d684891441191
E774f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1974f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleElevation by Changing the Execution Flow in Calculator App - UWP Application (Dotnet Native)UserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionAn attacker may pass data into Calculator App - UWP Application (Dotnet Native) in order to change the flow of program execution within Calculator App - UWP Application (Dotnet Native) to the attacker's choosing.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0E7falsefalseE674f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1874f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleCalculator App - UWP Application (Dotnet Native) May be Subject to Elevation of Privilege Using Remote Code ExecutionUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionGeneric External Interactor may be able to remotely execute code for Calculator App - UWP Application (Dotnet Native).InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0E6falsefalseE574f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1774f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleElevation Using ImpersonationUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be able to impersonate the context of Generic External Interactor in order to gain additional privilege.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0E5falsefalseD474f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1674f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleData Flow 1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI. Is Potentially InterruptedUserThreatCategoryDenial Of ServiceUserThreatShortDescriptionDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.UserThreatDescriptionAn external agent interrupts data flowing across a trust boundary in either direction.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0D4falsefalseD374f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1574f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitlePotential Process Crash or Stop for Calculator App - UWP Application (Dotnet Native)UserThreatCategoryDenial Of ServiceUserThreatShortDescriptionDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) crashes, halts, stops or runs slowly; in all cases violating an availability metric.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0D3falsefalseI674f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1474f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleData Flow SniffingUserThreatCategoryInformation DisclosureUserThreatShortDescriptionInformation disclosure happens when the information can be read by an unauthorized party.UserThreatDescriptionData flowing across 1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI. may be sniffed by an attacker. Depending on what type of data an attacker can read, it may be used to attack other parts of the system or simply be a disclosure of information leading to compliance violations. Consider encrypting the data flow.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0I6falsefalseR674f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1374f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitlePotential Data Repudiation by Calculator App - UWP Application (Dotnet Native)UserThreatCategoryRepudiationUserThreatShortDescriptionRepudiation threats involve an adversary denying that something happened.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) claims that it did not receive data from a source outside the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0R6falsefalseT174f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1274f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitlePotential Lack of Input Validation for Calculator App - UWP Application (Dotnet Native)UserThreatCategoryTamperingUserThreatShortDescriptionTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.UserThreatDescriptionData flowing across 1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI. may be tampered with by an attacker. This may lead to a denial of service attack against Calculator App - UWP Application (Dotnet Native) or an elevation of privilege attack against Calculator App - UWP Application (Dotnet Native) or an information disclosure by Calculator App - UWP Application (Dotnet Native). Failure to verify that input is as expected is a root cause of a very large number of exploitable issues. Consider all paths and the way they handle data. Verify that all input is verified for correctness using an approved list input validation approach.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0T1falsefalseS374f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec2174f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleSpoofing the Generic External Interactor External EntityUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionGeneric External Interactor may be spoofed by an attacker and this may lead to unauthorized access to Calculator App - UWP Application (Dotnet Native). Consider using a standard authentication mechanism to identify the external entity.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0S3falsefalseS274f11287-6ca1-4e2d-a6eb-d0b1b49c685177b3182a-0ea6-4be1-b696-921aa98477ec87092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a95692977b3182a-0ea6-4be1-b696-921aa98477ec1074f11287-6ca1-4e2d-a6eb-d0b1b49c6851:77b3182a-0ea6-4be1-b696-921aa98477ec:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleSpoofing the Calculator App - UWP Application (Dotnet Native) ProcessUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be spoofed by an attacker and this may lead to information disclosure by Generic External Interactor. Consider using a standard authentication mechanism to identify the destination process.InteractionString1) User/Program launches Calculator via URI activation. Calculator verifies and parses out an activity ID from the input URI.PriorityHigh74f11287-6ca1-4e2d-a6eb-d0b1b49c6851AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0S2falsefalseE58ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5398ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleElevation Using ImpersonationUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be able to impersonate the context of Recall App in order to gain additional privilege.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360E5falsefalseS364fd5280-0f1c-4410-b6b5-75781fe344d42e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e1387092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a9569292e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e132364fd5280-0f1c-4410-b6b5-75781fe344d4:2e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e13:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleSpoofing the Windows RT Runtime (User Activity) External EntityUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionWindows RT Runtime (User Activity) may be spoofed by an attacker and this may lead to unauthorized access to Calculator App - UWP Application (Dotnet Native). Consider using a standard authentication mechanism to identify the external entity.InteractionString3) Calculator verifies the User Activity and then restore its state from the data saved in the User Activity.PriorityHigh64fd5280-0f1c-4410-b6b5-75781fe344d4AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0S3falsefalseD48ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5388ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleData Flow 1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity. Is Potentially InterruptedUserThreatCategoryDenial Of ServiceUserThreatShortDescriptionDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.UserThreatDescriptionAn external agent interrupts data flowing across a trust boundary in either direction.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360D4falsefalseD38ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5378ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitlePotential Process Crash or Stop for Calculator App - UWP Application (Dotnet Native)UserThreatCategoryDenial Of ServiceUserThreatShortDescriptionDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) crashes, halts, stops or runs slowly; in all cases violating an availability metric.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360D3falsefalseI68ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5368ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleData Flow SniffingUserThreatCategoryInformation DisclosureUserThreatShortDescriptionInformation disclosure happens when the information can be read by an unauthorized party.UserThreatDescriptionData flowing across 1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity. may be sniffed by an attacker. Depending on what type of data an attacker can read, it may be used to attack other parts of the system or simply be a disclosure of information leading to compliance violations. Consider encrypting the data flow.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360I6falsefalseR68ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5358ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitlePotential Data Repudiation by Calculator App - UWP Application (Dotnet Native)UserThreatCategoryRepudiationUserThreatShortDescriptionRepudiation threats involve an adversary denying that something happened.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) claims that it did not receive data from a source outside the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360R6falsefalseT18ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5348ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitlePotential Lack of Input Validation for Calculator App - UWP Application (Dotnet Native)UserThreatCategoryTamperingUserThreatShortDescriptionTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.UserThreatDescriptionData flowing across 1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity. may be tampered with by an attacker. This may lead to a denial of service attack against Calculator App - UWP Application (Dotnet Native) or an elevation of privilege attack against Calculator App - UWP Application (Dotnet Native) or an information disclosure by Calculator App - UWP Application (Dotnet Native). Failure to verify that input is as expected is a root cause of a very large number of exploitable issues. Consider all paths and the way they handle data. Verify that all input is verified for correctness using an approved list input validation approach.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360T1falsefalseE564fd5280-0f1c-4410-b6b5-75781fe344d42e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e1387092820-fe38-4bf8-a928-e8a471acc7b0d3f963ff-0a03-476e-ad6a-20239a9569292e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e132964fd5280-0f1c-4410-b6b5-75781fe344d4:2e73a97d-8ce5-4f8c-b2c6-bfb17c9d7e13:87092820-fe38-4bf8-a928-e8a471acc7b00001-01-01T00:00:00HighTitleElevation Using ImpersonationUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be able to impersonate the context of Windows RT Runtime (User Activity) in order to gain additional privilege.InteractionString3) Calculator verifies the User Activity and then restore its state from the data saved in the User Activity.PriorityHigh64fd5280-0f1c-4410-b6b5-75781fe344d4AutoGenerated87092820-fe38-4bf8-a928-e8a471acc7b0E5falsefalseS38ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5338ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleSpoofing the Recall App External EntityUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionRecall App may be spoofed by an attacker and this may lead to unauthorized access to Calculator App - UWP Application (Dotnet Native). Consider using a standard authentication mechanism to identify the external entity.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360S3falsefalseS28ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5328ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleSpoofing the Calculator App - UWP Application (Dotnet Native) ProcessUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be spoofed by an attacker and this may lead to information disclosure by Recall App. Consider using a standard authentication mechanism to identify the destination process.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360S2falsefalseE68ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5408ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleCalculator App - UWP Application (Dotnet Native) May be Subject to Elevation of Privilege Using Remote Code ExecutionUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionRecall App may be able to remotely execute code for Calculator App - UWP Application (Dotnet Native).InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360E6falsefalseE78ce2142b-8646-4daf-afdf-6c6867d684893777792c-2421-448c-85b1-49fbf31d23d5c2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa7993777792c-2421-448c-85b1-49fbf31d23d5418ce2142b-8646-4daf-afdf-6c6867d68489:3777792c-2421-448c-85b1-49fbf31d23d5:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleElevation by Changing the Execution Flow in Calculator App - UWP Application (Dotnet Native)UserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionAn attacker may pass data into Calculator App - UWP Application (Dotnet Native) in order to change the flow of program execution within Calculator App - UWP Application (Dotnet Native) to the attacker's choosing.InteractionString1) Recall app initiates a request to Calculator asking for taking a snapshot and storing it into a User Activity.PriorityHigh8ce2142b-8646-4daf-afdf-6c6867d68489AutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360E7falsefalseS3d8fb8b09-1f09-4658-a865-8cba8069ef5f46755abb-a146-4c93-8874-0a78670a9badc2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa79946755abb-a146-4c93-8874-0a78670a9bad42d8fb8b09-1f09-4658-a865-8cba8069ef5f:46755abb-a146-4c93-8874-0a78670a9bad:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleSpoofing the Windows RT Runtime (User Activity) External EntityUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionWindows RT Runtime (User Activity) may be spoofed by an attacker and this may lead to unauthorized access to Calculator App - UWP Application (Dotnet Native). Consider using a standard authentication mechanism to identify the external entity.InteractionString3) Calculator stores its serialized current state into the User Activity.PriorityHighd8fb8b09-1f09-4658-a865-8cba8069ef5fAutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360S3falsefalseE5d8fb8b09-1f09-4658-a865-8cba8069ef5f46755abb-a146-4c93-8874-0a78670a9badc2f44e2e-18f9-4f0a-9620-fd613d85f36095b5de49-2481-4962-86f8-f44ca0ffa79946755abb-a146-4c93-8874-0a78670a9bad43d8fb8b09-1f09-4658-a865-8cba8069ef5f:46755abb-a146-4c93-8874-0a78670a9bad:c2f44e2e-18f9-4f0a-9620-fd613d85f3600001-01-01T00:00:00HighTitleElevation Using ImpersonationUserThreatCategoryElevation Of PrivilegeUserThreatShortDescriptionA user subject gains increased capability or privilege by taking advantage of an implementation bug.UserThreatDescriptionCalculator App - UWP Application (Dotnet Native) may be able to impersonate the context of Windows RT Runtime (User Activity) in order to gain additional privilege.InteractionString3) Calculator stores its serialized current state into the User Activity.PriorityHighd8fb8b09-1f09-4658-a865-8cba8069ef5fAutoGeneratedc2f44e2e-18f9-4f0a-9620-fd613d85f360E5falsefalseS8c2f44e2e-18f9-4f0a-9620-fd613d85f3600ef7348c-9dd9-4781-b8c8-f44e13b8066f8ce2142b-8646-4daf-afdf-6c6867d6848995b5de49-2481-4962-86f8-f44ca0ffa7990ef7348c-9dd9-4781-b8c8-f44e13b8066f44c2f44e2e-18f9-4f0a-9620-fd613d85f360:0ef7348c-9dd9-4781-b8c8-f44e13b8066f:8ce2142b-8646-4daf-afdf-6c6867d684890001-01-01T00:00:00HighTitleSpoofing of the Recall App External Destination EntityUserThreatCategorySpoofingUserThreatShortDescriptionSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.UserThreatDescriptionRecall App may be spoofed by an attacker and this may lead to data being sent to the attacker's target instead of Recall App. Consider using a standard authentication mechanism to identify the external entity.InteractionString4) Calculator returns the cooked User Activity back to the Recall app via its snapshot request.PriorityHighc2f44e2e-18f9-4f0a-9620-fd613d85f360AutoGenerated8ce2142b-8646-4daf-afdf-6c6867d68489S8falsefalseR7c2f44e2e-18f9-4f0a-9620-fd613d85f3600ef7348c-9dd9-4781-b8c8-f44e13b8066f8ce2142b-8646-4daf-afdf-6c6867d6848995b5de49-2481-4962-86f8-f44ca0ffa7990ef7348c-9dd9-4781-b8c8-f44e13b8066f45c2f44e2e-18f9-4f0a-9620-fd613d85f360:0ef7348c-9dd9-4781-b8c8-f44e13b8066f:8ce2142b-8646-4daf-afdf-6c6867d684890001-01-01T00:00:00HighTitleExternal Entity Recall App Potentially Denies Receiving DataUserThreatCategoryRepudiationUserThreatShortDescriptionRepudiation threats involve an adversary denying that something happened.UserThreatDescriptionRecall App claims that it did not receive data from a process on the other side of the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.InteractionString4) Calculator returns the cooked User Activity back to the Recall app via its snapshot request.PriorityHighc2f44e2e-18f9-4f0a-9620-fd613d85f360AutoGenerated8ce2142b-8646-4daf-afdf-6c6867d68489R7falsefalseD4c2f44e2e-18f9-4f0a-9620-fd613d85f3600ef7348c-9dd9-4781-b8c8-f44e13b8066f8ce2142b-8646-4daf-afdf-6c6867d6848995b5de49-2481-4962-86f8-f44ca0ffa7990ef7348c-9dd9-4781-b8c8-f44e13b8066f46c2f44e2e-18f9-4f0a-9620-fd613d85f360:0ef7348c-9dd9-4781-b8c8-f44e13b8066f:8ce2142b-8646-4daf-afdf-6c6867d684890001-01-01T00:00:00HighTitleData Flow 4) Calculator returns the cooked User Activity back to the Recall app via its snapshot request. Is Potentially InterruptedUserThreatCategoryDenial Of ServiceUserThreatShortDescriptionDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.UserThreatDescriptionAn external agent interrupts data flowing across a trust boundary in either direction.InteractionString4) Calculator returns the cooked User Activity back to the Recall app via its snapshot request.PriorityHighc2f44e2e-18f9-4f0a-9620-fd613d85f360AutoGenerated8ce2142b-8646-4daf-afdf-6c6867d68489D4falsefalsetrue4.3falsefalseNot SelectedManagedUnmanagedCode TypeVirtualDynamiccodeTypeListfalseNot SelectedKernelSystemNetwork ServiceLocal ServiceAdministratorStandard User With ElevationStandard User Without ElevationWindows Store AppRunning AsVirtualDynamicrunningAsListfalseNot SelectedAppContainerLow Integrity LevelMicrosoft Office Isolated Conversion Environment (MOICE)SandboxIsolation LevelVirtualDynamicIsolationListfalseNot SelectedAny Remote User or EntityKernel, System, or Local AdminLocal or Network ServiceLocal Standard User With ElevationLocal Standard User Without ElevationWindows Store Apps or App Container ProcessesNothingOtherAccepts Input FromVirtualDynamicacceptsInputFromListfalseNoYesImplements or Uses an Authentication MechanismVirtualDynamicimplementsAuthenticationSchemeListfalseNoYesImplements or Uses an Authorization MechanismVirtualDynamicimplementsCustomAuthorizationMechanismListfalseNoYesImplements or Uses a Communication ProtocolVirtualDynamicimplementsCommunicationProtocolListfalseNot SelectedYesNoSanitizes InputVirtualDynamichasInputSanitizersListfalseNot SelectedYesNoSanitizes OutputVirtualDynamichasOutputSanitizersListA representation of a generic process.falseGE.PCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAARRJREFUOE99ksFmQ0EUhtOHKCGUUi6hhEieoVy6CiGrkG3IA2TVB+hThVLyDN1eSghdZTX5P84fc5u5d/H558z5z5kzc+/gYVb/ZydS6F0+pdTCCcwHUYsvQQPU8Vb0NjgKirog39vgXWA8iZWYhBKzT76zwUZ47KV4ER/iOWL2yeMrNriECUbiM9Y0IXYOX7FBPsFCcPJeUEzMfu8E8CYw/gqKnkKJ2SdvbwsvvgXGLsi3Co0X+X+AUoTy+v4PXgXX+xFDMRa3Bjlr8RfqvbmgqT+rdZ4X9sGD0pRJH0OJR3evmiODaQQnVqE8MtoUC40MhsKz4GTujhJXxUIjg5kKTmTsXKfFQiNDDg/JJBRzBcX14ApRBWL6a6sYxQAAAABJRU5ErkJggg==Generic ProcessROOTEllipsefalseAnyAnyfalsefalseNot ApplicableNoYesAuthenticates ItselfVirtualDynamicauthenticatesItselfListfalseNot SelectedCodeHumanTypeVirtualDynamictypeListfalseNoYesMicrosoftVirtualDynamicMSList A representation of an external interactor. falseGE.EILower right of stenciliVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEwAACxMBAJqcGAAAANBJREFUOE9j+P//P1UwVkFyMJhgNPX+jwW/B2J5dA24MJhAMwCOmc19LgJpfnRN2DCYQDeADGxPFYN0I7J8aG+QgGPYHdWglJ0wvkVi0SJWC7/PyGpgGK9B6W2TM4Fy2iDDAkqau4BsJb+ixg5savEaxGTm8wFI64MMA2IpEBsYix+R1cAwwTASdY1MB8mDMLdt0FRsakAYr0FQ74BdAsJAtjpymCFjQoG9Ekjrg7wI86aEe/R6ZDUwTNBrxGLqGwTErhRiQZhBFGOsgqTj/wwAWDijBcYFCvcAAAAASUVORK5CYII=Generic External InteractorROOTRectanglefalseAnyAnyfalsefalseNoYesStores CredentialsVirtualDynamicstoresCredentialsListfalseNoYesStores Log DataVirtualDynamicstoresLogDataListfalseNoYesEncryptedVirtualDynamicEncryptedListfalseNoYesSignedVirtualDynamicSignedListfalseNoYesWrite AccessVirtualDynamicAccessTypeListfalseNoYesRemovable StorageVirtualDynamicRemoveableStorageListfalseNoYesBackupVirtualDynamicBackupListfalseNoYesSharedVirtualDynamicsharedListfalseSQL Relational DatabaseNon Relational DatabaseFile SystemRegistryConfigurationCacheHTML5 StorageCookieDeviceStore TypeVirtualDynamicstoreTypeList A representation of a data store. falseGE.DSLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAIxJREFUOE9j+P//PxwzmnrPB+L/BPB5IOaH6SFVMxgzmflcANJgQ0jWDMMwQ8jSDMMgQ0Au0AZiVzKxBcgFWE0nFoMNcM6smoaPxoZhcpS7AIu/SMLDIQxKJswpxoVhikC2YZMHYVAgCuLCMANcs6vDsMmDMMwL9jDFJGCwHrABuhFZPkgSRGGIHu//AJbS3MIG0q+eAAAAAElFTkSuQmCCGeneric Data StoreROOTParallelLinesfalseAnyAnyfalsefalseNot SelectedWireWi-FiBluetooth2G-4GPhysical NetworkVirtualDynamicchannelListfalseNot SelectedNoYesSource AuthenticatedVirtualDynamicauthenticatesSourceListfalseNoYesDestination AuthenticatedVirtualDynamicauthenticatesDestinationListfalseNoYesProvides ConfidentialityVirtualDynamicprovidesConfidentialityListfalseNoYesProvides IntegrityVirtualDynamicprovidesIntegrityListfalseNoYesTransmits XMLVirtualDynamicXMLencListfalseYesNoContains CookiesVirtualDynamicCookiesListfalseNoYesSOAP PayloadVirtualDynamicSOAPListfalseNoYesREST PayloadVirtualDynamicRESTListfalseNoYesRSS PayloadVirtualDynamicRSSListfalseNoYesJSON PayloadVirtualDynamicJSONListfalseNot SelectedValidateAntiForgeryTokenAttributeViewStateUserKeyNonceOther dynamic canaryStatic header not available to the browserOtherNoneNot applicable because the request does not change dataForgery ProtectionVirtualDynamic54851a3b-65da-4902-b4e0-94ef015be735List A unidirectional representation of the flow of data between elements. falseGE.DFBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEtJREFUOE9j+P//P1bMaOr9Hx2jqwFhDAEYHngDYBiXRhjGKoiMR5IBIIWkYmwGgGh0jFN8OBkA4qBhbGJYxbEagMNQrOIUGuD9HwBIkRfD8QF9EgAAAABJRU5ErkJggg==Generic Data FlowROOTLinefalseAnyAnyfalse An arc representation of a trust boundary. falseGE.TB.LBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAABX0lEQVQ4T2NgNPXGh/mhGJscGCNzQArtgVgfxmcy87kAwlA5ZLVwDGOAFQPp/1Dcj8zHZwiY4LUPdgLSMM0YmM8+5JaAY5gRkI3dAJuUUlsgjVUzCM/ZuDPg////vEA2dgNAkqpBKTuBbKwGRNV0iQNpmCZQGMG9AxPk57IJvA6ksRrAYu67EEjLA7E+s7nPReQwAWtGC0CiMMwQkPNZ5H0TtqArIIRBAWueUCgM9gLQEG1QGHDbBr1YuftQDJDvapFYtAhdEwwDY+TO8cvXXUCWw8IAbMjCrXtDgDQHlK8E04CO1YPTVoA0A9nwQIQZAtYMxaBAw2oAFINSLaoBSFgfGEgPgDQ2jWAs5hZVCaSxGwB0Ca+iX9I2IBusGORn3YistTA+q4Xf59KJcy1BarEaAMJAQ8ABixRg6omN/fWgwF26Y38EzLsghfiwNhBbADELlC8KxEpAzAHh/2cAANCSU7ngF2KpAAAAAElFTkSuQmCCGeneric Trust Line BoundaryROOTLineBoundaryfalseAnyAnyfalse A border representation of a trust boundary. falseGE.TB.BBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAABGSURBVDhPY/hPIWBQ9Ev6z2jqDccPnr0ESxArzoDMAeEDZy+DFRIrDjeAVDCcDIDyyQajgTioAhGEQekdHx+bGIUGeP8HAJ4fIfJijo6MAAAAAElFTkSuQmCCGeneric Trust Border BoundaryROOTBorderBoundaryfalseAnyAnyfalse A representation of an annotation. falseGE.AFree Text AnnotationROOTAnnotationfalseAnyAnyTwC MSECcc62ebae-3748-431e-b1df-f4220dc9003fSDL TM Knowledge Base (Core)4.1.0.11false A Windows Process. falseSE.P.TMCore.OSProcessCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEFJREFUOE9jYDT1ngnE/8nEM0EG/EETJAV/ABmATYJYTD0DQDQ5eNSAUQNAmDoGgDITugSxGGzAfCAGuYIM7D0HAH9a5DRx46KEAAAAAElFTkSuQmCCOS ProcessGE.PInheritedfalseAnyAnyfalse A thread of execution in a Windows process. falseSE.P.TMCore.ThreadCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEFJREFUOE9jYDT1ngnE/8nEM0EG/EETJAV/ABmATYJYTD0DQDQ5eNSAUQNAmDoGgDITugSxGGzAfCAGuYIM7D0HAH9a5DRx46KEAAAAAElFTkSuQmCCThreadGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList A thread of execution in the Windows kernel. falseSE.P.TMCore.KernelThreadCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEFJREFUOE9jYDT1ngnE/8nEM0EG/EETJAV/ABmATYJYTD0DQDQ5eNSAUQNAmDoGgDITugSxGGzAfCAGuYIM7D0HAH9a5DRx46KEAAAAAElFTkSuQmCCKernel ThreadGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList A representation of a Win32 or Win64 application. falseSE.P.TMCore.WinAppCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEFJREFUOE9jYDT1ngnE/8nEM0EG/EETJAV/ABmATYJYTD0DQDQ5eNSAUQNAmDoGgDITugSxGGzAfCAGuYIM7D0HAH9a5DRx46KEAAAAAElFTkSuQmCCNative ApplicationGE.PInheritedfalseAnyAnyfalsefalseManagedCode TypeVirtualStaticcodeTypeList A representation of a .NET Web application. falseSE.P.TMCore.NetAppCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANFJREFUOE+t09EGAkEUxvF6lG6jqxQR3cbQbURERER0FV31ErEsveI+QNT3X3NYszPsji5+Zsycvjk7o8Fw5gr5ZioI+ASLfVQExDa6+l8AY45kgJO7HGQvD78W1kUD+MFYljLxmE9lJ83aVsBRLsLTnuXpMWftKtQkA+yErR+tA+Z01qxBK+AlJ+E0RuuAeelH9pIBls7lMfbuYCNruQkXx6dgLrwKe9QkA8BJI1mJdcCcEOvCRAPA6dw4nwJeYSFhXR3Anync6KoOeAtdZHDlD8vn/L46Hi6/AAAAAElFTkSuQmCCManaged ApplicationGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList A representation of a thick client. falseSE.P.TMCore.ThickClientCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGBJREFUOE/FjdEJwDAIBe1QnaJ7BzpA5nmpH8KjkaC2kI9L5MBTAHzClRnkOK/+gABdF95+EissoL/N/wRMrOAAsyfArhRgSgF2pQBTCrDT59YhQLMlZrqUxZUZXBkHMgDkpHNwRk9QLgAAAABJRU5ErkJggg==Thick ClientGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList A representation of a browser client. falseSE.P.TMCore.BrowserClientCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAASBJREFUOE+l0q1LBGEQx/FdMMsVg/H+AG1WmxqMZ1WDWC5dUMQiyImIQVARRTGpRVHwpYigd/iCmLQZBINYD8yG576/Y0Y27AOehs/O7PA8s/PwbBJC+JfcYjuStG/Y9WAML9jAE0ZQRGuNNhBDlm+exDvqKmLP4hXeMIifBv515Xp04Rrb2MIdZiyu4NB0xBos4RZzOMYNplHDPhZwj7JvylJBo+tFi78s37X4iSPLa7EGq9D441jDJkattowJy+e9gaLnenwogcb/tvzAYgMXltdjE1Rwjins4ARli+uYhZqUYhN04gFqoi+/ompRt6Kr1XRpbAIZwjMuVYQf4QyP6EX0P3DdGMApFqEj9KOA1prcCbzbX+UW25Fb/L2QNAG8ROHz0OoHewAAAABJRU5ErkJggg==Browser ClientGE.PInheritedfalseAnyAnyfalsefalseNoYesActiveXVirtualDynamicActiveXListfalseNoYesBrowser Plug-in Object (BHO)VirtualDynamicBHOList A representation of an browser plugin. falseSE.P.TMCore.PlugInCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANxJREFUOE+l070OwVAYgGEdDG7BbJUYMPhZJKYmBgYJg9lgwCDhAoTJHXSR2A0MRPxdA4nRDRgYxML7JW3SoI62w5PTnp68+XKSBrSEXsPTI0MCl7dNVyRgvcizG64CafTQte0pA1G0McASKdi//wyUccQaMzxwRgzWGcdAGAdskUEIHciZFZSBLDaYY4wJppAzMokyEMcOezTRQh1VVKAMyLgnXJGEhgL6kLtRBkZo4A7Zv5mrjJ/HXwFZS1hA7mKICKwzwjGQQxEyftDc++Yj4IkEfP9MPn5n3XgBkdQdpG8eZzEAAAAASUVORK5CYII=Browser and ActiveX PluginsGE.PInheritedfalseAnyAnyfalsefalseManagedCode TypeVirtualStaticcodeTypeList A representation of an Web Server Process. falseSE.P.TMCore.WebServerCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAJ5JREFUOE9j+P//Pxgzmnr/JwejGOCcWTWtZMKcYmIxhgGu2dVhQLYgsRjDAN2ILB8YnxgMNgBEYMH22DSgY5BarAYQ6xKQWjABCjwBx7A7qkEpO8kyAB3T3wDk+Ec2iBiM1QW4DMSW0LC6ADlBIRuALaERDAOLxKJFMBxS3qYHE4dhnAZgE0fC8IQGIlyxYJDzsInDMEgebgAF+D8DAHhvQ2cWCf/0AAAAAElFTkSuQmCCWeb ServerGE.PInheritedfalseAnyAnyfalsefalseLocalWebContextVirtualDynamiccontextListfalseNot SelectedYesNoDocuments Library capabilityVirtualDynamicdocumentsLibraryListfalseNot SelectedYesNoEnterprise Authentication capabilityVirtualDynamicenterprizeAuthenticationListfalseNot SelectedYesNoInternet (Client & Server) capabilityVirtualDynamicinternetClientServerListfalseNot SelectedYesNoInternet (Client) capabilityVirtualDynamicinternetClientListfalseNot SelectedYesNoLocation capabilityVirtualDynamiclocationListfalseNot SelectedYesNoMicrophone capabilityVirtualDynamicmicrophoneListfalseNot SelectedYesNoMusic Library capabilityVirtualDynamicmusicLibraryListfalseNot SelectedYesNoPictures Library capabilityVirtualDynamicpictureLibraryListfalseNot SelectedYesNoPrivate Networks (Client & Server) capabilityVirtualDynamicprivateNetworkClientServerListfalseNot SelectedYesNoProximity capabilityVirtualDynamicproximityListfalseNot SelectedYesNoRemovable Storage capabilityVirtualDynamicremovableStorageListfalseNot SelectedYesNoShared User Certificates capabilityVirtualDynamicsharedUserCertificatesListfalseNot SelectedYesNoText Messaging capabilityVirtualDynamicsmsListfalseNot SelectedYesNoVideos Library capabilityVirtualDynamicvideosLibraryListfalseNot SelectedYesNoWebcam capabilityVirtualDynamicwebcamListfalseManagedCode TypeVirtualStaticcodeTypeList A representation of a Windows Store process. falseSE.P.TMCore.ModernCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAARRJREFUOE99ksFmQ0EUhtOHKCGUUi6hhEieoVy6CiGrkG3IA2TVB+hThVLyDN1eSghdZTX5P84fc5u5d/H558z5z5kzc+/gYVb/ZydS6F0+pdTCCcwHUYsvQQPU8Vb0NjgKirog39vgXWA8iZWYhBKzT76zwUZ47KV4ER/iOWL2yeMrNriECUbiM9Y0IXYOX7FBPsFCcPJeUEzMfu8E8CYw/gqKnkKJ2SdvbwsvvgXGLsi3Co0X+X+AUoTy+v4PXgXX+xFDMRa3Bjlr8RfqvbmgqT+rdZ4X9sGD0pRJH0OJR3evmiODaQQnVqE8MtoUC40MhsKz4GTujhJXxUIjg5kKTmTsXKfFQiNDDg/JJBRzBcX14ApRBWL6a6sYxQAAAABJRU5ErkJggg==Windows Store ProcessGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList A representation of an network process or service. falseSE.P.TMCore.Win32ServiceCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANFJREFUOE+t09EGAkEUxvF6lG6jqxQR3cbQbURERER0FV31ErEsveI+QNT3X3NYszPsji5+Zsycvjk7o8Fw5gr5ZioI+ASLfVQExDa6+l8AY45kgJO7HGQvD78W1kUD+MFYljLxmE9lJ83aVsBRLsLTnuXpMWftKtQkA+yErR+tA+Z01qxBK+AlJ+E0RuuAeelH9pIBls7lMfbuYCNruQkXx6dgLrwKe9QkA8BJI1mJdcCcEOvCRAPA6dw4nwJeYSFhXR3Anync6KoOeAtdZHDlD8vn/L46Hi6/AAAAAElFTkSuQmCCWin32 ServiceGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList Delivers web content to a human user. falseSE.P.TMCore.WebAppCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANFJREFUOE+t09EGAkEUxvF6lG6jqxQR3cbQbURERER0FV31ErEsveI+QNT3X3NYszPsji5+Zsycvjk7o8Fw5gr5ZioI+ASLfVQExDa6+l8AY45kgJO7HGQvD78W1kUD+MFYljLxmE9lJ83aVsBRLsLTnuXpMWftKtQkA+yErR+tA+Z01qxBK+AlJ+E0RuuAeelH9pIBls7lMfbuYCNruQkXx6dgLrwKe9QkA8BJI1mJdcCcEOvCRAPA6dw4nwJeYSFhXR3Anync6KoOeAtdZHDlD8vn/L46Hi6/AAAAAElFTkSuQmCCWeb ApplicationGE.PInheritedfalseAnyAnyfalsefalseUnmanagedCode TypeVirtualStaticcodeTypeList Exposes a programmatic interface. falseSE.P.TMCore.WebSvcCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAANFJREFUOE+t09EGAkEUxvF6lG6jqxQR3cbQbURERER0FV31ErEsveI+QNT3X3NYszPsji5+Zsycvjk7o8Fw5gr5ZioI+ASLfVQExDa6+l8AY45kgJO7HGQvD78W1kUD+MFYljLxmE9lJ83aVsBRLsLTnuXpMWftKtQkA+yErR+tA+Z01qxBK+AlJ+E0RuuAeelH9pIBls7lMfbuYCNruQkXx6dgLrwKe9QkA8BJI1mJdcCcEOvCRAPA6dw4nwJeYSFhXR3Anync6KoOeAtdZHDlD8vn/L46Hi6/AAAAAElFTkSuQmCCWeb ServiceGE.PInheritedfalseAnyAnyfalse A virtual machine running in a Hyper-V partition. falseSE.P.TMCore.VMCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAARRJREFUOE99ksFmQ0EUhtOHKCGUUi6hhEieoVy6CiGrkG3IA2TVB+hThVLyDN1eSghdZTX5P84fc5u5d/H558z5z5kzc+/gYVb/ZydS6F0+pdTCCcwHUYsvQQPU8Vb0NjgKirog39vgXWA8iZWYhBKzT76zwUZ47KV4ER/iOWL2yeMrNriECUbiM9Y0IXYOX7FBPsFCcPJeUEzMfu8E8CYw/gqKnkKJ2SdvbwsvvgXGLsi3Co0X+X+AUoTy+v4PXgXX+xFDMRa3Bjlr8RfqvbmgqT+rdZ4X9sGD0pRJH0OJR3evmiODaQQnVqE8MtoUC40MhsKz4GTujhJXxUIjg5kKTmTsXKfFQiNDDg/JJBRzBcX14ApRBWL6a6sYxQAAAABJRU5ErkJggg==Virtual MachineGE.PInheritedfalseAnyAnyfalse Microsoft applications running on operating systems from Google or Apple. falseSE.P.TMCore.NonMSCentered on stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAARRJREFUOE99ksFmQ0EUhtOHKCGUUi6hhEieoVy6CiGrkG3IA2TVB+hThVLyDN1eSghdZTX5P84fc5u5d/H558z5z5kzc+/gYVb/ZydS6F0+pdTCCcwHUYsvQQPU8Vb0NjgKirog39vgXWA8iZWYhBKzT76zwUZ47KV4ER/iOWL2yeMrNriECUbiM9Y0IXYOX7FBPsFCcPJeUEzMfu8E8CYw/gqKnkKJ2SdvbwsvvgXGLsi3Co0X+X+AUoTy+v4PXgXX+xFDMRa3Bjlr8RfqvbmgqT+rdZ4X9sGD0pRJH0OJR3evmiODaQQnVqE8MtoUC40MhsKz4GTujhJXxUIjg5kKTmTsXKfFQiNDDg/JJBRzBcX14ApRBWL6a6sYxQAAAABJRU5ErkJggg==Applications Running on a non Microsoft OSGE.PInheritedfalseAnyAnyfalsefalseCodeTypeVirtualStatictypeList A representation of an external Web browser. falseSE.EI.TMCore.BrowserLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAMRJREFUOE9j+P//PwOjqfd/NGwPEkfH2NSBJUomzCmGCTpnVk1rmbdCHl0zLnVgCZggDPPaBzuha8alDquEbkSWD5C+jyYuj8YHq8NnAIqYuFu0K7oY2AAgA90mkjCG7aRinAaAQhkbGx3jNMA1uzoMGD6uUCyHTQ0I4zQAFECgAIZhbGpAeJAYYJFYtAiUTEE4sbG/HiSGzQBs6hi4bYNegBjoOKS8TQ/ZAFzqQJI2QAwLbWTMAcRwA4AYqzpkBWTg/wwA3lTsAWB+hJkAAAAASUVORK5CYII=BrowserGE.EIInheritedfalseAnyAnyfalse A representation of an external authorization provider. falseSE.EI.TMCore.AuthProviderLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAATpJREFUOE9j+P//PwZmNPWuB+L7QPwfit8D8Xwg5kdXi8IBYajC/0YxeXNLJswpBmG/osYOFnPfT0xmPhfQDUHXHA/SDNIE5CsBsSAUS529fseH1cLvM9CghSC1MIxiALuV/xXVoJSdQDZIE4ocELOAXAKyANkVKIpAkuGVHfHIYsh47sZd6iA1vPbBTjAxFAUgSd2ILB9kMWRsnlAojK4GRYGAY9gdLpvApchiyJjTOjAJZEDLvBXyMDEUBW45NU0gBUCM4Q2gmD6zuc9HaBixwMRRFAGxFEgB1BCU6AJG4Qd+h9DbO0+cM0cWhzOQsDbIAJBzYWJAvjxILLSirQzIh9sOwnAGMoa6AAObxhX4o6tF4SBhVxwYI32gcJAxFhfYY1OHIYCECdoOwhgCyJiQ7SCMVZB4/J8BAHcPi99NNItPAAAAAElFTkSuQmCCAuthorization ProviderGE.EIInheritedfalseAnyAnyfalsefalseCodeTypeVirtualStatictypeList A representation of an external Web application (portal, front ed, etc.). falseSE.EI.TMCore.WebAppLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAIBJREFUOE9j+P//PwOjqXc8EP8nEc8H6QUbwGzu8xGLAmKwPswFYAHnzKppJRPmFBPCMPUqgSmeKAa4ZleHAfmChDBMvW5Elg+KASABEJ8QHjVg1AAQxmkAqRhuAKuF32dsCmB5A5scCNuklNqCDfArauzApgAfVg1K2fn//39eAIdsIEry0cBoAAAAAElFTkSuQmCCExternal Web ApplicationGE.EIInheritedfalseAnyAnyfalsefalseCodeTypeVirtualStatictypeList A representation of an external Web service. falseSE.EI.TMCore.WebSvcLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAJ5JREFUOE9j+P//Pxgzmnr/JwejGOCcWTWtZMKcYmIxhgGu2dVhQLYgsRjDAN2ILB8YnxgMNgBEYMH22DSgY5BarAYQ6xKQWjABCjwBx7A7qkEpO8kyAB3T3wDk+Ec2iBiM1QW4DMSW0LC6ADlBIRuALaERDAOLxKJFMBxS3qYHE4dhnAZgE0fC8IQGIlyxYJDzsInDMEgebgAF+D8DAHhvQ2cWCf/0AAAAAElFTkSuQmCCExternal Web ServiceGE.EIInheritedfalseAnyAnyfalsefalseHumanTypeVirtualStatictypeList A representation of a user. falseSE.EI.TMCore.UserLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAQNJREFUOE9j+P//PwZmNPXWB+L7QPwfiveDxLCpxRAAKuRnMvP5gKQZjJnNfS6iqwVhDAFe+2AndM1IGMMVKBwQ1o3I8sGiEYyL+mdLo6tH4YAwl03gUmyaQZjN0r8QXT0KB4SFnSP2YNMMwsoByQ3o6lE4ILzvzEVrVgu/z+iaBRzD7izbcUAbXT0KB4pZlPyTtqMb4JZT0wSSQ1OL1QCG8MqOeHQDgEAKWQ0MYwgAFfMDo3IaugFAHI+uFoThDKACUOqbD8TvoRqwYVDqrAdiebgBQA5IIyipYtOAD4Ms42cAJVE0CaIxi7nvQpALsEoSg/kdQk9RZICgU9gZCg0IOwMAqzT/oq6scnwAAAAASUVORK5CYII=Human UserGE.EIInheritedfalseAnyAnyfalse A large service that has only one instance on the Internet, for example, Outlook.com and Xbox Live. falseSE.EI.TMCore.MegasevriceLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAALBJREFUOE+l0rEJwmAQBeBfBEFwAAcQBHsLwQ1srRwgrUu4gZO4gQNYWQmpbG0d4HwvmHD+eZocFh8JL3eP5CfJzP4iw4g0WG66LKCAlcsarcCZwhnMucEMmjm/UJvDEPLl2hX4vJr3ixO4AIee7+s3a2gVbEENK3v4KNgBX00NKzwL7lQFPGE11EfBgnsWRpQs6DqwXx4sOGVhxJEFY95A5FNKOMBI/t8RMoyQYX+WXnB1v3lL8LpjAAAAAElFTkSuQmCCMegaserviceGE.EIInheritedfalseAnyAnyfalsefalseNot ApplicableAuthenticates ItselfVirtualStaticauthenticatesItselfListfalseCodeTypeVirtualStatictypeList Represents the point where an application calls into an unmanaged runtime library such as the CRT. falseSE.EI.TMCore.CRTLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEwAACxMBAJqcGAAAANBJREFUOE9j+P//P1UwVkFyMJhgNPX+jwW/B2J5dA24MJhAMwCOmc19LgJpfnRN2DCYQDeADGxPFYN0I7J8aG+QgGPYHdWglJ0wvkVi0SJWC7/PyGpgGK9B6W2TM4Fy2iDDAkqau4BsJb+ixg5savEaxGTm8wFI64MMA2IpEBsYix+R1cAwwTASdY1MB8mDMLdt0FRsakAYr0FQ74BdAsJAtjpymCFjQoG9Ekjrg7wI86aEe/R6ZDUwTNBrxGLqGwTErhRiQZhBFGOsgqTj/wwAWDijBcYFCvcAAAAASUVORK5CYII=Windows RuntimeGE.EIInheritedfalseAnyAnyfalsefalseNot ApplicableAuthenticates ItselfVirtualStaticauthenticatesItselfListfalseCodeTypeVirtualStatictypeList Represents the point where an application calls into the .NET Framework. falseSE.EI.TMCore.NFXLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEwAACxMBAJqcGAAAANBJREFUOE9j+P//P1UwVkFyMJhgNPX+jwW/B2J5dA24MJhAMwCOmc19LgJpfnRN2DCYQDeADGxPFYN0I7J8aG+QgGPYHdWglJ0wvkVi0SJWC7/PyGpgGK9B6W2TM4Fy2iDDAkqau4BsJb+ixg5savEaxGTm8wFI64MMA2IpEBsYix+R1cAwwTASdY1MB8mDMLdt0FRsakAYr0FQ74BdAsJAtjpymCFjQoG9Ekjrg7wI86aEe/R6ZDUwTNBrxGLqGwTErhRiQZhBFGOsgqTj/wwAWDijBcYFCvcAAAAASUVORK5CYII=Windows .NET RuntimeGE.EIInheritedfalseAnyAnyfalsefalseNot ApplicableAuthenticates ItselfVirtualStaticauthenticatesItselfListfalseCodeTypeVirtualStatictypeList Represents the point where an application calls into WinRT. falseSE.EI.TMCore.WinRTLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAALEwAACxMBAJqcGAAAANBJREFUOE9j+P//P1UwVkFyMJhgNPX+jwW/B2J5dA24MJhAMwCOmc19LgJpfnRN2DCYQDeADGxPFYN0I7J8aG+QgGPYHdWglJ0wvkVi0SJWC7/PyGpgGK9B6W2TM4Fy2iDDAkqau4BsJb+ixg5savEaxGTm8wFI64MMA2IpEBsYix+R1cAwwTASdY1MB8mDMLdt0FRsakAYr0FQ74BdAsJAtjpymCFjQoG9Ekjrg7wI86aEe/R6ZDUwTNBrxGLqGwTErhRiQZhBFGOsgqTj/wwAWDijBcYFCvcAAAAASUVORK5CYII=Windows RT RuntimeGE.EIInheritedfalseAnyAnyfalse A representation of a Cloud Storage. falseSE.DS.TMCore.CloudStorageLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwwAADsMBx2+oZAAAAXRJREFUOE+NkztLA0EUhVcFg4U2goUgWKxVKnGNqKCBKBYGZBVUkO1iEfHR+0ZSCoKNIGIjwR+ghb2Vv8DeVlDBLiYZ7zfM6OyyPorD5J57zpndvTeeUioVLcOzgeBFoBxQB64uZrJAJGi25oofQbRVnVnfPeWkhndDXNOlaerbEN/cPyxJzxf0cVLDC16tzw1odoyHz9zWXVh+5BQ+Y/sGGZ6ECyxnzbeQe2dXq1JzW86crlkju1g+QCuoUGOuQLSPzr0L0WWFwq0ZoZTfAYfn1QCt6VUQ1o057wr9sLSTFiDgtfImpE6AKpS3TxKi3wI08NDTAUPRJu8eE/wVYPuejKThjiUp+CmgbaT4htezYxGwZXy4XkHNcC5qGOUMBXpD8ZLmmy1rQA6ubPRH+8eM6mup+H10cU24ngxaPHjtI7FtU4JpAV+5Z2C+dGcDjJgRsxto0OJJ/y8YZNnMzsmFJ/mtxWlIJR1MCMYSXAyp5P+hvE94cVhHBmDVoQAAAABJRU5ErkJggg==Cloud StorageGE.DSInheritedfalseAnyAnyfalsefalseSQL Relational DatabaseStore TypeVirtualStaticstoreTypeList A representation of a SQL Database. falseSE.DS.TMCore.SQLLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAASJJREFUOE99kj1Ow0AQhQ2IjsJHSA7Bj4SJZCmpiNLQUSJRIwpQOAItSgvKDXIe6lyAAgkoyPA+s2vtrr2O9Ekz895MdrxbmFmxd3y5FB9iJ6wH6uhL/CE0I9j+yXx3NLnaXtw+vKZQR8eHPx1gGJRMxbkY9UB9ig+/fvEAx694F6wD10FMHb3xdgZwzMOzxafi7DdAx0feGTBe3DwrqcVsAPRR7wBHtEJoSmBYm2dX8AbFlfjydQd51Q7IrOCbw8aUanAF3f230yI4Le8CfXAFH4fgk1Y7/7+pbwXVm+O7R0beNituXi8UfpJIVyhdHTZucNQMfOk6t8LB6fzH52IjomZ0f5+8984tPL683YUNKeh+QI7yabW+T07S/DN1Myv/AMyfAkxuIUzjAAAAAElFTkSuQmCCSQL DatabaseGE.DSInheritedfalseAnyAnyfalsefalseNon Relational DatabaseStore TypeVirtualStaticstoreTypeList A representation of a non-relational database. falseSE.DS.TMCore.NoSQLLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAQtJREFUOE99krFKA0EQhs8EO4t7hOQhokLOQCBWOa6xsxSsQ4qE+Ai2kjYhr5XaF7AQ1MKM88nOsdnb3YMPdv7/37md2ytEpLgYzTfKh3JSJAI6/oa8D5sxpHddn64mD+93z6tdCDo+OfJhAyGgxUwZK4MI6DNy5PU5b+D4VY4K48Cjt0bH/892GnDMy9vmU9fJb4BPjrrTYNg8vWoxVe4z4A+iDRxnI/ihAJq1dXIEC+i6Ur5Md1BXbYPECLbZ3xhSZUfQu/92Xgf+C/zsCLbOkRxB9fb4vm6YV7g3U4QjlE7Pwpeepkbo39Q/VsfAt/vkf+/cwvptv4htNPCtQYryZXtYhiehRheR8g/o7QMp4dB2sAAAAABJRU5ErkJggg==Non Relational DatabaseGE.DSInheritedfalseAnyAnyfalsefalseNTFSExFATFATReFSIFSUDFOtherFile System TypeVirtualDynamicfsTypeListfalseFile SystemStore TypeVirtualStaticstoreTypeList A representation of a file system. falseSE.DS.TMCore.FSLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAASFJREFUOE9j+P//PwOjqfd/InE8SD0yJtUAEEYxBMUAIHDFhZEMQDEE3QC4yegYSTOKISiSMMXYMJJGZKyPIomsASp+GYiLoHwM76gEpnhiNQDIPgfEZ5nMfH6zWfo/ArIfA3EbkjxYvW5Elg9WA/jsQ66B+OxW/m+ZzX1+gthA27ph8jD1WA0A0seAmr5zWge+LZs0L9sqqXgui7nvdyB+CZS7TNAAoIYufofQ20ANXwSdwhoFHMO2Ag38LeoaecYysXgSQQOAWBZo+xMQHxgGf4D0PxBbyT9pBVBOHlk9zjAASizWj8xeAwpEcbfoc0D+ervUskKYPEEDgFgViNWEnSOuAp3dCWSrA7E4VI4oA2DYDIhl0cRwG0AqpoIBWT4AXz0GcRbZcbEAAAAASUVORK5CYII=File SystemGE.DSInheritedfalseAnyAnyfalsefalseRegistryStore TypeVirtualStaticstoreTypeList A representation of a Registry. falseSE.DS.TMCore.RegistryLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAZxJREFUOE+Vkr1LQlEYxm9lSyFlUEuEEEFDxJ3KOxSSUEFqYoVJECoEQYt97eocqHO0VNgm0hC4hBQ0BEUNLUFQTbVV9Afcnudwj5x7uUENv3vPed6Pc877vpppmoKWsbAOaiAotb8gPgjKAbN/bvW0dTzyiXUJdDmd3RDBbYHI1275YAfCSKXeSHLfbswXnM5uaP5ouszTEfSKf8wTiF5wT90twEkzgRNnAmgpEFM1oqXzxXD3VOJJDe6cXHinbgX6QUOxs9DN+vDjBYaR2T6iw2hyo3r98DhLHfusVVShD4RTV1yDDyBuo15nEEyDYeCBgzi1YyL+ZhWYup4plHIo8LeVqKYmsEEHPuXw7HwJe59i62WnrAT2IBXpgCe84N8cLqxj8llEikGQlU6WJhwUOFwsoE2nY4kZvcHFOtZ3QP8lgSvCcau4v4kgvSe0fIsCXf47gcUz/75Q4oYJWHkWUbHb4OzsHVfXNaUlgqH42gkTAB/ngf1X7YQzA7sBvFoFLembWblnIvYYIvsti+nhXt5GngqNMwO7qf0AFBEVY8ZCOLAAAAAASUVORK5CYII=Registry HiveGE.DSInheritedfalseAnyAnyfalsefalseConfigurationStore TypeVirtualStaticstoreTypeList A configuration file, this includes XML, INI, and INF files. falseSE.DS.TMCore.ConfigFileLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAZxJREFUOE+Vkr1LQlEYxm9lSyFlUEuEEEFDxJ3KOxSSUEFqYoVJECoEQYt97eocqHO0VNgm0hC4hBQ0BEUNLUFQTbVV9Afcnudwj5x7uUENv3vPed6Pc877vpppmoKWsbAOaiAotb8gPgjKAbN/bvW0dTzyiXUJdDmd3RDBbYHI1275YAfCSKXeSHLfbswXnM5uaP5ouszTEfSKf8wTiF5wT90twEkzgRNnAmgpEFM1oqXzxXD3VOJJDe6cXHinbgX6QUOxs9DN+vDjBYaR2T6iw2hyo3r98DhLHfusVVShD4RTV1yDDyBuo15nEEyDYeCBgzi1YyL+ZhWYup4plHIo8LeVqKYmsEEHPuXw7HwJe59i62WnrAT2IBXpgCe84N8cLqxj8llEikGQlU6WJhwUOFwsoE2nY4kZvcHFOtZ3QP8lgSvCcau4v4kgvSe0fIsCXf47gcUz/75Q4oYJWHkWUbHb4OzsHVfXNaUlgqH42gkTAB/ngf1X7YQzA7sBvFoFLembWblnIvYYIvsti+nhXt5GngqNMwO7qf0AFBEVY8ZCOLAAAAAASUVORK5CYII=Configuration FileGE.DSInheritedfalseAnyAnyfalsefalseCacheStore TypeVirtualStaticstoreTypeList A representation of a local data cache. falseSE.DS.TMCore.CacheLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAF1JREFUOE9j+P//PxwzmnrPB+L/BPB5IOaH6SFVMxgzmflcANJgQ0jWDMMwQ8jSDMMgQ0Au0AZiVzKxBcgFWE0nFoMNcM6smoaPxoZhcpS7AIu/SMKjYTAMwsD7PwDo1eAuODnTegAAAABJRU5ErkJggg==CacheGE.DSInheritedfalseAnyAnyfalsefalseHTML5 StorageStore TypeVirtualStaticstoreTypeList A representation of HTML5 local storage. falseSE.DS.TMCore.HTML5LSLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAS1JREFUOE9j+P//P0UYqyApGEOA0dSbH4jtQTSaOEhMHlkMhFE4QAX6QPweiP+zWfoXoon/h+J4ZD3ImvORFP03TyhMgcm5ZFVpsVr4fUaSnw/EYBfCnAwSAEuCFHYvXpsOlBSFGQDEHEt37I8QcAy7A1PHZOZzAUjLM0AZYEExt6gLZ6/f8QFq4EXSDDcEiC10I7LWIhnygQHZac6ZVQ1ARSxImjBwRvsUf2Q9DO0LVqWg+a8em0YQBsr5g2yFqQ0oae4CSfCCnI3sPyCej0VzPEweKZykYApYjl++7gIKA5giIM5H0gyPRm7boBcgVwPFweEEtwGIQX43gQUStmgEWXDyyk13oBg8kJENgGF1IHYFYpRoBGJHIDYBYpRAhjPIxVgFScFYBYnH/xkAObxzbhFjTVgAAAAASUVORK5CYII=HTML5 Local StorageGE.DSInheritedfalseAnyAnyfalsefalseNoYesHTTPOnlyVirtualDynamicHTTPOnlyListfalseCookieStore TypeVirtualStaticstoreTypeList A representation of cookie storage. falseSE.DS.TMCore.CookieLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGFJREFUOE9jYDT1/k8JBhvgnFk1rWTCnGJSMdwA1+zqsP///wuSiuEG6EZk+QAF0L1jj0UMQw6nATAxIHbFgkEuIM4AZDEkjN0FQIxhC5oYihyGASA2Eh4NgxEWBuRj7/8An7gYjzKNJXgAAAAASUVORK5CYII=CookiesGE.DSInheritedfalseAnyAnyfalsefalseNoYesGPSVirtualDynamicGPSListfalseNoYesContactsVirtualDynamicContactsListfalseNoYesCalendar EventsVirtualDynamicCalendarListfalseNoYesSMS messagesVirtualDynamicSMSmessagesListfalseNoYesCached CredentialsVirtualDynamicCredsListfalseNoYesEnterprise DataVirtualDynamicEnterpriseListfalseNoYesMessaging Data (Mail, IM, SMS)VirtualDynamice-mailListfalseNoYesSIM StorageVirtualDynamicSIMListfalseNoYesOther DataVirtualDynamicmiscListfalseDeviceStore TypeVirtualStaticstoreTypeList A representation of device local storage. falseSE.DS.TMCore.DeviceLower right of stenciliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAKpJREFUOE9j+P//P0UYzmA09bYH4v9E4noMAzisA7ZgUYgVM5v7fEQxACgoj66ICBwPNwBo+2QsCvBidiv/K2ADgBx+kJPQFRCJ7Rk4rQOTsEgQhblsApcysJj7PsImSSwGeQGrBLEYbIBzZtW0kglziknFcANcs6vDQLRuRJYPOg0MaUF0jKwGbABUoStUAToNT2xIGCwHN4ASDDONbIzuNJIxVkHi8X8GAIAQEkmTSFVLAAAAAElFTkSuQmCCDeviceGE.DSInheritedfalseAnyAnyfalsefalseNoSource AuthenticatedVirtualStaticauthenticatesSourceListfalseNoDestination AuthenticatedVirtualStaticauthenticatesDestinationListfalseNoProvides ConfidentialityVirtualStaticprovidesConfidentialityListfalseNoProvides IntegrityVirtualStaticprovidesIntegrityList A representation of an HTTP data flow. falseSE.DF.TMCore.HTTPBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAADhJREFUOE9jYDT1/k8JHjWAWgaAAIwmBWA1AEQTw4bRcANgAF0hNjYMgPhkuwCGqWMAJXjUAO//APzi2/y5tNUIAAAAAElFTkSuQmCCHTTPGE.DFInheritedfalseAnyAnyfalsefalseYesDestination AuthenticatedVirtualStaticauthenticatesDestinationListfalseYesProvides ConfidentialityVirtualStaticprovidesConfidentialityListfalseYesProvides IntegrityVirtualStaticprovidesIntegrityList A representation of an HTTPS data flow. falseSE.DF.TMCore.HTTPSBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAP9JREFUOE+10s1mQ0EYxvFECCGr3EcI0dBVKeFw6B1kFULpKqvSVSkl5A5yE9lmFbINJWSVVbZZhRBKmf6f8U5NT9pptbL4OWfmvO8zH06pfJG7/zh7wAzX6GCIFT7VpALWqDrnSoHGeLbvXirgMWp8wAKZjSfwdamApyhgbnNvuEQdW82lApZRwBVebX5kc/4oqQDxW7aGNkZo2riPkwDd8tTete1aCCji21h1xYAXNHAP38yzC61WiZqbOOAjYIM9dK67qDDDEarZQf/FErpMv2gI0HZaGBSaw8V9KwRIL2rO8WOzhAAV1635xsYnxV+Jd6CLusWvmyUO+IPcvQN8C4wQAsHzwgAAAABJRU5ErkJggg==HTTPSGE.DFInheritedfalseAnyAnyfalse A representation of an Binary data flow. falseSE.DF.TMCore.BinaryBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAGNJREFUOE9jYDT1/k8JhhnwGYjnAPEHKB8fBqkBqQXpgRswGYhB7BYoHx8GqQGpBelBccFMIH4L5ePDIDUgtSguIBtT3wAgYMCH0dVT3wBSMfUNQHcyOkZXPxwNIBVTaID3fwAn5sGwmvgmbgAAAABJRU5ErkJggg==BinaryGE.DFInheritedfalseAnyAnyfalsefalseYesSource AuthenticatedVirtualStaticauthenticatesSourceListfalseYesDestination AuthenticatedVirtualStaticauthenticatesDestinationListfalseYesProvides ConfidentialityVirtualStaticprovidesConfidentialityListfalseYesProvides IntegrityVirtualStaticprovidesIntegrityList A representation of an IPsec data flow. falseSE.DF.TMCore.IPsecBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAPtJREFUOE+l0kFnA0EYxvGtUErIqdeeeiqlRG6lp5xCv0S+wVKW0lPJKacSSk79BqWUEHIKJZR8j5xKCWH6f9a8a2ynnWUPv8g7mecxO5vMOddK+XE0GP1liCU+MMUlqt9TBRfYwwU0Fyj3pAoeYMFHXOPdz2MkC+5hBTd+rYM1vnCWKujDClY4htbv/FqRKhA7smyg8NbP81iBbvnWf9exv2EFdXms4Ao7TGDhBeY4+Fl0im5YcI4e9IqeYBv1CCfQnlPof6G70WWWWSvI8YlnhGG7uKiwQF5g4Tf8G5awQJv1bhV+9fOvQF39BLqoGRqFpSpoI7rYnMt+APCSd3DankzjAAAAAElFTkSuQmCCIPsecGE.DFInheritedfalseAnyAnyfalse A representation of a named pipe data flow. falseSE.DF.TMCore.NamedPipeBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAKxJREFUOE9jYDT1rgDin0D8HwueD8QgNfxAfBIqhowvgSS/AfFtIJ6JAzsBMS5DwAaAGEuBGMTGh0EGHANisgzApploA7BpLoWKwQ2YBsToGkEYm78zgRgkxwPEM0EMfAZwAvFeIEbXDMPMIAKfASAMMwRdcxQQE2UALrwFiKeBGJQYQDAQ8eHBYcA9EIMSAx6CGJ+B+BUQnyERfwBisBdCgPgwVJAUDEwb3vYAyzfmxSXYv1YAAAAASUVORK5CYII=Named PipeGE.DFInheritedfalseAnyAnyfalse A representation of a SMBv1 or SMBv2 data flow. falseSE.DF.TMCore.SMBBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEhJREFUOE/NzLENACAMA8EwFFNk/3kCpotc2VBg6eTuY8ysGyewF463AbyCAo4WwCso4GgBvIICjhbAKyjgaAG8ggKOjwK+rAUpwkqHruWEswAAAABJRU5ErkJggg==SMBGE.DFInheritedfalseAnyAnyfalse A representation of an RPC or Distributed COM (DCOM) data flow. falseSE.DF.TMCore.RPCBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAG5JREFUOE+VjMENwDAIA5OhOkX3n4eqSK4cakfhEeQ7E0ZE5JvXHe8Dn7rWsnKtZTD79oGa7bJyKttl5cDsbcEerNwnIWpmVk5+4sys3CJrWVk5W4CdB28PuMycQxW7zJxDFWDnwfbAqWst/12MB+3XXGPkZTU+AAAAAElFTkSuQmCCRPC or DCOMGE.DFInheritedfalseAnyAnyfalse A representation of an (Advanced) Local Procedure Call data flow. falseSE.DF.TMCore.ALPCBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEtJREFUOE9j+P//P1bMaOr9Hx2jqwFhDAEYHngDYBiXRhjGKoiMR5IBIIWkYmwGgGh0jFN8OBkA4qBhbGJYxbEagMNQrOIUGuD9HwBIkRfD8QF9EgAAAABJRU5ErkJggg==ALPCGE.DFInheritedfalseAnyAnyfalse User Data Protocol Transport. falseSE.DF.TMCore.UDPBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEtJREFUOE9j+P//P1bMaOr9Hx2jqwFhDAEYHngDYBiXRhjGKoiMR5IBIIWkYmwGgGh0jFN8OBkA4qBhbGJYxbEagMNQrOIUGuD9HwBIkRfD8QF9EgAAAABJRU5ErkJggg==UDPGE.DFInheritedfalseAnyAnyfalse An interface for an application to communicate to a device driver. falseSE.DF.TMCore.IOCTLBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACHDwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAEjHnZZ3VFTXFofPvXd6oc0wAlKG3rvAANJ7k15FYZgZYCgDDjM0sSGiAhFFRJoiSFDEgNFQJFZEsRAUVLAHJAgoMRhFVCxvRtaLrqy89/Ly++Osb+2z97n77L3PWhcAkqcvl5cGSwGQyhPwgzyc6RGRUXTsAIABHmCAKQBMVka6X7B7CBDJy82FniFyAl8EAfB6WLwCcNPQM4BOB/+fpFnpfIHomAARm7M5GSwRF4g4JUuQLrbPipgalyxmGCVmvihBEcuJOWGRDT77LLKjmNmpPLaIxTmns1PZYu4V8bZMIUfEiK+ICzO5nCwR3xKxRoowlSviN+LYVA4zAwAUSWwXcFiJIjYRMYkfEuQi4uUA4EgJX3HcVyzgZAvEl3JJS8/hcxMSBXQdli7d1NqaQffkZKVwBALDACYrmcln013SUtOZvBwAFu/8WTLi2tJFRbY0tba0NDQzMv2qUP91829K3NtFehn4uWcQrf+L7a/80hoAYMyJarPziy2uCoDOLQDI3fti0zgAgKSobx3Xv7oPTTwviQJBuo2xcVZWlhGXwzISF/QP/U+Hv6GvvmckPu6P8tBdOfFMYYqALq4bKy0lTcinZ6QzWRy64Z+H+B8H/nUeBkGceA6fwxNFhImmjMtLELWbx+YKuGk8Opf3n5r4D8P+pMW5FonS+BFQY4yA1HUqQH7tBygKESDR+8Vd/6NvvvgwIH554SqTi3P/7zf9Z8Gl4iWDm/A5ziUohM4S8jMX98TPEqABAUgCKpAHykAd6ABDYAasgC1wBG7AG/iDEBAJVgMWSASpgA+yQB7YBApBMdgJ9oBqUAcaQTNoBcdBJzgFzoNL4Bq4AW6D+2AUTIBnYBa8BgsQBGEhMkSB5CEVSBPSh8wgBmQPuUG+UBAUCcVCCRAPEkJ50GaoGCqDqqF6qBn6HjoJnYeuQIPQXWgMmoZ+h97BCEyCqbASrAUbwwzYCfaBQ+BVcAK8Bs6FC+AdcCXcAB+FO+Dz8DX4NjwKP4PnEIAQERqiihgiDMQF8UeikHiEj6xHipAKpAFpRbqRPuQmMorMIG9RGBQFRUcZomxRnqhQFAu1BrUeVYKqRh1GdaB6UTdRY6hZ1Ec0Ga2I1kfboL3QEegEdBa6EF2BbkK3oy+ib6Mn0K8xGAwNo42xwnhiIjFJmLWYEsw+TBvmHGYQM46Zw2Kx8lh9rB3WH8vECrCF2CrsUexZ7BB2AvsGR8Sp4Mxw7rgoHA+Xj6vAHcGdwQ3hJnELeCm8Jt4G749n43PwpfhGfDf+On4Cv0CQJmgT7AghhCTCJkIloZVwkfCA8JJIJKoRrYmBRC5xI7GSeIx4mThGfEuSIemRXEjRJCFpB+kQ6RzpLuklmUzWIjuSo8gC8g5yM/kC+RH5jQRFwkjCS4ItsUGiRqJDYkjiuSReUlPSSXK1ZK5kheQJyeuSM1J4KS0pFymm1HqpGqmTUiNSc9IUaVNpf+lU6RLpI9JXpKdksDJaMm4ybJkCmYMyF2TGKQhFneJCYVE2UxopFykTVAxVm+pFTaIWU7+jDlBnZWVkl8mGyWbL1sielh2lITQtmhcthVZKO04bpr1borTEaQlnyfYlrUuGlszLLZVzlOPIFcm1yd2WeydPl3eTT5bfJd8p/1ABpaCnEKiQpbBf4aLCzFLqUtulrKVFS48vvacIK+opBimuVTyo2K84p6Ss5KGUrlSldEFpRpmm7KicpFyufEZ5WoWiYq/CVSlXOavylC5Ld6Kn0CvpvfRZVUVVT1Whar3qgOqCmrZaqFq+WpvaQ3WCOkM9Xr1cvUd9VkNFw08jT6NF454mXpOhmai5V7NPc15LWytca6tWp9aUtpy2l3audov2Ax2yjoPOGp0GnVu6GF2GbrLuPt0berCehV6iXo3edX1Y31Kfq79Pf9AAbWBtwDNoMBgxJBk6GWYathiOGdGMfI3yjTqNnhtrGEcZ7zLuM/5oYmGSYtJoct9UxtTbNN+02/R3Mz0zllmN2S1zsrm7+QbzLvMXy/SXcZbtX3bHgmLhZ7HVosfig6WVJd+y1XLaSsMq1qrWaoRBZQQwShiXrdHWztYbrE9Zv7WxtBHYHLf5zdbQNtn2iO3Ucu3lnOWNy8ft1OyYdvV2o/Z0+1j7A/ajDqoOTIcGh8eO6o5sxybHSSddpySno07PnU2c+c7tzvMuNi7rXM65Iq4erkWuA24ybqFu1W6P3NXcE9xb3Gc9LDzWepzzRHv6eO7yHPFS8mJ5NXvNelt5r/Pu9SH5BPtU+zz21fPl+3b7wX7efrv9HqzQXMFb0ekP/L38d/s/DNAOWBPwYyAmMCCwJvBJkGlQXlBfMCU4JvhI8OsQ55DSkPuhOqHC0J4wybDosOaw+XDX8LLw0QjjiHUR1yIVIrmRXVHYqLCopqi5lW4r96yciLaILoweXqW9KnvVldUKq1NWn46RjGHGnIhFx4bHHol9z/RnNjDn4rziauNmWS6svaxnbEd2OXuaY8cp40zG28WXxU8l2CXsTphOdEisSJzhunCruS+SPJPqkuaT/ZMPJX9KCU9pS8Wlxqae5Mnwknm9acpp2WmD6frphemja2zW7Fkzy/fhN2VAGasyugRU0c9Uv1BHuEU4lmmfWZP5Jiss60S2dDYvuz9HL2d7zmSue+63a1FrWWt78lTzNuWNrXNaV78eWh+3vmeD+oaCDRMbPTYe3kTYlLzpp3yT/LL8V5vDN3cXKBVsLBjf4rGlpVCikF84stV2a9021DbutoHt5turtn8sYhddLTYprih+X8IqufqN6TeV33zaEb9joNSydP9OzE7ezuFdDrsOl0mX5ZaN7/bb3VFOLy8qf7UnZs+VimUVdXsJe4V7Ryt9K7uqNKp2Vr2vTqy+XeNc01arWLu9dn4fe9/Qfsf9rXVKdcV17w5wD9yp96jvaNBqqDiIOZh58EljWGPft4xvm5sUmoqbPhziHRo9HHS4t9mqufmI4pHSFrhF2DJ9NProje9cv+tqNWytb6O1FR8Dx4THnn4f+/3wcZ/jPScYJ1p/0Pyhtp3SXtQBdeR0zHYmdo52RXYNnvQ+2dNt293+o9GPh06pnqo5LXu69AzhTMGZT2dzz86dSz83cz7h/HhPTM/9CxEXbvUG9g5c9Ll4+ZL7pQt9Tn1nL9tdPnXF5srJq4yrndcsr3X0W/S3/2TxU/uA5UDHdavrXTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxSfNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAEtJREFUOE9j+P//P1bMaOr9Hx2jqwFhDAEYHngDYBiXRhjGKoiMR5IBIIWkYmwGgGh0jFN8OBkA4qBhbGJYxbEagMNQrOIUGuD9HwBIkRfD8QF9EgAAAABJRU5ErkJggg==IOCTL InterfaceGE.DFInheritedfalseAnyAnyfalse An arc representation of an Internet trust boundary. falseSE.TB.L.TMCore.InternetBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAABX0lEQVQ4T2NgNPXGh/mhGJscGCNzQArtgVgfxmcy87kAwlA5ZLVwDGOAFQPp/1Dcj8zHZwiY4LUPdgLSMM0YmM8+5JaAY5gRkI3dAJuUUlsgjVUzCM/ZuDPg////vEA2dgNAkqpBKTuBbKwGRNV0iQNpmCZQGMG9AxPk57IJvA6ksRrAYu67EEjLA7E+s7nPReQwAWtGC0CiMMwQkPNZ5H0TtqArIIRBAWueUCgM9gLQEG1QGHDbBr1YuftQDJDvapFYtAhdEwwDY+TO8cvXXUCWw8IAbMjCrXtDgDQHlK8E04CO1YPTVoA0A9nwQIQZAtYMxaBAw2oAFINSLaoBSFgfGEgPgDQ2jWAs5hZVCaSxGwB0Ca+iX9I2IBusGORn3YistTA+q4Xf59KJcy1BarEaAMJAQ8ABixRg6omN/fWgwF26Y38EzLsghfiwNhBbADELlC8KxEpAzAHh/2cAANCSU7ngF2KpAAAAAElFTkSuQmCCInternet BoundaryGE.TB.LInheritedfalseAnyAnyfalse An arc representation of a machine trust boundary. falseSE.TB.L.TMCore.MachineBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAABX0lEQVQ4T2NgNPXGh/mhGJscGCNzQArtgVgfxmcy87kAwlA5ZLVwDGOAFQPp/1Dcj8zHZwiY4LUPdgLSMM0YmM8+5JaAY5gRkI3dAJuUUlsgjVUzCM/ZuDPg////vEA2dgNAkqpBKTuBbKwGRNV0iQNpmCZQGMG9AxPk57IJvA6ksRrAYu67EEjLA7E+s7nPReQwAWtGC0CiMMwQkPNZ5H0TtqArIIRBAWueUCgM9gLQEG1QGHDbBr1YuftQDJDvapFYtAhdEwwDY+TO8cvXXUCWw8IAbMjCrXtDgDQHlK8E04CO1YPTVoA0A9nwQIQZAtYMxaBAw2oAFINSLaoBSFgfGEgPgDQ2jWAs5hZVCaSxGwB0Ca+iX9I2IBusGORn3YistTA+q4Xf59KJcy1BarEaAMJAQ8ABixRg6omN/fWgwF26Y38EzLsghfiwNhBbADELlC8KxEpAzAHh/2cAANCSU7ngF2KpAAAAAElFTkSuQmCCMachine Trust BoundaryGE.TB.LInheritedfalseAnyAnyfalse A border representation of user-model / kernel-mode separation. falseSE.TB.L.TMCore.KernelBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAABX0lEQVQ4T2NgNPXGh/mhGJscGCNzQArtgVgfxmcy87kAwlA5ZLVwDGOAFQPp/1Dcj8zHZwiY4LUPdgLSMM0YmM8+5JaAY5gRkI3dAJuUUlsgjVUzCM/ZuDPg////vEA2dgNAkqpBKTuBbKwGRNV0iQNpmCZQGMG9AxPk57IJvA6ksRrAYu67EEjLA7E+s7nPReQwAWtGC0CiMMwQkPNZ5H0TtqArIIRBAWueUCgM9gLQEG1QGHDbBr1YuftQDJDvapFYtAhdEwwDY+TO8cvXXUCWw8IAbMjCrXtDgDQHlK8E04CO1YPTVoA0A9nwQIQZAtYMxaBAw2oAFINSLaoBSFgfGEgPgDQ2jWAs5hZVCaSxGwB0Ca+iX9I2IBusGORn3YistTA+q4Xf59KJcy1BarEaAMJAQ8ABixRg6omN/fWgwF26Y38EzLsghfiwNhBbADELlC8KxEpAzAHh/2cAANCSU7ngF2KpAAAAAElFTkSuQmCCUser mode or Kernel mode BoundaryGE.TB.LInheritedfalseAnyAnyfalse A border representation for a Window Store AppContainer boundary. falseSE.TB.L.TMCore.AppContainerBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAABX0lEQVQ4T2NgNPXGh/mhGJscGCNzQArtgVgfxmcy87kAwlA5ZLVwDGOAFQPp/1Dcj8zHZwiY4LUPdgLSMM0YmM8+5JaAY5gRkI3dAJuUUlsgjVUzCM/ZuDPg////vEA2dgNAkqpBKTuBbKwGRNV0iQNpmCZQGMG9AxPk57IJvA6ksRrAYu67EEjLA7E+s7nPReQwAWtGC0CiMMwQkPNZ5H0TtqArIIRBAWueUCgM9gLQEG1QGHDbBr1YuftQDJDvapFYtAhdEwwDY+TO8cvXXUCWw8IAbMjCrXtDgDQHlK8E04CO1YPTVoA0A9nwQIQZAtYMxaBAw2oAFINSLaoBSFgfGEgPgDQ2jWAs5hZVCaSxGwB0Ca+iX9I2IBusGORn3YistTA+q4Xf59KJcy1BarEaAMJAQ8ABixRg6omN/fWgwF26Y38EzLsghfiwNhBbADELlC8KxEpAzAHh/2cAANCSU7ngF2KpAAAAAElFTkSuQmCCAppContainer BoundaryGE.TB.LInheritedfalseAnyAnyfalse A border representation of a corporate network trust boundary. falseSE.TB.B.TMCore.CorpNetBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAABGSURBVDhPY/hPIWBQ9Ev6z2jqDccPnr0ESxArzoDMAeEDZy+DFRIrDjeAVDCcDIDyyQajgTioAhGEQekdHx+bGIUGeP8HAJ4fIfJijo6MAAAAAElFTkSuQmCCCorpNet Trust BoundaryGE.TB.BBorderBoundaryfalseAnyAnyfalse A border representation of a sandbox trust boundary. falseSE.TB.B.TMCore.SandboxBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAABGSURBVDhPY/hPIWBQ9Ev6z2jqDccPnr0ESxArzoDMAeEDZy+DFRIrDjeAVDCcDIDyyQajgTioAhGEQekdHx+bGIUGeP8HAJ4fIfJijo6MAAAAAElFTkSuQmCCSandbox Trust Boundary BorderGE.TB.BBorderBoundaryfalseAnyAnyfalsefalseNoYesLow Integrity Level SandboxVirtualDynamicIntegrityLevelListfalseNoYesApp Container SandboxVirtualDynamicAppContainerListfalseNoYesJavaScript SandboxVirtualDynamicJavaScriptListfalseNoYesFlash SandboxVirtualDynamicFlashList Describes the types of trust boundaries implemented by Internet Explorer. falseSE.TB.B.TMCore.IEBBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAABGSURBVDhPY/hPIWBQ9Ev6z2jqDccPnr0ESxArzoDMAeEDZy+DFRIrDjeAVDCcDIDyyQajgTioAhGEQekdHx+bGIUGeP8HAJ4fIfJijo6MAAAAAElFTkSuQmCCInternet Explorer BoundariesGE.TB.BBorderBoundaryfalseAnyAnyfalsefalseNoYesChrome JavaScript SandboxVirtualDynamicChromeJavaListfalseNoYesChrome SandboxVirtualDynamicChromeListfalseNoYesFirefox JavaScript SandboxVirtualDynamicFirefoxJavaList Describes the types of trust boundaries implemented by Google Chrome and Firefox. falseSE.TB.B.TMCore.NonIEBBefore labeliVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOxAAADsQBlSsOGwAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAABGSURBVDhPY/hPIWBQ9Ev6z2jqDccPnr0ESxArzoDMAeEDZy+DFRIrDjeAVDCcDIDyyQajgTioAhGEQekdHx+bGIUGeP8HAJ4fIfJijo6MAAAAAElFTkSuQmCCOther Browsers BoundariesGE.TB.BBorderBoundaryfalseAnyAnyfalseSSpoofingSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.falseTTamperingTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.falseRRepudiationRepudiation threats involve an adversary denying that something happened.falseIInformation DisclosureInformation disclosure happens when the information can be read by an unauthorized party.falseDDenial Of ServiceDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.falseEElevation Of PrivilegeA user subject gains increased capability or privilege by taking advantage of an implementation bug.falseAAbuseAbuse is when a legitimate user violates the terms of use for the system without violating a system security policy.truetrueTitlefalseac0f9ea8-3b39-4ce9-bac2-6787124d7b480UserThreatCategoryfalse0UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.Tampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.Repudiation threats involve an adversary denying that something happened.Information disclosure happens when the information can be read by an unauthorized party.Denial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.A user subject gains increased capability or privilege by taking advantage of an implementation bug.Abuse is when a legitimate user violates the terms of use for the system without violating a system security policy.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalsecf377f97-9dea-42d6-ae63-b097c4a8ec4d0StateInformationfalse0406a684-e06e-4643-ba21-0f63104d91310InteractionStringfalsed64f8926-f09d-4d67-a86f-fb4ad50364510PriorityfalseHighMediumLowbc9c6e2a-15d0-4863-9cac-589e51e4ca1e1falseSThreat was migrated from V3.source is 'ROOT'SUUserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing (v3)falseS{source.Name} may be spoofed by an attacker and this may lead to unauthorized access to {target.Name}. Consider using a standard authentication mechanism to identify the source process.flow.authenticatesSource is 'Yes' or source.implementsAuthenticationScheme is 'Yes'source is 'GE.P' and (target is 'GE.P' or target is 'GE.DS') and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')S1UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{source.Name} may be spoofed by an attacker and this may lead to unauthorized access to {target.Name}. Consider using a standard authentication mechanism to identify the source process.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing the {source.Name} ProcessfalseS{target.Name} may be spoofed by an attacker and this may lead to information disclosure by {source.Name}. Consider using a standard authentication mechanism to identify the destination process.flow.authenticatesDestination is 'Yes'(source is 'GE.P' or source is 'GE.EI' or source is 'GE.DS') and target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')S2UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} may be spoofed by an attacker and this may lead to information disclosure by {source.Name}. Consider using a standard authentication mechanism to identify the destination process.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing the {target.Name} ProcessfalseS{source.Name} may be spoofed by an attacker and this may lead to unauthorized access to {target.Name}. Consider using a standard authentication mechanism to identify the external entity.source.authenticatesItself is 'Yes' or flow.authenticatesSource is 'Yes'source is 'GE.EI' and target is 'GE.P'S3UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{source.Name} may be spoofed by an attacker and this may lead to unauthorized access to {target.Name}. Consider using a standard authentication mechanism to identify the external entity.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing the {source.Name} External EntityfalseS{source.Name} may be spoofed by an attacker and this may lead to incorrect data delivered to {target.Name}. Consider using a standard authentication mechanism to identify the source data store.source is 'GE.DS'S7UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{source.Name} may be spoofed by an attacker and this may lead to incorrect data delivered to {target.Name}. Consider using a standard authentication mechanism to identify the source data store.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing of Source Data Store {source.Name}falseS{target.Name} may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of {target.Name}. Consider using a standard authentication mechanism to identify the destination data store.target is 'GE.DS'S7.1UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} may be spoofed by an attacker and this may lead to data being written to the attacker's target instead of {target.Name}. Consider using a standard authentication mechanism to identify the destination data store.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing of Destination Data Store {target.Name}falseS{target.Name} may be spoofed by an attacker and this may lead to data being sent to the attacker's target instead of {target.Name}. Consider using a standard authentication mechanism to identify the external entity.source is 'GE.P' and target is 'GE.EI' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')S8UserThreatShortDescriptiontrueSpoofing is when a process or entity is something other than its claimed identity. Examples include substituting a process, a file, website or a network address.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} may be spoofed by an attacker and this may lead to data being sent to the attacker's target instead of {target.Name}. Consider using a standard authentication mechanism to identify the external entity.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Spoofing of the {target.Name} External Destination EntityfalseTThreat was migrated from V3.source is 'ROOT'TUUserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Tampering (v3)falseTData flowing across {flow.Name} may be tampered with by an attacker. This may lead to a denial of service attack against {target.Name} or an elevation of privilege attack against {target.Name} or an information disclosure by {target.Name}. Failure to verify that input is as expected is a root cause of a very large number of exploitable issues. Consider all paths and the way they handle data. Verify that all input is verified for correctness using an approved list input validation approach.(flow.providesConfidentiality is 'Yes' and flow.providesIntegrity is 'Yes')(source is 'GE.P' or source is 'GE.EI') and target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')T1UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseData flowing across {flow.Name} may be tampered with by an attacker. This may lead to a denial of service attack against {target.Name} or an elevation of privilege attack against {target.Name} or an information disclosure by {target.Name}. Failure to verify that input is as expected is a root cause of a very large number of exploitable issues. Consider all paths and the way they handle data. Verify that all input is verified for correctness using an approved list input validation approach.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential Lack of Input Validation for {target.Name}falseTIf {source.Name} is given access to memory, such as shared memory or pointers, or is given the ability to control what {target.Name} executes (for example, passing back a function pointer.), then {source.Name} can tamper with {target.Name}. Consider if the function could work with less access to memory, such as passing data rather than pointers. Copy in data provided, and then validate it.source is 'GE.P' and target is 'GE.P' and target.codeType is 'Unmanaged'T2UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseIf {source.Name} is given access to memory, such as shared memory or pointers, or is given the ability to control what {target.Name} executes (for example, passing back a function pointer.), then {source.Name} can tamper with {target.Name}. Consider if the function could work with less access to memory, such as passing data rather than pointers. Copy in data provided, and then validate it.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1{source.Name} Process Memory TamperedfalseTPackets or messages without sequence numbers or timestamps can be captured and replayed in a wide variety of ways. Implement or utilize an existing communication protocol that supports anti-replay techniques (investigate sequence numbers before timers) and strong integrity.source is 'GE.P' and target is 'GE.P' and source.implementsCommunicationProtocol is 'Yes'T3UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalsePackets or messages without sequence numbers or timestamps can be captured and replayed in a wide variety of ways. Implement or utilize an existing communication protocol that supports anti-replay techniques (investigate sequence numbers before timers) and strong integrity.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Replay AttacksfalseTAttackers who can send a series of packets or messages may be able to overlap data. For example, packet 1 may be 100 bytes starting at offset 0. Packet 2 may be 100 bytes starting at offset 25. Packet 2 will overwrite 75 bytes of packet 1. Ensure you reassemble data before filtering it, and ensure you explicitly handle these sorts of cases.source is 'GE.P' and target is 'GE.P' and source.implementsCommunicationProtocol is 'Yes'T4UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseAttackers who can send a series of packets or messages may be able to overlap data. For example, packet 1 may be 100 bytes starting at offset 0. Packet 2 may be 100 bytes starting at offset 25. Packet 2 will overwrite 75 bytes of packet 1. Ensure you reassemble data before filtering it, and ensure you explicitly handle these sorts of cases.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Collision AttacksfalseTLog readers can come under attack via log files. Consider ways to canonicalize data in all logs. Implement a single reader for the logs, if possible, in order to reduce attack surface area. Be sure to understand and document log file elements which come from untrusted sources.(source is 'GE.P' and target is 'GE.DS' and target.storesLogData is 'Yes') or (target is 'GE.P' and source is 'GE.DS' and source.storesLogData is 'Yes')T5UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseLog readers can come under attack via log files. Consider ways to canonicalize data in all logs. Implement a single reader for the logs, if possible, in order to reduce attack surface area. Be sure to understand and document log file elements which come from untrusted sources.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Risks from LoggingfalseTAn attacker can read or modify data transmitted over an authenticated dataflow.(flow.providesConfidentiality is 'Yes' and flow.providesIntegrity is 'Yes')(flow.authenticatesSource is 'Yes' or flow.authenticatesDestination is 'Yes')T6UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseAn attacker can read or modify data transmitted over an authenticated dataflow.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Authenticated Data Flow CompromisedfalseTSQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. Any procedure that constructs SQL statements should be reviewed for injection vulnerabilities because SQL Server will execute all syntactically valid queries that it receives. Even parameterized data can be manipulated by a skilled and determined attacker. (target is 'SE.DS.TMCore.SQL' and source is 'GE.P') T7UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseSQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. Any procedure that constructs SQL statements should be reviewed for injection vulnerabilities because SQL Server will execute all syntactically valid queries that it receives. Even parameterized data can be manipulated by a skilled and determined attacker.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential SQL Injection Vulnerability for {target.Name}falseTSQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. Any procedure that constructs SQL statements should be reviewed for injection vulnerabilities because SQL Server will execute all syntactically valid queries that it receives. Even parameterized data can be manipulated by a skilled and determined attacker. (target is 'SE.DS.TMCore.SQL' and source is 'GE.EI') T8UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseSQL injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. Any procedure that constructs SQL statements should be reviewed for injection vulnerabilities because SQL Server will execute all syntactically valid queries that it receives. Even parameterized data can be manipulated by a skilled and determined attacker.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Possible SQL Injection Vulnerability for {target.Name}falseTIf a dataflow contains XML, XML processing threats (DTD and XSLT code execution) may be exploited.(flow.XMLenc is 'Yes' and target is 'GE.P')T11UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseIf a dataflow contains XML, XML processing threats (DTD and XSLT code execution) may be exploited.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1XML DTD and XSLT ProcessingfalseTIf a dataflow contains JSON, JSON processing and hijacking threats may be exploited.((flow is 'SE.DF.TMCore.HTTP' or flow is 'SE.DF.TMCore.HTTPS') and flow.JSON is 'Yes' and target is 'GE.P')T12UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseIf a dataflow contains JSON, JSON processing and hijacking threats may be exploited.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1JavaScript Object Notation ProcessingfalseTThe web server '{target.Name}' could be a subject to a cross-site scripting attack because it does not sanitize untrusted input.(target.hasOutputSanitizers is 'Yes') and (target.hasInputSanitizers is 'Yes')(target is 'SE.P.TMCore.WebServer' or target is 'SE.P.TMCore.WebApp')T13.1UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThe web server '{target.Name}' could be a subject to a cross-site scripting attack because it does not sanitize untrusted input.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Cross Site ScriptingfalseTThe web server '{target.Name}' could be a subject to a persistent cross-site scripting attack because it does not sanitize data store '{source.Name}' inputs and output.(target.hasOutputSanitizers is 'Yes') and (target.hasInputSanitizers is 'Yes')(target is 'SE.P.TMCore.WebServer' or target is 'SE.P.TMCore.WebApp') and source is 'GE.DS'T13.2UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThe web server '{target.Name}' could be a subject to a persistent cross-site scripting attack because it does not sanitize data store '{source.Name}' inputs and output.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Persistent Cross Site ScriptingfalseTData flowing across {flow.Name} may be tampered with by an attacker. This may lead to corruption of {target.Name}. Ensure the integrity of the data flow to the data store.(source is 'GE.P' or source is 'GE.EI') and target is 'GE.DS' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')T18UserThreatShortDescriptiontrueTampering is the act of altering the bits. Tampering with a process involves changing bits in the running process. Similarly, Tampering with a data flow involves changing bits on the wire or between two running processes.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseData flowing across {flow.Name} may be tampered with by an attacker. This may lead to corruption of {target.Name}. Ensure the integrity of the data flow to the data store.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1The {target.Name} Data Store Could Be CorruptedfalseRThreat was migrated from V3.source is 'ROOT'RUUserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Repudiation (v3)falseRIf you have trust levels, is anyone other outside of the highest trust level allowed to log? Letting everyone write to your logs can lead to repudiation problems. Only allow trusted code to log.(source is 'GE.P' or source is 'GE.EI') and (target is 'GE.DS') and (target.storesLogData is 'Yes')R1UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseIf you have trust levels, is anyone other outside of the highest trust level allowed to log? Letting everyone write to your logs can lead to repudiation problems. Only allow trusted code to log.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Lower Trusted Subject Updates LogsfalseRDo you accept logs from unknown or weakly authenticated users or systems? Identify and authenticate the source of the logs before accepting them.(source is 'GE.P' or source is 'GE.EI') and (target is 'GE.DS') and (target.storesLogData is 'Yes')R2UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseDo you accept logs from unknown or weakly authenticated users or systems? Identify and authenticate the source of the logs before accepting them.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Data Logs from an Unknown SourcefalseRDoes the log capture enough data to understand what happened in the past? Do your logs capture enough data to understand an incident after the fact? Is such capture lightweight enough to be left on all the time? Do you have enough data to deal with repudiation claims? Make sure you log sufficient and appropriate data to handle a repudiation claims. You might want to talk to an audit expert as well as a privacy expert about your choice of data.source is 'GE.P' and target is 'GE.DS' and target.storesLogData is 'Yes'R3UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseDoes the log capture enough data to understand what happened in the past? Do your logs capture enough data to understand an incident after the fact? Is such capture lightweight enough to be left on all the time? Do you have enough data to deal with repudiation claims? Make sure you log sufficient and appropriate data to handle a repudiation claims. You might want to talk to an audit expert as well as a privacy expert about your choice of data.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Insufficient AuditingfalseRConsider what happens when the audit mechanism comes under attack, including attempts to destroy the logs, or attack log analysis programs. Ensure access to the log is through a reference monitor, which controls read and write separately. Document what filters, if any, readers can rely on, or writers should expectsource is 'GE.P' and target is 'GE.DS' and target.storesLogData is 'Yes'R4UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseConsider what happens when the audit mechanism comes under attack, including attempts to destroy the logs, or attack log analysis programs. Ensure access to the log is through a reference monitor, which controls read and write separately. Document what filters, if any, readers can rely on, or writers should expectcf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential Weak Protections for Audit DatafalseR{target.Name} claims that it did not receive data from a source outside the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')R6UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} claims that it did not receive data from a source outside the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential Data Repudiation by {target.Name}falseR{target.Name} claims that it did not receive data from a process on the other side of the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.target is 'GE.EI' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')R7UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} claims that it did not receive data from a process on the other side of the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1External Entity {target.Name} Potentially Denies Receiving DatafalseR{target.Name} claims that it did not write data received from an entity on the other side of the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.target is 'GE.DS' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')R8UserThreatShortDescriptiontrueRepudiation threats involve an adversary denying that something happened.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} claims that it did not write data received from an entity on the other side of the trust boundary. Consider using logging or auditing to record the source, time, and summary of the received data.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Data Store Denies {target.Name} Potentially Writing DatafalseIThreat was migrated from V3.source is 'ROOT'IUUserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Information Disclosure (v3)falseICan you access {target.Name} and bypass the permissions for the object? For example by editing the files directly with a hex editor, or reaching it via filesharing? Ensure that your program is the only one that can access the data, and that all other subjects have to use your interface.source is 'GE.P' and target is 'GE.DS' and source.implementsCustomAuthorizationMechanism is 'Yes'I2UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCan you access {target.Name} and bypass the permissions for the object? For example by editing the files directly with a hex editor, or reaching it via filesharing? Ensure that your program is the only one that can access the data, and that all other subjects have to use your interface.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Authorization BypassfalseIData flowing across {flow.Name} may be sniffed by an attacker. Depending on what type of data an attacker can read, it may be used to attack other parts of the system or simply be a disclosure of information leading to compliance violations. Consider encrypting the data flow.flow.providesConfidentiality is 'Yes'((source is 'GE.P' or source is 'GE.EI') and target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')) or (source is 'GE.P' and target is 'GE.DS' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B'))I6UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseData flowing across {flow.Name} may be sniffed by an attacker. Depending on what type of data an attacker can read, it may be used to attack other parts of the system or simply be a disclosure of information leading to compliance violations. Consider encrypting the data flow.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Data Flow SniffingfalseIImproper data protection of {source.name} can allow an attacker to read information not intended for disclosure. Review authorization settings.source is 'GE.DS' and (target is 'GE.P' or target is 'GE.EI')I23UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseImproper data protection of {source.name} can allow an attacker to read information not intended for disclosure. Review authorization settings.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Weak Access Control for a ResourcefalseICredentials held at the server are often disclosed or tampered with and credentials stored on the client are often stolen. For server side, consider storing a salted hash of the credentials instead of storing the credentials themselves. If this is not possible due to business requirements, be sure to encrypt the credentials before storage, using an SDL-approved mechanism. For client side, if storing credentials is required, encrypt them and protect the data store in which they're storedsource is 'GE.P' and target is 'GE.DS' and target.storesCredentials is 'Yes'I24UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCredentials held at the server are often disclosed or tampered with and credentials stored on the client are often stolen. For server side, consider storing a salted hash of the credentials instead of storing the credentials themselves. If this is not possible due to business requirements, be sure to encrypt the credentials before storage, using an SDL-approved mechanism. For client side, if storing credentials is required, encrypt them and protect the data store in which they're storedcf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Weak Credential StoragefalseICredentials on the wire are often subject to sniffing by an attacker. Are the credentials re-usable/re-playable? Are credentials included in a message? For example, sending a zip file with the password in the email. Use strong cryptography for the transmission of credentials. Use the OS libraries if at all possible, and consider cryptographic algorithm agility, rather than hardcoding a choice.flow is 'SE.DF.TMCore.HTTPS' or flow is 'SE.DF.TMCore.IPsec'source is 'GE.P' and (target is 'GE.P' or target is 'GE.DS') and (flow crosses 'SE.TB.L.TMCore.Machine')I25UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCredentials on the wire are often subject to sniffing by an attacker. Are the credentials re-usable/re-playable? Are credentials included in a message? For example, sending a zip file with the password in the email. Use strong cryptography for the transmission of credentials. Use the OS libraries if at all possible, and consider cryptographic algorithm agility, rather than hardcoding a choice.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Weak Credential TransitfalseICustom authentication schemes are susceptible to common weaknesses such as weak credential change management, credential equivalence, easily guessable credentials, null credentials, downgrade authentication or a weak credential change management system. Consider the impact and potential mitigations for your custom authentication scheme.source is 'GE.P' and target is 'GE.P' and source.implementsAuthenticationScheme is 'Yes'I26UserThreatShortDescriptiontrueInformation disclosure happens when the information can be read by an unauthorized party.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCustom authentication schemes are susceptible to common weaknesses such as weak credential change management, credential equivalence, easily guessable credentials, null credentials, downgrade authentication or a weak credential change management system. Consider the impact and potential mitigations for your custom authentication scheme.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Weak Authentication SchemefalseDThreat was migrated from V3.source is 'ROOT'DUUserThreatShortDescriptiontrueDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Denial Of Service (v3)falseDDoes {source.Name} or {target.Name} take explicit steps to control resource consumption? Resource consumption attacks can be hard to deal with, and there are times that it makes sense to let the OS do the job. Be careful that your resource requests don't deadlock, and that they do timeout.source is 'GE.P' and target is 'GE.DS'D2UserThreatShortDescriptiontrueDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseDoes {source.Name} or {target.Name} take explicit steps to control resource consumption? Resource consumption attacks can be hard to deal with, and there are times that it makes sense to let the OS do the job. Be careful that your resource requests don't deadlock, and that they do timeout.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential Excessive Resource Consumption for {source.Name} or {target.Name}falseD{target.Name} crashes, halts, stops or runs slowly; in all cases violating an availability metric.target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')D3UserThreatShortDescriptiontrueDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} crashes, halts, stops or runs slowly; in all cases violating an availability metric.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Potential Process Crash or Stop for {target.Name}falseDAn external agent interrupts data flowing across a trust boundary in either direction.(flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')D4UserThreatShortDescriptiontrueDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseAn external agent interrupts data flowing across a trust boundary in either direction.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Data Flow {flow.Name} Is Potentially InterruptedfalseDAn external agent prevents access to a data store on the other side of the trust boundary.(source is 'GE.DS' or target is 'GE.DS') and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')D5UserThreatShortDescriptiontrueDenial of Service happens when the process or a datastore is not able to service incoming requests or perform up to spec.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseAn external agent prevents access to a data store on the other side of the trust boundary.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Data Store InaccessiblefalseEThreat was migrated from V3.source is 'ROOT'EUUserThreatShortDescriptiontrueA user subject gains increased capability or privilege by taking advantage of an implementation bug.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseThreat was migrated from V3.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Elevation Of Privilege (v3)falseECommon SSO implementations such as OAUTH2 and OAUTH Wrap are vulnerable to MitM attacks.(target is 'SE.EI.TMCore.AuthProvider' and target.MS is 'Yes')target is 'SE.EI.TMCore.AuthProvider'E3UserThreatShortDescriptiontrueA user subject gains increased capability or privilege by taking advantage of an implementation bug.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCommon SSO implementations such as OAUTH2 and OAUTH Wrap are vulnerable to MitM attacks.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Weakness in SSO AuthorizationfalseE{target.Name} may be able to impersonate the context of {source.Name} in order to gain additional privilege.(source is 'GE.EI' or source is 'GE.P') and target is 'GE.P'E5UserThreatShortDescriptiontrueA user subject gains increased capability or privilege by taking advantage of an implementation bug.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{target.Name} may be able to impersonate the context of {source.Name} in order to gain additional privilege.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Elevation Using ImpersonationfalseE{source.Name} may be able to remotely execute code for {target.Name}.target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')E6UserThreatShortDescriptiontrueA user subject gains increased capability or privilege by taking advantage of an implementation bug.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalse{source.Name} may be able to remotely execute code for {target.Name}.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1{target.Name} May be Subject to Elevation of Privilege Using Remote Code ExecutionfalseEAn attacker may pass data into {target.Name} in order to change the flow of program execution within {target.Name} to the attacker's choosing.target is 'GE.P' and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')E7UserThreatShortDescriptiontrueA user subject gains increased capability or privilege by taking advantage of an implementation bug.5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseAn attacker may pass data into {target.Name} in order to change the flow of program execution within {target.Name} to the attacker's choosing.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Elevation by Changing the Execution Flow in {target.Name}falseECross-site request forgery (CSRF or XSRF) is a type of attack in which an attacker forces a user's browser to make a forged request to a vulnerable site by exploiting an existing trust relationship between the browser and the vulnerable web site. In a simple scenario, a user is logged in to web site A using a cookie as a credential. The other browses to web site B. Web site B returns a page with a hidden form that posts to web site A. Since the browser will carry the user's cookie to web site A, web site B now can take any action on web site A, for example, adding an admin to an account. The attack can be used to exploit any requests that the browser automatically authenticates, e.g. by session cookie, integrated authentication, IP whitelisting. The attack can be carried out in many ways such as by luring the victim to a site under control of the attacker, getting the user to click a link in a phishing email, or hacking a reputable web site that the victim will visit. The issue can only be resolved on the server side by requiring that all authenticated state-changing requests include an additional piece of secret payload (canary or CSRF token) which is known only to the legitimate web site and the browser and which is protected in transit through SSL/TLS. See the Forgery Protection property on the flow stencil for a list of mitigations.(source is 'SE.P.TMCore.OSProcess' or source is 'SE.P.TMCore.Thread' or source is 'SE.P.TMCore.KernelThread' or source is 'SE.P.TMCore.WinApp' or source is 'SE.P.TMCore.NetApp' or source is 'SE.P.TMCore.WebServer' or source is 'SE.P.TMCore.Win32Service' or source is 'SE.P.TMCore.WebSvc' or source is 'SE.P.TMCore.VM' or (source is 'SE.P.TMCore.Modern' and source.internetClientServer is 'No' and source.internetClient is 'No' ) or source is 'SE.EI.TMCore.AuthProvider' or source is 'SE.EI.TMCore.WebSvc' or source is 'SE.EI.TMCore.WebApp' or source is 'SE.EI.TMCore.Megasevrice' or source is 'SE.EI.TMCore.CRT' or source is 'SE.EI.TMCore.NFX' or source is 'SE.EI.TMCore.WinRT' ) or (target is 'SE.P.TMCore.ThickClient' or target is 'SE.P.TMCore.BrowserClient' or target is 'SE.P.TMCore.PlugIn' or target is 'SE.P.TMCore.Modern') or (flow crosses 'SE.TB.L.TMCore.Machine' or flow crosses 'SE.TB.L.TMCore.Kernel' or flow crosses 'SE.TB.L.TMCore.AppContainer' or flow crosses 'SE.TB.B.TMCore.CorpNet' or flow crosses 'SE.TB.B.TMCore.Sandbox')(source is 'GE.P' or source is 'GE.EI') and (target is 'GE.P' ) and (flow.authenticatesSource is 'Not Selected' or flow.authenticatesSource is 'Yes') and (flow.54851a3b-65da-4902-b4e0-94ef015be735 is 'None' or flow.54851a3b-65da-4902-b4e0-94ef015be735 is 'Not Selected' ) and (flow crosses 'GE.TB.L' or flow crosses 'GE.TB.B')8404dcf5-bdd8-4902-abc2-3b6c967b0261UserThreatShortDescriptiontrue5d3b996b-aed5-4d95-8cf6-617bb67bf0421UserThreatDescriptionfalseCross-site request forgery (CSRF or XSRF) is a type of attack in which an attacker forces a user's browser to make a forged request to a vulnerable site by exploiting an existing trust relationship between the browser and the vulnerable web site. In a simple scenario, a user is logged in to web site A using a cookie as a credential. The other browses to web site B. Web site B returns a page with a hidden form that posts to web site A. Since the browser will carry the user's cookie to web site A, web site B now can take any action on web site A, for example, adding an admin to an account. The attack can be used to exploit any requests that the browser automatically authenticates, e.g. by session cookie, integrated authentication, IP whitelisting. The attack can be carried out in many ways such as by luring the victim to a site under control of the attacker, getting the user to click a link in a phishing email, or hacking a reputable web site that the victim will visit. The issue can only be resolved on the server side by requiring that all authenticated state-changing requests include an additional piece of secret payload (canary or CSRF token) which is known only to the legitimate web site and the browser and which is protected in transit through SSL/TLS. See the Forgery Protection property on the flow stencil for a list of mitigations.cf377f97-9dea-42d6-ae63-b097c4a8ec4d0Priorityfalsebc9c6e2a-15d0-4863-9cac-589e51e4ca1e1Cross Site Request Forgery
================================================ FILE: build/config/PoliCheckExclusions.xml ================================================ AF-ZA|AM-ET|AR-SA|AS-IN|AZ-LATN-AZ|BG-BG|BN-IN|BS-LATN-BA|CA-ES|CA-ES-VALENCIA|CS-CZ|CY-GB|DA-DK|DE-DE|EL-GR|EN-GB|ES-ES|ES-MX|ET-EE|EU-ES|FA-IR|FI-FI|FIL-PH|FR-CA|FR-FR|GA-IE|GD-GB|GL-ES|GU-IN|HE-IL|HI-IN|HR-HR|HU-HU|HY-AM|ID-ID|IS-IS|IT-IT|JA-JP|KA-GE|KK-KZ|KM-KH|KN-IN|KO-KR|KOK-IN|LB-LU|LO-LA|LT-LT|LV-LV|MI-NZ|MK-MK|ML-IN|MR-IN|MS-MY|MT-MT|NB-NO|NE-NP|NL-NL|NN-NO|OR-IN|PA-IN|PL-PL|PT-BR|PT-PT|QUZ-PE|RO-RO|RU-RU|SK-SK|SL-SI|SQ-AL|SR-CYRL-BA|SR-CYRL-RS|SR-LATN-RS|SV-SE|TA-IN|TE-IN|TH-TH|TR-TR|TT-RU|UG-CN|UK-UA|UR-PK|UZ-LATN-UZ|VI-VN|ZH-CN|ZH-TW ================================================ FILE: build/pipelines/azure-pipelines.ci-internal.yaml ================================================ # # Continuous Integration (CI) - Internal # This pipeline builds and validate the app for all supported architectures, in a production # configuration. This pipeline relies on Microsoft-internal resources to run. # trigger: - main - release/* - feature/* pr: none name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0 resources: repositories: - repository: 1esPipelines type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release extends: template: v1/1ES.Unofficial.PipelineTemplate.yml@1esPipelines parameters: pool: name: EssentialExperiences-windows-2022 image: MMSWindows2022-Secure os: windows sdl: policheck: enabled: true exclusionsFile: '$(Build.SourcesDirectory)\build\config\PoliCheckExclusions.xml' stages: - stage: jobs: - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: x64 - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: x86 - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: isReleaseBuild: true useReleaseAppxManifest: false platform: ARM64 - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x64 runsettingsFileName: CalculatorUITests.ci-internal.runsettings - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x86 runsettingsFileName: CalculatorUITests.ci-internal.runsettings - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x64 - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x86 - template: /build/pipelines/templates/package-msixbundle.yaml@self ================================================ FILE: build/pipelines/azure-pipelines.loc.yaml ================================================ # # Localization # This pipeline uploads English strings files to the localization service, downloads any translated # files which are available, and checks them in to git. This pipeline relies on Microsoft-internal # resources to run. # schedules: - cron: "0 5 * * *" displayName: Daily sync branches: include: - main always: true trigger: none pr: none name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) variables: isMainBranch: ${{ eq(variables['Build.SourceBranch'], 'refs/heads/main') }} jobs: - job: Localize pool: name: EssentialExperiences-windows-2022 variables: skipComponentGovernanceDetection: true steps: - checkout: self clean: true - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@5 displayName: Send resources to Touchdown Build inputs: teamId: 86 authType: FederatedIdentity FederatedIdentityServiceConnection: EE-TDBuild-Localization-FC isPreview: false relativePathRoot: src/Calculator/Resources/en-US/ resourceFilePath: '*.resw' outputDirectoryRoot: src/Calculator/Resources/ ${{ if eq(variables['isMainBranch'], false) }}: localizationTarget: false - script: | cd $(Build.SourcesDirectory) git add -A git diff --cached --exit-code echo ##vso[task.setvariable variable=hasChanges]%errorlevel% git diff --cached > $(Build.ArtifactStagingDirectory)\LocalizedStrings.patch displayName: Check for changes and create patch file - task: PublishPipelineArtifact@0 displayName: Publish patch file as artifact condition: and(eq(variables['hasChanges'], '1'), eq(variables['isMainBranch'], true)) inputs: artifactName: Patch targetPath: $(Build.ArtifactStagingDirectory) ================================================ FILE: build/pipelines/azure-pipelines.release.yaml ================================================ # # Release # This pipeline builds a version of the app in a production configuration to be released to the # Store and the Windows image. This pipeline relies on Microsoft-internal resources to run. # trigger: none pr: none variables: - name: versionMajor value: 11 - name: versionMinor value: 2509 - name: versionBuild value: $[counter(format('{0}.{1}.*', variables['versionMajor'], variables['versionMinor']), 0)] - name: versionPatch value: 0 - group: CalculatorTSAConfig name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)' parameters: - name: publishStore displayName: Publish and flight the package on Store type: boolean default: true - name: publishVPack displayName: Publish as undocked inbox app via VPack type: boolean default: true resources: repositories: - repository: 1esPipelines type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release extends: template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines parameters: pool: name: EssentialExperiences-windows-2022 image: MMSWindows2022-Secure os: windows sdl: tsa: enabled: true config: codebaseName: $(TSA.CodebaseName) notificationAliases: $(TSA.NotificationAliases) instanceUrl: $(TSA.InstanceUrl) projectName: $(TSA.ProjectName) areaPath: $(TSA.AreaPath) serviceTreeID: $(TSA.ServiceTreeID) allTools: true codeql: tsaEnabled: true policheck: enabled: true exclusionsFile: '$(Build.SourcesDirectory)\build\config\PoliCheckExclusions.xml' stages: - stage: Calculator jobs: - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x64 isReleaseBuild: true useReleaseAppxmanifest: true - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: x86 isReleaseBuild: true useReleaseAppxmanifest: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - template: /build/pipelines/templates/build-single-architecture.yaml@self parameters: platform: ARM64 isReleaseBuild: true useReleaseAppxmanifest: true condition: not(eq(variables['Build.Reason'], 'PullRequest')) - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x64 runsettingsFileName: CalculatorUITests.release.runsettings - template: /build/pipelines/templates/run-ui-tests.yaml@self parameters: platform: x86 runsettingsFileName: CalculatorUITests.release.runsettings - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x64 - template: /build/pipelines/templates/run-unit-tests.yaml@self parameters: platform: x86 - template: /build/pipelines/templates/package-msixbundle.yaml@self parameters: signBundle: true createStoreBrokerPackages: true - ${{ if eq(parameters.publishStore, true) }}: - template: /build/pipelines/templates/release-store.yaml@self - ${{ if eq(parameters.publishVPack, true) }}: - template: /build/pipelines/templates/release-vpack.yaml@self ================================================ FILE: build/pipelines/templates/build-single-architecture.yaml ================================================ # This template contains a job to build the app for a single architecture. parameters: isReleaseBuild: false useReleaseAppxManifest: false platform: '' condition: '' jobs: - job: Build${{ parameters.platform }} displayName: Build ${{ parameters.platform }} condition: ${{ parameters.condition }} variables: BuildConfiguration: Release BuildPlatform: ${{ parameters.platform }} ${{ if eq(parameters.isReleaseBuild, true) }}: ${{ if eq(parameters.useReleaseAppxManifest, true) }}: ExtraMSBuildArgs: '/p:IsStoreBuild=true /p:UseReleaseAppxManifest=true' ${{ if eq(parameters.useReleaseAppxManifest, false) }}: ExtraMSBuildArgs: '/p:IsStoreBuild=true' ${{ if eq(parameters.isReleaseBuild, false) }}: ${{ if eq(parameters.useReleaseAppxManifest, true) }}: ExtraMSBuildArgs: '/p:UseReleaseAppxManifest=true' ${{ if eq(parameters.useReleaseAppxManifest, false) }}: ExtraMSBuildArgs: '' ${{ if eq(parameters.useReleaseAppxManifest, false) }}: ManifestFileName: 'Package.appxmanifest' ${{ if eq(parameters.useReleaseAppxManifest, true) }}: ManifestFileName: 'Package.Release.appxmanifest' templateContext: sdl: binskim: analyzeTargetGlob: +:f|$(Agent.BuildDirectory)\binskim\**\* outputs: - output: pipelineArtifact displayName: Publish drop artifact targetPath: $(Build.BinariesDirectory)\$(BuildConfiguration)\${{ parameters.platform }} artifactName: drop-${{ parameters.platform }} steps: - checkout: self fetchDepth: 1 - ${{ if eq(parameters.isReleaseBuild, true) }}: - task: UniversalPackages@0 displayName: Download internals package inputs: command: download downloadDirectory: $(Build.SourcesDirectory) vstsFeed: WindowsInboxApps vstsFeedPackage: calculator-internals vstsPackageVersion: 0.0.122 - task: NuGetToolInstaller@1 displayName: Use NuGet 6.x inputs: versionSpec: 6.x - task: NuGetCommand@2 displayName: NuGet restore src/Calculator.sln inputs: command: custom arguments: restore src/Calculator.sln -Verbosity Detailed - task: PowerShell@2 displayName: Set version number in AppxManifest inputs: filePath: $(Build.SourcesDirectory)\build\scripts\UpdateAppxManifestVersion.ps1 arguments: '-AppxManifest $(Build.SourcesDirectory)\src\Calculator\$(ManifestFileName) -Version $(Build.BuildNumber)' - task: VSBuild@1 displayName: 'Build solution src/Calculator.sln' inputs: solution: src/Calculator.sln vsVersion: 17.0 msbuildArgs: /bl:$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\Calculator.binlog /p:OutDir=$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\ /p:GenerateProjectSpecificOutputFolder=true /p:Version=$(Build.BuildNumber) /t:Publish /p:PublishDir=$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\publish\ $(ExtraMSBuildArgs) platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - ${{ if eq(parameters.isReleaseBuild, true) }}: - task: CopyFiles@2 displayName: Copy Files for BinSkim analysis inputs: SourceFolder: '$(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\Calculator\' # Setting up a folder to store all the binary files that we need BinSkim to scan. # If we put more things than we produce pdbs for and can index (such as nuget packages that ship without pdbs), binskim will fail. # Below are ignored files # - clrcompression.dll # - WebView2Loader.dll # - Microsoft.Web.WebView2.Core.dll Contents: | **\*.dll **\*.exe !**\clrcompression.dll !**\WebView2Loader.dll !**\Microsoft.Web.WebView2.Core.dll TargetFolder: '$(Agent.BuildDirectory)\binskim' CleanTargetFolder: true OverWrite: true flattenFolders: false analyzeTarget: '$(Agent.BuildDirectory)\binskim\*' - task: PublishSymbols@2 displayName: Publish symbols inputs: symbolsFolder: $(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform) searchPattern: '**/*.pdb' symbolServerType: teamServices treatNotIndexedAsWarning: true - task: securedevelopmentteam.vss-secure-development-tools.build-task-policheck.PoliCheck@1 displayName: Run PoliCheck inputs: targetType: F ================================================ FILE: build/pipelines/templates/package-msixbundle.yaml ================================================ # This template contains a job which takes .msix packages which were built separately for each # architecture (arm64, x86, etc.) and combines them into a single .msixbundle. In release builds, # this job also signs the bundle and creates StoreBroker packages. parameters: signBundle: false createStoreBrokerPackages: false jobs: - job: Package dependsOn: - Buildx64 - Buildx86 - BuildARM64 condition: | and ( in(dependencies.Buildx64.result, 'Succeeded', 'SucceededWithIssues', 'Skipped'), in(dependencies.Buildx86.result, 'Succeeded', 'SucceededWithIssues', 'Skipped'), in(dependencies.BuildARM64.result, 'Succeeded', 'SucceededWithIssues', 'Skipped') ) variables: skipComponentGovernanceDetection: true StoreBrokerMediaRootPath: $(TEMP)\SBMedia StoreBrokerPackagePath: $(Build.ArtifactStagingDirectory)\storeBrokerPayload PackageX86: $[in(dependencies.Buildx86.result, 'Succeeded', 'SucceededWithIssues')] PackageX64: $[in(dependencies.Buildx64.result, 'Succeeded', 'SucceededWithIssues')] PackageARM64: $[in(dependencies.BuildARM64.result, 'Succeeded', 'SucceededWithIssues')] templateContext: outputs: - ${{ if eq(parameters.signBundle, false) }}: - output: pipelineArtifact displayName: Publish MsixBundle artifact targetPath: $(Build.ArtifactStagingDirectory)\msixBundle artifactName: msixBundle - ${{ else }}: - output: pipelineArtifact displayName: Publish MsixBundleSigned artifact targetPath: $(Build.ArtifactStagingDirectory)\msixBundle artifactName: msixBundleSigned - ${{ if eq(parameters.createStoreBrokerPackages, true) }}: - output: pipelineArtifact displayName: Publish StoreBroker Payload artifact targetPath: $(StoreBrokerPackagePath) artifactName: storeBrokerPayload steps: - checkout: self fetchDepth: 1 - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (x86) condition: and(succeeded(), eq(variables.PackageX86, 'true')) inputs: artifactName: drop-x86 itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\x86 - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (x64) condition: and(succeeded(), eq(variables.PackageX64, 'true')) inputs: artifactName: drop-x64 itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\x64 - task: DownloadPipelineArtifact@2 displayName: Download all .msix artifacts (ARM64) condition: and(succeeded(), eq(variables.PackageARM64, 'true')) inputs: artifactName: drop-ARM64 itemPattern: '**/*.msix' targetPath: $(Build.ArtifactStagingDirectory)\drop\ARM64 - ${{ if or(eq(parameters.createStoreBrokerPackages, true), eq(parameters.signBundle, true)) }}: - task: UniversalPackages@0 displayName: Download internals package inputs: command: download downloadDirectory: $(Build.SourcesDirectory) vstsFeed: WindowsInboxApps vstsFeedPackage: calculator-internals vstsPackageVersion: 0.0.122 - task: PowerShell@2 displayName: Generate MsixBundle mapping inputs: filePath: $(Build.SourcesDirectory)\build\scripts\CreateMsixBundleMapping.ps1 arguments: '-InputPath $(Build.ArtifactStagingDirectory)\drop -ProjectName Calculator -OutputFile $(Build.BinariesDirectory)\MsixBundleMapping.txt' - powershell: | $buildVersion = [version]$Env:BUILDVERSION $bundleVersion = "2021.$($buildVersion.Minor).$($buildVersion.Build).$($buildVersion.Revision)" & "C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\MakeAppx.exe" bundle /v /bv $bundleVersion /f $Env:MAPPINGFILEPATH /p $Env:OUTPUTPATH displayName: Make MsixBundle env: BUILDVERSION: $(Build.BuildNumber) MAPPINGFILEPATH: $(Build.BinariesDirectory)\MsixBundleMapping.txt OUTPUTPATH: $(Build.BinariesDirectory)\Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle - task: CopyFiles@2 displayName: Copy MsixBundle to staging directory inputs: sourceFolder: $(Build.BinariesDirectory) contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle targetFolder: $(Build.ArtifactStagingDirectory)\msixBundle - ${{ if eq(parameters.signBundle, true) }}: - pwsh: | $configPath = "$(Build.SourcesDirectory)\Tools\Build\Signing\ESRP-codesign.json" $config = Get-Content -Raw $configPath | ConvertFrom-Json $esrpAppRegClientId = $config.AppRegistrationClientId $esrpAppRegTenantId = $config.AppRegistrationClientId $esrpClientId = $config.EsrpClientId echo AppRegistrationClientId:$esrpAppRegClientId, AppRegTenantId:$esrpAppRegTenantId, EsrpClientId:$esrpClientId echo "##vso[task.setvariable variable=EsrpAppRegClientId]$esrpAppRegClientId" echo "##vso[task.setvariable variable=EsrpAppRegTenantId]$esrpAppRegTenantId" echo "##vso[task.setvariable variable=EsrpClientId]$esrpClientId" displayName: Get ESRP config - task: EsrpCodeSigning@5 displayName: Send msixbundle to code signing service inputs: ConnectedServiceName: Essential Experiences Codesign PME UseMSIAuthentication: true AppRegistrationClientId: $(EsrpAppRegClientId) AppRegistrationTenantId: $(EsrpAppRegTenantId) EsrpClientId: $(EsrpClientId) AuthAKVName: EE-Apps-CodeSign-KV AuthCertName: EE-Auth-Cert AuthSignCertName: EE-Codesign-Cert FolderPath: $(Build.ArtifactStagingDirectory)\msixBundle Pattern: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle signConfigType: inlineSignParams inlineOperation: | [ { "CertTemplateName": "WINMSAPP1ST", "CertSubjectName": "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", "KeyCode": "Dynamic", "OperationCode": "SigntoolvNextSign", "Parameters": { "OpusName": "Microsoft", "OpusInfo": "http://www.microsoft.com", "FileDigest": "/fd \"SHA256\"", "TimeStamp": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256" }, "ToolName": "sign", "ToolVersion": "1.0" }, { "CertTemplateName": "WINMSAPP1ST", "CertSubjectName": "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", "KeyCode": "Dynamic", "OperationCode": "SigntoolvNextVerify", "Parameters": {}, "ToolName": "sign", "ToolVersion": "1.0" } ] - ${{ if eq(parameters.createStoreBrokerPackages, true) }}: - powershell: | # Just modify this line to indicate where your en-us PDP file is. Leave the other lines alone. $enUSPdpFilePath = "$(Build.SourcesDirectory)\PDP\en-US\PDP.xml" # This is going to save the release value from the PDP file to $(SBMediaReleaseVersion) # which you can then refer to in the UniversalPackages task. $release = ([xml](Get-Content $enUSPdpFilePath)).ProductDescription.Release.Trim() Write-Host "##vso[task.setvariable variable=SBMediaReleaseVersion;]$release" displayName: Determine the PDP Media release version from the en-us PDP file - task: UniversalPackages@0 displayName: Download PDP media (screenshots, trailers) universal package inputs: command: download downloadDirectory: $(StoreBrokerMediaRootPath)/$(SBMediaReleaseVersion) vstsFeed: WindowsInboxApps vstsFeedPackage: calculator-pdp-media vstsPackageVersion: $(SBMediaReleaseVersion) - task: MS-RDX-MRO.windows-store-publish.package-task.store-package@3 displayName: Create StoreBroker Payload inputs: serviceEndpoint: Calculator StoreBroker FC sbConfigPath: Tools/Build/StoreBroker/SBCalculatorConfig.json sourceFolder: $(Build.ArtifactStagingDirectory)/msixBundle contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle pdpPath: $(Build.SourcesDirectory)\PDP pdpInclude: PDP.xml pdpMediaPath: $(StoreBrokerMediaRootPath) outSBPackagePath: $(StoreBrokerPackagePath) outSBName: SBCalculator ================================================ FILE: build/pipelines/templates/release-store.yaml ================================================ # This template contains jobs to release the app to the Store. jobs: - job: ReleaseStore dependsOn: Package templateContext: type: releaseJob isProduction: true inputs: - input: pipelineArtifact artifactName: storeBrokerPayload variables: FlightId: 161f0975-cb5f-475b-8ef6-26383c37621f AppId: 9WZDNCRFHVN5 ProductId: 00009007199266248474 steps: - checkout: none - task: MS-RDX-MRO.windows-store-publish.flight-task.store-flight@3 displayName: Flight StoreBroker Payload to team ring name: StoreBrokerFlight inputs: serviceEndpoint: Calculator StoreBroker FC appId: $(AppId) flightId: $(FlightId) inputMethod: JsonAndZip jsonPath: $(Pipeline.Workspace)\SBCalculator.json zipPath: $(Pipeline.Workspace)\SBCalculator.zip force: true skipPolling: true targetPublishMode: Immediate logPath: $(Pipeline.Workspace)\StoreBroker.log deletePackages: true numberOfPackagesToKeep: 0 - task: APS-Aero-Package.aero-upload-task.AeroUploadTask.AeroUpload@2 displayName: Aero Upload (FC) inputs: productId: $(ProductId) flightId: $(FlightId) submissionId: $(StoreBrokerFlight.WS_SubmissionId) submissionDataPath: $(Pipeline.Workspace)\SBCalculator.json packagePath: $(Pipeline.Workspace)\SBCalculator.zip serviceEndpoint: AeroUpload-Calculator-FC ================================================ FILE: build/pipelines/templates/release-vpack.yaml ================================================ # This template contains a job to create a VPack. The VPack is used to preinstall the app in a # Windows OS build. jobs: - job: ReleaseVPack dependsOn: Package variables: skipComponentGovernanceDetection: true templateContext: outputs: - output: pipelineArtifact displayName: Publish vpack\app artifact with vpack manifest targetPath: $(XES_VPACKMANIFESTDIRECTORY)\$(XES_VPACKMANIFESTNAME) artifactName: vpackManifest sbomEnabled: false steps: - checkout: none - download: current displayName: Download msixBundleSigned artifact artifact: msixBundleSigned - task: CopyFiles@2 displayName: Copy signed MsixBundle to vpack staging folder inputs: sourceFolder: $(Pipeline.Workspace)\msixBundleSigned contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle targetFolder: $(Pipeline.Workspace)\vpack\msixBundle - task: AzureCLI@2 displayName: Register SBOM sign service connection inputs: azureSubscription: Essential Experiences SBOMSign PME scriptType: ps scriptLocation: inlineScript inlineScript: Write-Host "Registering service connection for current run" visibleAzLogin: false - task: UniversalPackages@0 displayName: Download internals package inputs: command: download downloadDirectory: $(Build.SourcesDirectory) vstsFeed: WindowsInboxApps vstsFeedPackage: calculator-internals vstsPackageVersion: 0.0.122 - pwsh: | $configPath = "$(Build.SourcesDirectory)\Tools\Build\Signing\ESRP-auth.json" $auth = Get-Content -Raw $configPath | ConvertFrom-Json $sbomKeyCode = $auth._ExtraContext.SbomKeyCode echo $sbomKeyCode echo "##vso[task.setvariable variable=SbomKeyCode]$sbomKeyCode" displayName: Get SBOM Key Code - task: PkgESVPack@12 displayName: Create and push vpack for app env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) inputs: sourceDirectory: $(Pipeline.Workspace)\vpack\msixBundle description: VPack for the Calculator Application pushPkgName: calculator.app version: $(versionMajor).$(versionMinor).$(versionBuild) owner: paxeeapps provData: true taskLogVerbosity: Diagnostic coseUsageScenario: 'product' signSbom: true sbomKeyCode: $(SbomKeyCode) pathToEsrpAuthJson: '$(Build.SourcesDirectory)\Tools\Build\Signing\ESRP-auth.json' ================================================ FILE: build/pipelines/templates/run-ui-tests.yaml ================================================ # This template contains jobs to run UI tests using WinAppDriver. parameters: platform: '' runsettingsFileName: '' jobs: - job: UITests${{ parameters.platform }} displayName: UITests ${{ parameters.platform }} dependsOn: Build${{ parameters.platform }} condition: succeeded() variables: skipComponentGovernanceDetection: true DropName: drop-${{ parameters.platform }} steps: - checkout: self fetchDepth: 1 - task: PowerShell@2 displayName: Turn off animation effects inputs: filePath: $(Build.SourcesDirectory)\build\scripts\TurnOffAnimationEffects.ps1 - task: ScreenResolutionUtility@1 displayName: Set resolution to 1920x1080 inputs: displaySettings: 'specific' width: 1920 height: 1080 - download: current displayName: Download MsixBundle and CalculatorUITests artifact: $(DropName) patterns: | Calculator/AppPackages/** publish/** - powershell: | $(Build.SourcesDirectory)/build/scripts/SignTestApp.ps1 -AppToSign '$(Pipeline.Workspace)/$(DropName)/Calculator/AppPackages/Calculator_*_Test/Calculator_*.msixbundle' $(Pipeline.Workspace)/$(DropName)/Calculator/AppPackages/Calculator_*_Test/Add-AppDevPackage.ps1 -Force displayName: Install app - task: VSTest@2 displayName: Run CalculatorUITests inputs: testAssemblyVer2: $(Pipeline.Workspace)/$(DropName)/publish/CalculatorUITests.dll runSettingsFile: $(Pipeline.Workspace)/$(DropName)/publish/${{ parameters.runsettingsFileName }} platform: ${{ parameters.platform }} configuration: Release ================================================ FILE: build/pipelines/templates/run-unit-tests.yaml ================================================ # This template contains jobs to run unit tests. parameters: platform: '' runsettingsFileName: '' jobs: - job: UnitTests${{ parameters.platform }} displayName: UnitTests ${{ parameters.platform }} dependsOn: Build${{ parameters.platform }} condition: succeeded() variables: skipComponentGovernanceDetection: true UnitTestsDir: $(Pipeline.Workspace)\drop-${{ parameters.platform }}\CalculatorUnitTests\AppPackages\CalculatorUnitTests_Test steps: - checkout: self fetchDepth: 1 - download: current displayName: Download CalculatorUnitTests artifact: drop-${{ parameters.platform }} patterns: '**/CalculatorUnitTests_Test/**' - powershell: | $(Build.SourcesDirectory)/build/scripts/SignTestApp.ps1 -AppToSign '$(UnitTestsDir)\CalculatorUnitTests.msix' displayName: Sign unit tests - task: VSTest@2 displayName: Run CalculatorUnitTests inputs: testAssemblyVer2: $(UnitTestsDir)\CalculatorUnitTests.msix otherConsoleOptions: /Platform:${{ parameters.platform }} ================================================ FILE: build/scripts/CreateMsixBundleMapping.ps1 ================================================ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. <# .SYNOPSIS Generates a mapping file to be used with the MakeAppx tool. It generates the file based on a folder structure grouped by architecture then by project, like this example: drop\ ARM64\ Project\ AppPackages\ Project_ARM64.msix Project_scale-100.msix x64\ Project\ AppPackages\ Project_x64.msix Project_scale-100.msix .PARAMETER InputPath The path where msix packages to bundle are located. .PARAMETER ProjectName The folder name within each architecture to search recursively for msix packages. The msix files must also have the ProjectName in their file names. .PARAMETER OutputFile The path to write the generated mapping file. .EXAMPLE Create-MsixBundleMapping -InputPath "C:\drop" -ProjectName "CalculatorApp" -OutputFile "C:\Temp\MsixBundleMapping.txt" #> param( [Parameter(Mandatory)] [string] $InputPath, [Parameter(Mandatory)] [string] $ProjectName, [Parameter(Mandatory)] [string] $OutputFile ) # List all msix packages by architecture $architectures = @(Get-ChildItem -Path $InputPath -Directory | Foreach-Object Name | Foreach-Object ToLower) if ($architectures.Count -lt 1) { throw "No architecture-specific folders found in $InputPath" } $defaultArchitecture = $architectures[0] $packages = @{} foreach ($architecture in $architectures) { $projectPath = [IO.Path]::Combine($InputPath, $architecture, $ProjectName) $packages[$architecture] = Get-ChildItem -Path $projectPath -Recurse -Filter *$ProjectName*.msix if ($packages[$architecture].Count -lt 1) { throw "No .msix files found for architecture $architecture in $projectPath" } } # List msix packages which are common to all architectures $commonPackages = $packages[$defaultArchitecture] foreach ($architecture in $architectures) { $commonPackages = $packages[$architecture] | Where {$commonPackages.Name -Contains $_.Name} } # List msix packages which are architecture-specific and verify that there is exactly one per # architecture. $architectureSpecificPackages = @() if ($architectures.Count -gt 1) { foreach ($architecture in $architectures) { $uniquePackages = $packages[$architecture] | Where {$commonPackages.Name -NotContains $_.Name} if ($uniquePackages.Count -ne 1) { throw "Found multiple architecture-specific packages for architecture $($architecture): $($uniquePackages.Name)" } $architectureSpecificPackages += $uniquePackages[0] } } # Write the mapping file Set-Content $OutputFile "[Files]" foreach ($package in ($architectureSpecificPackages + $commonPackages)) { $mapping = "`"$($package.FullName)`" `"$($package.Name)`"" Write-Host $mapping Add-Content $OutputFile $mapping } ================================================ FILE: build/scripts/SignTestApp.ps1 ================================================ #requires -RunAsAdministrator param( [Parameter(Position = 0, Mandatory = $true)][string]$AppToSign, [string]$SignTool = "C:\Program Files (x86)\Windows Kits\10\bin\10.*\x64\signtool.exe" ) $AppToSign = (Resolve-Path -Path $AppToSign)[-1] Write-Host "AppToSign: $AppToSign" $SignTool = (Resolve-Path -Path $SignTool)[-1] Write-Host "SignTool: $SignTool" if ((Test-Path -Path $SignTool -PathType Leaf) -ne $true) { Write-Error "signtool is not found with the given argument: $SignTool" -ErrorAction Stop } $codeSignOid = New-Object -TypeName "System.Security.Cryptography.Oid" -ArgumentList @("1.3.6.1.5.5.7.3.3") $oidColl = New-Object -TypeName "System.Security.Cryptography.OidCollection" $oidColl.Add($codeSignOid) > $null $publisher = "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" $certReq = New-Object -TypeName "System.Security.Cryptography.X509Certificates.CertificateRequest" ` -ArgumentList @($publisher, ([System.Security.Cryptography.ECDsa]::Create()), "SHA256") $certReq.CertificateExtensions.Add((New-Object -TypeName "System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" ` -ArgumentList @($oidColl, $false))) $now = Get-Date $cert = $certReq.CreateSelfSigned($now, $now.AddHours(1)) $pfxFile = "$($env:TEMP)\$(New-Guid).pfx" [System.IO.File]::WriteAllBytes($pfxFile, $cert.Export("Pfx")) Write-Host "Exported PFX: $pfxFile" & $SignTool sign /fd SHA256 /a /f $pfxFile $AppToSign Write-Host "Certificate Thumbprint: $($cert.Thumbprint.ToLower())" Import-PfxCertificate -CertStoreLocation 'Cert:\LocalMachine\TrustedPeople' -FilePath $pfxFile > $null ================================================ FILE: build/scripts/TurnOffAnimationEffects.ps1 ================================================ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. <# .SYNOPSIS Disables animations on the system. Equivalent to turning off the "Animation effects" setting in the Windows Settings app. #> Add-Type -AssemblyName System.Runtime.WindowsRuntime $asTaskGeneric = ([System.WindowsRuntimeSystemExtensions].GetMethods() | ? { $_.Name -eq 'AsTask' -and $_.GetParameters().Count -eq 1 -and $_.GetParameters()[0].ParameterType.Name -eq 'IAsyncOperation`1' })[0] Function WaitForAsyncAction($WinRtTask, $ResultType) { $asTask = $asTaskGeneric.MakeGenericMethod($ResultType) $task = $asTask.Invoke($null, @($WinRtTask)) $task.GetAwaiter().GetResult() } [Windows.UI.ViewManagement.Core.UISettingsController,Windows.UI.ViewManagement.Core,ContentType=WindowsRuntime] | Out-Null $controller = WaitForAsyncAction ([Windows.UI.ViewManagement.Core.UISettingsController]::RequestDefaultAsync()) ([Windows.UI.ViewManagement.Core.UISettingsController]) $controller.SetAnimationsEnabled($false) ================================================ FILE: build/scripts/UpdateAppxManifestVersion.ps1 ================================================ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. <# .SYNOPSIS Updates the version number in an AppxManifest file. .PARAMETER AppxManifest The path to the AppxManifest file. .PARAMETER Version The version number to write into the file. .EXAMPLE Update-AppxManifestVersion -AppxManifest "C:\App\Package.appxmanifest" -Version "3.2.1.0" #> param( [ValidateScript({Test-Path $_ -PathType 'Leaf'})] [Parameter(Mandatory)] [string] $AppxManifest, [ValidateScript({[version]$_})] [Parameter(Mandatory)] [string] $Version ) $xmlDoc = [XML](Get-Content $AppxManifest) $xmlDoc.Package.Identity.setAttribute("Version", $Version); $xmlDoc.Save($AppxManifest) ================================================ FILE: docs/ApplicationArchitecture.md ================================================ # Application Architecture Windows Calculator is a [C++/CX][C++/CX] application, built for the Universal Windows Platform ([UWP][What is UWP?]). Calculator uses the [XAML][XAML Overview] UI framework, and the project follows the Model-View-ViewModel ([MVVM][MVVM]) design pattern. This document discusses each of the layers and how they are related to the three Visual Studio projects that build into the final Calculator application. -------------------- ## Table of Contents * [View](#view) * [VisualStates](#visualstates) * [Data-Binding](#data-binding) * [ViewModel](#viewmodel) * [PropertyChanged Events](#propertychanged-events) * [Model](#model) -------------------- ## View The View layer is contained in the [Calculator project][Calculator folder]. This project contains mostly XAML files and various custom controls that support the UI. [App.xaml][App.xaml] contains many of the [static][StaticResource] and [theme][ThemeResource] resources that the other XAML files will reference. Its code-behind file, [App.xaml.cs][App.xaml.cs], contains the main entry point to the application. On startup, it navigates to the main page. ```C# rootFrame.Navigate(typeof(MainPage), argument) ``` In Calculator, there is only one concrete [Page][Page] class: [MainPage.xaml][MainPage.xaml]. `MainPage` is the root container for all the other application UI elements. As you can see, there's not much content. `MainPage` uses a `NavigationView` control to display the toggleable navigation menu, and empty containers for delay-loaded UI elements. Of the many modes that Calculator shows in its menu, there are actually only three XAML files that `MainPage` needs to manage in order to support all modes. They are: * [Calculator.xaml][Calculator.xaml]: This [UserControl] is itself a container for the [Standard][CalculatorStandardOperators.xaml], [Scientific][CalculatorScientificOperators.xaml], and [Programmer][CalculatorProgrammerOperators.xaml] modes. * [DateCalculator.xaml][DateCalculator.xaml]: Everything needed for the DateCalculator mode. * [UnitConverter.xaml][UnitConverter.xaml]: One `UserControl` to support every Converter mode. ### VisualStates [VisualStates][VisualState] are used to change the size, position, and appearance ([Style][Style]) of UI elements in order to create an adaptive, responsive UI. A transition to a new `VisualState` is often triggered by specific window sizes. Here are a few important examples of `VisualStates` in Calculator. Note that it is not a complete list. When making UI changes, make sure you are considering the various `VisualStates` and layouts that Calculator defines. #### History/Memory Dock Panel expansion In the Standard, Scientific, and Programmer modes, the History/Memory panel is exposed as a flyout in small window sizes. Once the window is resized to have enough space, the panel becomes docked along the edge of the window. #### Scientific mode, inverse function button presence In the Scientific mode, for small window sizes there is not enough room to show all the function buttons. The mode hides some of the buttons and provides a Shift (↑) button to toggle the visibility of the collapsed rows. When the window size is large enough, the buttons are re-arranged to display all function buttons at the same time. #### Unit Converter aspect ratio adjustment In the Unit Converter mode, the converter inputs and the numberpad will re-arrange depending on if the window is in a Portrait or Landscape aspect ratio. ### Data-Binding Calculator uses [data binding][Data Binding] to dynamically update the properties of UI elements. If this concept is new for you, it's also worth reading about [data binding in depth][Data binding in depth]. The [x:Bind][x:Bind] markup extension is a newer replacement for the older [Binding][Binding] style. You may see both styles in the Calculator codebase. Prefer `x:Bind` in new contributions because it has better performance. If you need to add or modify an existing `Binding`, updating to `x:Bind` is a great first step. Make sure to read and understand the difference between the two styles, as there are some subtle behavioral changes. Refer to the [binding feature comparison][BindingComparison] to learn more. ------------ ## ViewModel The ViewModel layer is contained in the [CalcViewModel][CalcViewModel folder] project. ViewModels provide a source of data for the UI to bind against and act as the intermediary separating pure business logic from UI components that should not care about the model's implementation. Just as the View layer consists of a hierarchy of XAML files, the ViewModel consists of a hierarchy of ViewModel files. The relationship between XAML and ViewModel files is often 1:1. Here are the notable ViewModel files to start exploring with: * [ApplicationViewModel.h][ApplicationViewModel.h]: The ViewModel for [MainPage.xaml][MainPage.xaml]. This ViewModel is the root of the other mode-specific ViewModels. The application changes between modes by updating the `Mode` property of the `ApplicationViewModel`. The ViewModel will make sure the appropriate ViewModel for the new mode is initialized. * [StandardCalculatorViewModel.h][StandardCalculatorViewModel.h]: The ViewModel for [Calculator.xaml][Calculator.xaml]. This ViewModel exposes functionality for the main three Calculator modes: Standard, Scientific, and Programmer. * [DateCalculatorViewModel.h][DateCalculatorViewModel.h]: The ViewModel for [DateCalculator.xaml][DateCalculator.xaml]. * [UnitConverterViewModel.h][UnitConverterViewModel.h]: The ViewModel for [UnitConverter.xaml][UnitConverter.xaml]. This ViewModel implements the logic to support every converter mode, including Currency Converter. ### PropertyChanged Events In order for [data binding](#data-binding) to work, ViewModels need a way to inform the XAML framework about updates to their member properties. Most ViewModels in the project do so by implementing the [INotifyPropertyChanged][INotifyPropertyChanged] interface. The interface requires that the class provides a [PropertyChanged event][PropertyChanged]. Clients of the ViewModel (such as the UI), can register for the `PropertyChanged` event from the ViewModel, then re-evaluate bindings or handle the event in code-behind when the ViewModel decides to raise the event. ViewModels in the Calculator codebase generally uses a macro, defined in the [Utils.h][Utils.h] utility file, to implement the `INotifyPropertyChanged` interface. Here is a standard implementation, taken from [ApplicationViewModel.h][ApplicationViewModel.h]. ```C++ [Windows::UI::Xaml::Data::Bindable] public ref class ApplicationViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: ApplicationViewModel(); OBSERVABLE_OBJECT(); ``` The `OBSERVABLE_OBJECT()` macro defines the required `PropertyChanged` event. It also defines a private `RaisePropertyChanged` helper function for the class. The function takes a property name and raises a `PropertyChanged` event for that property. Properties that are intended to be the source for a data binding are also typically implemented with a macro. Here is one such property from `ApplicationViewModel`: ```C++ OBSERVABLE_PROPERTY_RW(Platform::String^, CategoryName); ``` The `OBSERVABLE_PROPERTY_RW` macro defines a Read/Write property that will raise a `PropertyChanged` event if its value changes. Read/Write means the property exposes both a public getter and setter. For efficiency and to avoid raising unnecessary `PropertyChanged` events, the setter for these types of properties will check if the new value is different from the previous value before raising the event. From this example, either `ApplicationViewModel` or clients of the class can simply assign to the `CategoryName` property and a `PropertyChanged` event will be raised, allowing the UI to respond to the new `CategoryName` value. -------- ## Model The Model for the Calculator modes is contained in the [CalcManager][CalcManager folder] project. It consists of three layers: a `CalculatorManager`, which relies on a `CalcEngine`, which relies on the `Ratpack`. ### CalculatorManager The CalculatorManager contains the logic for managing the overall Calculator app's data such as the History and Memory lists, as well as maintaining the instances of calculator engines used for the various modes. The interface to this layer is defined in [CalculatorManager.h][CalculatorManager.h]. ### CalcEngine The CalcEngine contains the logic for interpreting and performing operations according to the commands passed to it. It maintains the current state of calculations and relies on the RatPack for performing mathematical operations. The interface to this layer is defined in [CalcEngine.h][CalcEngine.h]. ### RatPack The RatPack (short for Rational Pack) is the core of the Calculator model and contains the logic for performing its mathematical operations (using [infinite precision][Infinite Precision] arithmetic instead of regular floating point arithmetic). The interface to this layer is defined in [ratpak.h][ratpak.h]. [References]:#################################################################################################### [C++/CX]: https://docs.microsoft.com/en-us/cpp/cppcx/visual-c-language-reference-c-cx [What is UWP?]: https://docs.microsoft.com/en-us/windows/uwp/get-started/universal-application-platform-guide [XAML Overview]: https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/xaml-overview [MVVM]: https://docs.microsoft.com/en-us/windows/uwp/data-binding/data-binding-and-mvvm [Calculator folder]: ../src/Calculator [App.xaml]: ../src/Calculator/App.xaml [App.xaml.cs]: ../src/Calculator/App.xaml.cs [StaticResource]: https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/staticresource-markup-extension [ThemeResource]: https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/themeresource-markup-extension [Page]: https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Controls.Page [UserControl]: https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Controls.UserControl [MainPage.xaml]: ../src/Calculator/Views/MainPage.xaml [Calculator.xaml]: ../src/Calculator/Views/Calculator.xaml [CalculatorStandardOperators.xaml]: ../src/Calculator/Views/CalculatorStandardOperators.xaml [CalculatorScientificOperators.xaml]: ../src/Calculator/Views/CalculatorScientificOperators.xaml [CalculatorProgrammerOperators.xaml]: ../src/Calculator/Views/CalculatorProgrammerOperators.xaml [DateCalculator.xaml]: ../src/Calculator/Views/DateCalculator.xaml [UnitConverter.xaml]: ../src/Calculator/Views/UnitConverter.xaml [VisualState]: https://docs.microsoft.com/en-us/windows/uwp/design/layout/layouts-with-xaml#adaptive-layouts-with-visual-states-and-state-triggers [Style]: https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/xaml-styles [Data Binding]: https://docs.microsoft.com/en-us/windows/uwp/data-binding/data-binding-quickstart [Data binding in depth]: https://docs.microsoft.com/en-us/windows/uwp/data-binding/data-binding-in-depth [x:Bind]: https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/x-bind-markup-extension [Binding]: https://docs.microsoft.com/en-us/windows/uwp/xaml-platform/binding-markup-extension [BindingComparison]: https://docs.microsoft.com/en-us/windows/uwp/data-binding/data-binding-in-depth#xbind-and-binding-feature-comparison [CalcViewModel folder]: ../src/CalcViewModel [ApplicationViewModel.h]: ../src/CalcViewModel/ApplicationViewModel.h [StandardCalculatorViewModel.h]: ../src/CalcViewModel/StandardCalculatorViewModel.h [DateCalculatorViewModel.h]: ../src/CalcViewModel/DateCalculatorViewModel.h [UnitConverterViewModel.h]: ../src/CalcViewModel/UnitConverterViewModel.h [INotifyPropertyChanged]: https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.data.inotifypropertychanged [PropertyChanged]: https://docs.microsoft.com/en-us/uwp/api/windows.ui.xaml.data.inotifypropertychanged.propertychanged [Utils.h]: ../src/CalcViewModel/Common/Utils.h [CalcManager folder]: ../src/CalcManager [CalculatorManager.h]: ../src/CalcManager/CalculatorManager.h [CalcEngine.h]: ../src/CalcManager/Header Files/CalcEngine.h [Infinite Precision]: https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic [ratpak.h]: ../src/CalcManager/Ratpack/ratpak.h ================================================ FILE: docs/ManualTests.md ================================================ # Calculator Manual Tests These manual tests are run before every release of the Calculator app. ## Smoke Tests ### Calculators ### Math in Standard Calculator **Test 1** Steps: 1. From the Standard Calculator page, input “3”, “+”, “3”, “Enter” on the keyboard *Expected: “6” shows up in the display * 2. Input “4”, “-”, “2”, “=” using the in-app buttons *Expected: “2” shows up in the display* **Test 2** Steps: 1. From the Standard Calculator page, input “3”, “+”, “3”, “Enter” on the keyboard 2. Navigate to the History pane, and verify that “3 + 3 = 6” shows up in the pane 3. Input “MS” using the in-app buttons 4. Navigate to the Memory pane *Expected: “6” shows up in the pane* ### Math in Scientific Calculator **Test 1** Steps: 1. From the Scientific Calculator page, input “3”, “^”, “3”, “Enter” on the keyboard *Expected: “27” shows up in the display* **Test 2** Steps: 1. Input “5”, “n!”, “=” using the in-app buttons *Expected: “120” shows up in the display* ### Math in Programmer Calculator **Test 1** Steps: 1. From the Programmer Calculator page, input “1”, “&”, “0”, “Enter” on the keyboard *Expected: “0” shows up in the display* **Test 2** Steps: 1. Input “15” using the in-app buttons and select “HEX” *Expected: “F” shows up in the display and the letters A-F show up as in-app buttons* ### Converters **Converter Usage** Steps: 1. From the Length Converter page, select “kilometers” as the unit type in the input field and input “5” using the keyboard 2. Select “miles” as the unit type in the output field *Expected: The output starts with is “3.106856”* ### Always-on-Top **Test 1** Steps: 1. Launch the "Calculator" app and navigate to "Standard" Calculator *Expected: Always-on-Top button's tooltip says "Keep on top"* 2. Click the Always-on-Top button *Expected: Always-on-Top button's tooltip now says "Back to full view"* 3. Launch the "Notepad" app and put it in full-screen mode *Expected: Calculator is still on top of Notepad and in Always-on-Top mode* **Test 2** Steps: 1. Launch the "Calculator" app and from "Standard" Calculator, input “3”, “+”, “3” (do not press “Enter”) 2. Tab over the Always-on-Top button and press "Enter" on the keyboard *Expected: The application title, hamburger menu, calculator type title, calculation expression (the secondary line above the main display), history button and memory buttons are no longer visible. The main display shows "3"* 2. Press “Enter” *Expected: The main display shows "6"* 3. Press "Ctrl-H" on the keyboard *Expected: Nothing happens (history keyboard shortcuts are disabled)* 4. Press "Ctrl-P" on the keyboard, then tab over the Always-on-Top button and press "Enter" on the keyboard again 5. Open the Memory panel *Expected: Nothing is stored in memory (memory keyboard shortcuts are disabled in Always-on-Top mode) and "6" is in history* **Test 3** Steps: 1. Launch the "Calculator" app and from "Standard" Calculator, click the Always-on-Top button 2. Resize the window horizontally *Expected: The buttons automatically expand or shrink to fit the available screen size* 3. Resize the window vertically *Expected: The buttons automatically expand or shrink to fit the available screen size and the percent, square-root, squared and reciprocal buttons disappear when the screen height is small* 4. Click the Always-on-Top button again *Expected: Calculator is in Standard mode and the original window layout from before Step 1 is restored* 5. Click the Always-on-Top button again *Expected: Calculator is in Always-on-Top mode and the window size from after Step 3 is restored* 6. Close the "Calculator" app 7. Launch the "Calculator" app again and click the Always-on-Top button *Expected: The window size from right before closing from Always-on-Top mode (ie. after Step 5) is restored* **Test 4** Steps: 1. Launch the "Calculator" app and from "Standard" Calculator, click the Always-on-Top button 2. Input "/", "0", “Enter” on the keyboard *Expected: "Result is undefined" is displayed in the system default app language* 3. Click the Always-on-Top button again *Expected: Calculator is in Standard mode and all operator (except for "CE", "C", "Delete" and "=") and memory buttons are disabled **Test 5** Steps: 1. Launch the "Calculator" app and navigate to "Scientific" Calculator *Expected: The Always-on-Top button is hidden* 2. Navigate to "Standard" Calculator *Expected: The Always-on-Top button is visible* ## Basic Verification Tests **Launch App Test** Steps: 1. Press the Windows key. 2. Navigate to "all apps". 3. Look for "Calculator". 4. Click to launch the "Calculator" app. *Expected: The calculator app launches gracefully.* **All Calculators Test: Verify All Numbers & Input Methods** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Standard" Calculator. 3. Mouse Input *Expected: All numbers work via mouse click.* 4. Keyboard Input: *Expected: All numbers work via number pad.* 5. Navigate to "Scientific" Calculator and Repeat Steps 3-5 *Expected: Steps 3-5 pass in Scientific mode* 6. Navigate to "Programmer" Calculator and Repeat Steps 3-5 *Expected: Steps 3-5 pass in Programmer mode* **All Calculators Test: Verify Basic Arithmetic Functions** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Standard" Calculator. 3. Using the Number Pad and Mouse perform the following arithmetic functions and verify the result. a. (+) Addition b. (-) Subtraction c. (x) Multiplication d. (÷) Division e. (1/x) Reciprocal f. (√) Square Root g. (x²) Squared h. (x³) Cubed i. (%) Percent j. (±) Positive / Negative k. (=) Equals l. Delete Button (flag with x in it) m. [CE] Clear n. [C] Global Clear o. (.) Decimal 4. Navigate to "Scientific" Calculator and Repeat Steps 3-19. 5. Navigate to "Programmer" Calculator and Repeat Steps 3-18 (No Decimal in Programming Calc). **Scientific Calculator Test: Verify advanced arithmetic functions** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Scientific" Calculator. 3. Using the Number Pad and Mouse perform the following arithmetic functions and verify the result. a. (xʸ) Xth Power of Y b. (y√x) Y Root of X c. (10ˣ) 10 Power of X d. (ex) E Power of X e. (π) Pi f. (n!) Factorial g. (Ln) Natural Logarithm h. (Log) Logarithm i. (Exp) Exponential j. (dms) Degrees, Minutes, Seconds k. (deg) Degrees l. (Mod) Modulo m. “( )" Parenthesis **All Calculators Test: Verify memory functions** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Standard" Calculator. 3. Perform a calculation and press the MS button. 4. If small scale, Select the (M) with the drop down arrow *Expected: Calculation from previous step is present.* 5. Click the (M+) Add to Memory. *Expected: Previous calculation is added to itself.* 6. Click the (M-) Subtract from Memory. *Expected: Previous calculation is subtracted from the base calculation.* 7. Click the (MR) Memory Recall. *Expected: Previous calculation is made primary (This is not available in the Programmer mode).* 8. Check the MC button. *Expected: The stored information is cleared.* 9. Navigate to "Scientific" Calculator and Repeat Steps 3-8. *Expected: All in "Scientific" mode.* 10. Navigate to "Programmer" Calculator and Repeat Steps 3-8. *Expected: All in "Programmer" mode.* **Scientific Calculator Test: Verify trigonometric functions** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Scientific" Calculator. 3. Using the Number Pad and Mouse perform the following trigonometric functions and verify the result. 3. Sine (sin) 4. Cosine (cos) 5. Tangent (tan) 6. Inverse Sine (sin-1) 7. Inverse Cosine (cos-1) 8. Inverse Tangent (tan-1) Inverse Tangent: 9. Press (HYP) for Hyperbolic trig functions: *Expected: Trig function buttons show hyperbolic trig functions.* 10. Hyperbolic Sine (sinh) 11. Hyperbolic Tangent (tanh) 12. Hyperbolic Cosine (cosh) 13. Inverse Hyperbolic Sine (sinh-1) 14. Inverse Hyperbolic Tangent (tanh-1) 15. Inverse Hyperbolic Cosine (cosh-1) **Programmer Calculator Test: Verify logical functions** Steps: 1. Launch the "Calculator" app 2. Navigate to "Programmer" Calculator. 3. Using the Number Pad and Mouse perform the following trigonometric functions and verify the result. 4. Rotate Left (RoL) Logical Operator: 01011001 rol 3 = 11001010. 5. Rotate Right (RoR) Logical Operator: 01011001 RoR 3 = 00101011. 6. (Lsh) Logical Operator: (10 multiplied by 2 three times) 10 Lsh 3 = gives 80. 10.345 Lsh 3 = also gives 80. 7. (Rsh) Logical Operator: (16 divided by 2 twice) 16 Rsh 2 = gives 4. 16.999 Rsh 2 = also gives 4. 7. (Or) Logical Operator 101 OR 110 = gives 111. 9. Exclusive Or (Xor) Logical Operator: 101 XOR 110 = gives 11. 9. (Not) Logical Operator NOT 1001100111001001 = 0110011000110110. 10. (And) Logical Operator 101 AND 110 = gives 100. 11. (Mod) Logical Operator Remainder of integer division (Modulo x) 12. "( )" Parenthesis **All Calculators and Converters Test: Verify scaling functions and languages** Steps: 1. Launch the "Calculator" app. 2. For All Modes: While scaling in both directions to capacity *Expected: Elements like Memory and History are shifted or integrated appropriately.* 3. In Any Mode: While at the Smallest scale, Select the Menu Button *Expected: The menu items are scrollable with nothing overlapping.* 4. While in the Menu: Check the About Page *Expected: Everything in the about page fits into its window* 5. For Scientific Mode: At a Larger Scale *Expected: All buttons are present and the 2nd button is grayed out.* 6. For Scientific Mode: At a Smaller Scale *Expected: All buttons are present and the 2nd button is able to be toggled.* 7. For Programmer Mode: At a Any Scale *Expected: All buttons are present and the 2nd button is able to be toggled.* 8. For Converter Mode: While Scaling *Expected: The number pad and input areas move around each other gracefully.* 9. For Graphing Mode: While Scaling *Expected: The number pad, graph area, and input areas move around each other gracefully.* 10. Changing Language: Open Settings app > Time & language > Region & language > Add a language > Select a Right to Left (RTL) language such as Hebrew > Install the associated files> Set it to the system default. 11. Set the system number format preference: Open a Run dialog (WIN + R) > type ‘intl.cpl’ > Enter > In the format dropdown list > Select Hebrew > Apply. 12. Initiating the change: Package has completed installing > Sign out > Sign in. (This change to the app may also require a reinstallation of the build) 13. Repeat Steps 2-6 again in a (RTL) language. *Expected: No elements fall out of intended boundaries.* **All Calculators Test: Verify toggling functions** Steps: 1. Launch the "Calculator" app. 2. For Standard & Scientific Modes: While in the Smallest scale, verify that the History Icon brings up the history panel gracefully and is displayed appropriately. For Scientific Mode: At a Smaller Scale Verify the following: 3. Grad / Deg / Rad Perform a trig function *Expected: The answer to the function is in the selected grad/deg/rad. Repeat for each of the modes.* 4. (Hyp) Hyperbolic *Expected: Sin toggles to Sinh, Cos toggles to Cosh, Tan toggles to Tanh.* 5. (F-E key) Floating Point Notation & Scientific Notation. *Expected: Display toggles between floating point and Scientific notation.* For Programmer Mode Verify the following: 6. "Bit Toggling Keypad": *Expected: In app keypad changes to represent Bits (1s and 0s).* 7. "QWORD / DWORD / WORD / BYTE": *Expected: Toggles as expected.* 8. "Hex" Hexadecimal: *Expected: A B C D E F become active and user can use them. A maximum of 16 characters can be entered.* 9. "Dec" Decimal: *Expected: A B C D E F are inactive. A maximum of 19 characters can be entered.* 10. "Oct" Octal: *Expected: A B C D E F 8 9 are inactive. A maximum of 22 characters can be entered.* 11. "Bin" Binary: *Expected: A B C D E F 2 3 4 5 6 7 8 9 are inactive. A maximum of 64 characters can be entered.* **Graphing Mode Test: Verify Graphing mode functions** Steps: 1. Launch the "Calculator" app 2. Navigate to "Graphing" Calculator 3. Enter a function of x in the input field
*Expected: Function is plotted in the graph area. Line color matches the colored square next to the input field* 4. Select the "+" button below the function input and enter more functions in the fields that appear
*Expected: All functions are plotted in the graph area and match the colors of the input field squares* 5. Select the colored square for any function
*Expected: Visibility of the function in the graph is toggled off/on* 6. Select the "Zoom In", "Zoom Out", and "Reset View' buttons in the graph area
*Expected: Both X and Y axes zoom in, out, and revert to default settings, respectively* 7. Select the Trace button, then click + drag the graph until the red square is near a graphed function
*Expected: Closest (X, Y) coordinates of the function to the red square are displayed with a black dot to indicate the location* 8. Enter "y=mx+b" into a function input field, then select "Variables" button
*Expected: y=x+1 function is plotted in the graph, "Variables" modal window shows two variables "m" and "b" with values set to 1.* 9. Adjust the value, minimum, maximum, and step for each variable
*Expected: y=mx+b graph adjusts to the new values for m and b, step size changes the increments of the slider for each value* 10. Share the graph via OneNote, Outlook/Mail, Twitter, and Feedback Hub
*Expected: Modifiable message that contains an image of the graph customized for the chosen application opens* 11. Verify Key Graph Features tab shows the correct information for the following functions:
*(Note: IP = Inflection Points, VA = Vertical Asymptotes, HA = Horizontal Asymptotes, OA = Oblique Asymptotes)*
a. **y=x**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅y∈ℝ⁆; X/Y Intercepts: (0)/(0); Max: none; Min: none; IP: none; VA: none; HA: none; OA: none; Parity: Odd; Monotonicity: (-∞, ∞) Increasing*
b. **y=1/x**
*Expected: Domain: ⁅𝑥≠0⁆; Range: ⁅y∈ℝ\{0}⁆; X/Y Intercepts: ø/ø; Max: none; Min: none; IP: none; VA: x=0; HA: y=0; OA: none; Parity: Odd; Monotonicity: (0, ∞) Decreasing, (-∞, 0) Increasing*
c. **y=x^2**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅y∈{0, ∞)⁆; X/Y Intercepts: (0)/(0); Max: none; Min: (0,0); IP: none; VA: none; HA: none; OA: none; Parity: Even; Monotonicity: (0, ∞) Increasing, (-∞, 0) Decreasing*
d. **y=x^3**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅y∈ℝ⁆; X/Y Intercepts: (0)/(0); Max: none; Min: none; IP: (0,0); VA: none; HA: none; OA: none; Parity: Odd; Monotonicity: (-∞, ∞) Increasing*
e. **y=e^x**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅y∈(0, ∞)⁆; X/Y Intercepts: ø/(1); Max: none; Min: none; IP: none; VA: none; HA: y=0; OA: none; Parity: none; Monotonicity: (-∞, ∞) Increasing*
f. **y=ln(x)**
*Expected: Domain: ⁅𝑥>0⁆; Range: ⁅y∈ℝ⁆; X/Y Intercepts: (1)/ø; Max: none; Min: none; IP: none; VA: x=0; HA: none; OA: none; Parity: none; Monotonicity: (0, ∞) Increasing*
g. **y=sin(x)**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅𝑦∈[−1,1]⁆; X/Y Intercepts: (⁅𝜋n1,n1∈ℤ⁆)/(0); Max: ⁅(2𝜋n1+𝜋/2,1),n1∈ℤ⁆; Min: ⁅(2𝜋n1+3𝜋/2,−1),n1∈ℤ⁆; IP: ⁅(𝜋n1,0),n1∈ℤ⁆; VA: none; HA: none; OA: none; Parity: Odd; Monotonicity: ⁅(2𝜋n1+𝜋/2,2𝜋n1+3𝜋/2),n1∈ℤ⁆ Decreasing; ⁅(2𝜋n1+3𝜋/2,2𝜋n1+5𝜋/2),n1∈ℤ⁆ Increasing; Period: 2𝜋*
h. **y=cos(x)**
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: ⁅𝑦∈[−1,1]⁆; X/Y Intercepts: (⁅𝜋n1+𝜋/2,n1∈ℤ⁆)/(1); Max: ⁅(2𝜋n1,1),n1∈ℤ⁆; Min: ⁅(2𝜋n1+𝜋,-1),n1∈ℤ⁆; IP: ⁅(𝜋n1+𝜋/2,0),n1∈ℤ⁆; VA: none; HA: none; OA: none; Parity: Even; Monotonicity: ⁅(2𝜋n1+𝜋,2𝜋n1+2𝜋),n1∈ℤ⁆ Increasing, ⁅(2𝜋n1,2𝜋n1+𝜋),n1∈ℤ⁆ Decreasing; Period: 2𝜋*
i. **y=tan(x)**
*Expected: Domain: ⁅x≠𝜋n1+𝜋/2,∀n1∈ℤ⁆; Range: ⁅𝑦∈ℝ⁆; X/Y Intercepts: (x=𝜋n1, n1 ∈ℤ)/(0); Max: none; Min: none; IP: x=𝜋n1, n1 ∈ℤ; VA: x=𝜋n1+𝜋/2, n1∈ℤ; HA: none; OA: none; Parity: Odd; Monotonicity: ⁅(𝜋n1+𝜋/2,𝜋n1+3𝜋/2),n1∈ℤ⁆ Increasing; Period: 𝜋*
j. **y=sqrt(25-x^2)**
*Expected: Domain: ⁅x∈[-5,5]⁆; Range: ⁅𝑦∈[0,5]⁆; X/Y Intercepts: (5),(-5)/(5); Max: (0,5); Min: (-5,0) and (5,0); IP: none; VA: none; HA: none; OA: none; Parity: Even; Monotonicity: (0,5) Decreasing, (-5,0) Increasing*
k. **y=(-3x^2+2)/(x-1)**
*Expected: Domain: ⁅x≠1⁆; Range: ⁅𝑦∈(-∞, -2√3 - 6}U{2√3 -6,∞⁆; X/Y Intercepts: (-√6/3),(√6/3)/(-2); Max: ⁅(√3/3+1,-2√3−6)⁆; Min: ⁅(−√3/3+1,2√3−6)⁆; IP: none; VA: x=1; HA: none; OA: y=-3x-3; Parity: none; Monotonicity: (√3/3+1,∞) Decreasing, (1,√3/3+1,) Increasing(-√3/3+1,1), Increasing, (-∞,-√3/3+1) Decreasing*
l. **y=sin(sin(x))** ("too complex" error test)
*Expected: Domain: ⁅𝑥∈ℝ⁆; Range: Unable to calculate range for this function; X/Y Intercepts: none; Max: none; Min: none; IP: none; VA: none; HA: none; OA: none; Parity: odd; Monotonicity: Unable to determine the monotonicity of the function*
*These features are too complex for Calculator to calculate: Range, X Intercept, Period, Minima, Maxima, Inflection Points, Monotonicity* m. **y=mx+b**
*Expected: Analysis is not supported for this function* **Date Calculation Test: Verify dates can be calculated.** Steps: 1. Launch the "Calculator" app 2. Navigate to "Date Calculation" Calculator 3. With "Difference between dates" Selected Change the various date input fields *Expected: From and To reflect dates input respectively.* 5. With "Add or Subtract days" Selected Change the various date input fields *Expected: Verify changes made to both add and subtract reflect input respectively.* **Currency Converter Test: Verify conversion & updating current currency rates.** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Currency Converter" Calculator. 3. Select 2 Currency types from the dropdowns & enter a "1" into a conversion slot. *Expected: The currency is slotted properly and converted rate matches the ratio provided under the selected currency types.* 4. Click "Updated" *Expected: Display matches PC's date and time.* 5. After at least a minute: Select "Update rates" & Check "Updated" again: *Expected: The "Update Rates" button changes the date and time to match the computer's current date and time.* **All Calculators Test: Hotkeys: Verify Hot Key function.** Steps: 1. Launch the "Calculator" app. For All Applicable Modes verify the following (note: only 11-15 and 20 work in Always-on-Top mode): 2. Press **Alt +1** to enter "Standard" mode *Expected: Move to "Standard" screen.* 3. Press **Alt +2** to enter "Scientific" mode *Expected: Move to "Scientific" screen.* 4. Press **Alt +3** to enter "Programmer" mode *Expected: Move to "Programming" screen.* 5. Press **Alt +4** to enter "Date Calculation" mode *Expected: Move to "Date Calculation" screen.* 6 Press **Alt +5** to enter "Graphing" mode *Expected: Move to "Graphing" screen.* 7. Press **Ctrl +M** to Store in Memory 8. Press **Ctrl +P** to Add to Active Memory 9. Press **Ctrl +Q** to Subtract form Active Memory 10. Press **Ctrl +R** to Recall from Memory 11. Press **Ctrl +L** to Clear from Memory 12. Press **Delete** to Clear Current Input 'CE' 13. Press **Esc** to Full Clear Input 'C' 14. Press **F9** to Toggle '±' 15. Press **R** to Select '1/x' 16. Press **@** to Select '√' 17. Press **Ctrl + H** to Toggle History Panel *Expected: Function when in small scale window.* 18. Press **Up arrow** to Move up History Panel *Expected: Function when in small scale window.* 19. Press **Down arrow** to Move Down History Panel *Expected: Function when in small scale window.* 20. Press **Ctrl + Shift + D** to Clear History Panel *Expected: Function when in small scale window.* 21. Press **Spacebar** to Repeat Last Input Verify the following in Scientific Mode 22. Press **F3** to Select 'DEG' 23. Press **F4** to Select 'RAD' 24. Press **F5** to Select 'GRAD' 25. Press **Ctrl +G** to Select '10ˣ' 26. Press **Ctrl +Y** to Select 'y√x' 27. Press **Shift +O** to Select 'sin-1' 28. Press **Shift + S** to Select 'cos-1' 29. Press **Shift +T** to Select 'tan-1' 30. Press **Ctrl +O** to Select 'Cosh' 31. Press **Ctrl +S** to Select 'Sinh' 32. Press **Ctrl +T** to Select 'Tanh' 33. Press **D** to Select 'Mod' 34. Press **L** to Select 'log' 35. Press **M** to Select 'dms' 36. Press **N** to Select 'ln' 37. Press **Ctrl +N** to Select 'ex' 38. Press **O** to Select 'Cos' 39. Press **P** to Select 'π' 40. Press **Q** to Select 'x²' 41. Press **S** to Select 'Sin' 42. Press **T** to Select 'Tan' 43. Press **V** to Toggle 'F-E' 44. Press **X** to Select 'Exp' 45. Press **Y** or **^** to Select 'xʸ' 46. Press **#** to Select 'x³' 47. Press **!** to Select 'n!' Verify the following in Programmer Mode 48. Press **F2** to Select 'DWORD' 49. Press **F3** to Select 'WORD' 50. Press **F4** to Select 'BYTE' 51. Press **F5** to Select 'HEX' 52. Press **F6** to Select 'DEC' 53. Press **F7** to Select 'OCT' 54. Press **F8** to Select 'BIN' 55. Press **F12** to Select 'QWORD' 56. Press **A-F** to Input in HEX 57. Press **J** to Select 'RoL' 58. Press **K** to Select 'RoR' 59. Press **<** to Select 'Lsh' 60. Press **>** to Select 'Rsh' 61. Press **%** to Select 'Mod' 62. Press **|** to Select 'Or' 63. Press **~** to Select 'Not' 64. Press **&** to Select 'And' Verify the following in Graphing Mode 65. Press **x** to Select 'x' 66. Press **y** to Select 'y' 67. Press **Ctrl +[Numpad+]** to Select 'Zoom In' 68. Press **Ctrl +[Numpad-]** to Select 'Zoom Out' ## Localization Tests ### Always-on-Top **Test 1** Steps: 1. Change the system default app language to Arabic 2. Launch the "Calculator" app and from "Standard" Calculator, click the Always-on-Top button *Expected: UI/Menu is localized (for example, the title bar buttons is in right-to-left order)* 3. Input "/", "0", “Enter” on the keyboard *Expected: Error message is in Arabic* ## Ease of Access Tests ### Always-on-Top **Test 1** Steps: 1. Open the "Narrator" app 2. Launch the "Calculator" app and from "Standard" Calculator, click the Always-on-Top button 3. Tab over the Always-on-Top button *Expected: Narrator reads the localized version of "Back to full view"* 4. Tab over the main results field *Expected: Narrator reads the localized version of exactly what's displayed (ie. "0")* 5. Tab over the rest of the UI elements *Expected: Narrator reads the localized version of the UI elements' contents* ================================================ FILE: docs/NewFeatureProcess.md ================================================ # New feature process ## Where do I submit my idea for a new feature? The easiest way to submit new feature requests is through [Feedback Hub](https://insider.windows.com/en-us/fb/?contextid=130). In Feedback Hub, any Windows user (even if they aren't on GitHub) can upvote suggestions. The Calculator team reviews these suggestions regularly, and when we're ready to work on an idea we create [feature pitch issues here on GitHub](https://github.com/Microsoft/calculator/issues?q=is%3Aissue+is%3Aopen+project%3AMicrosoft%2Fcalculator%2F1). But using Feedback Hub is not required—_you_ can create feature pitches too! This document explains the elements of a good pitch and how we'll guide features from a pitch to a finished product. The [Feature Tracking board](https://github.com/Microsoft/calculator/projects/1) shows all the features we're working on and where they're at in the process. ## Do I need to follow this process? Can I just start coding and submit a PR? You **do not** need to follow this process for bug fixes, performance improvements, or changes to the development tools. To contribute these changes, [discuss the proposed change in an issue](https://github.com/Microsoft/calculator/issues/new) and then submit a pull request. You **do** need to follow this process for any change which "users will notice". This applies especially to new features and major visual changes. ## Step 1: Feature pitch Feature pitches are submitted as issues on GitHub using the [Feature Request template](https://github.com/Microsoft/calculator/issues/new?assignees=&labels=&template=feature_request.md&title=). We encourage discussion on open issues, and as discussion progresses we will edit the issue description to refine the idea until it is ready for review. We review pitches regularly, and will approve or close issues based on whether they broadly align with the [Calculator roadmap](https://github.com/Microsoft/calculator/blob/master/docs/Roadmap.md). Approved pitches are moved into [planning](https://github.com/Microsoft/calculator/projects/1) on the feature tracking board. ## Step 2: Planning For most features, the output of this phase is a specification which describes how the feature will work, supported by design renderings and code prototypes as needed. The original issue will continue to track the overall progress of the feature, but we will create and iterate on spec documentation in the [Calculator Spec repo](https://github.com/Microsoft/calculator-specs). Sometimes we'll learn new things about a feature proposal during planning, and we'll edit or close the original pitch. We welcome community participation throughout planning. The best ideas often come from trying many ideas during the planning phase. To enable rapid experimentation, we encourage developing and sharing rough ideas—maybe even with pencil and paper—before making designs pixel-perfect or making code robust and maintainable. After the [spec review](https://github.com/Microsoft/calculator-specs#spec-review) is completed, we will move the issue into [implementation](https://github.com/Microsoft/calculator/projects/1) on the feature tracking board. In _some_ cases, all of the details of an idea can be captured concisely in original feature pitch. When that happens, we may move ideas directly into implementation. ## Step 3: Implementation A feature can be implemented by the original submitter, a Microsoft team member, or by other community members. Code contributions and testing help are greatly appreciated. Please let everyone know if you're actively working on a feature to help avoid duplicated efforts from others. You might be able to reuse code written during the prototype process, although there will typically be more work required to make the solution robust. Once the code is ready, you can begin [submitting pull requests](../CONTRIBUTING.md). ### Technical review As with all changes, the code for new features will be reviewed by a member of the Microsoft team before being checked in to the master branch. New features often need a more thorough technical review than bug fixes. When reviewing code for new features, the Microsoft team considers at least these items: - [ ] All items on the [Accessibility checklist](https://docs.microsoft.com/en-us/windows/uwp/design/accessibility/accessibility-checklist) should be addressed. - [ ] All items on the [Globalization checklist](https://docs.microsoft.com/en-us/windows/uwp/design/globalizing/guidelines-and-checklist-for-globalizing-your-app) should be addressed. - [ ] The change should be tested on the oldest version of Windows that the app supports. You can find this version number in AppxManifest.xml. Any calls to APIs newer than that version should be [conditionally enabled](https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/version-adaptive-apps). - [ ] The change should use only supported APIs. If there are any questions about whether legacy or undocumented APIs are in use, the [Windows App Certification Kit](https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/windows-app-certification-kit) should be run to check. - [ ] The change should save the user's progress if the app is [suspended and resumed](https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/optimize-suspend-resume). Code to handle these cases should be [tested in the Visual Studio debugger](https://docs.microsoft.com/en-us/visualstudio/debugger/how-to-trigger-suspend-resume-and-background-events-for-windows-store-apps-in-visual-studio). - [ ] If the change [has customizations for particular device families](https://docs.microsoft.com/en-us/uwp/extension-sdks/device-families-overview), it should be tested on those device families. - [ ] The change should be tested with the app window resized to the smallest possible size. - [ ] The change should be tested with light, dark, and high contrast themes. It should honor the user's preferred [accent color](https://docs.microsoft.com/en-us/windows/uwp/design/style/color#accent-color-palette). - [ ] If the change adds new libraries or other dependencies: - [ ] If the library is packaged with the app, the increased size of the binaries should be measured. - [ ] If the library is not maintained by Microsoft, the Microsoft team will need to set up a plan to monitor the upstream library for changes like security fixes. - [ ] If the library is being used under an open-source license, we must comply with the license and credit third parties appropriately. - [ ] If the change adds code which runs during the app's startup path, or adds new XAML elements which are loaded at startup: - [ ] Run the perf tests to measure any increase in startup time. Move work out of the startup path if possible. - [ ] If the change adds additional logging: - [ ] All logging should use [TraceLogging](https://docs.microsoft.com/en-us/windows/desktop/tracelogging/trace-logging-about). - [ ] Unnecessary log events should be removed, or configured so that they are collected only when needed to debug issues or measure feature usage. - [ ] If the change reads user data from files or app settings: - [ ] Verify that state saved in a previous version of the app can be used with the new version. - [ ] If the change makes network requests: - [ ] Microsoft must plan to keep these dependencies secure and functional for the lifetime of the app (which might be several years). - [ ] The app should be fully functional if some network requests are slow or fail. Tools like [Fiddler](https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/perftesting) can be used to simulate slow or failed requests. ## Step 4: Final product review and merge to master After the technical review is complete, the product team will review the finished product to make sure the final implementation is ready to [release to Windows customers](Roadmap.md#Releases). ================================================ FILE: docs/Roadmap.md ================================================ # Windows Calculator Roadmap Windows Calculator is under active development by Microsoft. ## Focus In 2021, the Windows Calculator team is focused on: * Iterating upon the existing app design based on the latest guidelines for [Fluent Design](https://developer.microsoft.com/en-us/windows/apps/design) and [WinUI](https://github.com/microsoft/microsoft-ui-xaml). * Unblocking community contributions by identifying and addressing bottlenecks affecting developers, including: * Migrating the codebase to C# ([#893](https://github.com/microsoft/calculator/issues/893)) * Releasing infinite-precision engine as standalone package ([#1545](https://github.com/microsoft/calculator/issues/1545)) and adding support for arbitrary expression parsing ([#526](https://github.com/microsoft/calculator/issues/526)) * Adding a settings page ([#596](https://github.com/microsoft/calculator/issues/596)) * [Your feature idea here] - please review our [new feature development process](https://github.com/Microsoft/calculator/blob/main/docs/NewFeatureProcess.md) to get started! We welcome contributions of all kinds from the community, but especially those that support the efforts above. Please see our [contributing guidelines](https://github.com/Microsoft/calculator/blob/main/CONTRIBUTING.md) for more information on how to get involved. ## Releases Windows Calculator is included in every Windows 10 release as a [provisioned Windows app](https://docs.microsoft.com/en-us/windows/application-management/apps-in-windows-10#provisioned-windows-apps). We also deliver updates through the [Microsoft Store](https://www.microsoft.com/store/productId/9WZDNCRFHVN5) approximately monthly. ================================================ FILE: nuget.config ================================================  ================================================ FILE: src/CalcManager/CEngine/CalcInput.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include "Header Files/CalcEngine.h" using namespace std; using namespace CalcEngine; constexpr int C_NUM_MAX_DIGITS = MAX_STRLEN; constexpr int C_EXP_MAX_DIGITS = 4; void CalcNumSec::Clear() { value.clear(); m_isNegative = false; } void CalcInput::Clear() { m_base.Clear(); m_exponent.Clear(); m_hasExponent = false; m_hasDecimal = false; m_decPtIndex = 0; } bool CalcInput::TryToggleSign(bool isIntegerMode, wstring_view maxNumStr) { // Zero is always positive if (m_base.IsEmpty()) { m_base.IsNegative(false); m_exponent.IsNegative(false); } else if (m_hasExponent) { m_exponent.IsNegative(!m_exponent.IsNegative()); } else { // When in integer only mode, it isn't always allowed to toggle, as toggling can cause the num to be out of // bounds. For eg. in byte -128 is valid, but when it toggled it becomes 128, which is more than 127. if (isIntegerMode && m_base.IsNegative()) { // Decide if this additional digit will fit for the given bit width if (m_base.value.size() >= maxNumStr.size() && m_base.value.back() > maxNumStr.back()) { // Last digit is more than the allowed positive number. Fail return false; } } m_base.IsNegative(!m_base.IsNegative()); } return true; } bool CalcInput::TryAddDigit(unsigned int value, uint32_t radix, bool isIntegerMode, wstring_view maxNumStr, int32_t wordBitWidth, int maxDigits) { // Convert from an integer into a character // This includes both normal digits and alpha 'digits' for radixes > 10 auto chDigit = static_cast((value < 10) ? (L'0' + value) : (L'A' + value - 10)); CalcNumSec* pNumSec; size_t maxCount; if (m_hasExponent) { pNumSec = &m_exponent; maxCount = C_EXP_MAX_DIGITS; } else { pNumSec = &m_base; maxCount = maxDigits; // Don't include the decimal point in the count. In that way you can enter the maximum allowed precision. // Precision doesn't include decimal point. if (HasDecimalPt()) { maxCount++; } // First leading 0 is not counted in input restriction as the output can be of that form // See NumberToString algorithm. REVIEW: We don't have such input restriction mimicking based on output of NumberToString for exponent // NumberToString can give 10 digit exponent, but we still restrict the exponent here to be only 4 digits. if (!pNumSec->IsEmpty() && pNumSec->value.front() == L'0') { maxCount++; } } // Ignore leading zeros if (pNumSec->IsEmpty() && (value == 0)) { return true; } if (pNumSec->value.size() < maxCount) { pNumSec->value += chDigit; return true; } // if we are in integer mode, within the base, and we're on the last digit then // there are special cases where we can actually add one more digit. if (isIntegerMode && pNumSec->value.size() == maxCount && !m_hasExponent) { bool allowExtraDigit = false; if (radix == 8) { switch (wordBitWidth % 3) { case 1: // in 16 or 64bit word size, if the first digit is a 1 we can enter 6 (16bit) or 22 (64bit) digits allowExtraDigit = (pNumSec->value.front() == L'1'); break; case 2: // in 8 or 32bit word size, if the first digit is a 3 or less we can enter 3 (8bit) or 11 (32bit) digits allowExtraDigit = (pNumSec->value.front() <= L'3'); break; } } else if (radix == 10) { // If value length is at least the max, we know we can't add another digit. if (pNumSec->value.size() < maxNumStr.size()) { // Compare value to substring of maxNumStr of value.size() length. // If cmpResult > 0: // eg. max is "127", and the current number is "20". first digit itself says we are out. // Additional digit is not possible // If cmpResult < 0: // Success case. eg. max is "127", and current number is say "11". The second digit '1' being < // corresponding digit '2', means all digits are possible to append, like 119 will still be < 127 // If cmpResult == 0: // Undecided still. The case when max is "127", and current number is "12". Look for the new number being 7 or less to allow auto cmpResult = pNumSec->value.compare(0, wstring::npos, maxNumStr, 0, pNumSec->value.size()); if (cmpResult < 0) { allowExtraDigit = true; } else if (cmpResult == 0) { auto lastChar = maxNumStr[pNumSec->value.size()]; if (chDigit <= lastChar) { allowExtraDigit = true; } else if (pNumSec->IsNegative() && chDigit <= lastChar + 1) { // Negative value case, eg. max is "127", and current number is "-12". Then 8 is also valid, as the range // is always from -(max+1)...max in signed mode allowExtraDigit = true; } } } } if (allowExtraDigit) { pNumSec->value += chDigit; return true; } } return false; } bool CalcInput::TryAddDecimalPt() { // Already have a decimal pt or we're in the exponent if (m_hasDecimal || m_hasExponent) { return false; } if (m_base.IsEmpty()) { m_base.value += L'0'; // Add a leading zero } m_decPtIndex = m_base.value.size(); m_base.value += m_decSymbol; m_hasDecimal = true; return true; } bool CalcInput::HasDecimalPt() { return m_hasDecimal; } bool CalcInput::TryBeginExponent() { // For compatibility, add a trailing dec point to base num if it doesn't have one TryAddDecimalPt(); if (m_hasExponent) // Already entering exponent { return false; } m_hasExponent = true; // Entering exponent return true; } void CalcInput::Backspace() { if (m_hasExponent) { if (!m_exponent.IsEmpty()) { m_exponent.value.pop_back(); if (m_exponent.IsEmpty()) { m_exponent.Clear(); } } else { m_hasExponent = false; } } else { if (!m_base.IsEmpty()) { m_base.value.pop_back(); if (m_base.value == L"0") { m_base.value.pop_back(); } } if (m_base.value.size() <= m_decPtIndex) { // Backed up over decimal point m_hasDecimal = false; m_decPtIndex = 0; } if (m_base.IsEmpty()) { m_base.Clear(); } } } void CalcInput::SetDecimalSymbol(wchar_t decSymbol) { if (m_decSymbol != decSymbol) { m_decSymbol = decSymbol; if (m_hasDecimal) { // Change to new decimal pt m_base.value[m_decPtIndex] = m_decSymbol; } } } bool CalcInput::IsEmpty() { return m_base.IsEmpty() && !m_hasExponent && m_exponent.IsEmpty() && !m_hasDecimal; } wstring CalcInput::ToString(uint32_t radix) { // In theory both the base and exponent could be C_NUM_MAX_DIGITS long. if ((m_base.value.size() > MAX_STRLEN) || (m_hasExponent && m_exponent.value.size() > MAX_STRLEN)) { return wstring(); } wstring result; if (m_base.IsNegative()) { result = L'-'; } if (m_base.IsEmpty()) { result += L'0'; } else { result += m_base.value; } if (m_hasExponent) { // Add a decimal point if it is not already there if (!m_hasDecimal) { result += m_decSymbol; } result += ((radix == 10) ? L'e' : L'^'); result += (m_exponent.IsNegative() ? L'-' : L'+'); if (m_exponent.IsEmpty()) { result += L'0'; } else { result += m_exponent.value; } } // Base and Exp can each be up to C_NUM_MAX_DIGITS in length, plus 4 characters for sign, dec, exp, and expSign. if (result.size() > C_NUM_MAX_DIGITS * 2 + 4) { return wstring(); } return result; } Rational CalcInput::ToRational(uint32_t radix, int32_t precision) { PRAT rat = StringToRat(m_base.IsNegative(), m_base.value, m_exponent.IsNegative(), m_exponent.value, radix, precision); if (rat == nullptr) { return 0; } Rational result{ rat }; destroyrat(rat); return result; } ================================================ FILE: src/CalcManager/CEngine/CalcUtils.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "Header Files/CalcEngine.h" #include "Header Files/CalcUtils.h" bool IsOpInRange(OpCode op, uint32_t x, uint32_t y) { return ((op >= x) && (op <= y)); } bool IsBinOpCode(OpCode opCode) { return IsOpInRange(opCode, IDC_AND, IDC_PWR) || IsOpInRange(opCode, IDC_BINARYEXTENDEDFIRST, IDC_BINARYEXTENDEDLAST); } // WARNING: IDC_SIGN is a special unary op but still this doesn't catch this. Caller has to be aware // of it and catch it themselves or not needing this bool IsUnaryOpCode(OpCode opCode) { return (IsOpInRange(opCode, IDC_UNARYFIRST, IDC_UNARYLAST) || IsOpInRange(opCode, IDC_UNARYEXTENDEDFIRST, IDC_UNARYEXTENDEDLAST)); } bool IsDigitOpCode(OpCode opCode) { return IsOpInRange(opCode, IDC_0, IDC_F); } // Some commands are not affecting the state machine state of the calc flow. But these are more of // some gui mode kind of settings (eg Inv button, or Deg,Rad , Back etc.). This list is getting bigger & bigger // so we abstract this as a separate routine. Note: There is another side to this. Some commands are not // gui mode setting to begin with, but once it is discovered it is invalid and we want to behave as though it // was never inout, we need to revert the state changes made as a result of this test bool IsGuiSettingOpCode(OpCode opCode) { if (IsOpInRange(opCode, IDM_HEX, IDM_BIN) || IsOpInRange(opCode, IDM_QWORD, IDM_BYTE) || IsOpInRange(opCode, IDM_DEG, IDM_GRAD)) { return true; } switch (opCode) { case IDC_INV: case IDC_FE: case IDC_MCLEAR: case IDC_BACK: case IDC_EXP: case IDC_STORE: case IDC_MPLUS: case IDC_MMINUS: return true; } // most of the commands return false; } ================================================ FILE: src/CalcManager/CEngine/History.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "Header Files/CalcEngine.h" #include "Command.h" #include "winerror_cross_platform.h" constexpr int ASCII_0 = 48; using namespace std; using namespace CalcEngine; namespace { template static void Truncate(vector& v, unsigned int index) { if (index >= v.size()) { throw E_BOUNDS; } auto startIter = v.begin() + index; v.erase(startIter, v.end()); } } void CHistoryCollector::ReinitHistory() { m_lastOpStartIndex = -1; m_lastBinOpStartIndex = -1; m_curOperandIndex = 0; m_bLastOpndBrace = false; if (m_spTokens != nullptr) { m_spTokens->clear(); } if (m_spCommands != nullptr) { m_spCommands->clear(); } } // Constructor // Can throw Out of memory error CHistoryCollector::CHistoryCollector(ICalcDisplay* pCalcDisplay, std::shared_ptr pHistoryDisplay, wchar_t decimalSymbol) : m_pHistoryDisplay(pHistoryDisplay) , m_pCalcDisplay(pCalcDisplay) , m_iCurLineHistStart(-1) , m_decimalSymbol(decimalSymbol) { ReinitHistory(); } CHistoryCollector::~CHistoryCollector() { m_pHistoryDisplay = nullptr; m_pCalcDisplay = nullptr; if (m_spTokens != nullptr) { m_spTokens->clear(); } } void CHistoryCollector::AddOpndToHistory(wstring_view numStr, Rational const& rat, bool fRepetition) { int iCommandEnd = AddCommand(GetOperandCommandsFromString(numStr, rat)); m_lastOpStartIndex = IchAddSzToEquationSz(numStr, iCommandEnd); if (fRepetition) { SetExpressionDisplay(); } m_bLastOpndBrace = false; m_lastBinOpStartIndex = -1; } void CHistoryCollector::RemoveLastOpndFromHistory() { TruncateEquationSzFromIch(m_lastOpStartIndex); SetExpressionDisplay(); m_lastOpStartIndex = -1; // This will not restore the m_lastBinOpStartIndex, as it isn't possible to remove that also later } void CHistoryCollector::AddBinOpToHistory(int nOpCode, bool isIntegerMode, bool fNoRepetition) { int iCommandEnd = AddCommand(std::make_shared(nOpCode)); m_lastBinOpStartIndex = IchAddSzToEquationSz(L" ", -1); IchAddSzToEquationSz(CCalcEngine::OpCodeToBinaryString(nOpCode, isIntegerMode), iCommandEnd); IchAddSzToEquationSz(L" ", -1); if (fNoRepetition) { SetExpressionDisplay(); } m_lastOpStartIndex = -1; } // This is expected to be called when a binary op in the last say 1+2+ is changing to another one say 1+2* (+ changed to *) // It needs to know by this change a Precedence inversion happened. i.e. previous op was lower or equal to its previous op, but the new // one isn't. (Eg. 1*2* to 1*2^). It can add explicit brackets to ensure the precedence is inverted. (Eg. (1*2) ^) void CHistoryCollector::ChangeLastBinOp(int nOpCode, bool fPrecInvToHigher, bool isIntegerMode) { TruncateEquationSzFromIch(m_lastBinOpStartIndex); if (fPrecInvToHigher) { EnclosePrecInversionBrackets(); } AddBinOpToHistory(nOpCode, isIntegerMode); } void CHistoryCollector::PushLastOpndStart(int ichOpndStart) { int ich = (ichOpndStart == -1) ? m_lastOpStartIndex : ichOpndStart; if (m_curOperandIndex < static_cast(m_operandIndices.size())) { m_operandIndices[m_curOperandIndex++] = ich; } } void CHistoryCollector::PopLastOpndStart() { if (m_curOperandIndex > 0) { m_lastOpStartIndex = m_operandIndices[--m_curOperandIndex]; } } void CHistoryCollector::AddOpenBraceToHistory() { AddCommand(std::make_shared(IDC_OPENP)); int ichOpndStart = IchAddSzToEquationSz(CCalcEngine::OpCodeToString(IDC_OPENP), -1); PushLastOpndStart(ichOpndStart); SetExpressionDisplay(); m_lastBinOpStartIndex = -1; } void CHistoryCollector::AddCloseBraceToHistory() { AddCommand(std::make_shared(IDC_CLOSEP)); IchAddSzToEquationSz(CCalcEngine::OpCodeToString(IDC_CLOSEP), -1); SetExpressionDisplay(); PopLastOpndStart(); m_lastBinOpStartIndex = -1; m_bLastOpndBrace = true; } void CHistoryCollector::EnclosePrecInversionBrackets() { // Top of the Opnd starts index or 0 is nothing is in top int ichStart = (m_curOperandIndex > 0) ? m_operandIndices[m_curOperandIndex - 1] : 0; InsertSzInEquationSz(CCalcEngine::OpCodeToString(IDC_OPENP), -1, ichStart); IchAddSzToEquationSz(CCalcEngine::OpCodeToString(IDC_CLOSEP), -1); } bool CHistoryCollector::FOpndAddedToHistory() const { return (-1 != m_lastOpStartIndex); } // AddUnaryOpToHistory // // This is does the postfix to prefix translation of the input and adds the text to the history. Eg. doing 2 + 4 (sqrt), // this routine will ensure the last sqrt call unary operator, actually goes back in history and wraps 4 in sqrt(4) // void CHistoryCollector::AddUnaryOpToHistory(int nOpCode, bool fInv, AngleType angletype) { int iCommandEnd; // When successfully applying a unary op, there should be an opnd already // A very special case of % which is a funny post op unary op. if (IDC_PERCENT == nOpCode) { iCommandEnd = AddCommand(std::make_shared(nOpCode)); IchAddSzToEquationSz(CCalcEngine::OpCodeToString(nOpCode), iCommandEnd); } else // all the other unary ops { std::shared_ptr spExpressionCommand; if (IDC_SIGN == nOpCode) { spExpressionCommand = std::make_shared(nOpCode); } else { CalculationManager::Command angleOpCode; if (angletype == AngleType::Degrees) { angleOpCode = CalculationManager::Command::CommandDEG; } else if (angletype == AngleType::Radians) { angleOpCode = CalculationManager::Command::CommandRAD; } else // (angletype == AngleType::Gradians) { angleOpCode = CalculationManager::Command::CommandGRAD; } int command = nOpCode; switch (nOpCode) { case IDC_SIN: command = fInv ? static_cast(CalculationManager::Command::CommandASIN) : IDC_SIN; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_COS: command = fInv ? static_cast(CalculationManager::Command::CommandACOS) : IDC_COS; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_TAN: command = fInv ? static_cast(CalculationManager::Command::CommandATAN) : IDC_TAN; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_SINH: command = fInv ? static_cast(CalculationManager::Command::CommandASINH) : IDC_SINH; spExpressionCommand = std::make_shared(command); break; case IDC_COSH: command = fInv ? static_cast(CalculationManager::Command::CommandACOSH) : IDC_COSH; spExpressionCommand = std::make_shared(command); break; case IDC_TANH: command = fInv ? static_cast(CalculationManager::Command::CommandATANH) : IDC_TANH; spExpressionCommand = std::make_shared(command); break; case IDC_SEC: command = fInv ? static_cast(CalculationManager::Command::CommandASEC) : IDC_SEC; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_CSC: command = fInv ? static_cast(CalculationManager::Command::CommandACSC) : IDC_CSC; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_COT: command = fInv ? static_cast(CalculationManager::Command::CommandACOT) : IDC_COT; spExpressionCommand = std::make_shared(static_cast(angleOpCode), command); break; case IDC_SECH: command = fInv ? static_cast(CalculationManager::Command::CommandASECH) : IDC_SECH; spExpressionCommand = std::make_shared(command); break; case IDC_CSCH: command = fInv ? static_cast(CalculationManager::Command::CommandACSCH) : IDC_CSCH; spExpressionCommand = std::make_shared(command); break; case IDC_COTH: command = fInv ? static_cast(CalculationManager::Command::CommandACOTH) : IDC_COTH; spExpressionCommand = std::make_shared(command); break; case IDC_LN: command = fInv ? static_cast(CalculationManager::Command::CommandPOWE) : IDC_LN; spExpressionCommand = std::make_shared(command); break; default: spExpressionCommand = std::make_shared(nOpCode); } } iCommandEnd = AddCommand(spExpressionCommand); wstring operandStr{ CCalcEngine::OpCodeToUnaryString(nOpCode, fInv, angletype) }; if (!m_bLastOpndBrace) // The opnd is already covered in braces. No need for additional braces around it { operandStr.append(CCalcEngine::OpCodeToString(IDC_OPENP)); } InsertSzInEquationSz(operandStr, iCommandEnd, m_lastOpStartIndex); if (!m_bLastOpndBrace) { IchAddSzToEquationSz(CCalcEngine::OpCodeToString(IDC_CLOSEP), -1); } } SetExpressionDisplay(); m_bLastOpndBrace = false; // m_lastOpStartIndex remains the same as last opnd is just replaced by unaryop(lastopnd) m_lastBinOpStartIndex = -1; } // Called after = with the result of the equation // Responsible for clearing the top line of current running history display, as well as adding yet another element to // history of equations void CHistoryCollector::CompleteHistoryLine(wstring_view numStr) { if (nullptr != m_pHistoryDisplay) { unsigned int addedItemIndex = m_pHistoryDisplay->AddToHistory(m_spTokens, m_spCommands, numStr); m_pCalcDisplay->OnHistoryItemAdded(addedItemIndex); } m_spTokens = nullptr; m_spCommands = nullptr; m_iCurLineHistStart = -1; // It will get recomputed at the first Opnd ReinitHistory(); } void CHistoryCollector::CompleteEquation(std::wstring_view numStr) { // Add only '=' token and not add EQU command, because // EQU command breaks loading from history (it duplicate history entries). IchAddSzToEquationSz(CCalcEngine::OpCodeToString(IDC_EQU), -1); SetExpressionDisplay(); CompleteHistoryLine(numStr); } void CHistoryCollector::ClearHistoryLine(wstring_view errStr) { if (errStr.empty()) // in case of error let the display stay as it is { if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->SetExpressionDisplay( std::make_shared>>(), std::make_shared>>()); } m_iCurLineHistStart = -1; // It will get recomputed at the first Opnd ReinitHistory(); } } // Adds the given string psz to the globally maintained current equation string at the end. // Also returns the 0 based index in the string just added. Can throw out of memory error int CHistoryCollector::IchAddSzToEquationSz(wstring_view str, int icommandIndex) { if (m_spTokens == nullptr) { m_spTokens = std::make_shared>>(); } m_spTokens->push_back(std::pair(wstring(str), icommandIndex)); return static_cast(m_spTokens->size() - 1); } // Inserts a given string into the global m_pszEquation at the given index ich taking care of reallocations etc. void CHistoryCollector::InsertSzInEquationSz(wstring_view str, int icommandIndex, int ich) { m_spTokens->emplace(m_spTokens->begin() + ich, wstring(str), icommandIndex); } // Chops off the current equation string from the given index void CHistoryCollector::TruncateEquationSzFromIch(int ich) { // Truncate commands int minIdx = -1; unsigned int nTokens = static_cast(m_spTokens->size()); for (unsigned int i = ich; i < nTokens; i++) { const auto& currentPair = (*m_spTokens)[i]; int curTokenId = currentPair.second; if (curTokenId != -1) { if ((minIdx != -1) || (curTokenId < minIdx)) { minIdx = curTokenId; Truncate(*m_spCommands, minIdx); } } } Truncate(*m_spTokens, ich); } // Adds the m_pszEquation into the running history text void CHistoryCollector::SetExpressionDisplay() { if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->SetExpressionDisplay(m_spTokens, m_spCommands); } } int CHistoryCollector::AddCommand(_In_ const std::shared_ptr& spCommand) { if (m_spCommands == nullptr) { m_spCommands = std::make_shared>>(); } m_spCommands->push_back(spCommand); return static_cast(m_spCommands->size() - 1); } // To Update the operands in the Expression according to the current Radix void CHistoryCollector::UpdateHistoryExpression(uint32_t radix, int32_t precision) { if (m_spTokens == nullptr) { return; } for (auto& token : *m_spTokens) { int commandPosition = token.second; if (commandPosition != -1) { const std::shared_ptr& expCommand = m_spCommands->at(commandPosition); if (expCommand != nullptr && CalculationManager::CommandType::OperandCommand == expCommand->GetCommandType()) { const std::shared_ptr& opndCommand = std::static_pointer_cast(expCommand); if (opndCommand != nullptr) { token.first = opndCommand->GetString(radix, precision); opndCommand->SetCommands(GetOperandCommandsFromString(token.first)); } } } } SetExpressionDisplay(); } void CHistoryCollector::SetDecimalSymbol(wchar_t decimalSymbol) { m_decimalSymbol = decimalSymbol; } // Update the commands corresponding to the passed string Number std::shared_ptr> CHistoryCollector::GetOperandCommandsFromString(wstring_view numStr) const { std::shared_ptr> commands = std::make_shared>(); // Check for negate bool fNegative = (numStr[0] == L'-'); for (size_t i = (fNegative ? 1 : 0); i < numStr.length(); i++) { if (numStr[i] == m_decimalSymbol) { commands->push_back(IDC_PNT); } else if (numStr[i] == L'e') { commands->push_back(IDC_EXP); } else if (numStr[i] == L'-') { commands->push_back(IDC_SIGN); } else if (numStr[i] == L'+') { // Ignore. } // Number else { int num = static_cast(numStr[i]) - ASCII_0; num += IDC_0; commands->push_back(num); } } // If the number is negative, append a sign command at the end. if (fNegative) { commands->push_back(IDC_SIGN); } return commands; } std::shared_ptr CHistoryCollector::GetOperandCommandsFromString(std::wstring_view numStr, Rational const& rat) const { std::shared_ptr> commands = std::make_shared>(); // Check for negate bool fNegative = (numStr[0] == L'-'); bool fSciFmt = false; bool fDecimal = false; for (size_t i = (fNegative ? 1 : 0); i < numStr.length(); i++) { if (numStr[i] == m_decimalSymbol) { commands->push_back(IDC_PNT); if (!fSciFmt) { fDecimal = true; } } else if (numStr[i] == L'e') { commands->push_back(IDC_EXP); fSciFmt = true; } else if (numStr[i] == L'-') { commands->push_back(IDC_SIGN); } else if (numStr[i] == L'+') { // Ignore. } // Number else { int num = static_cast(numStr[i]) - ASCII_0; num += IDC_0; commands->push_back(num); } } auto operandCommand = std::make_shared(commands, fNegative, fDecimal, fSciFmt); operandCommand->Initialize(rat); return operandCommand; } std::vector> CHistoryCollector::GetCommands() const { std::vector> commands; if (m_spCommands != nullptr) { commands = *m_spCommands; } return commands; } ================================================ FILE: src/CalcManager/CEngine/Number.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. #include #include "Header Files/Number.h" using namespace std; namespace CalcEngine { Number::Number() noexcept : Number(1, 0, { 0 }) { } Number::Number(int32_t sign, int32_t exp, vector const& mantissa) noexcept : m_sign{ sign } , m_exp{ exp } , m_mantissa{ mantissa } { } Number::Number(PNUMBER p) noexcept : m_sign{ p->sign } , m_exp{ p->exp } { m_mantissa.reserve(p->cdigit); copy_n(p->mant, p->cdigit, back_inserter(m_mantissa)); } PNUMBER Number::ToPNUMBER() const { PNUMBER ret = _createnum(static_cast(this->Mantissa().size()) + 1); ret->sign = this->Sign(); ret->exp = this->Exp(); ret->cdigit = static_cast(this->Mantissa().size()); MANTTYPE* ptrRet = ret->mant; for (auto const& digit : this->Mantissa()) { *ptrRet++ = digit; } return ret; } int32_t const& Number::Sign() const { return m_sign; } int32_t const& Number::Exp() const { return m_exp; } vector const& Number::Mantissa() const { return m_mantissa; } bool Number::IsZero() const { return all_of(m_mantissa.begin(), m_mantissa.end(), [](auto&& i) { return i == 0; }); } } ================================================ FILE: src/CalcManager/CEngine/Rational.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. #include "Header Files/Rational.h" using namespace std; namespace CalcEngine { Rational::Rational() noexcept : m_p{} , m_q{ 1, 0, { 1 } } { } Rational::Rational(Number const& n) noexcept { int32_t qExp = 0; if (n.Exp() < 0) { qExp -= n.Exp(); } m_p = Number(n.Sign(), 0, n.Mantissa()); m_q = Number(1, qExp, { 1 }); } Rational::Rational(Number const& p, Number const& q) noexcept : m_p{ p } , m_q{ q } { } Rational::Rational(int32_t i) { PRAT pr = i32torat(static_cast(i)); m_p = Number{ pr->pp }; m_q = Number{ pr->pq }; destroyrat(pr); } Rational::Rational(uint32_t ui) { PRAT pr = Ui32torat(static_cast(ui)); m_p = Number{ pr->pp }; m_q = Number{ pr->pq }; destroyrat(pr); } Rational::Rational(uint64_t ui) { uint32_t hi = (uint32_t)(((ui) >> 32) & 0xffffffff); uint32_t lo = (uint32_t)ui; Rational temp = (Rational{ hi } << 32) | lo; m_p = Number{ temp.P() }; m_q = Number{ temp.Q() }; } Rational::Rational(PRAT prat) noexcept : m_p{ Number{ prat->pp } } , m_q{ Number{ prat->pq } } { } PRAT Rational::ToPRAT() const { PRAT ret = _createrat(); ret->pp = this->P().ToPNUMBER(); ret->pq = this->Q().ToPNUMBER(); return ret; } Number const& Rational::P() const { return m_p; } Number const& Rational::Q() const { return m_q; } Rational Rational::operator-() const { return Rational{ Number{ -1 * m_p.Sign(), m_p.Exp(), m_p.Mantissa() }, m_q }; } Rational& Rational::operator+=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { addrat(&lhsRat, rhsRat, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator-=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { subrat(&lhsRat, rhsRat, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator*=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { mulrat(&lhsRat, rhsRat, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator/=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { divrat(&lhsRat, rhsRat, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } /// /// Calculate the remainder after division, the sign of a result will match the sign of the current object. /// /// /// This function has the same behavior as the standard C/C++ operator '%' /// to calculate the modulus after division instead, use instead. /// Rational& Rational::operator%=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { remrat(&lhsRat, rhsRat); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator<<=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { lshrat(&lhsRat, rhsRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator>>=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { rshrat(&lhsRat, rhsRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator&=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { andrat(&lhsRat, rhsRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator|=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { orrat(&lhsRat, rhsRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational& Rational::operator^=(Rational const& rhs) { PRAT lhsRat = this->ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); try { xorrat(&lhsRat, rhsRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(rhsRat); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } *this = Rational{ lhsRat }; destroyrat(lhsRat); return *this; } Rational operator+(Rational lhs, Rational const& rhs) { lhs += rhs; return lhs; } Rational operator-(Rational lhs, Rational const& rhs) { lhs -= rhs; return lhs; } Rational operator*(Rational lhs, Rational const& rhs) { lhs *= rhs; return lhs; } Rational operator/(Rational lhs, Rational const& rhs) { lhs /= rhs; return lhs; } /// /// Calculate the remainder after division, the sign of a result will match the sign of lhs. /// /// /// This function has the same behavior as the standard C/C++ operator '%', to calculate the modulus after division instead, use instead. /// Rational operator%(Rational lhs, Rational const& rhs) { lhs %= rhs; return lhs; } Rational operator<<(Rational lhs, Rational const& rhs) { lhs <<= rhs; return lhs; } Rational operator>>(Rational lhs, Rational const& rhs) { lhs >>= rhs; return lhs; } Rational operator&(Rational lhs, Rational const& rhs) { lhs &= rhs; return lhs; } Rational operator|(Rational lhs, Rational const& rhs) { lhs |= rhs; return lhs; } Rational operator^(Rational lhs, Rational const& rhs) { lhs ^= rhs; return lhs; } bool operator==(Rational const& lhs, Rational const& rhs) { PRAT lhsRat = lhs.ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); bool result = false; try { result = rat_equ(lhsRat, rhsRat, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } destroyrat(lhsRat); destroyrat(rhsRat); return result; } bool operator!=(Rational const& lhs, Rational const& rhs) { return !(lhs == rhs); } bool operator<(Rational const& lhs, Rational const& rhs) { PRAT lhsRat = lhs.ToPRAT(); PRAT rhsRat = rhs.ToPRAT(); bool result = false; try { result = rat_lt(lhsRat, rhsRat, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(lhsRat); destroyrat(rhsRat); throw(error); } destroyrat(lhsRat); destroyrat(rhsRat); return result; } bool operator>(Rational const& lhs, Rational const& rhs) { return rhs < lhs; } bool operator<=(Rational const& lhs, Rational const& rhs) { return !(lhs > rhs); } bool operator>=(Rational const& lhs, Rational const& rhs) { return !(lhs < rhs); } wstring Rational::ToString(uint32_t radix, NumberFormat fmt, int32_t precision) const { PRAT rat = this->ToPRAT(); wstring result{}; try { result = RatToString(rat, fmt, radix, precision); } catch (uint32_t error) { destroyrat(rat); throw(error); } destroyrat(rat); return result; } uint64_t Rational::ToUInt64_t() const { PRAT rat = this->ToPRAT(); uint64_t result; try { result = rattoUi64(rat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(rat); throw(error); } destroyrat(rat); return result; } } ================================================ FILE: src/CalcManager/CEngine/RationalMath.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "Header Files/RationalMath.h" using namespace std; using namespace CalcEngine; Rational RationalMath::Frac(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { fracrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Integer(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { intrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Pow(Rational const& base, Rational const& pow) { PRAT baseRat = base.ToPRAT(); PRAT powRat = pow.ToPRAT(); try { powrat(&baseRat, powRat, RATIONAL_BASE, RATIONAL_PRECISION); destroyrat(powRat); } catch (uint32_t error) { destroyrat(baseRat); destroyrat(powRat); throw(error); } Rational result{ baseRat }; destroyrat(baseRat); return result; } Rational RationalMath::Root(Rational const& base, Rational const& root) { return Pow(base, Invert(root)); } Rational RationalMath::Fact(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { factrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Exp(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { exprat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Log(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { lograt(&prat, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Log10(Rational const& rat) { return Log(rat) / Rational{ ln_ten }; } Rational RationalMath::Invert(Rational const& rat) { return 1 / rat; } Rational RationalMath::Abs(Rational const& rat) { return Rational{ Number{ 1, rat.P().Exp(), rat.P().Mantissa() }, Number{ 1, rat.Q().Exp(), rat.Q().Mantissa() } }; } Rational RationalMath::Sin(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { sinanglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Cos(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { cosanglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Tan(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { tananglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ASin(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { asinanglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ACos(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { acosanglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ATan(Rational const& rat, AngleType angletype) { PRAT prat = rat.ToPRAT(); try { atananglerat(&prat, angletype, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Sinh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { sinhrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Cosh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { coshrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::Tanh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { tanhrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ASinh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { asinhrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ACosh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { acoshrat(&prat, RATIONAL_BASE, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } Rational RationalMath::ATanh(Rational const& rat) { PRAT prat = rat.ToPRAT(); try { atanhrat(&prat, RATIONAL_PRECISION); } catch (uint32_t error) { destroyrat(prat); throw(error); } Rational result{ prat }; destroyrat(prat); return result; } /// /// Calculate the modulus after division, the sign of the result will match the sign of b. /// /// /// When one of the operand is negative /// the result will differ from the C/C++ operator '%' /// use instead to calculate the remainder after division. /// Rational RationalMath::Mod(Rational const& a, Rational const& b) { PRAT prat = a.ToPRAT(); PRAT pn = b.ToPRAT(); try { modrat(&prat, pn); destroyrat(pn); } catch (uint32_t error) { destroyrat(prat); destroyrat(pn); throw(error); } auto res = Rational{ prat }; destroyrat(prat); return res; } ================================================ FILE: src/CalcManager/CEngine/calc.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include "Header Files/CalcEngine.h" #include "CalculatorResource.h" using namespace std; using namespace CalcEngine; /**************************************************************************/ /*** Global variable declarations and initializations ***/ /**************************************************************************/ static constexpr int DEFAULT_MAX_DIGITS = 32; static constexpr int DEFAULT_PRECISION = 32; static constexpr int32_t DEFAULT_RADIX = 10; static constexpr wchar_t DEFAULT_DEC_SEPARATOR = L'.'; static constexpr wchar_t DEFAULT_GRP_SEPARATOR = L','; static constexpr wstring_view DEFAULT_GRP_STR = L"3;0"; static constexpr wstring_view DEFAULT_NUMBER_STR = L"0"; // Read strings for keys, errors, trig types, etc. // These will be copied from the resources to local memory. unordered_map CCalcEngine::s_engineStrings; void CCalcEngine::LoadEngineStrings(CalculationManager::IResourceProvider& resourceProvider) { for (const auto& sid : g_sids) { auto locString = resourceProvider.GetCEngineString(sid); if (!locString.empty()) { s_engineStrings[sid] = locString; } } } ////////////////////////////////////////////////// // // InitialOneTimeOnlyNumberSetup // ////////////////////////////////////////////////// void CCalcEngine::InitialOneTimeOnlySetup(CalculationManager::IResourceProvider& resourceProvider) { LoadEngineStrings(resourceProvider); // we must now set up all the ratpak constants and our arrayed pointers // to these constants. ChangeBaseConstants(DEFAULT_RADIX, DEFAULT_MAX_DIGITS, DEFAULT_PRECISION); } ////////////////////////////////////////////////// // // CCalcEngine::CCalcEngine // ////////////////////////////////////////////////// CCalcEngine::CCalcEngine( bool fPrecedence, bool fIntegerMode, CalculationManager::IResourceProvider* const pResourceProvider, __in_opt ICalcDisplay* pCalcDisplay, __in_opt shared_ptr pHistoryDisplay) : m_fPrecedence(fPrecedence) , m_fIntegerMode(fIntegerMode) , m_pCalcDisplay(pCalcDisplay) , m_resourceProvider(pResourceProvider) , m_nOpCode(0) , m_nPrevOpCode(0) , m_bChangeOp(false) , m_bRecord(false) , m_bSetCalcState(false) , m_input(DEFAULT_DEC_SEPARATOR) , m_nFE(NumberFormat::Float) , m_memoryValue{ make_unique() } , m_holdVal{} , m_currentVal{} , m_lastVal{} , m_parenVals{} , m_precedenceVals{} , m_bError(false) , m_bInv(false) , m_bNoPrevEqu(true) , m_radix(DEFAULT_RADIX) , m_precision(DEFAULT_PRECISION) , m_cIntDigitsSav(DEFAULT_MAX_DIGITS) , m_decGrouping() , m_numberString(DEFAULT_NUMBER_STR) , m_nTempCom(0) , m_openParenCount(0) , m_nOp() , m_nPrecOp() , m_precedenceOpCount(0) , m_nLastCom(0) , m_angletype(AngleType::Degrees) , m_numwidth(NUM_WIDTH::QWORD_WIDTH) , m_HistoryCollector(pCalcDisplay, pHistoryDisplay, DEFAULT_DEC_SEPARATOR) , m_groupSeparator(DEFAULT_GRP_SEPARATOR) { InitChopNumbers(); m_dwWordBitWidth = DwWordBitWidthFromNumWidth(m_numwidth); m_maxTrigonometricNum = RationalMath::Pow(10, 100); SetRadixTypeAndNumWidth(RadixType::Decimal, m_numwidth); SettingsChanged(); DisplayNum(); } void CCalcEngine::InitChopNumbers() { // these rat numbers are set only once and then never change regardless of // base or precision changes assert(m_chopNumbers.size() >= 4); m_chopNumbers[0] = Rational{ rat_qword }; m_chopNumbers[1] = Rational{ rat_dword }; m_chopNumbers[2] = Rational{ rat_word }; m_chopNumbers[3] = Rational{ rat_byte }; // initialize the max dec number you can support for each of the supported bit lengths // this is basically max num in that width / 2 in integer assert(m_chopNumbers.size() == m_maxDecimalValueStrings.size()); for (size_t i = 0; i < m_chopNumbers.size(); i++) { auto maxVal = m_chopNumbers[i] / 2; maxVal = RationalMath::Integer(maxVal); m_maxDecimalValueStrings[i] = maxVal.ToString(10, NumberFormat::Float, m_precision); } } CalcEngine::Rational CCalcEngine::GetChopNumber() const { return m_chopNumbers[static_cast(m_numwidth)]; } std::wstring CCalcEngine::GetMaxDecimalValueString() const { return m_maxDecimalValueStrings[static_cast(m_numwidth)]; } // Gets the number in memory for UI to keep it persisted and set it again to a different instance // of CCalcEngine. Otherwise it will get destructed with the CalcEngine unique_ptr CCalcEngine::PersistedMemObject() { return move(m_memoryValue); } void CCalcEngine::PersistedMemObject(Rational const& memObject) { m_memoryValue = make_unique(memObject); } void CCalcEngine::SettingsChanged() { wchar_t lastDec = m_decimalSeparator; wstring decStr = m_resourceProvider->GetCEngineString(L"sDecimal"); m_decimalSeparator = decStr.empty() ? DEFAULT_DEC_SEPARATOR : decStr.at(0); // Until it can be removed, continue to set ratpak decimal here SetDecimalSeparator(m_decimalSeparator); wchar_t lastSep = m_groupSeparator; wstring sepStr = m_resourceProvider->GetCEngineString(L"sThousand"); m_groupSeparator = sepStr.empty() ? DEFAULT_GRP_SEPARATOR : sepStr.at(0); auto lastDecGrouping = m_decGrouping; wstring grpStr = m_resourceProvider->GetCEngineString(L"sGrouping"); m_decGrouping = DigitGroupingStringToGroupingVector(grpStr.empty() ? DEFAULT_GRP_STR : grpStr); bool numChanged = false; // if the grouping pattern or thousands symbol changed we need to refresh the display if (m_decGrouping != lastDecGrouping || m_groupSeparator != lastSep) { numChanged = true; } // if the decimal symbol has changed we always do the following things if (m_decimalSeparator != lastDec) { // Re-initialize member variables' decimal point. m_input.SetDecimalSymbol(m_decimalSeparator); m_HistoryCollector.SetDecimalSymbol(m_decimalSeparator); // put the new decimal symbol into the table used to draw the decimal key s_engineStrings[SIDS_DECIMAL_SEPARATOR] = m_decimalSeparator; // we need to redraw to update the decimal point button numChanged = true; } if (numChanged) { DisplayNum(); } } wchar_t CCalcEngine::DecimalSeparator() const { return m_decimalSeparator; } std::vector> CCalcEngine::GetHistoryCollectorCommandsSnapshot() const { auto commands = m_HistoryCollector.GetCommands(); if (!m_HistoryCollector.FOpndAddedToHistory() && m_bRecord) { commands.push_back(m_HistoryCollector.GetOperandCommandsFromString(m_numberString, m_currentVal)); } return commands; } ================================================ FILE: src/CalcManager/CEngine/scicomm.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /****************************Module*Header***********************************\ * Module Name: SCICOMM.C * * Module Description: * * Warnings: * * Created: * * Author: \****************************************************************************/ #include #include #include #include "Header Files/CalcEngine.h" #include "Header Files/CalcUtils.h" using namespace std; using namespace CalcEngine; namespace { // NPrecedenceOfOp // // returns a virtual number for precedence for the operator. We expect binary operator only, otherwise the lowest number // 0 is returned. Higher the number, higher the precedence of the operator. int NPrecedenceOfOp(int nopCode) { switch (nopCode) { default: case IDC_OR: case IDC_XOR: return 0; case IDC_AND: case IDC_NAND: case IDC_NOR: return 1; case IDC_ADD: case IDC_SUB: return 2; case IDC_LSHF: case IDC_RSHF: case IDC_RSHFL: case IDC_MOD: case IDC_DIV: case IDC_MUL: return 3; case IDC_PWR: case IDC_ROOT: case IDC_LOGBASEY: return 4; } } } // HandleErrorCommand // // When it is discovered by the state machine that at this point the input is not valid (eg. "1+)"), we want to proceed as though this input never // occurred and may be some feedback to user like Beep. The rest of input can then continue by just ignoring this command. void CCalcEngine::HandleErrorCommand(OpCode idc) { if (!IsGuiSettingOpCode(idc)) { // We would have saved the prev command. Need to forget this state m_nTempCom = m_nLastCom; } } void CCalcEngine::HandleMaxDigitsReached() { if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->MaxDigitsReached(); } } void CCalcEngine::ClearTemporaryValues() { m_bInv = false; m_input.Clear(); m_bRecord = true; CheckAndAddLastBinOpToHistory(); DisplayNum(); m_bError = false; } void CCalcEngine::ClearDisplay() { if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->SetExpressionDisplay(make_shared>>(), make_shared>>()); } } void CCalcEngine::ProcessCommand(OpCode wParam) { if (wParam == IDC_SET_RESULT) { wParam = IDC_RECALL; m_bSetCalcState = true; } ProcessCommandWorker(wParam); } void CCalcEngine::ProcessCommandWorker(OpCode wParam) { // Save the last command. Some commands are not saved in this manor, these // commands are: // Inv, Deg, Rad, Grad, Stat, FE, MClear, Back, and Exp. The excluded // commands are not // really mathematical operations, rather they are GUI mode settings. if (!IsGuiSettingOpCode(wParam)) { m_nLastCom = m_nTempCom; m_nTempCom = (int)wParam; } // Clear expression shown after = sign, when user do any action. if (!m_bNoPrevEqu) { ClearDisplay(); } if (m_bError) { if (wParam == IDC_CLEAR) { // handle "C" normally } else if (wParam == IDC_CENTR) { // treat "CE" as "C" wParam = IDC_CLEAR; } else { HandleErrorCommand(wParam); return; } } // Toggle Record/Display mode if appropriate. if (m_bRecord) { if (IsBinOpCode(wParam) || IsUnaryOpCode(wParam) || IsOpInRange(wParam, IDC_FE, IDC_MMINUS) || IsOpInRange(wParam, IDC_OPENP, IDC_CLOSEP) || IsOpInRange(wParam, IDM_HEX, IDM_BIN) || IsOpInRange(wParam, IDM_QWORD, IDM_BYTE) || IsOpInRange(wParam, IDM_DEG, IDM_GRAD) || IsOpInRange(wParam, IDC_BINEDITSTART, IDC_BINEDITEND) || (IDC_INV == wParam) || (IDC_SIGN == wParam && 10 != m_radix) || (IDC_RAND == wParam) || (IDC_EULER == wParam)) { m_bRecord = false; m_currentVal = m_input.ToRational(m_radix, m_precision); DisplayNum(); // Causes 3.000 to shrink to 3. on first op. } } else if (IsDigitOpCode(wParam) || wParam == IDC_PNT) { m_bRecord = true; m_input.Clear(); /* * Account for scenarios where an equation includes any input after closing parenthesis - i.e. "(8)2=16". * This prevents the calculator from ending an equation and adding to history prematurely. */ if (m_nLastCom != IDC_CLOSEP) { CheckAndAddLastBinOpToHistory(); } } // Interpret digit keys. if (IsDigitOpCode(wParam)) { unsigned int iValue = static_cast(wParam - IDC_0); // this is redundant, illegal keys are disabled if (iValue >= static_cast(m_radix)) { HandleErrorCommand(wParam); return; } if (!m_input.TryAddDigit(iValue, m_radix, m_fIntegerMode, GetMaxDecimalValueString(), m_dwWordBitWidth, m_cIntDigitsSav)) { HandleErrorCommand(wParam); HandleMaxDigitsReached(); return; } // Check if the last command was a closing parenthesis if (m_nLastCom == IDC_CLOSEP) { // Treat this as an implicit multiplication m_nOpCode = IDC_MUL; m_lastVal = m_currentVal; // We need to clear any previous state from last calculation m_holdVal = Rational(0); m_bNoPrevEqu = true; // Add the operand to history before adding the implicit multiplication if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpenBraceToHistory(); m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); m_HistoryCollector.AddCloseBraceToHistory(); } // Add the implicit multiplication to history m_HistoryCollector.AddBinOpToHistory(m_nOpCode, m_fIntegerMode); m_bChangeOp = true; m_nPrevOpCode = 0; // Clear any pending operations in the precedence stack while (m_precedenceOpCount > 0) { m_precedenceOpCount--; m_nPrecOp[m_precedenceOpCount] = 0; } } DisplayNum(); return; } // BINARY OPERATORS: if (IsBinOpCode(wParam)) { // Change the operation if last input was operation. if (IsBinOpCode(m_nLastCom)) { bool fPrecInvToHigher = false; // Is Precedence Inversion from lower to higher precedence happening ?? m_nOpCode = (int)wParam; // Check to see if by changing this binop, a Precedence inversion is happening. // Eg. 1 * 2 + and + is getting changed to ^. The previous precedence rules would have already computed // 1*2, so we will put additional brackets to cover for precedence inversion and it will become (1 * 2) ^ // Here * is m_nPrevOpCode, m_currentVal is 2 (by 1*2), m_nLastCom is +, m_nOpCode is ^ if (m_fPrecedence && 0 != m_nPrevOpCode) { int nPrev = NPrecedenceOfOp(m_nPrevOpCode); int nx = NPrecedenceOfOp(m_nLastCom); int ni = NPrecedenceOfOp(m_nOpCode); if (nx <= nPrev && ni > nPrev) // condition for Precedence Inversion { fPrecInvToHigher = true; m_nPrevOpCode = 0; // Once the precedence inversion has put additional brackets, its no longer required } } m_HistoryCollector.ChangeLastBinOp(m_nOpCode, fPrecInvToHigher, m_fIntegerMode); DisplayAnnounceBinaryOperator(); return; } if (!m_HistoryCollector.FOpndAddedToHistory()) { // if the prev command was ) or unop then it is already in history as a opnd form (...) m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } /* m_bChangeOp is true if there was an operation done and the */ /* current m_currentVal is the result of that operation. This is so */ /* entering 3+4+5= gives 7 after the first + and 12 after the */ /* the =. The rest of this stuff attempts to do precedence in*/ /* Scientific mode. */ if (m_bChangeOp) { DoPrecedenceCheckAgain: int nx = NPrecedenceOfOp((int)wParam); int ni = NPrecedenceOfOp(m_nOpCode); if ((nx > ni) && m_fPrecedence) { if (m_precedenceOpCount < MAXPRECDEPTH) { m_precedenceVals[m_precedenceOpCount] = m_lastVal; m_nPrecOp[m_precedenceOpCount] = m_nOpCode; m_HistoryCollector.PushLastOpndStart(); // Eg. 1 + 2 *, Need to remember the start of 2 to do Precedence inversion if need to } else { m_precedenceOpCount = MAXPRECDEPTH - 1; HandleErrorCommand(wParam); } m_precedenceOpCount++; } else { /* do the last operation and then if the precedence array is not * empty or the top is not the '(' demarcator then pop the top * of the array and recheck precedence against the new operator */ m_currentVal = DoOperation(m_nOpCode, m_currentVal, m_lastVal); m_nPrevOpCode = m_nOpCode; if (!m_bError) { DisplayNum(); if (!m_fPrecedence) { wstring groupedString = GroupDigitsPerRadix(m_numberString, m_radix); m_HistoryCollector.CompleteEquation(groupedString); m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } } if ((m_precedenceOpCount != 0) && (m_nPrecOp[m_precedenceOpCount - 1])) { m_precedenceOpCount--; m_nOpCode = m_nPrecOp[m_precedenceOpCount]; m_lastVal = m_precedenceVals[m_precedenceOpCount]; nx = NPrecedenceOfOp(m_nOpCode); // Precedence Inversion Higher to lower can happen which needs explicit enclosure of brackets // Eg. 1 + 2 * Or 3 Or. We would have pushed 1+ before, and now last + forces 2 Or 3 to be evaluated // because last Or is less or equal to first + (after 1). But we see that 1+ is in stack and we evaluated to 2 Or 3 // This is precedence inversion happened because of operator changed in between. We put extra brackets like // 1 + (2 Or 3) if (ni <= nx) { m_HistoryCollector.EnclosePrecInversionBrackets(); } m_HistoryCollector.PopLastOpndStart(); goto DoPrecedenceCheckAgain; } } } DisplayAnnounceBinaryOperator(); m_lastVal = m_currentVal; m_nOpCode = (int)wParam; m_HistoryCollector.AddBinOpToHistory(m_nOpCode, m_fIntegerMode); m_bNoPrevEqu = m_bChangeOp = true; return; } // UNARY OPERATORS: if (IsUnaryOpCode(wParam) || (wParam == IDC_DEGREES)) { /* Functions are unary operations. */ /* If the last thing done was an operator, m_currentVal was cleared. */ /* In that case we better use the number before the operator */ /* was entered, otherwise, things like 5+ 1/x give Divide By */ /* zero. This way 5+=gives 10 like most calculators do. */ if (IsBinOpCode(m_nLastCom)) { m_currentVal = m_lastVal; } // we do not add percent sign to history or to two line display. // instead, we add the result of applying %. if (wParam != IDC_PERCENT) { if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } m_HistoryCollector.AddUnaryOpToHistory((int)wParam, m_bInv, m_angletype); } if ((wParam == IDC_SIN) || (wParam == IDC_COS) || (wParam == IDC_TAN) || (wParam == IDC_SINH) || (wParam == IDC_COSH) || (wParam == IDC_TANH) || (wParam == IDC_SEC) || (wParam == IDC_CSC) || (wParam == IDC_COT) || (wParam == IDC_SECH) || (wParam == IDC_CSCH) || (wParam == IDC_COTH)) { if (IsCurrentTooBigForTrig()) { m_currentVal = 0; DisplayError(CALC_E_DOMAIN); return; } } m_currentVal = SciCalcFunctions(m_currentVal, (uint32_t)wParam); if (m_bError) return; /* Display the result, reset flags, and reset indicators. */ DisplayNum(); if (wParam == IDC_PERCENT) { CheckAndAddLastBinOpToHistory(); m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal, true /* Add to primary and secondary display */); } /* reset the m_bInv flag and indicators if it is set and have been used */ if (m_bInv && ((wParam == IDC_CHOP) || (wParam == IDC_SIN) || (wParam == IDC_COS) || (wParam == IDC_TAN) || (wParam == IDC_LN) || (wParam == IDC_DMS) || (wParam == IDC_DEGREES) || (wParam == IDC_SINH) || (wParam == IDC_COSH) || (wParam == IDC_TANH) || (wParam == IDC_SEC) || (wParam == IDC_CSC) || (wParam == IDC_COT) || (wParam == IDC_SECH) || (wParam == IDC_CSCH) || (wParam == IDC_COTH))) { m_bInv = false; } return; } // Tiny binary edit windows clicked. Toggle that bit and update display if (IsOpInRange(wParam, IDC_BINEDITSTART, IDC_BINEDITEND)) { // Same reasoning as for unary operators. We need to seed it previous number if (IsBinOpCode(m_nLastCom)) { m_currentVal = m_lastVal; } CheckAndAddLastBinOpToHistory(); if (TryToggleBit(m_currentVal, (uint32_t)wParam - IDC_BINEDITSTART)) { DisplayNum(); } return; } /* Now branch off to do other commands and functions. */ switch (wParam) { case IDC_CLEAR: /* Total clear. */ { if (!m_bChangeOp) { // Preserve history, if everything done before was a series of unary operations. CheckAndAddLastBinOpToHistory(false); } m_lastVal = 0; m_bChangeOp = false; m_openParenCount = 0; m_precedenceOpCount = m_nTempCom = m_nLastCom = m_nOpCode = 0; m_nPrevOpCode = 0; m_bNoPrevEqu = true; m_carryBit = 0; /* clear the parenthesis status box indicator, this will not be cleared for CENTR */ if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->SetParenthesisNumber(0); ClearDisplay(); } m_HistoryCollector.ClearHistoryLine(wstring()); ClearTemporaryValues(); } break; case IDC_CENTR: /* Clear only temporary values. */ { // Clear the INV & leave (=xx indicator active ClearTemporaryValues(); } break; case IDC_BACK: // Divide number by the current radix and truncate. // Only allow backspace if we're recording. if (m_bRecord) { m_input.Backspace(); DisplayNum(); } else { HandleErrorCommand(wParam); } break; /* EQU enables the user to press it multiple times after and */ /* operation to enable repeats of the last operation. */ case IDC_EQU: while (m_openParenCount > 0) { // when m_bError is set and m_ParNum is non-zero it goes into infinite loop if (m_bError) { break; } // automatic closing of all the parenthesis to get a meaningful result as well as ensure data integrity m_nTempCom = m_nLastCom; // Put back this last saved command to the prev state so ) can be handled properly ProcessCommand(IDC_CLOSEP); m_nLastCom = m_nTempCom; // Actually this is IDC_CLOSEP m_nTempCom = (int)wParam; // put back in the state where last op seen was IDC_CLOSEP, and current op is IDC_EQU } if (!m_bNoPrevEqu) { // It is possible now unary op changed the num in screen, but still m_lastVal hasn't changed. m_lastVal = m_currentVal; } /* Last thing keyed in was an operator. Lets do the op on*/ /* a duplicate of the last entry. */ if (IsBinOpCode(m_nLastCom)) { m_currentVal = m_lastVal; } if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } // Evaluate the precedence stack. ResolveHighestPrecedenceOperation(); while (m_fPrecedence && m_precedenceOpCount > 0) { m_precedenceOpCount--; m_nOpCode = m_nPrecOp[m_precedenceOpCount]; m_lastVal = m_precedenceVals[m_precedenceOpCount]; // Precedence Inversion check int ni = NPrecedenceOfOp(m_nPrevOpCode); int nx = NPrecedenceOfOp(m_nOpCode); if (ni <= nx) { m_HistoryCollector.EnclosePrecInversionBrackets(); } m_HistoryCollector.PopLastOpndStart(); m_bNoPrevEqu = true; ResolveHighestPrecedenceOperation(); } if (!m_bError) { wstring groupedString = GroupDigitsPerRadix(m_numberString, m_radix); m_HistoryCollector.CompleteEquation(groupedString); m_lastVal = m_currentVal; m_nPrevOpCode = 0; m_precedenceOpCount = 0; } m_bChangeOp = false; break; case IDC_OPENP: case IDC_CLOSEP: // -IF- the Paren holding array is full and we try to add a paren // -OR- the paren holding array is empty and we try to remove a // paren // -OR- the precedence holding array is full if ((m_openParenCount >= MAXPRECDEPTH && (wParam == IDC_OPENP)) || (!m_openParenCount && (wParam != IDC_OPENP)) || ((m_precedenceOpCount >= MAXPRECDEPTH && m_nPrecOp[m_precedenceOpCount - 1] != 0))) { if (!m_openParenCount && (wParam != IDC_OPENP)) { m_pCalcDisplay->OnNoRightParenAdded(); } HandleErrorCommand(wParam); break; } if (wParam == IDC_OPENP) { // if there's an omitted multiplication sign if (IsDigitOpCode(m_nLastCom) || IsUnaryOpCode(m_nLastCom) || m_nLastCom == IDC_PNT || m_nLastCom == IDC_CLOSEP) { ProcessCommand(IDC_MUL); } CheckAndAddLastBinOpToHistory(); m_HistoryCollector.AddOpenBraceToHistory(); // Open level of parentheses, save number and operation. m_parenVals[m_openParenCount] = m_lastVal; m_nOp[m_openParenCount++] = (m_bChangeOp ? m_nOpCode : 0); /* save a special marker on the precedence array */ if (m_precedenceOpCount < m_nPrecOp.size()) { m_nPrecOp[m_precedenceOpCount++] = 0; } m_lastVal = 0; if (IsBinOpCode(m_nLastCom)) { // We want 1 + ( to start as 1 + (0. Any number you type replaces 0. But if it is 1 + 3 (, it is // treated as 1 + (3 m_currentVal = 0; } m_nTempCom = 0; m_nOpCode = 0; m_bChangeOp = false; // a ( is like starting a fresh sub equation } else { // Last thing keyed in was an operator. Lets do the op on a duplicate of the last entry. if (IsBinOpCode(m_nLastCom)) { m_currentVal = m_lastVal; } if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } // Get the operation and number and return result. m_currentVal = DoOperation(m_nOpCode, m_currentVal, m_lastVal); m_nPrevOpCode = m_nOpCode; // Now process the precedence stack till we get to an opcode which is zero. for (m_nOpCode = m_nPrecOp[--m_precedenceOpCount]; m_nOpCode; m_nOpCode = m_nPrecOp[--m_precedenceOpCount]) { // Precedence Inversion check int ni = NPrecedenceOfOp(m_nPrevOpCode); int nx = NPrecedenceOfOp(m_nOpCode); if (ni <= nx) { m_HistoryCollector.EnclosePrecInversionBrackets(); } m_HistoryCollector.PopLastOpndStart(); m_lastVal = m_precedenceVals[m_precedenceOpCount]; m_currentVal = DoOperation(m_nOpCode, m_currentVal, m_lastVal); m_nPrevOpCode = m_nOpCode; } m_HistoryCollector.AddCloseBraceToHistory(); // Now get back the operation and opcode at the beginning of this parenthesis pair m_openParenCount -= 1; m_lastVal = m_parenVals[m_openParenCount]; m_nOpCode = m_nOp[m_openParenCount]; // m_bChangeOp should be true if m_nOpCode is valid m_bChangeOp = (m_nOpCode != 0); } // Set the "(=xx" indicator. if (nullptr != m_pCalcDisplay) { m_pCalcDisplay->SetParenthesisNumber(static_cast(m_openParenCount)); } if (!m_bError) { DisplayNum(); } break; // BASE CHANGES: case IDM_HEX: case IDM_DEC: case IDM_OCT: case IDM_BIN: { SetRadixTypeAndNumWidth((RadixType)(wParam - IDM_HEX), (NUM_WIDTH)-1); m_HistoryCollector.UpdateHistoryExpression(m_radix, m_precision); break; } case IDM_QWORD: case IDM_DWORD: case IDM_WORD: case IDM_BYTE: if (m_bRecord) { m_currentVal = m_input.ToRational(m_radix, m_precision); m_bRecord = false; } // Compat. mode BaseX: Qword, Dword, Word, Byte SetRadixTypeAndNumWidth((RadixType)-1, (NUM_WIDTH)(wParam - IDM_QWORD)); break; case IDM_DEG: case IDM_RAD: case IDM_GRAD: m_angletype = static_cast(wParam - IDM_DEG); break; case IDC_SIGN: { if (m_bRecord) { if (m_input.TryToggleSign(m_fIntegerMode, GetMaxDecimalValueString())) { DisplayNum(); } else { HandleErrorCommand(wParam); } break; } // Doing +/- while in Record mode is not a unary operation if (IsBinOpCode(m_nLastCom)) { m_currentVal = m_lastVal; } if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); } m_currentVal = -(m_currentVal); DisplayNum(); m_HistoryCollector.AddUnaryOpToHistory(IDC_SIGN, m_bInv, m_angletype); } break; case IDC_RECALL: if (m_bSetCalcState) { // Not a Memory recall. set the result m_bSetCalcState = false; } else { // Recall immediate memory value. m_currentVal = *m_memoryValue; } CheckAndAddLastBinOpToHistory(); DisplayNum(); break; case IDC_MPLUS: { /* MPLUS adds m_currentVal to immediate memory and kills the "mem" */ /* indicator if the result is zero. */ Rational result = *m_memoryValue + m_currentVal; m_memoryValue = make_unique(TruncateNumForIntMath(result)); // Memory should follow the current int mode break; } case IDC_MMINUS: { /* MMINUS subtracts m_currentVal to immediate memory and kills the "mem" */ /* indicator if the result is zero. */ Rational result = *m_memoryValue - m_currentVal; m_memoryValue = make_unique(TruncateNumForIntMath(result)); break; } case IDC_STORE: case IDC_MCLEAR: m_memoryValue = make_unique(wParam == IDC_STORE ? TruncateNumForIntMath(m_currentVal) : 0); break; case IDC_PI: if (!m_fIntegerMode) { CheckAndAddLastBinOpToHistory(); // pi is like entering the number m_currentVal = Rational{ (m_bInv ? two_pi : pi) }; DisplayNum(); m_bInv = false; break; } HandleErrorCommand(wParam); break; case IDC_RAND: if (!m_fIntegerMode) { CheckAndAddLastBinOpToHistory(); // rand is like entering the number wstringstream str; str << fixed << setprecision(m_precision) << GenerateRandomNumber(); auto rat = StringToRat(false, str.str(), false, L"", m_radix, m_precision); if (rat != nullptr) { m_currentVal = Rational{ rat }; } else { m_currentVal = Rational{ 0 }; } destroyrat(rat); DisplayNum(); m_bInv = false; break; } HandleErrorCommand(wParam); break; case IDC_EULER: if (!m_fIntegerMode) { CheckAndAddLastBinOpToHistory(); // e is like entering the number m_currentVal = Rational{ rat_exp }; DisplayNum(); m_bInv = false; break; } HandleErrorCommand(wParam); break; case IDC_FE: // Toggle exponential notation display. m_nFE = m_nFE == NumberFormat::Float ? NumberFormat::Scientific : NumberFormat::Float; DisplayNum(); break; case IDC_EXP: if (m_bRecord && !m_fIntegerMode && m_input.TryBeginExponent()) { DisplayNum(); break; } HandleErrorCommand(wParam); break; case IDC_PNT: // Check if the last command was a closing parenthesis if (m_nLastCom == IDC_CLOSEP) { // Treat this as an implicit multiplication m_nOpCode = IDC_MUL; m_lastVal = m_currentVal; // We need to clear any previous state from last calculation m_holdVal = Rational(0); m_bNoPrevEqu = true; // Add the operand to history before adding the implicit multiplication if (!m_HistoryCollector.FOpndAddedToHistory()) { m_HistoryCollector.AddOpenBraceToHistory(); m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); m_HistoryCollector.AddCloseBraceToHistory(); } // Add the implicit multiplication to history m_HistoryCollector.AddBinOpToHistory(m_nOpCode, m_fIntegerMode); m_bChangeOp = true; m_nPrevOpCode = 0; // Clear any pending operations in the precedence stack while (m_precedenceOpCount > 0) { m_precedenceOpCount--; m_nPrecOp[m_precedenceOpCount] = 0; } } if (m_bRecord && !m_fIntegerMode && m_input.TryAddDecimalPt()) { DisplayNum(); break; } HandleErrorCommand(wParam); break; case IDC_INV: m_bInv = !m_bInv; break; } } // Helper function to resolve one item on the precedence stack. void CCalcEngine::ResolveHighestPrecedenceOperation() { // Is there a valid operation around? if (m_nOpCode) { // If this is the first EQU in a string, set m_holdVal=m_currentVal // Otherwise let m_currentVal=m_holdVal. This keeps m_currentVal constant // through all EQUs in a row. if (m_bNoPrevEqu) { m_holdVal = m_currentVal; } else { m_currentVal = m_holdVal; DisplayNum(); // to update the m_numberString m_HistoryCollector.AddBinOpToHistory(m_nOpCode, m_fIntegerMode, false); m_HistoryCollector.AddOpndToHistory(m_numberString, m_currentVal); // Adding the repeated last op to history } // Do the current or last operation. m_currentVal = DoOperation(m_nOpCode, m_currentVal, m_lastVal); m_nPrevOpCode = m_nOpCode; m_lastVal = m_currentVal; // Check for errors. If this wasn't done, DisplayNum // would immediately overwrite any error message. if (!m_bError) { DisplayNum(); } // No longer the first EQU. m_bNoPrevEqu = false; } else if (!m_bError) { DisplayNum(); } } // CheckAndAddLastBinOpToHistory // // This is a very confusing helper routine to add the last entered binary operator to the history. This is expected to // leave the history with state. It can really add the last entered binary op, or it can actually remove // the last operand from history. This happens because you can 'type' or 'compute' over last operand in some cases, thereby // effectively removing only it from the equation but still keeping the previous portion of the equation. Eg. 1 + 4 sqrt 5. The last // 5 will remove sqrt(4) as it is not used anymore to participate in 1 + 5 // If you are messing with this, test cases like this CE, statistical functions, ( & MR buttons void CCalcEngine::CheckAndAddLastBinOpToHistory(bool addToHistory) { if (m_bChangeOp) { if (m_HistoryCollector.FOpndAddedToHistory()) { // if last time opnd was added but the last command was not a binary operator, then it must have come // from commands which add the operand, like unary operator. So history at this is showing 1 + sqrt(4) // but in reality the sqrt(4) is getting replaced by new number (may be unary op, or MR or SUM etc.) // So erase the last operand m_HistoryCollector.RemoveLastOpndFromHistory(); } } else if (m_HistoryCollector.FOpndAddedToHistory() && !m_bError) { // Corner case, where opnd is already in history but still a new opnd starting (1 + 4 sqrt 5). This is yet another // special casing of previous case under if (m_bChangeOp), but this time we can do better than just removing it // Let us make a current value =. So in case of 4 SQRT (or a equation under braces) and then a new equation is started, we can just form // a useful equation of sqrt(4) = 2 and continue a new equation from now on. But no point in doing this for things like // MR, SUM etc. All you will get is 5 = 5 kind of no useful equation. if ((IsUnaryOpCode(m_nLastCom) || IDC_SIGN == m_nLastCom || IDC_CLOSEP == m_nLastCom) && 0 == m_openParenCount) { if (addToHistory) { m_HistoryCollector.CompleteHistoryLine(GroupDigitsPerRadix(m_numberString, m_radix)); } } else { m_HistoryCollector.RemoveLastOpndFromHistory(); } } } // change the display area from a static text to an editbox, which has the focus can make // Magnifier (Accessibility tool) work void CCalcEngine::SetPrimaryDisplay(const wstring& szText, bool isError) { if (m_pCalcDisplay != nullptr) { m_pCalcDisplay->SetPrimaryDisplay(szText, isError); m_pCalcDisplay->SetIsInError(isError); } } void CCalcEngine::DisplayAnnounceBinaryOperator() { // If m_pCalcDisplay is null, this is not a high priority function // and should not be the reason we crash. if (m_pCalcDisplay != nullptr) { m_pCalcDisplay->BinaryOperatorReceived(); } } // Unary operator Function Name table Element // since unary operators button names aren't exactly friendly for history purpose, // we have this separate table to get its localized name and for its Inv function if it exists. struct FunctionNameElement { wstring degreeString; // Used by default if there are no rad or grad specific strings. wstring inverseDegreeString; // Will fall back to degreeString if empty wstring radString; wstring inverseRadString; // Will fall back to radString if empty wstring gradString; wstring inverseGradString; // Will fall back to gradString if empty wstring programmerModeString; bool hasAngleStrings = ((!radString.empty()) || (!inverseRadString.empty()) || (!gradString.empty()) || (!inverseGradString.empty())); }; // Table for each unary operator static const std::unordered_map operatorStringTable = { { IDC_CHOP, { L"", SIDS_FRAC } }, { IDC_SIN, { SIDS_SIND, SIDS_ASIND, SIDS_SINR, SIDS_ASINR, SIDS_SING, SIDS_ASING } }, { IDC_COS, { SIDS_COSD, SIDS_ACOSD, SIDS_COSR, SIDS_ACOSR, SIDS_COSG, SIDS_ACOSG } }, { IDC_TAN, { SIDS_TAND, SIDS_ATAND, SIDS_TANR, SIDS_ATANR, SIDS_TANG, SIDS_ATANG } }, { IDC_SINH, { L"", SIDS_ASINH } }, { IDC_COSH, { L"", SIDS_ACOSH } }, { IDC_TANH, { L"", SIDS_ATANH } }, { IDC_SEC, { SIDS_SECD, SIDS_ASECD, SIDS_SECR, SIDS_ASECR, SIDS_SECG, SIDS_ASECG } }, { IDC_CSC, { SIDS_CSCD, SIDS_ACSCD, SIDS_CSCR, SIDS_ACSCR, SIDS_CSCG, SIDS_ACSCG } }, { IDC_COT, { SIDS_COTD, SIDS_ACOTD, SIDS_COTR, SIDS_ACOTR, SIDS_COTG, SIDS_ACOTG } }, { IDC_SECH, { SIDS_SECH, SIDS_ASECH } }, { IDC_CSCH, { SIDS_CSCH, SIDS_ACSCH } }, { IDC_COTH, { SIDS_COTH, SIDS_ACOTH } }, { IDC_LN, { L"", SIDS_POWE } }, { IDC_SQR, { SIDS_SQR } }, { IDC_CUB, { SIDS_CUBE } }, { IDC_FAC, { SIDS_FACT } }, { IDC_REC, { SIDS_RECIPROC } }, { IDC_DMS, { L"", SIDS_DEGREES } }, { IDC_SIGN, { SIDS_NEGATE } }, { IDC_DEGREES, { SIDS_DEGREES } }, { IDC_POW2, { SIDS_TWOPOWX } }, { IDC_LOGBASEY, { SIDS_LOGBASEY } }, { IDC_ABS, { SIDS_ABS } }, { IDC_CEIL, { SIDS_CEIL } }, { IDC_FLOOR, { SIDS_FLOOR } }, { IDC_NAND, { SIDS_NAND } }, { IDC_NOR, { SIDS_NOR } }, { IDC_RSHFL, { SIDS_RSH } }, { IDC_RORC, { SIDS_ROR } }, { IDC_ROLC, { SIDS_ROL } }, { IDC_CUBEROOT, { SIDS_CUBEROOT } }, { IDC_MOD, { SIDS_MOD, L"", L"", L"", L"", L"", SIDS_PROGRAMMER_MOD } }, }; wstring_view CCalcEngine::OpCodeToUnaryString(int nOpCode, bool fInv, AngleType angletype) { // Try to lookup the ID in the UFNE table wstring ids = L""; if (auto pair = operatorStringTable.find(nOpCode); pair != operatorStringTable.end()) { const FunctionNameElement& element = pair->second; if (!element.hasAngleStrings || AngleType::Degrees == angletype) { if (fInv) { ids = element.inverseDegreeString; } if (ids.empty()) { ids = element.degreeString; } } else if (AngleType::Radians == angletype) { if (fInv) { ids = element.inverseRadString; } if (ids.empty()) { ids = element.radString; } } else if (AngleType::Gradians == angletype) { if (fInv) { ids = element.inverseGradString; } if (ids.empty()) { ids = element.gradString; } } } if (!ids.empty()) { return GetString(ids); } // If we didn't find an ID in the table, use the op code. return OpCodeToString(nOpCode); } wstring_view CCalcEngine::OpCodeToBinaryString(int nOpCode, bool isIntegerMode) { // Try to lookup the ID in the UFNE table wstring ids = L""; if (auto pair = operatorStringTable.find(nOpCode); pair != operatorStringTable.end()) { if (isIntegerMode && !pair->second.programmerModeString.empty()) { ids = pair->second.programmerModeString; } else { ids = pair->second.degreeString; } } if (!ids.empty()) { return GetString(ids); } // If we didn't find an ID in the table, use the op code. return OpCodeToString(nOpCode); } bool CCalcEngine::IsCurrentTooBigForTrig() { return m_currentVal >= m_maxTrigonometricNum; } uint32_t CCalcEngine::GetCurrentRadix() { return m_radix; } wstring CCalcEngine::GetCurrentResultForRadix(uint32_t radix, int32_t precision, bool groupDigitsPerRadix) { Rational rat = (m_bRecord ? m_input.ToRational(m_radix, m_precision) : m_currentVal); ChangeConstants(m_radix, precision); wstring numberString = GetStringForDisplay(rat, radix); if (!numberString.empty()) { // Revert the precision to previously stored precision ChangeConstants(m_radix, m_precision); } if (groupDigitsPerRadix) { return GroupDigitsPerRadix(numberString, radix); } else { return numberString; } } wstring CCalcEngine::GetStringForDisplay(Rational const& rat, uint32_t radix) { wstring result{}; // Check for standard\scientific mode if (!m_fIntegerMode) { result = rat.ToString(radix, m_nFE, m_precision); } else { // Programmer mode // Find most significant bit to determine if number is negative auto tempRat = TruncateNumForIntMath(rat); try { uint64_t w64Bits = tempRat.ToUInt64_t(); bool fMsb = ((w64Bits >> (m_dwWordBitWidth - 1)) & 1); if ((radix == 10) && fMsb) { // If high bit is set, then get the decimal number in negative 2's complement form. tempRat = -((tempRat ^ GetChopNumber()) + 1); } result = tempRat.ToString(radix, m_nFE, m_precision); } catch (uint32_t) { } } return result; } double CCalcEngine::GenerateRandomNumber() { if (m_randomGeneratorEngine == nullptr) { random_device rd; m_randomGeneratorEngine = std::make_unique(rd()); m_distr = std::make_unique>(0, 1); } return (*m_distr.get())(*m_randomGeneratorEngine.get()); } ================================================ FILE: src/CalcManager/CEngine/scidisp.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /****************************Module*Header***********************************\ * Module Name: SCIDISP.C * * Module Description: * * Warnings: * * Created: * * Author: \****************************************************************************/ #include #include #include "Header Files/CalcEngine.h" using namespace std; using namespace CalcEngine; constexpr int MAX_EXPONENT = 4; constexpr uint32_t MAX_GROUPING_SIZE = 16; constexpr wstring_view c_decPreSepStr = L"[+-]?(\\d*)["; constexpr wstring_view c_decPostSepStr = L"]?(\\d*)(?:e[+-]?(\\d*))?$"; /****************************************************************************\ * void DisplayNum(void) * * Convert m_currentVal to a string in the current radix. * * Updates the following variables: * m_currentVal, m_numberString \****************************************************************************/ // // State of calc last time DisplayNum was called // typedef struct { Rational value; int32_t precision; uint32_t radix; int nFE; NUM_WIDTH numwidth; bool fIntMath; bool bRecord; bool bUseSep; } LASTDISP; static LASTDISP gldPrevious = { 0, -1, 0, -1, (NUM_WIDTH)-1, false, false, false }; // Truncates if too big, makes it a non negative - the number in rat. Doesn't do anything if not in INT mode CalcEngine::Rational CCalcEngine::TruncateNumForIntMath(CalcEngine::Rational const& rat) { if (!m_fIntegerMode) { return rat; } // Truncate to an integer. Do not round here. auto result = RationalMath::Integer(rat); // Can be converting a dec negative number to Hex/Oct/Bin rep. Use 2's complement form // Check the range. if (result < 0) { // if negative make positive by doing a twos complement result = -(result)-1; result ^= GetChopNumber(); } result &= GetChopNumber(); return result; } void CCalcEngine::DisplayNum(void) { // // Only change the display if // we are in record mode -OR- // this is the first time DisplayNum has been called, -OR- // something important has changed since the last time DisplayNum was // called. // if (m_bRecord || gldPrevious.value != m_currentVal || gldPrevious.precision != m_precision || gldPrevious.radix != m_radix || gldPrevious.nFE != (int)m_nFE || !gldPrevious.bUseSep || gldPrevious.numwidth != m_numwidth || gldPrevious.fIntMath != m_fIntegerMode || gldPrevious.bRecord != m_bRecord) { gldPrevious.precision = m_precision; gldPrevious.radix = m_radix; gldPrevious.nFE = (int)m_nFE; gldPrevious.numwidth = m_numwidth; gldPrevious.fIntMath = m_fIntegerMode; gldPrevious.bRecord = m_bRecord; gldPrevious.bUseSep = true; if (m_bRecord) { // Display the string and return. m_numberString = m_input.ToString(m_radix); } else { // If we're in Programmer mode, perform integer truncation so e.g. 5 / 2 * 2 results in 4, not 5. if (m_fIntegerMode) { m_currentVal = TruncateNumForIntMath(m_currentVal); } m_numberString = GetStringForDisplay(m_currentVal, m_radix); } // Displayed number can go through transformation. So copy it after transformation gldPrevious.value = m_currentVal; if ((m_radix == 10) && IsNumberInvalid(m_numberString, MAX_EXPONENT, m_precision, m_radix)) { DisplayError(CALC_E_OVERFLOW); } else { // Display the string and return. SetPrimaryDisplay(GroupDigitsPerRadix(m_numberString, m_radix)); } } } int CCalcEngine::IsNumberInvalid(const wstring& numberString, int iMaxExp, int iMaxMantissa, uint32_t radix) const { int iError = 0; if (radix == 10) { // start with an optional + or - // followed by zero or more digits // followed by an optional decimal point // followed by zero or more digits // followed by an optional exponent // in case there's an exponent: // its optionally followed by a + or - // which is followed by zero or more digits wregex rx(wstring{ c_decPreSepStr } + m_decimalSeparator + wstring{ c_decPostSepStr }); wsmatch matches; if (regex_match(numberString, matches, rx)) { // Check that exponent isn't too long if (matches.length(3) > iMaxExp) { iError = IDS_ERR_INPUT_OVERFLOW; } else { wstring exp = matches.str(1); auto intItr = exp.begin(); auto intEnd = exp.end(); while (intItr != intEnd && *intItr == L'0') { intItr++; } auto iMantissa = distance(intItr, intEnd) + matches.length(2); if (iMantissa > iMaxMantissa) { iError = IDS_ERR_INPUT_OVERFLOW; } } } else { iError = IDS_ERR_UNK_CH; } } else { for (const wchar_t& c : numberString) { if (radix == 16) { if (!(iswdigit(c) || (c >= L'A' && c <= L'F'))) { iError = IDS_ERR_UNK_CH; } } else if (c < L'0' || c >= L'0' + radix) { iError = IDS_ERR_UNK_CH; } } } return iError; } /****************************************************************************\ * * DigitGroupingStringToGroupingVector * * Description: * This will take the digit grouping string found in the regional applet and * represent this string as a vector. * * groupingString * 0;0 - no grouping * 3;0 - group every 3 digits * 3 - group 1st 3, then no grouping after * 3;0;0 - group 1st 3, then no grouping after * 3;2;0 - group 1st 3 and then every 2 digits * 4;0 - group every 4 digits * 5;3;2;0 - group 5, then 3, then every 2 * 5;3;2 - group 5, then 3, then 2, then no grouping after * * Returns: the groupings as a vector * \****************************************************************************/ vector CCalcEngine::DigitGroupingStringToGroupingVector(wstring_view groupingString) { vector grouping; uint32_t currentGroup = 0; wchar_t* next = nullptr; const wchar_t* begin = groupingString.data(); const wchar_t* end = begin + groupingString.length(); for (auto itr = begin; itr != end; ++itr) { // Try to parse a grouping number from the string currentGroup = wcstoul(itr, &next, 10); // If we successfully parsed a group, add it to the grouping. if (currentGroup < MAX_GROUPING_SIZE) { grouping.emplace_back(currentGroup); } // If we found a grouping and aren't at the end of the string yet, // jump to the next position in the string (the ';'). // The loop will then increment us to the next character, which should be a number. if (next && (static_cast(next - begin) < groupingString.length())) { itr = next; } } return grouping; } wstring CCalcEngine::GroupDigitsPerRadix(wstring_view numberString, uint32_t radix) { if (numberString.empty()) { return wstring{}; } switch (radix) { case 10: return GroupDigits(wstring{ m_groupSeparator }, m_decGrouping, numberString, (L'-' == numberString[0])); case 8: return GroupDigits(L" ", { 3, 0 }, numberString); case 2: case 16: return GroupDigits(L" ", { 4, 0 }, numberString); default: return wstring{ numberString }; } } /****************************************************************************\ * * GroupDigits * * Description: * This routine will take a grouping vector and the display string and * add the separator according to the pattern indicated by the separator. * * Grouping * 0,0 - no grouping * 3,0 - group every 3 digits * 3 - group 1st 3, then no grouping after * 3,0,0 - group 1st 3, then no grouping after * 3,2,0 - group 1st 3 and then every 2 digits * 4,0 - group every 4 digits * 5,3,2,0 - group 5, then 3, then every 2 * 5,3,2 - group 5, then 3, then 2, then no grouping after * \***************************************************************************/ wstring CCalcEngine::GroupDigits(wstring_view delimiter, vector const& grouping, wstring_view displayString, bool isNumNegative) { // if there's nothing to do, bail if (delimiter.empty() || grouping.empty()) { return wstring{ displayString }; } // Find the position of exponential 'e' in the string size_t exp = displayString.find(L'e'); bool hasExponent = (exp != wstring_view::npos); // Find the position of decimal point in the string size_t dec = displayString.find(m_decimalSeparator); bool hasDecimal = (dec != wstring_view::npos); // Create an iterator that points to the end of the portion of the number subject to grouping (i.e. left of the decimal) auto ritr = displayString.rend(); if (hasDecimal) { ritr -= dec; } else if (hasExponent) { ritr -= exp; } else { ritr = displayString.rbegin(); } wstring result; uint32_t groupingSize = 0; auto groupItr = grouping.begin(); auto currGrouping = *groupItr; // Mark the 'end' of the string as either rend() or rend()-1 if there is a negative sign // We exclude the sign here because we don't want to end up with e.g. "-,123,456" // Then, iterate from back to front, adding group delimiters as needed. auto reverse_end = displayString.rend() - (isNumNegative ? 1 : 0); while (ritr != reverse_end) { result += *ritr++; groupingSize++; // If a group is complete, add a separator // Do not add a separator if: // - grouping size is 0 // - we are at the end of the digit string if (currGrouping != 0 && (groupingSize % currGrouping) == 0 && ritr != reverse_end) { result += delimiter; groupingSize = 0; // reset for a new group // Shift the grouping to next values if they exist if (groupItr != grouping.end()) { ++groupItr; // Loop through grouping vector until we find a non-zero value. // "0" values may appear in a form of either e.g. "3;0" or "3;0;0". // A 0 in the last position means repeat the previous grouping. // A 0 in another position is a group. So, "3;0;0" means "group 3, then group 0 repeatedly" // This could be expressed as just "3" but GetLocaleInfo is returning 3;0;0 in some cases instead. for (currGrouping = 0; groupItr != grouping.end(); ++groupItr) { // If it's a non-zero value, that's our new group if (*groupItr != 0) { currGrouping = *groupItr; break; } // Otherwise, save the previous grouping in case we need to repeat it currGrouping = *(groupItr - 1); } } } } // now copy the negative sign if it is there if (isNumNegative) { result += displayString[0]; } reverse(result.begin(), result.end()); // Add the right (fractional or exponential) part of the number to the final string. if (hasDecimal) { result += displayString.substr(dec); } else if (hasExponent) { result += displayString.substr(exp); } return result; } ================================================ FILE: src/CalcManager/CEngine/scifunc.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /**************************************************************************/ /*** SCICALC Scientific Calculator for Windows 3.00.12 ***/ /*** (c)1989 Microsoft Corporation. All Rights Reserved. ***/ /*** ***/ /*** scifunc.c ***/ /*** ***/ /*** Functions contained: ***/ /*** SciCalcFunctions--do sin, cos, tan, com, log, ln, rec, fac, etc.***/ /*** DisplayError--Error display driver. ***/ /*** ***/ /*** Functions called: ***/ /*** SciCalcFunctions call DisplayError. ***/ /*** ***/ /*** ***/ /**************************************************************************/ #include "Header Files/CalcEngine.h" #include "winerror_cross_platform.h" using namespace std; using namespace CalcEngine; using namespace CalcEngine::RationalMath; /* Routines for more complex mathematical functions/error checking. */ CalcEngine::Rational CCalcEngine::SciCalcFunctions(CalcEngine::Rational const& rat, uint32_t op) { Rational result{}; try { switch (op) { case IDC_CHOP: result = m_bInv ? Frac(rat) : Integer(rat); break; /* Return complement. */ case IDC_COM: if (m_radix == 10 && !m_fIntegerMode) { result = -(RationalMath::Integer(rat) + 1); } else { result = rat ^ GetChopNumber(); } break; case IDC_ROL: case IDC_ROLC: if (m_fIntegerMode) { result = Integer(rat); uint64_t w64Bits = result.ToUInt64_t(); uint64_t msb = (w64Bits >> (m_dwWordBitWidth - 1)) & 1; w64Bits <<= 1; // LShift by 1 if (op == IDC_ROL) { w64Bits |= msb; // Set the prev Msb as the current Lsb } else { w64Bits |= m_carryBit; // Set the carry bit as the LSB m_carryBit = msb; // Store the msb as the next carry bit } result = w64Bits; } break; case IDC_ROR: case IDC_RORC: if (m_fIntegerMode) { result = Integer(rat); uint64_t w64Bits = result.ToUInt64_t(); uint64_t lsb = ((w64Bits & 0x01) == 1) ? 1 : 0; w64Bits >>= 1; // RShift by 1 if (op == IDC_ROR) { w64Bits |= (lsb << (m_dwWordBitWidth - 1)); } else { w64Bits |= (m_carryBit << (m_dwWordBitWidth - 1)); m_carryBit = lsb; } result = w64Bits; } break; case IDC_PERCENT: { // If the operator is multiply/divide, we evaluate this as "X [op] (Y%)" // Otherwise, we evaluate it as "X [op] (X * Y%)" if (m_nOpCode == IDC_MUL || m_nOpCode == IDC_DIV) { result = rat / 100; } else { result = rat * (m_lastVal / 100); } break; } case IDC_SIN: /* Sine; normal and arc */ if (!m_fIntegerMode) { result = m_bInv ? ASin(rat, m_angletype) : Sin(rat, m_angletype); } break; case IDC_SINH: /* Sine- hyperbolic and archyperbolic */ if (!m_fIntegerMode) { result = m_bInv ? ASinh(rat) : Sinh(rat); } break; case IDC_COS: /* Cosine, follows convention of sine function. */ if (!m_fIntegerMode) { result = m_bInv ? ACos(rat, m_angletype) : Cos(rat, m_angletype); } break; case IDC_COSH: /* Cosine hyperbolic, follows convention of sine h function. */ if (!m_fIntegerMode) { result = m_bInv ? ACosh(rat) : Cosh(rat); } break; case IDC_TAN: /* Same as sine and cosine. */ if (!m_fIntegerMode) { result = m_bInv ? ATan(rat, m_angletype) : Tan(rat, m_angletype); } break; case IDC_TANH: /* Same as sine h and cosine h. */ if (!m_fIntegerMode) { result = m_bInv ? ATanh(rat) : Tanh(rat); } break; case IDC_SEC: if (!m_fIntegerMode) { result = m_bInv ? ACos(Invert(rat), m_angletype) : Invert(Cos(rat, m_angletype)); } break; case IDC_CSC: if (!m_fIntegerMode) { result = m_bInv ? ASin(Invert(rat), m_angletype) : Invert(Sin(rat, m_angletype)); } break; case IDC_COT: if (!m_fIntegerMode) { result = m_bInv ? ATan(Invert(rat), m_angletype) : Invert(Tan(rat, m_angletype)); } break; case IDC_SECH: if (!m_fIntegerMode) { result = m_bInv ? ACosh(Invert(rat)) : Invert(Cosh(rat)); } break; case IDC_CSCH: if (!m_fIntegerMode) { result = m_bInv ? ASinh(Invert(rat)) : Invert(Sinh(rat)); } break; case IDC_COTH: if (!m_fIntegerMode) { result = m_bInv ? ATanh(Invert(rat)) : Invert(Tanh(rat)); } break; case IDC_REC: /* Reciprocal. */ result = Invert(rat); break; case IDC_SQR: /* Square */ result = Pow(rat, 2); break; case IDC_SQRT: /* Square Root */ result = Root(rat, 2); break; case IDC_CUBEROOT: case IDC_CUB: /* Cubing and cube root functions. */ result = IDC_CUBEROOT == op ? Root(rat, 3) : Pow(rat, 3); break; case IDC_LOG: /* Functions for common log. */ result = Log10(rat); break; case IDC_POW10: result = Pow(10, rat); break; case IDC_POW2: result = Pow(2, rat); break; case IDC_LN: /* Functions for natural log. */ result = m_bInv ? Exp(rat) : Log(rat); break; case IDC_FAC: /* Calculate factorial. Inverse is ineffective. */ result = Fact(rat); break; case IDC_DEGREES: ProcessCommand(IDC_INV); // This case falls through to IDC_DMS case because in the old Win32 Calc, // the degrees functionality was achieved as 'Inv' of 'dms' operation, // so setting the IDC_INV command first and then performing 'dms' operation as global variables m_bInv, m_bRecord // are set properly through ProcessCommand(IDC_INV) [[fallthrough]]; case IDC_DMS: { if (!m_fIntegerMode) { auto shftRat{ m_bInv ? 100 : 60 }; Rational degreeRat = Integer(rat); Rational minuteRat = (rat - degreeRat) * shftRat; Rational secondRat = minuteRat; minuteRat = Integer(minuteRat); secondRat = (secondRat - minuteRat) * shftRat; // // degreeRat == degrees, minuteRat == minutes, secondRat == seconds // shftRat = m_bInv ? 60 : 100; secondRat /= shftRat; minuteRat = (minuteRat + secondRat) / shftRat; result = degreeRat + minuteRat; } break; } case IDC_CEIL: result = (Frac(rat) > 0) ? Integer(rat + 1) : Integer(rat); break; case IDC_FLOOR: result = (Frac(rat) < 0) ? Integer(rat - 1) : Integer(rat); break; case IDC_ABS: result = Abs(rat); break; } // end switch( op ) } catch (uint32_t nErrCode) { DisplayError(nErrCode); result = rat; } return result; } /* Routine to display error messages and set m_bError flag. Errors are */ /* called with DisplayError (n), where n is a uint32_t between 0 and 5. */ void CCalcEngine::DisplayError(uint32_t nError) { wstring errorString{ GetString(IDS_ERRORS_FIRST + SCODE_CODE(nError)) }; SetPrimaryDisplay(errorString, true /*isError*/); m_bError = true; /* Set error flag. Only cleared with CLEAR or CENTR. */ m_HistoryCollector.ClearHistoryLine(errorString); } ================================================ FILE: src/CalcManager/CEngine/scioper.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "Header Files/CalcEngine.h" using namespace CalcEngine; using namespace CalcEngine::RationalMath; // Routines to perform standard operations &|^~<<>>+-/*% and pwr. CalcEngine::Rational CCalcEngine::DoOperation(int operation, CalcEngine::Rational const& lhs, CalcEngine::Rational const& rhs) { // Remove any variance in how 0 could be represented in rat e.g. -0, 0/n, etc. auto result = (lhs != 0 ? lhs : 0); try { switch (operation) { case IDC_AND: result &= rhs; break; case IDC_OR: result |= rhs; break; case IDC_XOR: result ^= rhs; break; case IDC_NAND: result = (result & rhs) ^ GetChopNumber(); break; case IDC_NOR: result = (result | rhs) ^ GetChopNumber(); break; case IDC_RSHF: { if (m_fIntegerMode && result >= m_dwWordBitWidth) // Lsh/Rsh >= than current word size is always 0 { throw CALC_E_NORESULT; } uint64_t w64Bits = rhs.ToUInt64_t(); bool fMsb = (w64Bits >> (m_dwWordBitWidth - 1)) & 1; Rational holdVal = result; result = rhs >> holdVal; if (fMsb) { result = Integer(result); auto tempRat = GetChopNumber() >> holdVal; tempRat = Integer(tempRat); result |= tempRat ^ GetChopNumber(); } break; } case IDC_RSHFL: { if (m_fIntegerMode && result >= m_dwWordBitWidth) // Lsh/Rsh >= than current word size is always 0 { throw CALC_E_NORESULT; } result = rhs >> result; break; } case IDC_LSHF: if (m_fIntegerMode && result >= m_dwWordBitWidth) // Lsh/Rsh >= than current word size is always 0 { throw CALC_E_NORESULT; } result = rhs << result; break; case IDC_ADD: result += rhs; break; case IDC_SUB: result = rhs - result; break; case IDC_MUL: result *= rhs; break; case IDC_DIV: case IDC_MOD: { int iNumeratorSign = 1, iDenominatorSign = 1; auto temp = result; result = rhs; if (m_fIntegerMode) { uint64_t w64Bits = rhs.ToUInt64_t(); bool fMsb = (w64Bits >> (m_dwWordBitWidth - 1)) & 1; if (fMsb) { result = (rhs ^ GetChopNumber()) + 1; iNumeratorSign = -1; } w64Bits = temp.ToUInt64_t(); fMsb = (w64Bits >> (m_dwWordBitWidth - 1)) & 1; if (fMsb) { temp = (temp ^ GetChopNumber()) + 1; iDenominatorSign = -1; } } if (operation == IDC_DIV) { result /= temp; if (m_fIntegerMode && (iNumeratorSign * iDenominatorSign) == -1) { result = -(Integer(result)); } } else { if (m_fIntegerMode) { // Programmer mode, use remrat (remainder after division) result %= temp; if (iNumeratorSign == -1) { result = -(Integer(result)); } } else { // other modes, use modrat (modulus after division) result = Mod(result, temp); } } break; } case IDC_PWR: // Calculates rhs to the result(th) power. result = Pow(rhs, result); break; case IDC_ROOT: // Calculates rhs to the result(th) root. result = Root(rhs, result); break; case IDC_LOGBASEY: result = (Log(rhs) / Log(result)); break; } } catch (uint32_t dwErrCode) { DisplayError(dwErrCode); // On error, return the original value result = lhs; } return result; } ================================================ FILE: src/CalcManager/CEngine/sciset.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "Header Files/CalcEngine.h" using namespace CalcEngine; using namespace CalcEngine::RationalMath; using namespace std; // To be called when either the radix or num width changes. You can use -1 in either of these values to mean // dont change that. void CCalcEngine::SetRadixTypeAndNumWidth(RadixType radixtype, NUM_WIDTH numwidth) { // When in integer mode, the number is represented in 2's complement form. When a bit width is changing, we can // change the number representation back to sign, abs num form in ratpak. Soon when display sees this, it will // convert to 2's complement form, but this time all high bits will be propagated. Eg. -127, in byte mode is // represented as 1000,0001. This puts it back as sign=-1, 01111111 . But DisplayNum will see this and convert it // back to 1111,1111,1000,0001 when in Word mode. if (m_fIntegerMode) { uint64_t w64Bits = m_currentVal.ToUInt64_t(); bool fMsb = (w64Bits >> (m_dwWordBitWidth - 1)) & 1; // make sure you use the old width if (fMsb) { // If high bit is set, then get the decimal number in -ve 2'scompl form. auto tempResult = m_currentVal ^ GetChopNumber(); m_currentVal = -(tempResult + 1); } } if (radixtype >= RadixType::Hex && radixtype <= RadixType::Binary) { m_radix = NRadixFromRadixType(radixtype); // radixtype is not even saved } if (numwidth >= NUM_WIDTH::QWORD_WIDTH && numwidth <= NUM_WIDTH::BYTE_WIDTH) { m_numwidth = numwidth; m_dwWordBitWidth = DwWordBitWidthFromNumWidth(numwidth); } // inform ratpak that a change in base or precision has occurred BaseOrPrecisionChanged(); // display the correct number for the new state (ie convert displayed // number to correct base) DisplayNum(); } int32_t CCalcEngine::DwWordBitWidthFromNumWidth(NUM_WIDTH numwidth) { switch (numwidth) { case NUM_WIDTH::DWORD_WIDTH: return 32; case NUM_WIDTH::WORD_WIDTH: return 16; case NUM_WIDTH::BYTE_WIDTH: return 8; case NUM_WIDTH::QWORD_WIDTH: default: return 64; } } uint32_t CCalcEngine::NRadixFromRadixType(RadixType radixtype) { switch (radixtype) { case RadixType::Hex: return 16; case RadixType::Octal: return 8; case RadixType::Binary: return 2; case RadixType::Decimal: default: return 10; } } // Toggles a given bit into the number representation. returns true if it changed it actually. bool CCalcEngine::TryToggleBit(CalcEngine::Rational& rat, uint32_t wbitno) { uint32_t wmax = DwWordBitWidthFromNumWidth(m_numwidth); if (wbitno >= wmax) { return false; // ignore error cant happen } Rational result = Integer(rat); // Remove any variance in how 0 could be represented in rat e.g. -0, 0/n, etc. result = (result != 0 ? result : 0); // XOR the result with 2^wbitno power rat = result ^ Pow(2, static_cast(wbitno)); return true; } // Returns the nearest power of two int CCalcEngine::QuickLog2(int iNum) { int iRes = 0; // while first digit is a zero while (!(iNum & 1)) { iRes++; iNum >>= 1; } // if our number isn't a perfect square iNum = iNum >> 1; if (iNum) { // find the largest digit for (iNum = iNum >> 1; iNum; iNum = iNum >> 1) ++iRes; // and then add two iRes += 2; } return iRes; } //////////////////////////////////////////////////////////////////////// // // UpdateMaxIntDigits // // determine the maximum number of digits needed for the current precision, // word size, and base. This number is conservative towards the small side // such that there may be some extra bits left over. For example, base 8 requires 3 bits per digit. // A word size of 32 bits allows for 10 digits with a remainder of two bits. Bases // that require variable number of bits (non-power-of-two bases) are approximated // by the next highest power-of-two base (again, to be conservative and guarantee // there will be no over flow verse the current word size for numbers entered). // Base 10 is a special case and always uses the base 10 precision (m_nPrecisionSav). void CCalcEngine::UpdateMaxIntDigits() { if (m_radix == 10) { // if in integer mode you still have to honor the max digits you can enter based on bit width if (m_fIntegerMode) { m_cIntDigitsSav = static_cast(GetMaxDecimalValueString().length()) - 1; // This is the max digits you can enter a decimal in fixed width mode aka integer mode -1. The last digit // has to be checked separately } else { m_cIntDigitsSav = m_precision; } } else { m_cIntDigitsSav = m_dwWordBitWidth / CCalcEngine::QuickLog2(m_radix); } } void CCalcEngine::ChangeBaseConstants(uint32_t radix, int maxIntDigits, int32_t precision) { if (10 == radix) { ChangeConstants(radix, precision); // Base 10 precision for internal computing still needs to be 32, to // take care of decimals precisely. For eg. to get the HI word of a qword, we do a rsh, which depends on getting // 18446744073709551615 / 4294967296 = 4294967295.9999917... This is important it works this and doesn't reduce // the precision to number of digits allowed to enter. In other words, precision and # of allowed digits to be // entered are different. } else { ChangeConstants(radix, maxIntDigits + 1); } } void CCalcEngine::BaseOrPrecisionChanged() { UpdateMaxIntDigits(); CCalcEngine::ChangeBaseConstants(m_radix, m_cIntDigitsSav, m_precision); } ================================================ FILE: src/CalcManager/CalcManager.vcxproj ================================================ Debug ARM64 Debug Win32 Debug x64 Release ARM64 Release Win32 Release x64 {311e866d-8b93-4609-a691-265941fee101} Win32Proj CalcManager CalcManager false en-US 15.0 true Windows Store 10.0 10.0.26100.0 10.0.19041.0 x64 StaticLibrary true v143 StaticLibrary true v143 StaticLibrary true v143 StaticLibrary false true v143 NativeRecommendedRules.ruleset true StaticLibrary false true v143 NativeRecommendedRules.ruleset true StaticLibrary false true v143 NativeRecommendedRules.ruleset true false true Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h Console false false Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h true Console false false Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) _UNICODE;UNICODE;%(PreprocessorDefinitions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h Console false false Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h true Console false false Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h Console false false Use false true /Zm250 /await /std:c++17 /permissive- /Zc:twoPhase- /utf-8 /w44242 %(AdditionalOptions) $(SolutionDir)..\src\;%(AdditionalIncludeDirectories) Level4 true pch.h true Console false false Create Create Create Create Create Create ================================================ FILE: src/CalcManager/CalcManager.vcxproj.filters ================================================  {957a8e3c-00c7-48bc-b63c-83b2140a8251} {a1bae6f0-0a01-447d-9a3a-5c65bcd384e6} {5149465e-c5c9-48a2-b676-f11380b733a0} CEngine CEngine CEngine CEngine CEngine CEngine CEngine CEngine RatPack RatPack RatPack RatPack RatPack RatPack RatPack RatPack RatPack RatPack RatPack RatPack CEngine CEngine CEngine CEngine Header Files Header Files Header Files Header Files Header Files RatPack RatPack RatPack Header Files Header Files Header Files Header Files Header Files Header Files Header Files Header Files Header Files Header Files Header Files Header Files RatPack ================================================ FILE: src/CalcManager/CalculatorHistory.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include "CalculatorHistory.h" using namespace std; using namespace CalculationManager; namespace { static wstring GetGeneratedExpression(const vector>& tokens) { wstring expression; bool isFirst = true; for (auto const& token : tokens) { if (isFirst) { isFirst = false; } else { expression += L' '; } expression.append(token.first); } return expression; } } CalculatorHistory::CalculatorHistory(size_t maxSize) : m_maxHistorySize(maxSize) { } unsigned int CalculatorHistory::AddToHistory( _In_ shared_ptr>> const& tokens, _In_ shared_ptr>> const& commands, wstring_view result) { shared_ptr spHistoryItem = make_shared(); spHistoryItem->historyItemVector.spTokens = tokens; spHistoryItem->historyItemVector.spCommands = commands; spHistoryItem->historyItemVector.expression = GetGeneratedExpression(*tokens); spHistoryItem->historyItemVector.result = wstring(result); return AddItem(spHistoryItem); } unsigned int CalculatorHistory::AddItem(_In_ shared_ptr const& spHistoryItem) { if (m_historyItems.size() >= m_maxHistorySize) { m_historyItems.erase(m_historyItems.begin()); } m_historyItems.push_back(spHistoryItem); return static_cast(m_historyItems.size() - 1); } bool CalculatorHistory::RemoveItem(unsigned int uIdx) { if (uIdx < m_historyItems.size()) { m_historyItems.erase(m_historyItems.begin() + uIdx); return true; } return false; } vector> const& CalculatorHistory::GetHistory() { return m_historyItems; } shared_ptr const& CalculatorHistory::GetHistoryItem(unsigned int uIdx) { assert(uIdx < m_historyItems.size()); return m_historyItems.at(uIdx); } void CalculatorHistory::ClearHistory() { m_historyItems.clear(); } ================================================ FILE: src/CalcManager/CalculatorHistory.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "ExpressionCommandInterface.h" #include "Header Files/IHistoryDisplay.h" namespace CalculationManager { struct HISTORYITEMVECTOR { std::shared_ptr>> spTokens; std::shared_ptr>> spCommands; std::wstring expression; std::wstring result; }; struct HISTORYITEM { HISTORYITEMVECTOR historyItemVector; }; class CalculatorHistory : public IHistoryDisplay { public: CalculatorHistory(const size_t maxSize); unsigned int AddToHistory( _In_ std::shared_ptr>> const& spTokens, _In_ std::shared_ptr>> const& spCommands, std::wstring_view result); std::vector> const& GetHistory(); std::shared_ptr const& GetHistoryItem(unsigned int uIdx); void ClearHistory(); unsigned int AddItem(_In_ std::shared_ptr const& spHistoryItem); bool RemoveItem(unsigned int uIdx); size_t MaxHistorySize() const { return m_maxHistorySize; } private: std::vector> m_historyItems; const size_t m_maxHistorySize; }; } ================================================ FILE: src/CalcManager/CalculatorManager.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include // for UCHAR_MAX #include "Header Files/CalcEngine.h" #include "CalculatorManager.h" #include "CalculatorResource.h" using namespace std; using namespace CalcEngine; static constexpr size_t MAX_HISTORY_ITEMS = 20; #ifndef _MSC_VER #define __pragma(x) #endif namespace CalculationManager { CalculatorManager::CalculatorManager(_In_ ICalcDisplay* displayCallback, _In_ IResourceProvider* resourceProvider) : m_displayCallback(displayCallback) , m_currentCalculatorEngine(nullptr) , m_resourceProvider(resourceProvider) , m_inHistoryItemLoadMode(false) , m_persistedPrimaryValue() , m_isExponentialFormat(false) , m_currentDegreeMode(Command::CommandNULL) , m_pStdHistory(new CalculatorHistory(MAX_HISTORY_ITEMS)) , m_pSciHistory(new CalculatorHistory(MAX_HISTORY_ITEMS)) , m_pHistory(nullptr) { CCalcEngine::InitialOneTimeOnlySetup(*m_resourceProvider); } /// /// Call the callback function using passed in IDisplayHelper. /// Used to set the primary display value on ViewModel /// /// wstring representing text to be displayed void CalculatorManager::SetPrimaryDisplay(_In_ const wstring& displayString, _In_ bool isError) { if (!m_inHistoryItemLoadMode) { m_displayCallback->SetPrimaryDisplay(displayString, isError); } } void CalculatorManager::SetIsInError(bool isError) { m_displayCallback->SetIsInError(isError); } void CalculatorManager::DisplayPasteError() { m_currentCalculatorEngine->DisplayError(CALC_E_DOMAIN /*code for "Invalid input" error*/); } void CalculatorManager::MaxDigitsReached() { m_displayCallback->MaxDigitsReached(); } void CalculatorManager::BinaryOperatorReceived() { m_displayCallback->BinaryOperatorReceived(); } void CalculatorManager::MemoryItemChanged(unsigned int indexOfMemory) { m_displayCallback->MemoryItemChanged(indexOfMemory); } void CalculatorManager::InputChanged() { m_displayCallback->InputChanged(); } /// /// Call the callback function using passed in IDisplayHelper. /// Used to set the expression display value on ViewModel /// /// wstring representing expression to be displayed void CalculatorManager::SetExpressionDisplay( _Inout_ shared_ptr>> const& tokens, _Inout_ shared_ptr>> const& commands) { if (!m_inHistoryItemLoadMode) { m_displayCallback->SetExpressionDisplay(tokens, commands); } } /// /// Callback from the CalculatorControl /// Passed in string representations of memorized numbers get passed to the client /// /// vector containing wstring values of memorized numbers void CalculatorManager::SetMemorizedNumbers(_In_ const vector& memorizedNumbers) { m_displayCallback->SetMemorizedNumbers(memorizedNumbers); } /// /// Callback from the engine /// /// string containing the parenthesis count void CalculatorManager::SetParenthesisNumber(_In_ unsigned int parenthesisCount) { m_displayCallback->SetParenthesisNumber(parenthesisCount); } /// /// Callback from the engine /// void CalculatorManager::OnNoRightParenAdded() { m_displayCallback->OnNoRightParenAdded(); } /// /// Reset CalculatorManager. /// Set the mode to the standard calculator /// Set the degree mode as regular degree (as oppose to Rad or Grad) /// Clear all the entries and memories /// Clear Memory if clearMemory parameter is true.(Default value is true) /// void CalculatorManager::Reset(bool clearMemory /* = true*/) { SetStandardMode(); if (m_scientificCalculatorEngine) { m_scientificCalculatorEngine->ProcessCommand(IDC_DEG); m_scientificCalculatorEngine->ProcessCommand(IDC_CLEAR); if (m_isExponentialFormat) { m_isExponentialFormat = false; m_scientificCalculatorEngine->ProcessCommand(IDC_FE); } } if (m_programmerCalculatorEngine) { m_programmerCalculatorEngine->ProcessCommand(IDC_CLEAR); } if (clearMemory) { this->MemorizedNumberClearAll(); } } /// /// Change the current calculator engine to standard calculator engine. /// void CalculatorManager::SetStandardMode() { if (!m_standardCalculatorEngine) { m_standardCalculatorEngine = make_unique(false /* Respect Order of Operations */, false /* Set to Integer Mode */, m_resourceProvider, this, m_pStdHistory); } m_currentCalculatorEngine = m_standardCalculatorEngine.get(); m_currentCalculatorEngine->ProcessCommand(IDC_DEC); m_currentCalculatorEngine->ProcessCommand(IDC_CLEAR); m_currentCalculatorEngine->ChangePrecision(static_cast(CalculatorPrecision::StandardModePrecision)); UpdateMaxIntDigits(); m_pHistory = m_pStdHistory.get(); } /// /// Change the current calculator engine to scientific calculator engine. /// void CalculatorManager::SetScientificMode() { if (!m_scientificCalculatorEngine) { m_scientificCalculatorEngine = make_unique(true /* Respect Order of Operations */, false /* Set to Integer Mode */, m_resourceProvider, this, m_pSciHistory); } m_currentCalculatorEngine = m_scientificCalculatorEngine.get(); m_currentCalculatorEngine->ProcessCommand(IDC_DEC); m_currentCalculatorEngine->ProcessCommand(IDC_CLEAR); m_currentCalculatorEngine->ChangePrecision(static_cast(CalculatorPrecision::ScientificModePrecision)); m_pHistory = m_pSciHistory.get(); } /// /// Change the current calculator engine to scientific calculator engine. /// void CalculatorManager::SetProgrammerMode() { if (!m_programmerCalculatorEngine) { m_programmerCalculatorEngine = make_unique(true /* Respect Order of Operations */, true /* Set to Integer Mode */, m_resourceProvider, this, nullptr); } m_currentCalculatorEngine = m_programmerCalculatorEngine.get(); m_currentCalculatorEngine->ProcessCommand(IDC_DEC); m_currentCalculatorEngine->ProcessCommand(IDC_CLEAR); m_currentCalculatorEngine->ChangePrecision(static_cast(CalculatorPrecision::ProgrammerModePrecision)); } /// /// Send command to the Calc Engine /// Cast Command Enum to OpCode. /// Handle special commands such as mode change and combination of two commands. /// /// Enum Command void CalculatorManager::SendCommand(_In_ Command command) { // When the expression line is cleared, we save the current state, which includes, // primary display, memory, and degree mode if (command == Command::CommandCLEAR || command == Command::CommandEQU || command == Command::ModeBasic || command == Command::ModeScientific || command == Command::ModeProgrammer) { switch (command) { case Command::ModeBasic: this->SetStandardMode(); break; case Command::ModeScientific: this->SetScientificMode(); break; case Command::ModeProgrammer: this->SetProgrammerMode(); break; default: m_currentCalculatorEngine->ProcessCommand(static_cast(command)); } InputChanged(); return; } if (command == Command::CommandDEG || command == Command::CommandRAD || command == Command::CommandGRAD) { m_currentDegreeMode = command; } switch (command) { case Command::CommandASIN: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandSIN)); break; case Command::CommandACOS: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCOS)); break; case Command::CommandATAN: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandTAN)); break; case Command::CommandPOWE: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandLN)); break; case Command::CommandASINH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandSINH)); break; case Command::CommandACOSH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCOSH)); break; case Command::CommandATANH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandTANH)); break; case Command::CommandASEC: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandSEC)); break; case Command::CommandACSC: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCSC)); break; case Command::CommandACOT: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCOT)); break; case Command::CommandASECH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandSECH)); break; case Command::CommandACSCH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCSCH)); break; case Command::CommandACOTH: m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandINV)); m_currentCalculatorEngine->ProcessCommand(static_cast(Command::CommandCOTH)); break; case Command::CommandFE: m_isExponentialFormat = !m_isExponentialFormat; [[fallthrough]]; default: m_currentCalculatorEngine->ProcessCommand(static_cast(command)); break; } InputChanged(); } /// /// Load the persisted value that is saved in memory of CalcEngine /// void CalculatorManager::LoadPersistedPrimaryValue() { m_currentCalculatorEngine->PersistedMemObject(m_persistedPrimaryValue); m_currentCalculatorEngine->ProcessCommand(IDC_RECALL); InputChanged(); } /// /// Memorize the current displayed value /// Notify the client with new the new memorize value vector /// void CalculatorManager::MemorizeNumber() { if (m_currentCalculatorEngine->FInErrorState()) { return; } m_currentCalculatorEngine->ProcessCommand(IDC_STORE); auto memoryObjectPtr = m_currentCalculatorEngine->PersistedMemObject(); if (memoryObjectPtr != nullptr) { m_memorizedNumbers.insert(m_memorizedNumbers.begin(), *memoryObjectPtr); } if (m_memorizedNumbers.size() > m_maximumMemorySize) { m_memorizedNumbers.resize(m_maximumMemorySize); } this->SetMemorizedNumbersString(); } /// /// Recall the memorized number. /// The memorized number gets loaded to the primary display /// /// Index of the target memory void CalculatorManager::MemorizedNumberLoad(_In_ unsigned int indexOfMemory) { if (m_currentCalculatorEngine->FInErrorState()) { return; } this->MemorizedNumberSelect(indexOfMemory); m_currentCalculatorEngine->ProcessCommand(IDC_RECALL); InputChanged(); } /// /// Do the addition to the selected memory /// It adds primary display value to the selected memory /// Notify the client with new the new memorize value vector /// /// Index of the target memory void CalculatorManager::MemorizedNumberAdd(_In_ unsigned int indexOfMemory) { if (m_currentCalculatorEngine->FInErrorState()) { return; } if (m_memorizedNumbers.empty()) { this->MemorizeNumber(); } else { this->MemorizedNumberSelect(indexOfMemory); m_currentCalculatorEngine->ProcessCommand(IDC_MPLUS); this->MemorizedNumberChanged(indexOfMemory); this->SetMemorizedNumbersString(); } m_displayCallback->MemoryItemChanged(indexOfMemory); } void CalculatorManager::MemorizedNumberClear(_In_ unsigned int indexOfMemory) { if (indexOfMemory < m_memorizedNumbers.size()) { m_memorizedNumbers.erase(m_memorizedNumbers.begin() + indexOfMemory); } } /// /// Do the subtraction to the selected memory /// It adds primary display value to the selected memory /// Notify the client with new the new memorize value vector /// /// Index of the target memory void CalculatorManager::MemorizedNumberSubtract(_In_ unsigned int indexOfMemory) { if (m_currentCalculatorEngine->FInErrorState()) { return; } // To add negative of the number on display to the memory -x = x - 2x if (m_memorizedNumbers.empty()) { this->MemorizeNumber(); this->MemorizedNumberSubtract(0); this->MemorizedNumberSubtract(0); } else { this->MemorizedNumberSelect(indexOfMemory); m_currentCalculatorEngine->ProcessCommand(IDC_MMINUS); this->MemorizedNumberChanged(indexOfMemory); this->SetMemorizedNumbersString(); } m_displayCallback->MemoryItemChanged(indexOfMemory); } /// /// Clear all the memorized values /// Notify the client with new the new memorize value vector /// void CalculatorManager::MemorizedNumberClearAll() { m_memorizedNumbers.clear(); m_currentCalculatorEngine->ProcessCommand(IDC_MCLEAR); this->SetMemorizedNumbersString(); } /// /// Helper function that selects a memory from the vector and set it to CCalcEngine /// Saved RAT number needs to be copied and passed in, as CCalcEngine destroyed the passed in RAT /// /// Index of the target memory void CalculatorManager::MemorizedNumberSelect(_In_ unsigned int indexOfMemory) { if (m_currentCalculatorEngine->FInErrorState()) { return; } auto memoryObject = m_memorizedNumbers.at(indexOfMemory); m_currentCalculatorEngine->PersistedMemObject(memoryObject); } /// /// Helper function that needs to be executed when memory is modified /// When memory is modified, destroy the old RAT and put the new RAT in vector /// /// Index of the target memory void CalculatorManager::MemorizedNumberChanged(_In_ unsigned int indexOfMemory) { if (m_currentCalculatorEngine->FInErrorState()) { return; } auto memoryObject = m_currentCalculatorEngine->PersistedMemObject(); if (memoryObject != nullptr) { m_memorizedNumbers.at(indexOfMemory) = *memoryObject; } } vector> const& CalculatorManager::GetHistoryItems() const { return m_pHistory->GetHistory(); } vector> const& CalculatorManager::GetHistoryItems(_In_ CalculatorMode mode) const { return (mode == CalculatorMode::Standard) ? m_pStdHistory->GetHistory() : m_pSciHistory->GetHistory(); } void CalculatorManager::SetHistoryItems(_In_ std::vector> const& historyItems) { for (auto const& historyItem : historyItems) { auto index = m_pHistory->AddItem(historyItem); OnHistoryItemAdded(index); } } shared_ptr const& CalculatorManager::GetHistoryItem(_In_ unsigned int uIdx) { return m_pHistory->GetHistoryItem(uIdx); } void CalculatorManager::OnHistoryItemAdded(_In_ unsigned int addedItemIndex) { m_displayCallback->OnHistoryItemAdded(addedItemIndex); } bool CalculatorManager::RemoveHistoryItem(_In_ unsigned int uIdx) { return m_pHistory->RemoveItem(uIdx); } void CalculatorManager::ClearHistory() { m_pHistory->ClearHistory(); } void CalculatorManager::SetRadix(RadixType iRadixType) { switch (iRadixType) { case RadixType::Hex: m_currentCalculatorEngine->ProcessCommand(IDC_HEX); break; case RadixType::Decimal: m_currentCalculatorEngine->ProcessCommand(IDC_DEC); break; case RadixType::Octal: m_currentCalculatorEngine->ProcessCommand(IDC_OCT); break; case RadixType::Binary: m_currentCalculatorEngine->ProcessCommand(IDC_BIN); break; default: break; } SetMemorizedNumbersString(); } void CalculatorManager::SetMemorizedNumbersString() { vector resultVector; for (auto const& memoryItem : m_memorizedNumbers) { auto radix = m_currentCalculatorEngine->GetCurrentRadix(); wstring stringValue = m_currentCalculatorEngine->GetStringForDisplay(memoryItem, radix); if (!stringValue.empty()) { resultVector.push_back(m_currentCalculatorEngine->GroupDigitsPerRadix(stringValue, radix)); } } m_displayCallback->SetMemorizedNumbers(resultVector); } CalculationManager::Command CalculatorManager::GetCurrentDegreeMode() { if (m_currentDegreeMode == Command::CommandNULL) { m_currentDegreeMode = Command::CommandDEG; } return m_currentDegreeMode; } wstring CalculatorManager::GetResultForRadix(uint32_t radix, int32_t precision, bool groupDigitsPerRadix) { return m_currentCalculatorEngine ? m_currentCalculatorEngine->GetCurrentResultForRadix(radix, precision, groupDigitsPerRadix) : L""; } void CalculatorManager::SetPrecision(int32_t precision) { m_currentCalculatorEngine->ChangePrecision(precision); } void CalculatorManager::UpdateMaxIntDigits() { m_currentCalculatorEngine->UpdateMaxIntDigits(); } wchar_t CalculatorManager::DecimalSeparator() { return m_currentCalculatorEngine ? m_currentCalculatorEngine->DecimalSeparator() : m_resourceProvider->GetCEngineString(L"sDecimal")[0]; } bool CalculatorManager::IsEngineRecording() { return m_currentCalculatorEngine->FInRecordingState(); } bool CalculatorManager::IsInputEmpty() { return m_currentCalculatorEngine->IsInputEmpty(); } void CalculatorManager::SetInHistoryItemLoadMode(_In_ bool isHistoryItemLoadMode) { m_inHistoryItemLoadMode = isHistoryItemLoadMode; } std::vector> CalculatorManager::GetDisplayCommandsSnapshot() const { return m_currentCalculatorEngine->GetHistoryCollectorCommandsSnapshot(); } } ================================================ FILE: src/CalcManager/CalculatorManager.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalculatorHistory.h" #include "Header Files/CalcEngine.h" #include "Header Files/Rational.h" #include "Header Files/ICalcDisplay.h" namespace CalculationManager { enum class Command; struct HISTORYITEM; enum class CalculatorMode { Standard = 0, Scientific, }; enum class CalculatorPrecision { StandardModePrecision = 16, ScientificModePrecision = 32, ProgrammerModePrecision = 64 }; // Numbering continues from the Enum Command from Command.h // with some gap to ensure there is no overlap of these ids // when static_cast is performed on these ids // they shouldn't fall in any number range greater than 80. So never // make the memory command ids go below 330 enum class MemoryCommand { MemorizeNumber = 330, MemorizedNumberLoad = 331, MemorizedNumberAdd = 332, MemorizedNumberSubtract = 333, MemorizedNumberClearAll = 334, MemorizedNumberClear = 335 }; class CalculatorManager final : public ICalcDisplay { private: static const unsigned int m_maximumMemorySize = 100; ICalcDisplay* const m_displayCallback; CCalcEngine* m_currentCalculatorEngine; std::unique_ptr m_scientificCalculatorEngine; std::unique_ptr m_standardCalculatorEngine; std::unique_ptr m_programmerCalculatorEngine; IResourceProvider* const m_resourceProvider; bool m_inHistoryItemLoadMode; std::vector m_memorizedNumbers; CalcEngine::Rational m_persistedPrimaryValue; bool m_isExponentialFormat; Command m_currentDegreeMode; void MemorizedNumberSelect(_In_ unsigned int); void MemorizedNumberChanged(_In_ unsigned int); void LoadPersistedPrimaryValue(); std::shared_ptr m_pStdHistory; std::shared_ptr m_pSciHistory; CalculatorHistory* m_pHistory; public: // ICalcDisplay void SetPrimaryDisplay(_In_ const std::wstring& displayString, _In_ bool isError) override; void SetIsInError(bool isError) override; void SetExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands) override; void SetMemorizedNumbers(_In_ const std::vector& memorizedNumbers) override; void OnHistoryItemAdded(_In_ unsigned int addedItemIndex) override; void SetParenthesisNumber(_In_ unsigned int parenthesisCount) override; void OnNoRightParenAdded() override; void DisplayPasteError(); void MaxDigitsReached() override; void BinaryOperatorReceived() override; void MemoryItemChanged(unsigned int indexOfMemory) override; void InputChanged() override; CalculatorManager(_In_ ICalcDisplay* displayCallback, _In_ IResourceProvider* resourceProvider); void Reset(bool clearMemory = true); void SetStandardMode(); void SetScientificMode(); void SetProgrammerMode(); void SendCommand(_In_ Command command); void MemorizeNumber(); void MemorizedNumberLoad(_In_ unsigned int); void MemorizedNumberAdd(_In_ unsigned int); void MemorizedNumberSubtract(_In_ unsigned int); void MemorizedNumberClear(_In_ unsigned int); void MemorizedNumberClearAll(); bool IsEngineRecording(); bool IsInputEmpty(); void SetRadix(RadixType iRadixType); void SetMemorizedNumbersString(); std::wstring GetResultForRadix(uint32_t radix, int32_t precision, bool groupDigitsPerRadix); void SetPrecision(int32_t precision); void UpdateMaxIntDigits(); wchar_t DecimalSeparator(); std::vector> const& GetHistoryItems() const; std::vector> const& GetHistoryItems(_In_ CalculatorMode mode) const; void SetHistoryItems(_In_ std::vector> const& historyItems); std::shared_ptr const& GetHistoryItem(_In_ unsigned int uIdx); bool RemoveHistoryItem(_In_ unsigned int uIdx); void ClearHistory(); size_t MaxHistorySize() const { return m_pHistory->MaxHistorySize(); } CalculationManager::Command GetCurrentDegreeMode(); void SetInHistoryItemLoadMode(_In_ bool isHistoryItemLoadMode); std::vector> GetDisplayCommandsSnapshot() const; }; } ================================================ FILE: src/CalcManager/CalculatorResource.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include namespace CalculationManager { class IResourceProvider { public: virtual ~IResourceProvider() { } // Should return a string from the resource table for strings used // by the calculation engine. The strings that must be defined // and the ids to define them with can be seen in EngineStrings.h // with SIDS prefix. Additionally it must provide values for string // ids "sDecimal", "sThousand" and "sGrouping". See // https://technet.microsoft.com/en-us/library/cc782655(v=ws.10).aspx // for what these values refer to. virtual std::wstring GetCEngineString(std::wstring_view id) = 0; }; } ================================================ FILE: src/CalcManager/CalculatorVector.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include #include "winerror_cross_platform.h" #include "Ratpack/CalcErr.h" #include // for std::out_of_range #include "sal_cross_platform.h" // for SAL template class CalculatorVector { public: ResultCode GetAt(_In_opt_ unsigned int index, _Out_ TType* item) { try { *item = m_vector.at(index); } catch (const std::out_of_range& /*ex*/) { return E_BOUNDS; } return S_OK; } ResultCode GetSize(_Out_ unsigned int* size) { *size = static_cast(m_vector.size()); return S_OK; } ResultCode SetAt(_In_ unsigned int index, _In_opt_ TType item) { try { m_vector[index] = item; } catch (const std::out_of_range& /*ex*/) { return E_BOUNDS; } return S_OK; } ResultCode RemoveAt(_In_ unsigned int index) { if (index < m_vector.size()) { m_vector.erase(m_vector.begin() + index); } else { return E_BOUNDS; } return S_OK; } ResultCode InsertAt(_In_ unsigned int index, _In_ TType item) { try { auto iter = m_vector.begin() + index; m_vector.insert(iter, item); } catch (const std::bad_alloc& /*ex*/) { return E_OUTOFMEMORY; } return S_OK; } ResultCode Truncate(_In_ unsigned int index) { if (index < m_vector.size()) { auto startIter = m_vector.begin() + index; m_vector.erase(startIter, m_vector.end()); } else { return E_BOUNDS; } return S_OK; } ResultCode Append(_In_opt_ TType item) { try { m_vector.push_back(item); } catch (const std::bad_alloc& /*ex*/) { return E_OUTOFMEMORY; } return S_OK; } ResultCode RemoveAtEnd() { m_vector.erase(--(m_vector.end())); return S_OK; } ResultCode Clear() { m_vector.clear(); return S_OK; } ResultCode GetString(_Out_ std::wstring* expression) { unsigned int nTokens = 0; ResultCode hr = this->GetSize(&nTokens); if (SUCCEEDED(hr)) { std::pair currentPair; for (unsigned int i = 0; i < nTokens; i++) { hr = this->GetAt(i, ¤tPair); if (SUCCEEDED(hr)) { expression->append(currentPair.first); if (i != (nTokens - 1)) { expression->append(L" "); } } } std::wstring expressionSuffix{}; hr = GetExpressionSuffix(&expressionSuffix); if (SUCCEEDED(hr)) { expression->append(expressionSuffix); } } return hr; } ResultCode GetExpressionSuffix(_Out_ std::wstring* suffix) { *suffix = L" ="; return S_OK; } private: std::vector m_vector; }; ================================================ FILE: src/CalcManager/Command.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace UnitConversionManager { enum class Command { Zero, One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Decimal, Negate, Backspace, Clear, Reset, None }; } namespace CurrencyConversionManager { enum class Command { Zero, One, Two, Three, Four, Five, Six, Seven, Eight, Nine, Decimal, Negate, Backspace, Clear, None }; } namespace CalculationManager { enum class CommandType { UnaryCommand, BinaryCommand, OperandCommand, Parentheses }; enum class Command { // Commands for programmer calculators are omitted. CommandDEG = 321, CommandRAD = 322, CommandGRAD = 323, CommandDegrees = 324, CommandHYP = 325, CommandNULL = 0, CommandSIGN = 80, CommandCLEAR = 81, CommandCENTR = 82, CommandBACK = 83, CommandPNT = 84, // Hole 85 // Unused commands defined in Command.h is omitted. CommandXor = 88, CommandLSHF = 89, CommandRSHF = 90, CommandDIV = 91, CommandMUL = 92, CommandADD = 93, CommandSUB = 94, CommandMOD = 95, CommandROOT = 96, CommandPWR = 97, CommandCHOP = 98, // Unary operators must be between CommandCHOP and CommandEQU CommandROL = 99, CommandROR = 100, CommandCOM = 101, CommandSIN = 102, CommandCOS = 103, CommandTAN = 104, CommandSINH = 105, CommandCOSH = 106, CommandTANH = 107, CommandLN = 108, CommandLOG = 109, CommandSQRT = 110, CommandSQR = 111, CommandCUB = 112, CommandFAC = 113, CommandREC = 114, CommandDMS = 115, CommandCUBEROOT = 116, // x ^ 1/3 CommandPOW10 = 117, // 10 ^ x CommandPERCENT = 118, CommandFE = 119, CommandPI = 120, CommandEQU = 121, CommandMCLEAR = 122, CommandRECALL = 123, CommandSTORE = 124, CommandMPLUS = 125, CommandMMINUS = 126, CommandEXP = 127, CommandOPENP = 128, CommandCLOSEP = 129, Command0 = 130, // The controls for 0 through F must be consecutive and in order Command1 = 131, Command2 = 132, Command3 = 133, Command4 = 134, Command5 = 135, Command6 = 136, Command7 = 137, Command8 = 138, Command9 = 139, CommandA = 140, CommandB = 141, CommandC = 142, CommandD = 143, CommandE = 144, CommandF = 145, // this is last control ID which must match the string table CommandINV = 146, CommandSET_RESULT = 147, CommandSEC = 400, CommandASEC = 401, CommandCSC = 402, CommandACSC = 403, CommandCOT = 404, CommandACOT = 405, CommandSECH = 406, CommandASECH = 407, CommandCSCH = 408, CommandACSCH = 409, CommandCOTH = 410, CommandACOTH = 411, CommandPOW2 = 412, // 2 ^ x CommandAbs = 413, CommandFloor = 414, CommandCeil = 415, CommandROLC = 416, CommandRORC = 417, CommandLogBaseY = 500, CommandNand = 501, CommandNor = 502, CommandRSHFL = 505, CommandRand = 600, CommandEuler = 601, CommandAnd = 86, CommandOR = 87, CommandNot = 101, ModeBasic = 200, ModeScientific = 201, CommandASIN = 202, CommandACOS = 203, CommandATAN = 204, CommandPOWE = 205, CommandASINH = 206, CommandACOSH = 207, CommandATANH = 208, ModeProgrammer = 209, CommandHex = 313, CommandDec = 314, CommandOct = 315, CommandBin = 316, CommandQword = 317, CommandDword = 318, CommandWord = 319, CommandByte = 320, CommandBINEDITSTART = 700, CommandBINPOS0 = 700, CommandBINPOS1 = 701, CommandBINPOS2 = 702, CommandBINPOS3 = 703, CommandBINPOS4 = 704, CommandBINPOS5 = 705, CommandBINPOS6 = 706, CommandBINPOS7 = 707, CommandBINPOS8 = 708, CommandBINPOS9 = 709, CommandBINPOS10 = 710, CommandBINPOS11 = 711, CommandBINPOS12 = 712, CommandBINPOS13 = 713, CommandBINPOS14 = 714, CommandBINPOS15 = 715, CommandBINPOS16 = 716, CommandBINPOS17 = 717, CommandBINPOS18 = 718, CommandBINPOS19 = 719, CommandBINPOS20 = 720, CommandBINPOS21 = 721, CommandBINPOS22 = 722, CommandBINPOS23 = 723, CommandBINPOS24 = 724, CommandBINPOS25 = 725, CommandBINPOS26 = 726, CommandBINPOS27 = 727, CommandBINPOS28 = 728, CommandBINPOS29 = 729, CommandBINPOS30 = 730, CommandBINPOS31 = 731, CommandBINPOS32 = 732, CommandBINPOS33 = 733, CommandBINPOS34 = 734, CommandBINPOS35 = 735, CommandBINPOS36 = 736, CommandBINPOS37 = 737, CommandBINPOS38 = 738, CommandBINPOS39 = 739, CommandBINPOS40 = 740, CommandBINPOS41 = 741, CommandBINPOS42 = 742, CommandBINPOS43 = 743, CommandBINPOS44 = 744, CommandBINPOS45 = 745, CommandBINPOS46 = 746, CommandBINPOS47 = 747, CommandBINPOS48 = 748, CommandBINPOS49 = 749, CommandBINPOS50 = 750, CommandBINPOS51 = 751, CommandBINPOS52 = 752, CommandBINPOS53 = 753, CommandBINPOS54 = 754, CommandBINPOS55 = 755, CommandBINPOS56 = 756, CommandBINPOS57 = 757, CommandBINPOS58 = 758, CommandBINPOS59 = 759, CommandBINPOS60 = 760, CommandBINPOS61 = 761, CommandBINPOS62 = 762, CommandBINPOS63 = 763, CommandBINEDITEND = 763 }; } ================================================ FILE: src/CalcManager/ExpressionCommand.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include "Header Files/CCommand.h" #include "ExpressionCommand.h" using namespace std; using namespace CalcEngine; constexpr wchar_t chNegate = L'-'; constexpr wchar_t chExp = L'e'; constexpr wchar_t chPlus = L'+'; CParentheses::CParentheses(_In_ int command) : m_command(command) { } int CParentheses::GetCommand() const { return m_command; } CalculationManager::CommandType CParentheses::GetCommandType() const { return CalculationManager::CommandType::Parentheses; } void CParentheses::Accept(_In_ ISerializeCommandVisitor& commandVisitor) { commandVisitor.Visit(*this); } CUnaryCommand::CUnaryCommand(int command) { m_command = make_shared>(); m_command->push_back(command); } CUnaryCommand::CUnaryCommand(int command1, int command2) { m_command = make_shared>(); m_command->push_back(command1); m_command->push_back(command2); } const shared_ptr>& CUnaryCommand::GetCommands() const { return m_command; } CalculationManager::CommandType CUnaryCommand::GetCommandType() const { return CalculationManager::CommandType::UnaryCommand; } void CUnaryCommand::SetCommand(int command) { m_command->clear(); m_command->push_back(command); } void CUnaryCommand::SetCommands(int command1, int command2) { m_command->clear(); m_command->push_back(command1); m_command->push_back(command2); } void CUnaryCommand::Accept(_In_ ISerializeCommandVisitor& commandVisitor) { commandVisitor.Visit(*this); } CBinaryCommand::CBinaryCommand(int command) : m_command(command) { } void CBinaryCommand::SetCommand(int command) { m_command = command; } int CBinaryCommand::GetCommand() const { return m_command; } CalculationManager::CommandType CBinaryCommand::GetCommandType() const { return CalculationManager::CommandType::BinaryCommand; } void CBinaryCommand::Accept(_In_ ISerializeCommandVisitor& commandVisitor) { commandVisitor.Visit(*this); } COpndCommand::COpndCommand(shared_ptr> const& commands, bool fNegative, bool fDecimal, bool fSciFmt) : m_commands(commands) , m_fNegative(fNegative) , m_fSciFmt(fSciFmt) , m_fDecimal(fDecimal) , m_fInitialized(false) , m_value{} { } void COpndCommand::Initialize(Rational const& rat) { m_value = rat; m_fInitialized = true; } const shared_ptr>& COpndCommand::GetCommands() const { return m_commands; } void COpndCommand::SetCommands(shared_ptr> const& commands) { m_commands = commands; } void COpndCommand::AppendCommand(int command) { if (m_fSciFmt) { ClearAllAndAppendCommand(static_cast(command)); } else { m_commands->push_back(command); } if (command == IDC_PNT) { m_fDecimal = true; } } void COpndCommand::ToggleSign() { for (int nOpCode : *m_commands) { if (nOpCode != IDC_0) { m_fNegative = !m_fNegative; break; } } } void COpndCommand::RemoveFromEnd() { if (m_fSciFmt) { ClearAllAndAppendCommand(CalculationManager::Command::Command0); } else { const size_t nCommands = m_commands->size(); if (nCommands == 1) { ClearAllAndAppendCommand(CalculationManager::Command::Command0); } else { int nOpCode = m_commands->at(nCommands - 1); if (nOpCode == IDC_PNT) { m_fDecimal = false; } m_commands->pop_back(); } } } bool COpndCommand::IsNegative() const { return m_fNegative; } bool COpndCommand::IsSciFmt() const { return m_fSciFmt; } bool COpndCommand::IsDecimalPresent() const { return m_fDecimal; } CalculationManager::CommandType COpndCommand::GetCommandType() const { return CalculationManager::CommandType::OperandCommand; } void COpndCommand::ClearAllAndAppendCommand(CalculationManager::Command command) { m_commands->clear(); m_commands->push_back(static_cast(command)); m_fSciFmt = false; m_fNegative = false; m_fDecimal = false; } const wstring& COpndCommand::GetToken(wchar_t decimalSymbol) { static const wchar_t chZero = L'0'; const size_t nCommands = m_commands->size(); m_token.clear(); for (size_t i = 0; i < nCommands; i++) { int nOpCode = (*m_commands)[i]; if (nOpCode == IDC_PNT) { m_token += decimalSymbol; } else if (nOpCode == IDC_EXP) { m_token += chExp; int nextOpCode = m_commands->at(i + 1); if (nextOpCode != IDC_SIGN) { m_token += chPlus; } } else if (nOpCode == IDC_SIGN) { m_token += chNegate; } else { wstring num = to_wstring(nOpCode - IDC_0); m_token.append(num); } } // Remove zeros for (size_t i = 0; i < m_token.size(); i++) { if (m_token.at(i) != chZero) { if (m_token.at(i) == decimalSymbol) { m_token.erase(0, i - 1); } else { m_token.erase(0, i); } if (m_fNegative) { m_token.insert(0, 1, chNegate); } return m_token; } } m_token = chZero; return m_token; } wstring COpndCommand::GetString(uint32_t radix, int32_t precision) { if (m_fInitialized) { return m_value.ToString(radix, NumberFormat::Float, precision); } return wstring{}; } void COpndCommand::Accept(_In_ ISerializeCommandVisitor& commandVisitor) { commandVisitor.Visit(*this); } ================================================ FILE: src/CalcManager/ExpressionCommand.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "ExpressionCommandInterface.h" #include "Header Files/CalcEngine.h" #include "Header Files/Rational.h" class CParentheses final : public IParenthesisCommand { public: CParentheses(_In_ int command); int GetCommand() const override; CalculationManager::CommandType GetCommandType() const override; void Accept(_In_ ISerializeCommandVisitor& commandVisitor) override; private: int m_command; }; class CUnaryCommand final : public IUnaryCommand { public: CUnaryCommand(int command); CUnaryCommand(int command1, int command2); const std::shared_ptr>& GetCommands() const override; CalculationManager::CommandType GetCommandType() const override; void SetCommand(int command) override; void SetCommands(int command1, int command2) override; void Accept(_In_ ISerializeCommandVisitor& commandVisitor) override; private: std::shared_ptr> m_command; }; class CBinaryCommand final : public IBinaryCommand { public: CBinaryCommand(int command); void SetCommand(int command) override; int GetCommand() const override; CalculationManager::CommandType GetCommandType() const override; void Accept(_In_ ISerializeCommandVisitor& commandVisitor) override; private: int m_command; }; class COpndCommand final : public IOpndCommand { public: COpndCommand(std::shared_ptr> const& commands, bool fNegative, bool fDecimal, bool fSciFmt); void Initialize(CalcEngine::Rational const& rat); const std::shared_ptr>& GetCommands() const override; void SetCommands(std::shared_ptr> const& commands) override; void AppendCommand(int command) override; void ToggleSign() override; void RemoveFromEnd() override; bool IsNegative() const override; bool IsSciFmt() const override; bool IsDecimalPresent() const override; const std::wstring& GetToken(wchar_t decimalSymbol) override; CalculationManager::CommandType GetCommandType() const override; void Accept(_In_ ISerializeCommandVisitor& commandVisitor) override; std::wstring GetString(uint32_t radix, int32_t precision); private: std::shared_ptr> m_commands; bool m_fNegative; bool m_fSciFmt; bool m_fDecimal; bool m_fInitialized; std::wstring m_token; CalcEngine::Rational m_value; void ClearAllAndAppendCommand(CalculationManager::Command command); }; class ISerializeCommandVisitor { public: virtual void Visit(_In_ COpndCommand& opndCmd) = 0; virtual void Visit(_In_ CUnaryCommand& unaryCmd) = 0; virtual void Visit(_In_ CBinaryCommand& binaryCmd) = 0; virtual void Visit(_In_ CParentheses& paraCmd) = 0; }; ================================================ FILE: src/CalcManager/ExpressionCommandInterface.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include // for std::shared_ptr #include #include "Command.h" #include "sal_cross_platform.h" class ISerializeCommandVisitor; class IExpressionCommand { public: virtual CalculationManager::CommandType GetCommandType() const = 0; virtual void Accept(_In_ ISerializeCommandVisitor& commandVisitor) = 0; }; class IOperatorCommand : public IExpressionCommand { public: virtual void SetCommand(int command) = 0; }; class IUnaryCommand : public IOperatorCommand { public: virtual const std::shared_ptr>& GetCommands() const = 0; virtual void SetCommands(int command1, int command2) = 0; }; class IBinaryCommand : public IOperatorCommand { public: virtual void SetCommand(int command) override = 0; virtual int GetCommand() const = 0; }; class IOpndCommand : public IExpressionCommand { public: virtual const std::shared_ptr>& GetCommands() const = 0; virtual void AppendCommand(int command) = 0; virtual void ToggleSign() = 0; virtual void RemoveFromEnd() = 0; virtual bool IsNegative() const = 0; virtual bool IsSciFmt() const = 0; virtual bool IsDecimalPresent() const = 0; virtual const std::wstring& GetToken(wchar_t decimalSymbol) = 0; virtual void SetCommands(std::shared_ptr> const& commands) = 0; }; class IParenthesisCommand : public IExpressionCommand { public: virtual int GetCommand() const = 0; }; ================================================ FILE: src/CalcManager/Header Files/CCommand.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /****************************Module*Header*********************************** * Module Name: CCommand.h * * Module Description: * Resource ID's for the Engine Commands exposed. * * Warnings: * * Created: 13-Feb-2008 * \****************************************************************************/ #pragma once // The following are the valid id's which can be passed to CCalcEngine::ProcessCommand #define IDM_HEX 313 #define IDM_DEC 314 #define IDM_OCT 315 #define IDM_BIN 316 #define IDM_QWORD 317 #define IDM_DWORD 318 #define IDM_WORD 319 #define IDM_BYTE 320 #define IDM_DEG 321 #define IDM_RAD 322 #define IDM_GRAD 323 #define IDM_DEGREES 324 #define IDC_HEX IDM_HEX #define IDC_DEC IDM_DEC #define IDC_OCT IDM_OCT #define IDC_BIN IDM_BIN #define IDC_DEG IDM_DEG #define IDC_RAD IDM_RAD #define IDC_GRAD IDM_GRAD #define IDC_DEGREES IDM_DEGREES #define IDC_QWORD IDM_QWORD #define IDC_DWORD IDM_DWORD #define IDC_WORD IDM_WORD #define IDC_BYTE IDM_BYTE // Key IDs: // These id's must be consecutive from IDC_FIRSTCONTROL to IDC_LASTCONTROL. // The actual values don't matter but the order and sequence are very important. // Also, the order of the controls must match the order of the control names // in the string table. // For example you want to declare the color for the control IDC_ST_AVE // Find the string id for that control from the rc file // Now define the control's id as IDC_FRISTCONTROL+stringID(IDC_ST_AVE) #define IDC_FIRSTCONTROL IDC_SIGN #define IDC_SIGN 80 #define IDC_CLEAR 81 #define IDC_CENTR 82 #define IDC_BACK 83 #define IDC_PNT 84 // Hole 85 #define IDC_AND 86 // Binary operators must be between IDC_AND and IDC_PWR #define IDC_OR 87 #define IDC_XOR 88 #define IDC_LSHF 89 #define IDC_RSHF 90 #define IDC_DIV 91 #define IDC_MUL 92 #define IDC_ADD 93 #define IDC_SUB 94 #define IDC_MOD 95 #define IDC_ROOT 96 #define IDC_PWR 97 #define IDC_UNARYFIRST IDC_CHOP #define IDC_CHOP 98 // Unary operators must be between IDC_CHOP and IDC_EQU #define IDC_ROL 99 #define IDC_ROR 100 #define IDC_COM 101 #define IDC_SIN 102 #define IDC_COS 103 #define IDC_TAN 104 #define IDC_SINH 105 #define IDC_COSH 106 #define IDC_TANH 107 #define IDC_LN 108 #define IDC_LOG 109 #define IDC_SQRT 110 #define IDC_SQR 111 #define IDC_CUB 112 #define IDC_FAC 113 #define IDC_REC 114 #define IDC_DMS 115 #define IDC_CUBEROOT 116 // x ^ 1/3 #define IDC_POW10 117 // 10 ^ x #define IDC_PERCENT 118 #define IDC_UNARYLAST IDC_PERCENT #define IDC_FE 119 #define IDC_PI 120 #define IDC_EQU 121 #define IDC_MCLEAR 122 #define IDC_RECALL 123 #define IDC_STORE 124 #define IDC_MPLUS 125 #define IDC_MMINUS 126 #define IDC_EXP 127 #define IDC_OPENP 128 #define IDC_CLOSEP 129 #define IDC_0 130 // The controls for 0 through F must be consecutive and in order #define IDC_1 131 #define IDC_2 132 #define IDC_3 133 #define IDC_4 134 #define IDC_5 135 #define IDC_6 136 #define IDC_7 137 #define IDC_8 138 #define IDC_9 139 #define IDC_A 140 #define IDC_B 141 #define IDC_C 142 #define IDC_D 143 #define IDC_E 144 #define IDC_F 145 // this is last control ID which must match the string table #define IDC_INV 146 #define IDC_SET_RESULT 147 #define IDC_STRING_MAPPED_VALUES 400 #define IDC_UNARYEXTENDEDFIRST IDC_STRING_MAPPED_VALUES #define IDC_SEC 400 // Secant // 401 reserved for inverse #define IDC_CSC 402 // Cosecant // 403 reserved for inverse #define IDC_COT 404 // Cotangent // 405 reserved for inverse #define IDC_SECH 406 // Hyperbolic Secant // 407 reserved for inverse #define IDC_CSCH 408 // Hyperbolic Cosecant // 409 reserved for inverse #define IDC_COTH 410 // Hyperbolic Cotangent // 411 reserved for inverse #define IDC_POW2 412 // 2 ^ x #define IDC_ABS 413 // Absolute Value #define IDC_FLOOR 414 // Floor #define IDC_CEIL 415 // Ceiling #define IDC_ROLC 416 // Rotate Left Circular #define IDC_RORC 417 // Rotate Right Circular #define IDC_UNARYEXTENDEDLAST IDC_RORC #define IDC_LASTCONTROL IDC_CEIL #define IDC_BINARYEXTENDEDFIRST 500 #define IDC_LOGBASEY 500 // logy(x) #define IDC_NAND 501 // Nand #define IDC_NOR 502 // Nor #define IDC_RSHFL 505 // Right Shift Logical #define IDC_BINARYEXTENDEDLAST IDC_RSHFL #define IDC_RAND 600 // Random #define IDC_EULER 601 // e Constant #define IDC_BINEDITSTART 700 #define IDC_BINPOS0 700 #define IDC_BINPOS1 701 #define IDC_BINPOS2 702 #define IDC_BINPOS3 703 #define IDC_BINPOS4 704 #define IDC_BINPOS5 705 #define IDC_BINPOS6 706 #define IDC_BINPOS7 707 #define IDC_BINPOS8 708 #define IDC_BINPOS9 709 #define IDC_BINPOS10 710 #define IDC_BINPOS11 711 #define IDC_BINPOS12 712 #define IDC_BINPOS13 713 #define IDC_BINPOS14 714 #define IDC_BINPOS15 715 #define IDC_BINPOS16 716 #define IDC_BINPOS17 717 #define IDC_BINPOS18 718 #define IDC_BINPOS19 719 #define IDC_BINPOS20 720 #define IDC_BINPOS21 721 #define IDC_BINPOS22 722 #define IDC_BINPOS23 723 #define IDC_BINPOS24 724 #define IDC_BINPOS25 725 #define IDC_BINPOS26 726 #define IDC_BINPOS27 727 #define IDC_BINPOS28 728 #define IDC_BINPOS29 729 #define IDC_BINPOS30 730 #define IDC_BINPOS31 731 #define IDC_BINPOS32 732 #define IDC_BINPOS33 733 #define IDC_BINPOS34 734 #define IDC_BINPOS35 735 #define IDC_BINPOS36 736 #define IDC_BINPOS37 737 #define IDC_BINPOS38 738 #define IDC_BINPOS39 739 #define IDC_BINPOS40 740 #define IDC_BINPOS41 741 #define IDC_BINPOS42 742 #define IDC_BINPOS43 743 #define IDC_BINPOS44 744 #define IDC_BINPOS45 745 #define IDC_BINPOS46 746 #define IDC_BINPOS47 747 #define IDC_BINPOS48 748 #define IDC_BINPOS49 749 #define IDC_BINPOS50 750 #define IDC_BINPOS51 751 #define IDC_BINPOS52 752 #define IDC_BINPOS53 753 #define IDC_BINPOS54 754 #define IDC_BINPOS55 755 #define IDC_BINPOS56 756 #define IDC_BINPOS57 757 #define IDC_BINPOS58 758 #define IDC_BINPOS59 759 #define IDC_BINPOS60 760 #define IDC_BINPOS61 761 #define IDC_BINPOS62 762 #define IDC_BINPOS63 763 #define IDC_BINEDITEND 763 // The strings in the following range IDS_ENGINESTR_FIRST ... IDS_ENGINESTR_MAX are strings allocated in the // resource for the purpose internal to Engine and cant be used by the clients #define IDS_ENGINESTR_FIRST 0 #define IDS_ENGINESTR_MAX 200 ================================================ FILE: src/CalcManager/Header Files/CalcEngine.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once /****************************Module*Header***********************************\ * Module Name: CalcEngine.h * * Module Description: * The class definition for the Calculator's engine class CCalcEngine * * Warnings: * * Created: 17-Jan-2008 * \****************************************************************************/ #include #include "CCommand.h" #include "EngineStrings.h" #include "../Command.h" #include "../ExpressionCommand.h" #include "RadixType.h" #include "History.h" // for History Collector #include "CalcInput.h" #include "CalcUtils.h" #include "ICalcDisplay.h" #include "Rational.h" #include "RationalMath.h" // The following are NOT real exports of CalcEngine, but for forward declarations // The real exports follows later // This is expected to be in same order as IDM_QWORD, IDM_DWORD etc. enum class NUM_WIDTH { QWORD_WIDTH, // Number width of 64 bits mode (default) DWORD_WIDTH, // Number width of 32 bits mode WORD_WIDTH, // Number width of 16 bits mode BYTE_WIDTH // Number width of 16 bits mode }; static constexpr size_t NUM_WIDTH_LENGTH = 4; namespace CalculationManager { class IResourceProvider; } namespace CalculatorEngineTests { class CalcEngineTests; } class CCalcEngine { public: CCalcEngine( bool fPrecedence, bool fIntegerMode, CalculationManager::IResourceProvider* const pResourceProvider, __in_opt ICalcDisplay* pCalcDisplay, __in_opt std::shared_ptr pHistoryDisplay); void ProcessCommand(OpCode wID); void DisplayError(uint32_t nError); std::unique_ptr PersistedMemObject(); void PersistedMemObject(CalcEngine::Rational const& memObject); bool FInErrorState() { return m_bError; } bool IsInputEmpty() { return m_input.IsEmpty() && (m_numberString.empty() || m_numberString == L"0"); } bool FInRecordingState() { return m_bRecord; } void SettingsChanged(); bool IsCurrentTooBigForTrig(); uint32_t GetCurrentRadix(); std::wstring GetCurrentResultForRadix(uint32_t radix, int32_t precision, bool groupDigitsPerRadix); void ChangePrecision(int32_t precision) { m_precision = precision; ChangeConstants(m_radix, precision); } std::wstring GroupDigitsPerRadix(std::wstring_view numberString, uint32_t radix); std::wstring GetStringForDisplay(CalcEngine::Rational const& rat, uint32_t radix); void UpdateMaxIntDigits(); wchar_t DecimalSeparator() const; std::vector> GetHistoryCollectorCommandsSnapshot() const; // Static methods for the instance static void InitialOneTimeOnlySetup(CalculationManager::IResourceProvider& resourceProvider); // Once per load time to call to initialize all shared global variables // returns the ptr to string representing the operator. Mostly same as the button, but few special cases for x^y etc. static std::wstring_view GetString(int ids) { return s_engineStrings[std::to_wstring(ids)]; } static std::wstring_view GetString(std::wstring_view ids) { return s_engineStrings[ids]; } static std::wstring_view OpCodeToString(int nOpCode) { return GetString(IdStrFromCmdId(nOpCode)); } static std::wstring_view OpCodeToUnaryString(int nOpCode, bool fInv, AngleType angletype); static std::wstring_view OpCodeToBinaryString(int nOpCode, bool isIntegerMode); private: bool m_fPrecedence; bool m_fIntegerMode; /* This is true if engine is explicitly called to be in integer mode. All bases are restricted to be in integers only */ ICalcDisplay* m_pCalcDisplay; CalculationManager::IResourceProvider* const m_resourceProvider; int m_nOpCode; /* ID value of operation. */ int m_nPrevOpCode; // opcode which computed the number in m_currentVal. 0 if it is already bracketed or plain number or // if it hasn't yet been computed bool m_bChangeOp; // Flag for changing operation bool m_bRecord; // Global mode: recording or displaying bool m_bSetCalcState; // Flag for setting the engine result state CalcEngine::CalcInput m_input; // Global calc input object for decimal strings NumberFormat m_nFE; // Scientific notation conversion flag CalcEngine::Rational m_maxTrigonometricNum; std::unique_ptr m_memoryValue; // Current memory value. CalcEngine::Rational m_holdVal; // For holding the second operand in repetitive calculations ( pressing "=" continuously) CalcEngine::Rational m_currentVal; // Currently displayed number used everywhere. CalcEngine::Rational m_lastVal; // Number before operation (left operand). std::array m_parenVals; // Holding array for parenthesis values. std::array m_precedenceVals; // Holding array for precedence values. bool m_bError; // Error flag. bool m_bInv; // Inverse on/off flag. bool m_bNoPrevEqu; /* Flag for previous equals. */ uint32_t m_radix; int32_t m_precision; int m_cIntDigitsSav; std::vector m_decGrouping; // Holds the decimal digit grouping number std::wstring m_numberString; int m_nTempCom; /* Holding place for the last command. */ size_t m_openParenCount; // Number of open parentheses. std::array m_nOp; /* Holding array for parenthesis operations. */ std::array m_nPrecOp; /* Holding array for precedence operations. */ size_t m_precedenceOpCount; /* Current number of precedence ops in holding. */ int m_nLastCom; // Last command entered. AngleType m_angletype; // Current Angle type when in dec mode. one of deg, rad or grad NUM_WIDTH m_numwidth; // one of qword, dword, word or byte mode. int32_t m_dwWordBitWidth; // # of bits in currently selected word size std::unique_ptr m_randomGeneratorEngine; std::unique_ptr> m_distr; uint64_t m_carryBit; CHistoryCollector m_HistoryCollector; // Accumulator of each line of history as various commands are processed std::array m_chopNumbers; // word size enforcement std::array m_maxDecimalValueStrings; // maximum values represented by a given word width based off m_chopNumbers static std::unordered_map s_engineStrings; // the string table shared across all instances wchar_t m_decimalSeparator; wchar_t m_groupSeparator; private: void ProcessCommandWorker(OpCode wParam); void ResolveHighestPrecedenceOperation(); void HandleErrorCommand(OpCode idc); void HandleMaxDigitsReached(); void DisplayNum(void); int IsNumberInvalid(const std::wstring& numberString, int iMaxExp, int iMaxMantissa, uint32_t radix) const; void DisplayAnnounceBinaryOperator(); void SetPrimaryDisplay(const std::wstring& szText, bool isError = false); void ClearTemporaryValues(); void ClearDisplay(); CalcEngine::Rational TruncateNumForIntMath(CalcEngine::Rational const& rat); CalcEngine::Rational SciCalcFunctions(CalcEngine::Rational const& rat, uint32_t op); CalcEngine::Rational DoOperation(int operation, CalcEngine::Rational const& lhs, CalcEngine::Rational const& rhs); void SetRadixTypeAndNumWidth(RadixType radixtype, NUM_WIDTH numwidth); int32_t DwWordBitWidthFromNumWidth(NUM_WIDTH numwidth); uint32_t NRadixFromRadixType(RadixType radixtype); double GenerateRandomNumber(); bool TryToggleBit(CalcEngine::Rational& rat, uint32_t wbitno); void CheckAndAddLastBinOpToHistory(bool addToHistory = true); void InitChopNumbers(); CalcEngine::Rational GetChopNumber() const; std::wstring GetMaxDecimalValueString() const; static void LoadEngineStrings(CalculationManager::IResourceProvider& resourceProvider); static int IdStrFromCmdId(int id) { return id - IDC_FIRSTCONTROL + IDS_ENGINESTR_FIRST; } static std::vector DigitGroupingStringToGroupingVector(std::wstring_view groupingString); std::wstring GroupDigits(std::wstring_view delimiter, std::vector const& grouping, std::wstring_view displayString, bool isNumNegative = false); static int QuickLog2(int iNum); static void ChangeBaseConstants(uint32_t radix, int maxIntDigits, int32_t precision); void BaseOrPrecisionChanged(); friend class CalculatorEngineTests::CalcEngineTests; }; ================================================ FILE: src/CalcManager/Header Files/CalcInput.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Rational.h" // Space to hold enough digits for a quadword binary number (64) plus digit separator strings for that number (20) constexpr int MAX_STRLEN = 84; namespace CalcEngine { class CalcNumSec { public: CalcNumSec() : value() , m_isNegative(false) { } void Clear(); bool IsEmpty() { return value.empty(); } bool IsNegative() { return m_isNegative; } void IsNegative(bool isNegative) { m_isNegative = isNegative; } std::wstring value; private: bool m_isNegative; }; class CalcInput { public: CalcInput() : CalcInput(L'.') { } CalcInput(wchar_t decSymbol) : m_hasExponent(false) , m_hasDecimal(false) , m_decPtIndex(0) , m_decSymbol(decSymbol) , m_base() , m_exponent() { } void Clear(); bool TryToggleSign(bool isIntegerMode, std::wstring_view maxNumStr); bool TryAddDigit(unsigned int value, uint32_t radix, bool isIntegerMode, std::wstring_view maxNumStr, int32_t wordBitWidth, int maxDigits); bool TryAddDecimalPt(); bool HasDecimalPt(); bool TryBeginExponent(); void Backspace(); void SetDecimalSymbol(wchar_t decSymbol); bool IsEmpty(); std::wstring ToString(uint32_t radix); Rational ToRational(uint32_t radix, int32_t precision); private: bool m_hasExponent; bool m_hasDecimal; size_t m_decPtIndex; wchar_t m_decSymbol; CalcNumSec m_base; CalcNumSec m_exponent; }; } ================================================ FILE: src/CalcManager/Header Files/CalcUtils.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once using OpCode = uintptr_t; bool IsOpInRange(OpCode op, uint32_t x, uint32_t y); bool IsBinOpCode(OpCode opCode); // WARNING: IDC_SIGN is a special unary op but still this doesn't catch this. Caller has to be aware // of it and catch it themselves or not needing this bool IsUnaryOpCode(OpCode opCode); bool IsDigitOpCode(OpCode opCode); bool IsGuiSettingOpCode(OpCode opCode); ================================================ FILE: src/CalcManager/Header Files/EngineStrings.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /****************************Module*Header*********************************** * Module Name: EngineStrings.h * * Module Description: * Resource String ID's for the private strings used by Engine. Internal to Engine related code * not required by the clients * * Warnings: * * Created: 13-Feb-2008 * \****************************************************************************/ #pragma once #include #include #include #include inline constexpr auto IDS_ERRORS_FIRST = 99; // This is the list of error strings corresponding to SCERR_DIVIDEZERO.. inline constexpr auto IDS_DIVBYZERO = IDS_ERRORS_FIRST; inline constexpr auto IDS_DOMAIN = IDS_ERRORS_FIRST + 1; inline constexpr auto IDS_UNDEFINED = IDS_ERRORS_FIRST + 2; inline constexpr auto IDS_POS_INFINITY = IDS_ERRORS_FIRST + 3; inline constexpr auto IDS_NEG_INFINITY = IDS_ERRORS_FIRST + 4; inline constexpr auto IDS_NOMEM = IDS_ERRORS_FIRST + 6; inline constexpr auto IDS_TOOMANY = IDS_ERRORS_FIRST + 7; inline constexpr auto IDS_OVERFLOW = IDS_ERRORS_FIRST + 8; inline constexpr auto IDS_NORESULT = IDS_ERRORS_FIRST + 9; inline constexpr auto IDS_INSUFFICIENT_DATA = IDS_ERRORS_FIRST + 10; inline constexpr auto CSTRINGSENGMAX = IDS_INSUFFICIENT_DATA + 1; // Arithmetic expression evaluator error strings inline constexpr auto IDS_ERR_UNK_CH = CSTRINGSENGMAX + 1; inline constexpr auto IDS_ERR_UNK_FN = CSTRINGSENGMAX + 2; inline constexpr auto IDS_ERR_UNEX_NUM = CSTRINGSENGMAX + 3; inline constexpr auto IDS_ERR_UNEX_CH = CSTRINGSENGMAX + 4; inline constexpr auto IDS_ERR_UNEX_SZ = CSTRINGSENGMAX + 5; inline constexpr auto IDS_ERR_MISMATCH_CLOSE = CSTRINGSENGMAX + 6; inline constexpr auto IDS_ERR_UNEX_END = CSTRINGSENGMAX + 7; inline constexpr auto IDS_ERR_SG_INV_ERROR = CSTRINGSENGMAX + 8; inline constexpr auto IDS_ERR_INPUT_OVERFLOW = CSTRINGSENGMAX + 9; inline constexpr auto IDS_ERR_OUTPUT_OVERFLOW = CSTRINGSENGMAX + 10; // Resource keys for CEngineStrings.resw inline constexpr auto SIDS_PLUS_MINUS = L"0"; inline constexpr auto SIDS_CLEAR = L"1"; inline constexpr auto SIDS_CE = L"2"; inline constexpr auto SIDS_BACKSPACE = L"3"; inline constexpr auto SIDS_DECIMAL_SEPARATOR = L"4"; inline constexpr auto SIDS_EMPTY_STRING = L"5"; inline constexpr auto SIDS_AND = L"6"; inline constexpr auto SIDS_OR = L"7"; inline constexpr auto SIDS_XOR = L"8"; inline constexpr auto SIDS_LSH = L"9"; inline constexpr auto SIDS_RSH = L"10"; inline constexpr auto SIDS_DIVIDE = L"11"; inline constexpr auto SIDS_MULTIPLY = L"12"; inline constexpr auto SIDS_PLUS = L"13"; inline constexpr auto SIDS_MINUS = L"14"; inline constexpr auto SIDS_MOD = L"15"; inline constexpr auto SIDS_YROOT = L"16"; inline constexpr auto SIDS_POW_HAT = L"17"; inline constexpr auto SIDS_INT = L"18"; inline constexpr auto SIDS_ROL = L"19"; inline constexpr auto SIDS_ROR = L"20"; inline constexpr auto SIDS_NOT = L"21"; inline constexpr auto SIDS_SIN = L"22"; inline constexpr auto SIDS_COS = L"23"; inline constexpr auto SIDS_TAN = L"24"; inline constexpr auto SIDS_SINH = L"25"; inline constexpr auto SIDS_COSH = L"26"; inline constexpr auto SIDS_TANH = L"27"; inline constexpr auto SIDS_LN = L"28"; inline constexpr auto SIDS_LOG = L"29"; inline constexpr auto SIDS_SQRT = L"30"; inline constexpr auto SIDS_XPOW2 = L"31"; inline constexpr auto SIDS_XPOW3 = L"32"; inline constexpr auto SIDS_NFACTORIAL = L"33"; inline constexpr auto SIDS_RECIPROCAL = L"34"; inline constexpr auto SIDS_DMS = L"35"; inline constexpr auto SIDS_POWTEN = L"37"; inline constexpr auto SIDS_PERCENT = L"38"; inline constexpr auto SIDS_SCIENTIFIC_NOTATION = L"39"; inline constexpr auto SIDS_PI = L"40"; inline constexpr auto SIDS_EQUAL = L"41"; inline constexpr auto SIDS_MC = L"42"; inline constexpr auto SIDS_MR = L"43"; inline constexpr auto SIDS_MS = L"44"; inline constexpr auto SIDS_MPLUS = L"45"; inline constexpr auto SIDS_MMINUS = L"46"; inline constexpr auto SIDS_EXP = L"47"; inline constexpr auto SIDS_OPEN_PAREN = L"48"; inline constexpr auto SIDS_CLOSE_PAREN = L"49"; inline constexpr auto SIDS_0 = L"50"; inline constexpr auto SIDS_1 = L"51"; inline constexpr auto SIDS_2 = L"52"; inline constexpr auto SIDS_3 = L"53"; inline constexpr auto SIDS_4 = L"54"; inline constexpr auto SIDS_5 = L"55"; inline constexpr auto SIDS_6 = L"56"; inline constexpr auto SIDS_7 = L"57"; inline constexpr auto SIDS_8 = L"58"; inline constexpr auto SIDS_9 = L"59"; inline constexpr auto SIDS_A = L"60"; inline constexpr auto SIDS_B = L"61"; inline constexpr auto SIDS_C = L"62"; inline constexpr auto SIDS_D = L"63"; inline constexpr auto SIDS_E = L"64"; inline constexpr auto SIDS_F = L"65"; inline constexpr auto SIDS_FRAC = L"66"; inline constexpr auto SIDS_SIND = L"67"; inline constexpr auto SIDS_COSD = L"68"; inline constexpr auto SIDS_TAND = L"69"; inline constexpr auto SIDS_ASIND = L"70"; inline constexpr auto SIDS_ACOSD = L"71"; inline constexpr auto SIDS_ATAND = L"72"; inline constexpr auto SIDS_SINR = L"73"; inline constexpr auto SIDS_COSR = L"74"; inline constexpr auto SIDS_TANR = L"75"; inline constexpr auto SIDS_ASINR = L"76"; inline constexpr auto SIDS_ACOSR = L"77"; inline constexpr auto SIDS_ATANR = L"78"; inline constexpr auto SIDS_SING = L"79"; inline constexpr auto SIDS_COSG = L"80"; inline constexpr auto SIDS_TANG = L"81"; inline constexpr auto SIDS_ASING = L"82"; inline constexpr auto SIDS_ACOSG = L"83"; inline constexpr auto SIDS_ATANG = L"84"; inline constexpr auto SIDS_ASINH = L"85"; inline constexpr auto SIDS_ACOSH = L"86"; inline constexpr auto SIDS_ATANH = L"87"; inline constexpr auto SIDS_POWE = L"88"; inline constexpr auto SIDS_POWTEN2 = L"89"; inline constexpr auto SIDS_SQRT2 = L"90"; inline constexpr auto SIDS_SQR = L"91"; inline constexpr auto SIDS_CUBE = L"92"; inline constexpr auto SIDS_CUBERT = L"93"; inline constexpr auto SIDS_FACT = L"94"; inline constexpr auto SIDS_RECIPROC = L"95"; inline constexpr auto SIDS_DEGREES = L"96"; inline constexpr auto SIDS_NEGATE = L"97"; inline constexpr auto SIDS_RSH2 = L"98"; inline constexpr auto SIDS_DIVIDEBYZERO = L"99"; inline constexpr auto SIDS_DOMAIN = L"100"; inline constexpr auto SIDS_UNDEFINED = L"101"; inline constexpr auto SIDS_POS_INFINITY = L"102"; inline constexpr auto SIDS_NEG_INFINITY = L"103"; inline constexpr auto SIDS_ABORTED = L"104"; inline constexpr auto SIDS_NOMEM = L"105"; inline constexpr auto SIDS_TOOMANY = L"106"; inline constexpr auto SIDS_OVERFLOW = L"107"; inline constexpr auto SIDS_NORESULT = L"108"; inline constexpr auto SIDS_INSUFFICIENT_DATA = L"109"; // 110 is skipped by CSTRINGSENGMAX inline constexpr auto SIDS_ERR_UNK_CH = L"111"; inline constexpr auto SIDS_ERR_UNK_FN = L"112"; inline constexpr auto SIDS_ERR_UNEX_NUM = L"113"; inline constexpr auto SIDS_ERR_UNEX_CH = L"114"; inline constexpr auto SIDS_ERR_UNEX_SZ = L"115"; inline constexpr auto SIDS_ERR_MISMATCH_CLOSE = L"116"; inline constexpr auto SIDS_ERR_UNEX_END = L"117"; inline constexpr auto SIDS_ERR_SG_INV_ERROR = L"118"; inline constexpr auto SIDS_ERR_INPUT_OVERFLOW = L"119"; inline constexpr auto SIDS_ERR_OUTPUT_OVERFLOW = L"120"; inline constexpr auto SIDS_SECD = L"SecDeg"; inline constexpr auto SIDS_SECR = L"SecRad"; inline constexpr auto SIDS_SECG = L"SecGrad"; inline constexpr auto SIDS_ASECD = L"InverseSecDeg"; inline constexpr auto SIDS_ASECR = L"InverseSecRad"; inline constexpr auto SIDS_ASECG = L"InverseSecGrad"; inline constexpr auto SIDS_CSCD = L"CscDeg"; inline constexpr auto SIDS_CSCR = L"CscRad"; inline constexpr auto SIDS_CSCG = L"CscGrad"; inline constexpr auto SIDS_ACSCD = L"InverseCscDeg"; inline constexpr auto SIDS_ACSCR = L"InverseCscRad"; inline constexpr auto SIDS_ACSCG = L"InverseCscGrad"; inline constexpr auto SIDS_COTD = L"CotDeg"; inline constexpr auto SIDS_COTR = L"CotRad"; inline constexpr auto SIDS_COTG = L"CotGrad"; inline constexpr auto SIDS_ACOTD = L"InverseCotDeg"; inline constexpr auto SIDS_ACOTR = L"InverseCotRad"; inline constexpr auto SIDS_ACOTG = L"InverseCotGrad"; inline constexpr auto SIDS_SECH = L"Sech"; inline constexpr auto SIDS_ASECH = L"InverseSech"; inline constexpr auto SIDS_CSCH = L"Csch"; inline constexpr auto SIDS_ACSCH = L"InverseCsch"; inline constexpr auto SIDS_COTH = L"Coth"; inline constexpr auto SIDS_ACOTH = L"InverseCoth"; inline constexpr auto SIDS_TWOPOWX = L"TwoPowX"; inline constexpr auto SIDS_LOGBASEY = L"LogBaseY"; inline constexpr auto SIDS_ABS = L"Abs"; inline constexpr auto SIDS_FLOOR = L"Floor"; inline constexpr auto SIDS_CEIL = L"Ceil"; inline constexpr auto SIDS_NAND = L"Nand"; inline constexpr auto SIDS_NOR = L"Nor"; inline constexpr auto SIDS_CUBEROOT = L"CubeRoot"; inline constexpr auto SIDS_PROGRAMMER_MOD = L"ProgrammerMod"; // Include the resource key ID from above into this vector to load it into memory for the engine to use inline constexpr std::array g_sids = { SIDS_PLUS_MINUS, SIDS_C, SIDS_CE, SIDS_BACKSPACE, SIDS_DECIMAL_SEPARATOR, SIDS_EMPTY_STRING, SIDS_AND, SIDS_OR, SIDS_XOR, SIDS_LSH, SIDS_RSH, SIDS_DIVIDE, SIDS_MULTIPLY, SIDS_PLUS, SIDS_MINUS, SIDS_MOD, SIDS_YROOT, SIDS_POW_HAT, SIDS_INT, SIDS_ROL, SIDS_ROR, SIDS_NOT, SIDS_SIN, SIDS_COS, SIDS_TAN, SIDS_SINH, SIDS_COSH, SIDS_TANH, SIDS_LN, SIDS_LOG, SIDS_SQRT, SIDS_XPOW2, SIDS_XPOW3, SIDS_NFACTORIAL, SIDS_RECIPROCAL, SIDS_DMS, SIDS_POWTEN, SIDS_PERCENT, SIDS_SCIENTIFIC_NOTATION, SIDS_PI, SIDS_EQUAL, SIDS_MC, SIDS_MR, SIDS_MS, SIDS_MPLUS, SIDS_MMINUS, SIDS_EXP, SIDS_OPEN_PAREN, SIDS_CLOSE_PAREN, SIDS_0, SIDS_1, SIDS_2, SIDS_3, SIDS_4, SIDS_5, SIDS_6, SIDS_7, SIDS_8, SIDS_9, SIDS_A, SIDS_B, SIDS_C, SIDS_D, SIDS_E, SIDS_F, SIDS_FRAC, SIDS_SIND, SIDS_COSD, SIDS_TAND, SIDS_ASIND, SIDS_ACOSD, SIDS_ATAND, SIDS_SINR, SIDS_COSR, SIDS_TANR, SIDS_ASINR, SIDS_ACOSR, SIDS_ATANR, SIDS_SING, SIDS_COSG, SIDS_TANG, SIDS_ASING, SIDS_ACOSG, SIDS_ATANG, SIDS_ASINH, SIDS_ACOSH, SIDS_ATANH, SIDS_POWE, SIDS_POWTEN2, SIDS_SQRT2, SIDS_SQR, SIDS_CUBE, SIDS_CUBERT, SIDS_FACT, SIDS_RECIPROC, SIDS_DEGREES, SIDS_NEGATE, SIDS_RSH, SIDS_DIVIDEBYZERO, SIDS_DOMAIN, SIDS_UNDEFINED, SIDS_POS_INFINITY, SIDS_NEG_INFINITY, SIDS_ABORTED, SIDS_NOMEM, SIDS_TOOMANY, SIDS_OVERFLOW, SIDS_NORESULT, SIDS_INSUFFICIENT_DATA, SIDS_ERR_UNK_CH, SIDS_ERR_UNK_FN, SIDS_ERR_UNEX_NUM, SIDS_ERR_UNEX_CH, SIDS_ERR_UNEX_SZ, SIDS_ERR_MISMATCH_CLOSE, SIDS_ERR_UNEX_END, SIDS_ERR_SG_INV_ERROR, SIDS_ERR_INPUT_OVERFLOW, SIDS_ERR_OUTPUT_OVERFLOW, SIDS_SECD, SIDS_SECG, SIDS_SECR, SIDS_ASECD, SIDS_ASECR, SIDS_ASECG, SIDS_CSCD, SIDS_CSCR, SIDS_CSCG, SIDS_ACSCD, SIDS_ACSCR, SIDS_ACSCG, SIDS_COTD, SIDS_COTR, SIDS_COTG, SIDS_ACOTD, SIDS_ACOTR, SIDS_ACOTG, SIDS_SECH, SIDS_ASECH, SIDS_CSCH, SIDS_ACSCH, SIDS_COTH, SIDS_ACOTH, SIDS_TWOPOWX, SIDS_LOGBASEY, SIDS_ABS, SIDS_FLOOR, SIDS_CEIL, SIDS_NAND, SIDS_NOR, SIDS_CUBEROOT, SIDS_PROGRAMMER_MOD, }; ================================================ FILE: src/CalcManager/Header Files/History.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include "ExpressionCommand.h" #include "ICalcDisplay.h" #include "IHistoryDisplay.h" #include "Rational.h" class COpndCommand; // maximum depth you can get by precedence. It is just an array's size limit. static constexpr size_t MAXPRECDEPTH = 25; // Helper class really a internal class to CCalcEngine, to accumulate each history line of text by collecting the // operands, operator, unary operator etc. Since it is a separate entity, it can be unit tested on its own but does // rely on CCalcEngine calling it in appropriate order. class CHistoryCollector { public: CHistoryCollector(ICalcDisplay* pCalcDisplay, std::shared_ptr pHistoryDisplay, wchar_t decimalSymbol); // Can throw errors ~CHistoryCollector(); void AddOpndToHistory(std::wstring_view numStr, CalcEngine::Rational const& rat, bool fRepetition = false); void RemoveLastOpndFromHistory(); void AddBinOpToHistory(int nOpCode, bool isIntegerMode, bool fNoRepetition = true); void ChangeLastBinOp(int nOpCode, bool fPrecInvToHigher, bool isIntegerMode); void AddUnaryOpToHistory(int nOpCode, bool fInv, AngleType angletype); void AddOpenBraceToHistory(); void AddCloseBraceToHistory(); void PushLastOpndStart(int ichOpndStart = -1); void PopLastOpndStart(); void EnclosePrecInversionBrackets(); bool FOpndAddedToHistory() const; void CompleteHistoryLine(std::wstring_view numStr); void CompleteEquation(std::wstring_view numStr); void ClearHistoryLine(std::wstring_view errStr); int AddCommand(_In_ const std::shared_ptr& spCommand); void UpdateHistoryExpression(uint32_t radix, int32_t precision); void SetDecimalSymbol(wchar_t decimalSymbol); std::shared_ptr GetOperandCommandsFromString(std::wstring_view numStr, CalcEngine::Rational const& rat) const; std::vector> GetCommands() const; private: std::shared_ptr m_pHistoryDisplay; ICalcDisplay* m_pCalcDisplay; int m_iCurLineHistStart; // index of the beginning of the current equation // a sort of state, set to the index before 2 after 2 in the expression 2 + 3 say. Useful for auto correct portion of history and for // attaching the unary op around the last operand int m_lastOpStartIndex; // index of the beginning of the last operand added to the history int m_lastBinOpStartIndex; // index of the beginning of the last binary operator added to the history std::array m_operandIndices; // Stack of index of opnd's beginning for each '('. A parallel array to m_hnoParNum, but abstracted independently of that int m_curOperandIndex; // Stack index for the above stack bool m_bLastOpndBrace; // iff the last opnd in history is already braced so we can avoid putting another one for unary operator wchar_t m_decimalSymbol; std::shared_ptr>> m_spTokens; std::shared_ptr>> m_spCommands; private: void ReinitHistory(); int IchAddSzToEquationSz(std::wstring_view str, int icommandIndex); void TruncateEquationSzFromIch(int ich); void SetExpressionDisplay(); void InsertSzInEquationSz(std::wstring_view str, int icommandIndex, int ich); std::shared_ptr> GetOperandCommandsFromString(std::wstring_view numStr) const; }; ================================================ FILE: src/CalcManager/Header Files/ICalcDisplay.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "../ExpressionCommandInterface.h" // Callback interface to be implemented by the clients of CCalcEngine class ICalcDisplay { public: virtual void SetPrimaryDisplay(const std::wstring& pszText, bool isError) = 0; virtual void SetIsInError(bool isInError) = 0; virtual void SetExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands) = 0; virtual void SetParenthesisNumber(_In_ unsigned int count) = 0; virtual void OnNoRightParenAdded() = 0; virtual void MaxDigitsReached() = 0; // not an error but still need to inform UI layer. virtual void BinaryOperatorReceived() = 0; virtual void OnHistoryItemAdded(_In_ unsigned int addedItemIndex) = 0; virtual void SetMemorizedNumbers(const std::vector& memorizedNumbers) = 0; virtual void MemoryItemChanged(unsigned int indexOfMemory) = 0; virtual void InputChanged() = 0; }; ================================================ FILE: src/CalcManager/Header Files/IHistoryDisplay.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "../ExpressionCommandInterface.h" // Callback interface to be implemented by the clients of CCalcEngine if they require equation history class IHistoryDisplay { public: virtual ~IHistoryDisplay(){}; virtual unsigned int AddToHistory( _In_ std::shared_ptr>> const& tokens, _In_ std::shared_ptr>> const& commands, _In_ std::wstring_view result) = 0; }; ================================================ FILE: src/CalcManager/Header Files/Number.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include "Ratpack/ratpak.h" namespace CalcEngine { class Number { public: Number() noexcept; Number(int32_t sign, int32_t exp, std::vector const& mantissa) noexcept; explicit Number(PNUMBER p) noexcept; PNUMBER ToPNUMBER() const; int32_t const& Sign() const; int32_t const& Exp() const; std::vector const& Mantissa() const; bool IsZero() const; private: int32_t m_sign; int32_t m_exp; std::vector m_mantissa; }; } ================================================ FILE: src/CalcManager/Header Files/RadixType.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once // This is expected to be in same order as IDM_HEX, IDM_DEC, IDM_OCT, IDM_BIN enum class RadixType { Hex, Decimal, Octal, Binary }; ================================================ FILE: src/CalcManager/Header Files/Rational.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Number.h" namespace CalcEngine { // Default Base/Radix to use for Rational calculations // RatPack calculations currently support up to Base64. inline constexpr uint32_t RATIONAL_BASE = 10; // Default Precision to use for Rational calculations inline constexpr int32_t RATIONAL_PRECISION = 128; class Rational { public: Rational() noexcept; Rational(Number const& n) noexcept; Rational(Number const& p, Number const& q) noexcept; Rational(int32_t i); Rational(uint32_t ui); Rational(uint64_t ui); explicit Rational(PRAT prat) noexcept; PRAT ToPRAT() const; Number const& P() const; Number const& Q() const; Rational operator-() const; Rational& operator+=(Rational const& rhs); Rational& operator-=(Rational const& rhs); Rational& operator*=(Rational const& rhs); Rational& operator/=(Rational const& rhs); Rational& operator%=(Rational const& rhs); Rational& operator<<=(Rational const& rhs); Rational& operator>>=(Rational const& rhs); Rational& operator&=(Rational const& rhs); Rational& operator|=(Rational const& rhs); Rational& operator^=(Rational const& rhs); friend Rational operator+(Rational lhs, Rational const& rhs); friend Rational operator-(Rational lhs, Rational const& rhs); friend Rational operator*(Rational lhs, Rational const& rhs); friend Rational operator/(Rational lhs, Rational const& rhs); friend Rational operator%(Rational lhs, Rational const& rhs); friend Rational operator<<(Rational lhs, Rational const& rhs); friend Rational operator>>(Rational lhs, Rational const& rhs); friend Rational operator&(Rational lhs, Rational const& rhs); friend Rational operator|(Rational lhs, Rational const& rhs); friend Rational operator^(Rational lhs, Rational const& rhs); friend bool operator==(Rational const& lhs, Rational const& rhs); friend bool operator!=(Rational const& lhs, Rational const& rhs); friend bool operator<(Rational const& lhs, Rational const& rhs); friend bool operator>(Rational const& lhs, Rational const& rhs); friend bool operator<=(Rational const& lhs, Rational const& rhs); friend bool operator>=(Rational const& lhs, Rational const& rhs); std::wstring ToString(uint32_t radix, NumberFormat format, int32_t precision) const; uint64_t ToUInt64_t() const; private: Number m_p; Number m_q; }; } ================================================ FILE: src/CalcManager/Header Files/RationalMath.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Rational.h" namespace CalcEngine::RationalMath { Rational Frac(Rational const& rat); Rational Integer(Rational const& rat); Rational Pow(Rational const& base, Rational const& pow); Rational Root(Rational const& base, Rational const& root); Rational Fact(Rational const& rat); Rational Mod(Rational const& a, Rational const& b); Rational Exp(Rational const& rat); Rational Log(Rational const& rat); Rational Log10(Rational const& rat); Rational Invert(Rational const& rat); Rational Abs(Rational const& rat); Rational Sin(Rational const& rat, AngleType angletype); Rational Cos(Rational const& rat, AngleType angletype); Rational Tan(Rational const& rat, AngleType angletype); Rational ASin(Rational const& rat, AngleType angletype); Rational ACos(Rational const& rat, AngleType angletype); Rational ATan(Rational const& rat, AngleType angletype); Rational Sinh(Rational const& rat); Rational Cosh(Rational const& rat); Rational Tanh(Rational const& rat); Rational ASinh(Rational const& rat); Rational ACosh(Rational const& rat); Rational ATanh(Rational const& rat); } ================================================ FILE: src/CalcManager/NumberFormattingUtils.cpp ================================================ #include "pch.h" #include "NumberFormattingUtils.h" using namespace std; namespace UnitConversionManager::NumberFormattingUtils { /// /// Trims out any trailing zeros or decimals in the given input string /// /// number to trim void TrimTrailingZeros(_Inout_ wstring& number) { if (number.find(L'.') == wstring::npos) { return; } if (auto i = number.find_last_not_of(L'0'); i != wstring::npos) { number.erase(number.cbegin() + i + 1, number.cend()); } if (number.back() == L'.') { number.pop_back(); } } /// /// Get number of digits (whole number part + decimal part) /// the number unsigned int GetNumberDigits(wstring value) { TrimTrailingZeros(value); unsigned int numberSignificantDigits = static_cast(value.size()); if (value.find(L'.') != wstring::npos) { --numberSignificantDigits; } if (value.find(L'-') != wstring::npos) { --numberSignificantDigits; } return numberSignificantDigits; } /// /// Get number of digits (whole number part only) /// the number unsigned int GetNumberDigitsWholeNumberPart(double value) { return value == 0 ? 1u : static_cast(1 + max(0.0, log10(abs(value)))); } /// /// Rounds the given double to the given number of significant digits /// /// input double /// unsigned int number of significant digits to round to wstring RoundSignificantDigits(double num, unsigned int numSignificant) { wstringstream out(wstringstream::out); out << fixed; out.precision(numSignificant); out << num; return out.str(); } /// /// Convert a Number to Scientific Notation /// /// number to convert wstring ToScientificNumber(double number) { wstringstream out(wstringstream::out); out << scientific << number; return out.str(); } } ================================================ FILE: src/CalcManager/NumberFormattingUtils.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include "sal_cross_platform.h" namespace UnitConversionManager::NumberFormattingUtils { void TrimTrailingZeros(_Inout_ std::wstring& input); unsigned int GetNumberDigits(std::wstring value); unsigned int GetNumberDigitsWholeNumberPart(double value); std::wstring RoundSignificantDigits(double value, unsigned int numberSignificantDigits); std::wstring ToScientificNumber(double number); } ================================================ FILE: src/CalcManager/Ratpack/CalcErr.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include // CalcErr.h // // Defines the error codes thrown by ratpak and caught by Calculator // // // Ratpak errors are 32 bit values laid out as follows: // // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 // +-+-------+---------------------+-------------------------------+ // |S| R | Facility | Code | // +-+-------+---------------------+-------------------------------+ // // where // // S - Severity - indicates success/fail // // 0 - Success // 1 - Fail // // R - Reserved - not currently used for anything // // r - reserved portion of the facility code. Reserved for internal // use. Used to indicate int32_t values that are not status // values, but are instead message ids for display strings. // // Facility - is the facility code // // Code - is the actual error code // // This format is based loosely on an OLE HRESULT and is compatible with the // SUCCEEDED and FAILED macros as well as the HRESULT_CODE macro using ResultCode = int32_t; // CALC_E_DIVIDEBYZERO // // The current operation would require a divide by zero to complete static constexpr uint32_t CALC_E_DIVIDEBYZERO = (uint32_t)0x80000000; // CALC_E_DOMAIN // // The given input is not within the domain of this function static constexpr uint32_t CALC_E_DOMAIN = (uint32_t)0x80000001; // CALC_E_INDEFINITE // // The result of this function is undefined static constexpr uint32_t CALC_E_INDEFINITE = (uint32_t)0x80000002; // CALC_E_POSINFINITY // // The result of this function is Positive Infinity. static constexpr uint32_t CALC_E_POSINFINITY = (uint32_t)0x80000003; // CALC_E_NEGINFINITY // // The result of this function is Negative Infinity static constexpr uint32_t CALC_E_NEGINFINITY = (uint32_t)0x80000004; // CALC_E_INVALIDRANGE // // The given input is within the domain of the function but is beyond // the range for which calc can successfully compute the answer static constexpr uint32_t CALC_E_INVALIDRANGE = (uint32_t)0x80000006; // CALC_E_OUTOFMEMORY // // There is not enough free memory to complete the requested function static constexpr uint32_t CALC_E_OUTOFMEMORY = (uint32_t)0x80000007; // CALC_E_OVERFLOW // // The result of this operation is an overflow static constexpr uint32_t CALC_E_OVERFLOW = (uint32_t)0x80000008; // CALC_E_NORESULT // // The result of this operation is undefined static constexpr uint32_t CALC_E_NORESULT = (uint32_t)0x80000009; ================================================ FILE: src/CalcManager/Ratpack/basex.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File basex.c // Copyright (C) 1995-97 Microsoft // Date 03-14-97 // // // Description // // Contains number routines for internal base computations, these assume // internal base is a power of 2. // //----------------------------------------------------------------------------- #include "ratpak.h" #include // for memmove void _mulnumx(PNUMBER* pa, PNUMBER b); //---------------------------------------------------------------------------- // // FUNCTION: mulnumx // // ARGUMENTS: pointer to a number and a second number, the // base is always BASEX. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa *= b. // This is a stub which prevents multiplication by 1, this is a big speed // improvement. // //---------------------------------------------------------------------------- void mulnumx(_Inout_ PNUMBER* pa, _In_ PNUMBER b) { if (b->cdigit > 1 || b->mant[0] != 1 || b->exp != 0) { // If b is not one we multiply if ((*pa)->cdigit > 1 || (*pa)->mant[0] != 1 || (*pa)->exp != 0) { // pa and b are both non-one. _mulnumx(pa, b); } else { // if pa is one and b isn't just copy b. and adjust the sign. int32_t sign = (*pa)->sign; DUPNUM(*pa, b); (*pa)->sign *= sign; } } else { // B is +/- 1, But we do have to set the sign. (*pa)->sign *= b->sign; } } //---------------------------------------------------------------------------- // // FUNCTION: _mulnumx // // ARGUMENTS: pointer to a number and a second number, the // base is always BASEX. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa *= b. // Assumes the base is BASEX of both numbers. This algorithm is the // same one you learned in grade school, except the base isn't 10 it's // BASEX. // //---------------------------------------------------------------------------- void _mulnumx(PNUMBER* pa, PNUMBER b) { PNUMBER c = nullptr; // c will contain the result. PNUMBER a = nullptr; // a is the dereferenced number pointer from *pa MANTTYPE* ptra; // ptra is a pointer to the mantissa of a. MANTTYPE* ptrb; // ptrb is a pointer to the mantissa of b. MANTTYPE* ptrc; // ptrc is a pointer to the mantissa of c. MANTTYPE* ptrcoffset; // ptrcoffset, is the anchor location of the next // single digit multiply partial result. int32_t iadigit = 0; // Index of digit being used in the first number. int32_t ibdigit = 0; // Index of digit being used in the second number. MANTTYPE da = 0; // da is the digit from the fist number. TWO_MANTTYPE cy = 0; // cy is the carry resulting from the addition of // a multiplied row into the result. TWO_MANTTYPE mcy = 0; // mcy is the resultant from a single // multiply, AND the carry of that multiply. int32_t icdigit = 0; // Index of digit being calculated in final result. a = *pa; ibdigit = a->cdigit + b->cdigit - 1; createnum(c, ibdigit + 1); c->cdigit = ibdigit; c->sign = a->sign * b->sign; c->exp = a->exp + b->exp; ptra = a->mant; ptrcoffset = c->mant; for (iadigit = a->cdigit; iadigit > 0; iadigit--) { da = *ptra++; ptrb = b->mant; // Shift ptrc, and ptrcoffset, one for each digit ptrc = ptrcoffset++; for (ibdigit = b->cdigit; ibdigit > 0; ibdigit--) { cy = 0; mcy = (uint64_t)da * (*ptrb); if (mcy) { icdigit = 0; if (ibdigit == 1 && iadigit == 1) { c->cdigit++; } } // If result is nonzero, or while result of carry is nonzero... while (mcy || cy) { // update carry from addition(s) and multiply. cy += (TWO_MANTTYPE)ptrc[icdigit] + ((uint32_t)mcy & ((uint32_t)~BASEX)); // update result digit from ptrc[icdigit++] = (MANTTYPE)((uint32_t)cy & ((uint32_t)~BASEX)); // update carries from mcy >>= BASEXPWR; cy >>= BASEXPWR; } ptrb++; ptrc++; } } // prevent different kinds of zeros, by stripping leading duplicate zeros. // digits are in order of increasing significance. while (c->cdigit > 1 && c->mant[c->cdigit - 1] == 0) { c->cdigit--; } destroynum(*pa); *pa = c; } //----------------------------------------------------------------------------- // // FUNCTION: numpowi32x // // ARGUMENTS: root as number power as int32_t // number. // // RETURN: None root is changed. // // DESCRIPTION: changes numeric representation of root to // root ** power. Assumes base BASEX // decomposes the exponent into it's sums of powers of 2, so on average // it will take n+n/2 multiplies where n is the highest on bit. // //----------------------------------------------------------------------------- void numpowi32x(_Inout_ PNUMBER* proot, int32_t power) { PNUMBER lret = i32tonum(1, BASEX); // Once the power remaining is zero we are done. while (power > 0) { // If this bit in the power decomposition is on, multiply the result // by the root number. if (power & 1) { mulnumx(&lret, *proot); } // multiply the root number by itself to scale for the next bit (i.e. // square it. mulnumx(proot, *proot); // move the next bit of the power into place. power >>= 1; } destroynum(*proot); *proot = lret; } void _divnumx(PNUMBER* pa, PNUMBER b, int32_t precision); //---------------------------------------------------------------------------- // // FUNCTION: divnumx // // ARGUMENTS: pointer to a number, a second number and precision. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa /= b. // Assumes radix is the internal radix representation. // This is a stub which prevents division by 1, this is a big speed // improvement. // //---------------------------------------------------------------------------- void divnumx(_Inout_ PNUMBER* pa, _In_ PNUMBER b, int32_t precision) { if (b->cdigit > 1 || b->mant[0] != 1 || b->exp != 0) { // b is not one. if ((*pa)->cdigit > 1 || (*pa)->mant[0] != 1 || (*pa)->exp != 0) { // pa and b are both not one. _divnumx(pa, b, precision); } else { // if pa is one and b is not one, just copy b, and adjust the sign. int32_t sign = (*pa)->sign; DUPNUM(*pa, b); (*pa)->sign *= sign; } } else { // b is one so don't divide, but set the sign. (*pa)->sign *= b->sign; } } //---------------------------------------------------------------------------- // // FUNCTION: _divnumx // // ARGUMENTS: pointer to a number, a second number and precision. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa /= b. // Assumes radix is the internal radix representation. // //---------------------------------------------------------------------------- void _divnumx(PNUMBER* pa, PNUMBER b, int32_t precision) { PNUMBER a = nullptr; // a is the dereferenced number pointer from *pa PNUMBER c = nullptr; // c will contain the result. PNUMBER lasttmp = nullptr; // lasttmp allows a backup when the algorithm // guesses one bit too far. PNUMBER tmp = nullptr; // current guess being worked on for divide. PNUMBER rem = nullptr; // remainder after applying guess. int32_t cdigits; // count of digits for answer. MANTTYPE* ptrc; // ptrc is a pointer to the mantissa of c. int32_t thismax = precision + g_ratio; // set a maximum number of internal digits // to shoot for in the divide. a = *pa; if (thismax < a->cdigit) { // a has more digits than precision specified, bump up digits to shoot // for. thismax = a->cdigit; } if (thismax < b->cdigit) { // b has more digits than precision specified, bump up digits to shoot // for. thismax = b->cdigit; } // Create c (the divide answer) and set up exponent and sign. createnum(c, thismax + 1); c->exp = (a->cdigit + a->exp) - (b->cdigit + b->exp) + 1; c->sign = a->sign * b->sign; ptrc = c->mant + thismax; cdigits = 0; DUPNUM(rem, a); rem->sign = b->sign; rem->exp = b->cdigit + b->exp - rem->cdigit; while (cdigits++ < thismax && !zernum(rem)) { int32_t digit = 0; *ptrc = 0; while (!lessnum(rem, b)) { digit = 1; DUPNUM(tmp, b); destroynum(lasttmp); lasttmp = i32tonum(0, BASEX); while (lessnum(tmp, rem)) { destroynum(lasttmp); DUPNUM(lasttmp, tmp); addnum(&tmp, tmp, BASEX); digit *= 2; } if (lessnum(rem, tmp)) { // too far, back up... destroynum(tmp); digit /= 2; tmp = lasttmp; lasttmp = nullptr; } tmp->sign *= -1; addnum(&rem, tmp, BASEX); destroynum(tmp); destroynum(lasttmp); *ptrc |= digit; } rem->exp++; ptrc--; } cdigits--; if (c->mant != ++ptrc) { memmove(c->mant, ptrc, (int)(cdigits * sizeof(MANTTYPE))); } if (!cdigits) { // A zero, make sure no weird exponents creep in c->exp = 0; c->cdigit = 1; } else { c->cdigit = cdigits; c->exp -= cdigits; // prevent different kinds of zeros, by stripping leading duplicate // zeros. digits are in order of increasing significance. while (c->cdigit > 1 && c->mant[c->cdigit - 1] == 0) { c->cdigit--; } } destroynum(rem); destroynum(*pa); *pa = c; } ================================================ FILE: src/CalcManager/Ratpack/conv.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //--------------------------------------------------------------------------- // Package Title ratpak // File conv.c // Copyright (C) 1995-97 Microsoft // Date 01-16-95 // // // Description // // Contains conversion, input and output routines for numbers rationals // and i32s. // // // //--------------------------------------------------------------------------- #include #include "winerror_cross_platform.h" #include #include // for memmove, memcpy #include "ratpak.h" using namespace std; static constexpr int MAX_ZEROS_AFTER_DECIMAL = 2; // digits 0..64 used by bases 2 .. 64 static constexpr wstring_view DIGITS = L"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_@"; // ratio of internal 'digits' to output 'digits' // Calculated elsewhere as part of initialization and when base is changed int32_t g_ratio; // int(log(2L^BASEXPWR)/log(radix)) // Default decimal separator wchar_t g_decimalSeparator = L'.'; // The following defines and Calc_ULong* functions were taken from // https://github.com/dotnet/coreclr/blob/8b1595b74c943b33fa794e63e440e6f4c9679478/src/pal/inc/rt/intsafe.h // under MIT License // See also // * https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros // * https://sourceforge.net/p/predef/wiki/Architectures/ #if defined(MIDL_PASS) || defined(RC_INVOKED) || defined(_M_CEE_PURE) || defined(_M_AMD64) || defined(__ARM_ARCH) || defined(__x86_64__) || defined(_M_ARM64) #ifndef Calc_UInt32x32To64 #define Calc_UInt32x32To64(a, b) ((uint64_t)((uint32_t)(a)) * (uint64_t)((uint32_t)(b))) #endif #elif defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) #ifndef Calc_UInt32x32To64 #define Calc_UInt32x32To64(a, b) (uint64_t)((uint64_t)(uint32_t)(a) * (uint32_t)(b)) #endif #else #error Must define a target architecture. #endif #define CALC_INTSAFE_E_ARITHMETIC_OVERFLOW ((int32_t)0x80070216L) // 0x216 = 534 = ERROR_ARITHMETIC_OVERFLOW #define CALC_ULONG_ERROR ((uint32_t)0xffffffffU) namespace { int32_t Calc_ULongAdd(_In_ uint32_t ulAugend, _In_ uint32_t ulAddend, _Out_ uint32_t* pulResult) { int32_t hr = CALC_INTSAFE_E_ARITHMETIC_OVERFLOW; *pulResult = CALC_ULONG_ERROR; if ((ulAugend + ulAddend) >= ulAugend) { *pulResult = (ulAugend + ulAddend); hr = S_OK; } return hr; } int32_t Calc_ULongLongToULong(_In_ uint64_t ullOperand, _Out_ uint32_t* pulResult) { int32_t hr = CALC_INTSAFE_E_ARITHMETIC_OVERFLOW; *pulResult = CALC_ULONG_ERROR; if (ullOperand <= UINT32_MAX) { *pulResult = (uint32_t)ullOperand; hr = S_OK; } return hr; } int32_t Calc_ULongMult(_In_ uint32_t ulMultiplicand, _In_ uint32_t ulMultiplier, _Out_ uint32_t* pulResult) { uint64_t ull64Result = Calc_UInt32x32To64(ulMultiplicand, ulMultiplier); return Calc_ULongLongToULong(ull64Result, pulResult); } } // Used to strip trailing zeros, and prevent combinatorial explosions bool stripzeroesnum(_Inout_ PNUMBER pnum, int32_t starting); void SetDecimalSeparator(wchar_t decimalSeparator) { g_decimalSeparator = decimalSeparator; } // // Windows heap allocation // void* zmalloc(size_t a) { return calloc(a, sizeof(unsigned char)); } //----------------------------------------------------------------------------- // // FUNCTION: _dupnum // // ARGUMENTS: pointer to a number, pointer to a number // // RETURN: None // // DESCRIPTION: Copies the source to the destination // //----------------------------------------------------------------------------- void _dupnum(_In_ PNUMBER dest, _In_ const NUMBER* const src) { memcpy(dest, src, (int)(sizeof(NUMBER) + ((src)->cdigit) * (sizeof(MANTTYPE)))); } //----------------------------------------------------------------------------- // // FUNCTION: _destroynum // // ARGUMENTS: pointer to a number // // RETURN: None // // DESCRIPTION: Deletes the number and associated allocation // //----------------------------------------------------------------------------- void _destroynum(_Frees_ptr_opt_ PNUMBER pnum) { if (pnum != nullptr) { free(pnum); } } //----------------------------------------------------------------------------- // // FUNCTION: _destroyrat // // ARGUMENTS: pointer to a rational // // RETURN: None // // DESCRIPTION: Deletes the rational and associated // allocations. // //----------------------------------------------------------------------------- void _destroyrat(_Frees_ptr_opt_ PRAT prat) { if (prat != nullptr) { destroynum(prat->pp); destroynum(prat->pq); free(prat); } } //----------------------------------------------------------------------------- // // FUNCTION: _createnum // // ARGUMENTS: size of number in 'digits' // // RETURN: pointer to a number // // DESCRIPTION: allocates and zeros out number type. // //----------------------------------------------------------------------------- PNUMBER _createnum(_In_ uint32_t size) { PNUMBER pnumret = nullptr; uint32_t cbAlloc; // sizeof( MANTTYPE ) is the size of a 'digit' if (SUCCEEDED(Calc_ULongAdd(size, 1, &cbAlloc)) && SUCCEEDED(Calc_ULongMult(cbAlloc, sizeof(MANTTYPE), &cbAlloc)) && SUCCEEDED(Calc_ULongAdd(cbAlloc, sizeof(NUMBER), &cbAlloc))) { pnumret = (PNUMBER)zmalloc(cbAlloc); if (pnumret == nullptr) { throw(CALC_E_OUTOFMEMORY); } } else { throw(CALC_E_INVALIDRANGE); } return (pnumret); } //----------------------------------------------------------------------------- // // FUNCTION: _createrat // // ARGUMENTS: none // // RETURN: pointer to a rational // // DESCRIPTION: allocates a rational structure but does not // allocate the numbers that make up the rational p over q // form. These number pointers are left pointing to null. // //----------------------------------------------------------------------------- PRAT _createrat(void) { PRAT prat = nullptr; prat = (PRAT)zmalloc(sizeof(RAT)); if (prat == nullptr) { throw(CALC_E_OUTOFMEMORY); } prat->pp = nullptr; prat->pq = nullptr; return (prat); } //----------------------------------------------------------------------------- // // FUNCTION: numtorat // // ARGUMENTS: pointer to a number, radix number is in. // // RETURN: Rational representation of number. // // DESCRIPTION: The rational representation of the number // is guaranteed to be in the form p (number with internal // base representation) over q (number with internal base // representation) Where p and q are integers. // //----------------------------------------------------------------------------- PRAT numtorat(_In_ PNUMBER pin, uint32_t radix) { PNUMBER pnRadixn = nullptr; DUPNUM(pnRadixn, pin); PNUMBER qnRadixn = i32tonum(1, radix); // Ensure p and q start out as integers. if (pnRadixn->exp < 0) { qnRadixn->exp -= pnRadixn->exp; pnRadixn->exp = 0; } PRAT pout = nullptr; createrat(pout); // There is probably a better way to do this. pout->pp = numtonRadixx(pnRadixn, radix); pout->pq = numtonRadixx(qnRadixn, radix); destroynum(pnRadixn); destroynum(qnRadixn); return (pout); } //---------------------------------------------------------------------------- // // FUNCTION: nRadixxtonum // // ARGUMENTS: pointer to a number, base requested. // // RETURN: number representation in radix requested. // // DESCRIPTION: Does a base conversion on a number from // internal to requested base. Assumes number being passed // in is really in internal base form. // //---------------------------------------------------------------------------- PNUMBER nRadixxtonum(_In_ PNUMBER a, uint32_t radix, int32_t precision) { PNUMBER sum = i32tonum(0, radix); PNUMBER powofnRadix = i32tonum(BASEX, radix); // A large penalty is paid for conversion of digits no one will see anyway. // limit the digits to the minimum of the existing precision or the // requested precision. uint32_t cdigits = precision + 1; if (cdigits > (uint32_t)a->cdigit) { cdigits = (uint32_t)a->cdigit; } // scale by the internal base to the internal exponent offset of the LSD numpowi32(&powofnRadix, a->exp + (a->cdigit - cdigits), radix, precision); // Loop over all the relative digits from MSD to LSD for (MANTTYPE* ptr = &(a->mant[a->cdigit - 1]); cdigits > 0; ptr--, cdigits--) { // Loop over all the bits from MSB to LSB for (uint32_t bitmask = BASEX / 2; bitmask > 0; bitmask /= 2) { addnum(&sum, sum, radix); if (*ptr & bitmask) { sum->mant[0] |= 1; } } } // Scale answer by power of internal exponent. mulnum(&sum, powofnRadix, radix); destroynum(powofnRadix); sum->sign = a->sign; return (sum); } //----------------------------------------------------------------------------- // // FUNCTION: numtonRadixx // // ARGUMENTS: pointer to a number, radix of that number. // // RETURN: number representation in internal radix. // // DESCRIPTION: Does a radix conversion on a number from // specified radix to requested radix. Assumes the radix // specified is the radix of the number passed in. // //----------------------------------------------------------------------------- PNUMBER numtonRadixx(_In_ PNUMBER a, uint32_t radix) { PNUMBER pnumret = i32tonum(0, BASEX); // pnumret is the number in internal form. PNUMBER num_radix = i32tonum(radix, BASEX); MANTTYPE* ptrdigit = a->mant; // pointer to digit being worked on. // Digits are in reverse order, back over them LSD first. ptrdigit += a->cdigit - 1; PNUMBER thisdigit = nullptr; // thisdigit holds the current digit of a for (int32_t idigit = 0; idigit < a->cdigit; idigit++) { mulnumx(&pnumret, num_radix); // WARNING: // This should just smack in each digit into a 'special' thisdigit. // and not do the overhead of recreating the number type each time. thisdigit = i32tonum(*ptrdigit--, BASEX); addnum(&pnumret, thisdigit, BASEX); destroynum(thisdigit); } // Calculate the exponent of the external base for scaling. numpowi32x(&num_radix, a->exp); // ... and scale the result. mulnumx(&pnumret, num_radix); destroynum(num_radix); // And propagate the sign. pnumret->sign = a->sign; return (pnumret); } //----------------------------------------------------------------------------- // // FUNCTION: StringToRat // // ARGUMENTS: // mantissaIsNegative true if mantissa is less than zero // mantissa a string representation of a number // exponentIsNegative true if exponent is less than zero // exponent a string representation of a number // radix is the number base used in the source string // // RETURN: PRAT representation of string input. // Or nullptr if no number scanned. // // EXPLANATION: This is for calc. // // //----------------------------------------------------------------------------- PRAT StringToRat(bool mantissaIsNegative, wstring_view mantissa, bool exponentIsNegative, wstring_view exponent, uint32_t radix, int32_t precision) { PRAT resultRat = nullptr; // holds exponent in rational form. // Deal with mantissa if (mantissa.empty()) { // Preset value if no mantissa if (exponent.empty()) { // Exponent not specified, preset value to zero DUPRAT(resultRat, rat_zero); } else { // Exponent specified, preset value to one DUPRAT(resultRat, rat_one); } } else { // Mantissa specified, convert to number form. PNUMBER pnummant = StringToNumber(mantissa, radix, precision); if (pnummant == nullptr) { return nullptr; } resultRat = numtorat(pnummant, radix); // convert to rational form, and cleanup. destroynum(pnummant); } // Deal with exponent int32_t expt = 0; if (!exponent.empty()) { // Exponent specified, convert to number form. // Don't use native stuff, as it is restricted in the bases it can // handle. PNUMBER numExp = StringToNumber(exponent, radix, precision); if (numExp == nullptr) { return nullptr; } // Convert exponent number form to native integral form, and cleanup. expt = numtoi32(numExp, radix); destroynum(numExp); } // Convert native integral exponent form to rational multiplier form. PNUMBER pnumexp = i32tonum(radix, BASEX); numpowi32x(&pnumexp, abs(expt)); PRAT pratexp = nullptr; createrat(pratexp); DUPNUM(pratexp->pp, pnumexp); pratexp->pq = i32tonum(1, BASEX); destroynum(pnumexp); if (exponentIsNegative) { // multiplier is less than 1, this means divide. divrat(&resultRat, pratexp, precision); } else if (expt > 0) { // multiplier is greater than 1, this means multiply. mulrat(&resultRat, pratexp, precision); } // multiplier can be 1, in which case it'd be a waste of time to multiply. destroyrat(pratexp); if (mantissaIsNegative) { // A negative number was used, adjust the sign. resultRat->pp->sign *= -1; } return resultRat; } //----------------------------------------------------------------------------- // // FUNCTION: StringToNumber // // ARGUMENTS: // wstring_view numberString // int radix // int32_t precision // // RETURN: pnumber representation of string input. // Or nullptr if no number scanned. // // EXPLANATION: This is a state machine, // // State Description Example, ^shows just read position. // which caused the transition // // START Start state ^1.0 // MANTS Mantissa sign -^1.0 // LZ Leading Zero 0^1.0 // LZDP Post LZ dec. pt. 000.^1 // LD Leading digit 1^.0 // DZ Post LZDP Zero 000.0^1 // DD Post Decimal digit .01^2 // DDP Leading Digit dec. pt. 1.^2 // EXPB Exponent Begins 1.0e^2 // EXPS Exponent sign 1.0e+^5 // EXPD Exponent digit 1.0e1^2 or even 1.0e0^1 // EXPBZ Exponent begin post 0 0.000e^+1 // EXPSZ Exponent sign post 0 0.000e+^1 // EXPDZ Exponent digit post 0 0.000e+1^2 // ERR Error case 0.0.^ // // Terminal Description // // DP '.' // ZR '0' // NZ '1'..'9' 'A'..'Z' 'a'..'z' '@' '_' // SG '+' '-' // EX 'e' '^' e is used for radix 10, ^ for all other radixes. // //----------------------------------------------------------------------------- static constexpr uint8_t DP = 0; static constexpr uint8_t ZR = 1; static constexpr uint8_t NZ = 2; static constexpr uint8_t SG = 3; static constexpr uint8_t EX = 4; static constexpr uint8_t START = 0; static constexpr uint8_t MANTS = 1; static constexpr uint8_t LZ = 2; static constexpr uint8_t LZDP = 3; static constexpr uint8_t LD = 4; static constexpr uint8_t DZ = 5; static constexpr uint8_t DD = 6; static constexpr uint8_t DDP = 7; static constexpr uint8_t EXPB = 8; static constexpr uint8_t EXPS = 9; static constexpr uint8_t EXPD = 10; static constexpr uint8_t EXPBZ = 11; static constexpr uint8_t EXPSZ = 12; static constexpr uint8_t EXPDZ = 13; static constexpr uint8_t ERR = 14; #if defined(DEBUG) char* statestr[] = { "START", "MANTS", "LZ", "LZDP", "LD", "DZ", "DD", "DDP", "EXPB", "EXPS", "EXPD", "EXPBZ", "EXPSZ", "EXPDZ", "ERR", }; #endif // New state is machine[state][terminal] static constexpr uint8_t machine[ERR + 1][EX + 1] = { // DP, ZR, NZ, SG, EX // START { LZDP, LZ, LD, MANTS, ERR }, // MANTS { LZDP, LZ, LD, ERR, ERR }, // LZ { LZDP, LZ, LD, ERR, EXPBZ }, // LZDP { ERR, DZ, DD, ERR, EXPB }, // LD { DDP, LD, LD, ERR, EXPB }, // DZ { ERR, DZ, DD, ERR, EXPBZ }, // DD { ERR, DD, DD, ERR, EXPB }, // DDP { ERR, DD, DD, ERR, EXPB }, // EXPB { ERR, EXPD, EXPD, EXPS, ERR }, // EXPS { ERR, EXPD, EXPD, ERR, ERR }, // EXPD { ERR, EXPD, EXPD, ERR, ERR }, // EXPBZ { ERR, EXPDZ, EXPDZ, EXPSZ, ERR }, // EXPSZ { ERR, EXPDZ, EXPDZ, ERR, ERR }, // EXPDZ { ERR, EXPDZ, EXPDZ, ERR, ERR }, // ERR { ERR, ERR, ERR, ERR, ERR } }; wchar_t NormalizeCharDigit(wchar_t c, uint32_t radix) { // Allow upper and lower case letters as equivalent, base // is in the range where this is not ambiguous. if (size_t{ radix } >= DIGITS.find(L'A') && size_t{ radix } <= DIGITS.find(L'Z')) { return towupper(c); } return c; } PNUMBER StringToNumber(wstring_view numberString, uint32_t radix, int32_t precision) { int32_t expSign = 1L; // expSign is exponent sign ( +/- 1 ) int32_t expValue = 0L; // expValue is exponent mantissa, should be unsigned PNUMBER pnumret = nullptr; createnum(pnumret, static_cast(numberString.length())); pnumret->sign = 1L; pnumret->cdigit = 0; pnumret->exp = 0; MANTTYPE* pmant = pnumret->mant + numberString.length() - 1; uint8_t state = START; // state is the state of the input state machine. for (const auto& c : numberString) { // If the character is the decimal separator, use L'.' for the purposes of the state machine. wchar_t curChar = (c == g_decimalSeparator ? L'.' : c); // Switch states based on the character we encountered switch (curChar) { case L'-': case L'+': state = machine[state][SG]; break; case L'.': state = machine[state][DP]; break; case L'0': state = machine[state][ZR]; break; case L'^': case L'e': if (curChar == L'^' || radix == 10) { state = machine[state][EX]; break; } // Drop through in the 'e'-as-a-digit case [[fallthrough]]; default: state = machine[state][NZ]; break; } // Now update our result value based on the state we are in switch (state) { case MANTS: pnumret->sign = (curChar == L'-') ? -1 : 1; break; case EXPSZ: case EXPS: expSign = (curChar == L'-') ? -1 : 1; break; case EXPDZ: case EXPD: { curChar = NormalizeCharDigit(curChar, radix); size_t pos = DIGITS.find(curChar); if (pos != wstring_view::npos) { expValue *= radix; expValue += static_cast(pos); } else { state = ERR; } } break; case LD: pnumret->exp++; [[fallthrough]]; case DD: { curChar = NormalizeCharDigit(curChar, radix); size_t pos = DIGITS.find(curChar); if (pos != wstring_view::npos && pos < static_cast(radix)) { *pmant-- = static_cast(pos); pnumret->exp--; pnumret->cdigit++; } else { state = ERR; } } break; case DZ: pnumret->exp--; break; case LZ: case LZDP: case DDP: break; } } if (state == DZ || state == EXPDZ) { pnumret->cdigit = 1; pnumret->exp = 0; pnumret->sign = 1; } else { while (pnumret->cdigit < static_cast(numberString.length())) { pnumret->cdigit++; pnumret->exp--; } pnumret->exp += expSign * expValue; } // If we don't have a number, clear our result. if (pnumret->cdigit == 0) { destroynum(pnumret); pnumret = nullptr; } else { stripzeroesnum(pnumret, precision); } return pnumret; } //----------------------------------------------------------------------------- // // FUNCTION: i32torat // // ARGUMENTS: int32_t // // RETURN: Rational representation of int32_t input. // // DESCRIPTION: Converts int32_t input to rational (p over q) // form, where q is 1 and p is the int32_t. // //----------------------------------------------------------------------------- PRAT i32torat(int32_t ini32) { PRAT pratret = nullptr; createrat(pratret); pratret->pp = i32tonum(ini32, BASEX); pratret->pq = i32tonum(1L, BASEX); return (pratret); } //----------------------------------------------------------------------------- // // FUNCTION: Ui32torat // // ARGUMENTS: ui32 // // RETURN: Rational representation of uint32_t input. // // DESCRIPTION: Converts uint32_t input to rational (p over q) // form, where q is 1 and p is the uint32_t. Being unsigned cant take negative // numbers, but the full range of unsigned numbers // //----------------------------------------------------------------------------- PRAT Ui32torat(uint32_t inui32) { PRAT pratret = nullptr; createrat(pratret); pratret->pp = Ui32tonum(inui32, BASEX); pratret->pq = i32tonum(1L, BASEX); return (pratret); } //----------------------------------------------------------------------------- // // FUNCTION: i32tonum // // ARGUMENTS: int32_t input and radix requested. // // RETURN: number // // DESCRIPTION: Returns a number representation in the // base requested of the int32_t value passed in. // //----------------------------------------------------------------------------- PNUMBER i32tonum(int32_t ini32, uint32_t radix) { MANTTYPE* pmant; PNUMBER pnumret = nullptr; createnum(pnumret, MAX_LONG_SIZE); pmant = pnumret->mant; pnumret->cdigit = 0; pnumret->exp = 0; if (ini32 < 0) { pnumret->sign = -1; ini32 *= -1; } else { pnumret->sign = 1; } do { *pmant++ = (MANTTYPE)(ini32 % radix); ini32 /= radix; pnumret->cdigit++; } while (ini32); return (pnumret); } //----------------------------------------------------------------------------- // // FUNCTION: Ui32tonum // // ARGUMENTS: uint32_t input and radix requested. // // RETURN: number // // DESCRIPTION: Returns a number representation in the // base requested of the uint32_t value passed in. Being unsigned number it has no // negative number and takes the full range of unsigned number // //----------------------------------------------------------------------------- PNUMBER Ui32tonum(uint32_t ini32, uint32_t radix) { MANTTYPE* pmant; PNUMBER pnumret = nullptr; createnum(pnumret, MAX_LONG_SIZE); pmant = pnumret->mant; pnumret->cdigit = 0; pnumret->exp = 0; pnumret->sign = 1; do { *pmant++ = (MANTTYPE)(ini32 % radix); ini32 /= radix; pnumret->cdigit++; } while (ini32); return (pnumret); } //----------------------------------------------------------------------------- // // FUNCTION: rattoi32 // // ARGUMENTS: rational number in internal base, integer radix and int32_t precision. // // RETURN: int32_t // // DESCRIPTION: returns the int32_t representation of the // number input. Assumes that the number is in the internal // base. // //----------------------------------------------------------------------------- int32_t rattoi32(_In_ PRAT prat, uint32_t radix, int32_t precision) { if (rat_gt(prat, rat_max_i32, precision) || rat_lt(prat, rat_min_i32, precision)) { // Don't attempt rattoi32 of anything too big or small throw(CALC_E_DOMAIN); } PRAT pint = nullptr; DUPRAT(pint, prat); intrat(&pint, radix, precision); divnumx(&(pint->pp), pint->pq, precision); DUPNUM(pint->pq, num_one); int32_t lret = numtoi32(pint->pp, BASEX); destroyrat(pint); return (lret); } //----------------------------------------------------------------------------- // // FUNCTION: rattoUi32 // // ARGUMENTS: rational number in internal base, integer radix and int32_t precision. // // RETURN: Ui32 // // DESCRIPTION: returns the Ui32 representation of the // number input. Assumes that the number is in the internal // base. // //----------------------------------------------------------------------------- uint32_t rattoUi32(_In_ PRAT prat, uint32_t radix, int32_t precision) { if (rat_gt(prat, rat_dword, precision) || rat_lt(prat, rat_zero, precision)) { // Don't attempt rattoui32 of anything too big or small throw(CALC_E_DOMAIN); } PRAT pint = nullptr; DUPRAT(pint, prat); intrat(&pint, radix, precision); divnumx(&(pint->pp), pint->pq, precision); DUPNUM(pint->pq, num_one); uint32_t lret = numtoi32(pint->pp, BASEX); // This happens to work even if it is only signed destroyrat(pint); return (lret); } //----------------------------------------------------------------------------- // // FUNCTION: rattoUi64 // // ARGUMENTS: rational number in internal base, integer radix and int32_t precision // // RETURN: Ui64 // // DESCRIPTION: returns the 64 bit (irrespective of which processor this is running in) representation of the // number input. Assumes that the number is in the internal // base. Can throw exception if the number exceeds 2^64 // Implementation by getting the HI & LO 32 bit words and concatenating them, as the // internal base chosen happens to be 2^32, this is easier. //----------------------------------------------------------------------------- uint64_t rattoUi64(_In_ PRAT prat, uint32_t radix, int32_t precision) { PRAT pint = nullptr; // first get the LO 32 bit word DUPRAT(pint, prat); andrat(&pint, rat_dword, radix, precision); // & 0xFFFFFFFF (2 ^ 32 -1) uint32_t lo = rattoUi32(pint, radix, precision); // wont throw exception because already hi-dword chopped off DUPRAT(pint, prat); // previous pint will get freed by this as well PRAT prat32 = i32torat(32); rshrat(&pint, prat32, radix, precision); intrat(&pint, radix, precision); andrat(&pint, rat_dword, radix, precision); // & 0xFFFFFFFF (2 ^ 32 -1) uint32_t hi = rattoUi32(pint, radix, precision); destroyrat(prat32); destroyrat(pint); return (((uint64_t)hi << 32) | lo); } //----------------------------------------------------------------------------- // // FUNCTION: numtoi32 // // ARGUMENTS: number input and base of that number. // // RETURN: int32_t // // DESCRIPTION: returns the int32_t representation of the // number input. Assumes that the number is really in the // base claimed. // //----------------------------------------------------------------------------- int32_t numtoi32(_In_ PNUMBER pnum, uint32_t radix) { int32_t lret = 0; MANTTYPE* pmant = pnum->mant; pmant += pnum->cdigit - 1; int32_t expt = pnum->exp; for (int32_t length = pnum->cdigit; length > 0 && length + expt > 0; length--) { lret *= radix; lret += *(pmant--); } while (expt-- > 0) { lret *= radix; } lret *= pnum->sign; return lret; } //----------------------------------------------------------------------------- // // FUNCTION: bool stripzeroesnum // // ARGUMENTS: a number representation // // RETURN: true if stripping done, modifies number in place. // // DESCRIPTION: Strips off trailing zeros. // //----------------------------------------------------------------------------- bool stripzeroesnum(_Inout_ PNUMBER pnum, int32_t starting) { bool fstrip = false; // point pmant to the LeastCalculatedDigit MANTTYPE* pmant = pnum->mant; int32_t cdigits = pnum->cdigit; // point pmant to the LSD if (cdigits > starting) { pmant += cdigits - starting; cdigits = starting; } // Check we haven't gone too far, and we are still looking at zeros. while ((cdigits > 0) && !(*pmant)) { // move to next significant digit and keep track of digits we can // ignore later. pmant++; cdigits--; fstrip = true; } // If there are zeros to remove. if (fstrip) { // Remove them. memmove(pnum->mant, pmant, (int)(cdigits * sizeof(MANTTYPE))); // And adjust exponent and digit count accordingly. pnum->exp += (pnum->cdigit - cdigits); pnum->cdigit = cdigits; } return (fstrip); } //----------------------------------------------------------------------------- // // FUNCTION: NumberToString // // ARGUMENTS: number representation // fmt, one of NumberFormat::Float, NumberFormat::Scientific or // NumberFormat::Engineering // integer radix and int32_t precision value // // RETURN: String representation of number. // // DESCRIPTION: Converts a number to its string // representation. // //----------------------------------------------------------------------------- wstring NumberToString(_Inout_ PNUMBER& pnum, NumberFormat format, uint32_t radix, int32_t precision) { stripzeroesnum(pnum, precision + 2); int32_t length = pnum->cdigit; int32_t exponent = pnum->exp + length; // Actual number of digits to the left of decimal NumberFormat oldFormat = format; if (exponent > precision && format == NumberFormat::Float) { // Force scientific mode to prevent user from assuming 33rd digit is exact. format = NumberFormat::Scientific; } // Make length small enough to fit in pret. if (length > precision) { length = precision; } // If there is a chance a round has to occur, round. // - if number is zero no rounding // - if number of digits is less than the maximum output no rounding PNUMBER round = nullptr; if (!zernum(pnum) && (pnum->cdigit >= precision || (length - exponent > precision && exponent >= -MAX_ZEROS_AFTER_DECIMAL))) { // Otherwise round. round = i32tonum(radix, radix); divnum(&round, num_two, radix, precision); // Make round number exponent one below the LSD for the number. if (exponent > 0 || format == NumberFormat::Float) { round->exp = pnum->exp + pnum->cdigit - round->cdigit - precision; } else { round->exp = pnum->exp + pnum->cdigit - round->cdigit - precision - exponent; length = precision + exponent; } round->sign = pnum->sign; } if (format == NumberFormat::Float) { // Figure out if the exponent will fill more space than the non-exponent field. if ((length - exponent > precision) || (exponent > precision + 3)) { if (exponent >= -MAX_ZEROS_AFTER_DECIMAL) { round->exp -= exponent; length = precision + exponent; } else { // Case where too many zeros are to the right or left of the // decimal pt. And we are forced to switch to scientific form. format = NumberFormat::Scientific; } } else if (length + abs(exponent) < precision && round) { // Minimum loss of precision occurs with listing leading zeros // if we need to make room for zeros sacrifice some digits. round->exp -= exponent; } } if (round != nullptr) { addnum(&pnum, round, radix); int32_t offset = (pnum->cdigit + pnum->exp) - (round->cdigit + round->exp); destroynum(round); if (stripzeroesnum(pnum, offset)) { // WARNING: nesting/recursion, too much has been changed, need to // re-figure format. return NumberToString(pnum, oldFormat, radix, precision); } } else { stripzeroesnum(pnum, precision); } // Set up all the post rounding stuff. bool useSciForm = false; int32_t eout = exponent - 1; // Displayed exponent. MANTTYPE* pmant = pnum->mant + pnum->cdigit - 1; // Case where too many digits are to the left of the decimal or // NumberFormat::Scientific or NumberFormat::Engineering was specified. if ((format == NumberFormat::Scientific) || (format == NumberFormat::Engineering)) { useSciForm = true; if (eout != 0) { if (format == NumberFormat::Engineering) { exponent = (eout % 3); eout -= exponent; exponent++; // Fix the case where 0.02e-3 should really be 2.e-6 etc. if (exponent < 0) { exponent += 3; eout -= 3; } } else { exponent = 1; } } } else { eout = 0; } // Begin building the result string wstring result; // Make sure negative zeros aren't allowed. if ((pnum->sign == -1) && (length > 0)) { result = L'-'; } if (exponent <= 0 && !useSciForm) { result += L'0'; result += g_decimalSeparator; // Used up a digit unaccounted for. } while (exponent < 0) { result += L'0'; exponent++; } while (length > 0) { exponent--; result += DIGITS[*pmant--]; length--; // Be more regular in using a decimal point. if (exponent == 0) { result += g_decimalSeparator; } } while (exponent > 0) { result += L'0'; exponent--; // Be more regular in using a decimal point. if (exponent == 0) { result += g_decimalSeparator; } } if (useSciForm) { result += (radix == 10 ? L'e' : L'^'); result += (eout < 0 ? L'-' : L'+'); eout = abs(eout); wstring expString{}; do { expString += DIGITS[eout % radix]; eout /= radix; } while (eout > 0); result.insert(result.end(), expString.crbegin(), expString.crend()); } // Remove trailing decimal if (!result.empty() && result.back() == g_decimalSeparator) { result.pop_back(); } return result; } //----------------------------------------------------------------------------- // // FUNCTION: RatToString // // ARGUMENTS: // PRAT *representation of a number. // i32 representation of base to dump to screen. // fmt, one of NumberFormat::Float, NumberFormat::Scientific, or NumberFormat::Engineering // precision uint32_t // // RETURN: string // // DESCRIPTION: returns a string representation of rational number passed // in, at least to the precision digits. // // NOTE: It may be that doing a GCD() could shorten the rational form // And it may eventually be worthwhile to keep the result. That is // why a pointer to the rational is passed in. // //----------------------------------------------------------------------------- wstring RatToString(_Inout_ PRAT& prat, NumberFormat format, uint32_t radix, int32_t precision) { PNUMBER p = RatToNumber(prat, radix, precision); wstring result = NumberToString(p, format, radix, precision); destroynum(p); return result; } PNUMBER RatToNumber(_In_ PRAT prat, uint32_t radix, int32_t precision) { PRAT temprat = nullptr; DUPRAT(temprat, prat); // Convert p and q of rational form from internal base to requested base. // Scale by largest power of BASEX possible. int32_t scaleby = min(temprat->pp->exp, temprat->pq->exp); scaleby = max(scaleby, 0); temprat->pp->exp -= scaleby; temprat->pq->exp -= scaleby; PNUMBER p = nRadixxtonum(temprat->pp, radix, precision); PNUMBER q = nRadixxtonum(temprat->pq, radix, precision); destroyrat(temprat); // finally take the time hit to actually divide. divnum(&p, q, radix, precision); destroynum(q); return p; } // Converts a PRAT to a PNUMBER and back to a PRAT, flattening/simplifying the rational in the process void flatrat(_Inout_ PRAT& prat, uint32_t radix, int32_t precision) { PNUMBER pnum = RatToNumber(prat, radix, precision); destroyrat(prat); prat = numtorat(pnum, radix); destroynum(pnum); } //----------------------------------------------------------------------------- // // FUNCTION: gcd // // ARGUMENTS: // PNUMBER representation of a number. // PNUMBER representation of a number. // int for Radix // // RETURN: Greatest common divisor in internal BASEX PNUMBER form. // // DESCRIPTION: gcd uses remainders to find the greatest common divisor. // // ASSUMPTIONS: gcd assumes inputs are integers. // // NOTE: Before it was found that the TRIM macro actually kept the // size down cheaper than GCD, this routine was used extensively. // now it is not used but might be later. // //----------------------------------------------------------------------------- PNUMBER gcd(_In_ PNUMBER a, _In_ PNUMBER b) { PNUMBER r = nullptr; PNUMBER larger = nullptr; PNUMBER smaller = nullptr; if (zernum(a)) { return b; } else if (zernum(b)) { return a; } if (lessnum(a, b)) { DUPNUM(larger, b); DUPNUM(smaller, a); } else { DUPNUM(larger, a); DUPNUM(smaller, b); } while (!zernum(smaller)) { remnum(&larger, smaller, BASEX); // swap larger and smaller r = larger; larger = smaller; smaller = r; } destroynum(smaller); return larger; } //----------------------------------------------------------------------------- // // FUNCTION: i32factnum // // ARGUMENTS: // int32_t integer to factorialize. // int32_t integer representing base of answer. // uint32_t integer for radix // // RETURN: Factorial of input in radix PNUMBER form. // // NOTE: Not currently used. // //----------------------------------------------------------------------------- PNUMBER i32factnum(int32_t ini32, uint32_t radix) { PNUMBER lret = nullptr; PNUMBER tmp = nullptr; lret = i32tonum(1, radix); while (ini32 > 0) { tmp = i32tonum(ini32--, radix); mulnum(&lret, tmp, radix); destroynum(tmp); } return (lret); } //----------------------------------------------------------------------------- // // FUNCTION: i32prodnum // // ARGUMENTS: // int32_t integer to factorialize. // int32_t integer representing base of answer. // uint32_t integer for radix // // RETURN: Factorial of input in base PNUMBER form. // //----------------------------------------------------------------------------- PNUMBER i32prodnum(int32_t start, int32_t stop, uint32_t radix) { PNUMBER lret = nullptr; PNUMBER tmp = nullptr; lret = i32tonum(1, radix); while (start <= stop) { if (start) { tmp = i32tonum(start, radix); mulnum(&lret, tmp, radix); destroynum(tmp); } start++; } return (lret); } //----------------------------------------------------------------------------- // // FUNCTION: numpowi32 // // ARGUMENTS: root as number power as int32_t and radix of // number along with the precision value in int32_t. // // RETURN: None root is changed. // // DESCRIPTION: changes numeric representation of root to // root ** power. Assumes radix is the radix of root. // //----------------------------------------------------------------------------- void numpowi32(_Inout_ PNUMBER* proot, int32_t power, uint32_t radix, int32_t precision) { PNUMBER lret = i32tonum(1, radix); while (power > 0) { if (power & 1) { mulnum(&lret, *proot, radix); } mulnum(proot, *proot, radix); TRIMNUM(*proot, precision); power >>= 1; } destroynum(*proot); *proot = lret; } //----------------------------------------------------------------------------- // // FUNCTION: ratpowi32 // // ARGUMENTS: root as rational, power as int32_t and precision as int32_t. // // RETURN: None root is changed. // // DESCRIPTION: changes rational representation of root to // root ** power. // //----------------------------------------------------------------------------- void ratpowi32(_Inout_ PRAT* proot, int32_t power, int32_t precision) { if (power < 0) { // Take the positive power and invert answer. PNUMBER pnumtemp = nullptr; ratpowi32(proot, -power, precision); pnumtemp = (*proot)->pp; (*proot)->pp = (*proot)->pq; (*proot)->pq = pnumtemp; } else { PRAT lret = nullptr; lret = i32torat(1); while (power > 0) { if (power & 1) { mulnumx(&(lret->pp), (*proot)->pp); mulnumx(&(lret->pq), (*proot)->pq); } mulrat(proot, *proot, precision); trimit(&lret, precision); trimit(proot, precision); power >>= 1; } destroyrat(*proot); *proot = lret; } } ================================================ FILE: src/CalcManager/Ratpack/exp.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File exp.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains exp, and log functions for rationals // // //----------------------------------------------------------------------------- #include "ratpak.h" //----------------------------------------------------------------------------- // // FUNCTION: exprat // // ARGUMENTS: x PRAT representation of number to exponentiate // // RETURN: exp of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ // \ ] X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j j+1 // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // //----------------------------------------------------------------------------- void _exprat(_Inout_ PRAT* px, int32_t precision) { CREATETAYLOR(); addnum(&(pret->pp), num_one, BASEX); addnum(&(pret->pq), num_one, BASEX); DUPRAT(thisterm, pret); n2 = i32tonum(0L, BASEX); do { NEXTTERM(*px, INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void exprat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT pwr = nullptr; PRAT pint = nullptr; if (rat_gt(*px, rat_max_exp, precision) || rat_lt(*px, rat_min_exp, precision)) { // Don't attempt exp of anything large. throw(CALC_E_DOMAIN); } DUPRAT(pwr, rat_exp); DUPRAT(pint, *px); intrat(&pint, radix, precision); const int32_t intpwr = rattoi32(pint, radix, precision); ratpowi32(&pwr, intpwr, precision); _subrat(px, pint, precision); // It just so happens to be an integral power of e. if (rat_gt(*px, rat_negsmallest, precision) && rat_lt(*px, rat_smallest, precision)) { DUPRAT(*px, pwr); } else { _exprat(px, precision); mulrat(px, pwr, precision); } destroyrat(pwr); destroyrat(pint); } //----------------------------------------------------------------------------- // // FUNCTION: lograt, _lograt, __lograt // // ARGUMENTS: x PRAT representation of number to logarithim // // RETURN: log of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ // \ ] j*(1-X) // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j j+1 // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // // Number is scaled between one and e_to_one_half prior to taking the // log. This is to keep execution time from exploding. // // lograt tries to snap to zero. Use _lograt inside ratpak by default. // __lograt is part of _lograt private implementation and should not be used. // // //----------------------------------------------------------------------------- void __lograt(PRAT* px, int32_t precision) { CREATETAYLOR(); createrat(thisterm); // sub one from x (*px)->pq->sign *= -1; addnum(&((*px)->pp), (*px)->pq, BASEX); (*px)->pq->sign *= -1; DUPRAT(pret, *px); DUPRAT(thisterm, *px); n2 = i32tonum(1L, BASEX); (*px)->pp->sign *= -1; do { NEXTTERM(*px, MULNUM(n2) INC(n2) DIVNUM(n2), precision); TRIMTOP(*px, precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void _lograt(_Inout_ PRAT* px, int32_t precision) { PRAT pwr = nullptr; // pwr is the large scaling factor. PRAT offset = nullptr; // offset is the incremental scaling factor. // Check for someone taking the log of zero or a negative number. if (rat_le(*px, rat_zero, precision)) { throw(CALC_E_DOMAIN); } // Get number > 1, for scaling bool fneglog = rat_lt(*px, rat_one, precision); if (fneglog) { PNUMBER pnumtemp = (*px)->pp; (*px)->pp = (*px)->pq; (*px)->pq = pnumtemp; } // Scale the number within BASEX factor of 1, for the large scale. // log(x*2^(BASEXPWR*k)) = BASEXPWR*k*log(2)+log(x) if (LOGRAT2(*px) > 1) { const int32_t intpwr = LOGRAT2(*px) - 1; (*px)->pq->exp += intpwr; pwr = i32torat(intpwr * BASEXPWR); mulrat(&pwr, ln_two, precision); // ln(x+e)-ln(x) looks close to e when x is close to one using some // expansions. This means we can trim past precision digits+1. TRIMTOP(*px, precision); } else { DUPRAT(pwr, rat_zero); } DUPRAT(offset, rat_zero); // Scale the number between 1 and e_to_one_half, for the small scale. while (rat_gt(*px, e_to_one_half, precision)) { divrat(px, e_to_one_half, precision); _addrat(&offset, rat_one, precision); } __lograt(px, precision); // Add the large and small scaling factors, take into account // small scaling was done in e_to_one_half chunks. divrat(&offset, rat_two, precision); _addrat(&pwr, offset, precision); // And add the resulting scaling factor to the answer. _addrat(px, pwr, precision); trimit(px, precision); // If number started out < 1 rescale answer to negative. if (fneglog) { (*px)->pp->sign *= -1; } destroyrat(offset); destroyrat(pwr); } void lograt(_Inout_ PRAT* px, int32_t precision) { PRAT a = nullptr; DUPRAT(a, *px); _lograt(px, precision); _snaprat(px, a, nullptr, precision); destroyrat(a); } void log10rat(_Inout_ PRAT* px, int32_t precision) { lograt(px, precision); divrat(px, ln_ten, precision); } // // return if the given x is even number. The assumption here is its denominator is 1 and we are testing the numerator is // even or not bool IsEven(PRAT x, uint32_t radix, int32_t precision) { PRAT tmp = nullptr; bool bRet = false; DUPRAT(tmp, x); divrat(&tmp, rat_two, precision); fracrat(&tmp, radix, precision); _addrat(&tmp, tmp, precision); _subrat(&tmp, rat_one, precision); if (rat_lt(tmp, rat_zero, precision)) { bRet = true; } destroyrat(tmp); return bRet; } //--------------------------------------------------------------------------- // // FUNCTION: powrat // // ARGUMENTS: PRAT *px, PRAT y, uint32_t radix, int32_t precision // // RETURN: none, sets *px to *px to the y. // // EXPLANATION: Calculates the power of both px and // handles special cases where px is a perfect root. // Assumes, all checking has been done on validity of numbers. // // //--------------------------------------------------------------------------- void powrat(_Inout_ PRAT* px, _In_ PRAT y, uint32_t radix, int32_t precision) { // Handle cases where px or y is 0 by calling powratcomp directly if (zerrat(*px) || zerrat(y)) { powratcomp(px, y, radix, precision); return; } // When y is 1, return px if (rat_equ(y, rat_one, precision)) { return; } try { powratNumeratorDenominator(px, y, radix, precision); } catch (...) { // If calculating the power using numerator/denominator // failed, fall back to the less accurate method of // passing in the original y powratcomp(px, y, radix, precision); } } void powratNumeratorDenominator(_Inout_ PRAT* px, _In_ PRAT y, uint32_t radix, int32_t precision) { // Prepare rationals PRAT yNumerator = nullptr; PRAT yDenominator = nullptr; DUPRAT(yNumerator, rat_zero); // yNumerator->pq is 1 one DUPRAT(yDenominator, rat_zero); // yDenominator->pq is 1 one DUPNUM(yNumerator->pp, y->pp); DUPNUM(yDenominator->pp, y->pq); // Calculate the following use the Powers of Powers rule: // px ^ (yNum/yDenom) == px ^ yNum ^ (1/yDenom) // 1. For px ^ yNum, we call powratcomp directly which will call ratpowi32 // and store the result in pxPowNum // 2. For pxPowNum ^ (1/yDenom), we call powratcomp // 3. Validate the result of 2 by adding/subtracting 0.5, flooring and call powratcomp with yDenom // on the floored result. // 1. Initialize result. PRAT pxPow = nullptr; DUPRAT(pxPow, *px); // 2. Calculate pxPow = px ^ yNumerator // if yNumerator is not 1 if (!rat_equ(yNumerator, rat_one, precision)) { powratcomp(&pxPow, yNumerator, radix, precision); } // 2. Calculate pxPowNumDenom = pxPowNum ^ (1/yDenominator), // if yDenominator is not 1 if (!rat_equ(yDenominator, rat_one, precision)) { // Calculate 1 over y PRAT oneoveryDenom = nullptr; DUPRAT(oneoveryDenom, rat_one); divrat(&oneoveryDenom, yDenominator, precision); // ################################## // Take the oneoveryDenom power // ################################## PRAT originalResult = nullptr; DUPRAT(originalResult, pxPow); powratcomp(&originalResult, oneoveryDenom, radix, precision); // ################################## // Round the originalResult to roundedResult // ################################## PRAT roundedResult = nullptr; DUPRAT(roundedResult, originalResult); if (roundedResult->pp->sign == -1) { _subrat(&roundedResult, rat_half, precision); } else { _addrat(&roundedResult, rat_half, precision); } intrat(&roundedResult, radix, precision); // ################################## // Take the yDenom power of the roundedResult. // ################################## PRAT roundedPower = nullptr; DUPRAT(roundedPower, roundedResult); powratcomp(&roundedPower, yDenominator, radix, precision); // ################################## // if roundedPower == px, // we found an exact power in roundedResult // ################################## if (rat_equ(roundedPower, pxPow, precision)) { DUPRAT(*px, roundedResult); } else { DUPRAT(*px, originalResult); } destroyrat(oneoveryDenom); destroyrat(originalResult); destroyrat(roundedResult); destroyrat(roundedPower); } else { DUPRAT(*px, pxPow); } destroyrat(yNumerator); destroyrat(yDenominator); destroyrat(pxPow); } //--------------------------------------------------------------------------- // // FUNCTION: powratcomp // // ARGUMENTS: PRAT *px, and PRAT y // // RETURN: none, sets *px to *px to the y. // // EXPLANATION: This uses x^y=e(y*ln(x)), or a more exact calculation where // y is an integer. // Assumes, all checking has been done on validity of numbers. // // //--------------------------------------------------------------------------- void powratcomp(_Inout_ PRAT* px, _In_ PRAT y, uint32_t radix, int32_t precision) { int32_t sign = SIGN(*px); // Take the absolute value (*px)->pp->sign = 1; (*px)->pq->sign = 1; if (zerrat(*px)) { // *px is zero. if (rat_lt(y, rat_zero, precision)) { throw(CALC_E_DOMAIN); } else if (zerrat(y)) { // *px and y are both zero, special case a 1 return. DUPRAT(*px, rat_one); // Ensure sign is positive. sign = 1; } } else { PRAT pxint = nullptr; DUPRAT(pxint, *px); _subrat(&pxint, rat_one, precision); if (rat_gt(pxint, rat_negsmallest, precision) && rat_lt(pxint, rat_smallest, precision) && (sign == 1)) { // *px is one, special case a 1 return. DUPRAT(*px, rat_one); // Ensure sign is positive. sign = 1; } else { // Only do the exp if the number isn't zero or one PRAT podd = nullptr; DUPRAT(podd, y); fracrat(&podd, radix, precision); if (rat_gt(podd, rat_negsmallest, precision) && rat_lt(podd, rat_smallest, precision)) { // If power is an integer let ratpowi32 deal with it. PRAT iy = nullptr; DUPRAT(iy, y); _subrat(&iy, podd, precision); int32_t inty = rattoi32(iy, radix, precision); PRAT plnx = nullptr; DUPRAT(plnx, *px); _lograt(&plnx, precision); mulrat(&plnx, iy, precision); if (rat_gt(plnx, rat_max_exp, precision) || rat_lt(plnx, rat_min_exp, precision)) { // Don't attempt exp of anything large or small.A destroyrat(plnx); destroyrat(iy); destroyrat(pxint); destroyrat(podd); throw(CALC_E_DOMAIN); } destroyrat(plnx); ratpowi32(px, inty, precision); if ((inty & 1) == 0) { sign = 1; } destroyrat(iy); } else { // power is a fraction if (sign == -1) { // Need to throw an error if the exponent has an even denominator. // As a first step, the numerator and denominator must be divided by 2 as many times as // possible, so that 2/6 is allowed. // If the final numerator is still even, the end result should be positive. PRAT pNumerator = nullptr; PRAT pDenominator = nullptr; bool fBadExponent = false; // Get the numbers in arbitrary precision rational number format DUPRAT(pNumerator, rat_zero); // pNumerator->pq is 1 one DUPRAT(pDenominator, rat_zero); // pDenominator->pq is 1 one DUPNUM(pNumerator->pp, y->pp); pNumerator->pp->sign = 1; DUPNUM(pDenominator->pp, y->pq); pDenominator->pp->sign = 1; while (IsEven(pNumerator, radix, precision) && IsEven(pDenominator, radix, precision)) // both Numerator & denominator is even { divrat(&pNumerator, rat_two, precision); divrat(&pDenominator, rat_two, precision); } if (IsEven(pDenominator, radix, precision)) // denominator is still even { fBadExponent = true; } if (IsEven(pNumerator, radix, precision)) // numerator is still even { sign = 1; } destroyrat(pNumerator); destroyrat(pDenominator); if (fBadExponent) { throw(CALC_E_DOMAIN); } } else { // If the exponent is not odd disregard the sign. sign = 1; } _lograt(px, precision); mulrat(px, y, precision); exprat(px, radix, precision); } destroyrat(podd); } destroyrat(pxint); } (*px)->pp->sign *= sign; } ================================================ FILE: src/CalcManager/Ratpack/fact.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File fact.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains fact(orial) and supporting _gamma functions. // //----------------------------------------------------------------------------- #include "ratpak.h" #define NEGATE(x) ((x)->pp->sign *= -1) //----------------------------------------------------------------------------- // // FUNCTION: factrat, _gamma, gamma // // ARGUMENTS: x PRAT representation of number to take the sine of // // RETURN: factorial of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2j // n \ ] A 1 A // A \ -----[ ---- - ---------------] // / (2j)! n+2j (n+2j+1)(2j+1) // /__] // j=0 // // / oo // | n-1 -x __ // This was derived from | x e dx = | // | | (n) { = (n-1)! for +integers} // / 0 // // It can be shown that the above series is within precision if A is chosen // big enough. // A n precision // Based on the relation ne = A 10 A was chosen as // // precision // A = ln(Base /n)+1 // A += n*ln(A) This is close enough for precision > base and n < 1.5 // // //----------------------------------------------------------------------------- void _gamma(PRAT* pn, uint32_t radix, int32_t precision) { PRAT factorial = nullptr; PNUMBER count = nullptr; PRAT tmp = nullptr; PRAT one_pt_five = nullptr; PRAT a = nullptr; PRAT a2 = nullptr; PRAT term = nullptr; PRAT sum = nullptr; PRAT err = nullptr; PRAT mpy = nullptr; // Set up constants and initial conditions PRAT ratprec = i32torat(precision); // Find the best 'A' for convergence to the required precision. a = i32torat(radix); _lograt(&a, precision); mulrat(&a, ratprec, precision); // Really is -ln(n)+1, but -ln(n) will be < 1 // if we scale n between 0.5 and 1.5 _addrat(&a, rat_two, precision); DUPRAT(tmp, a); _lograt(&tmp, precision); mulrat(&tmp, *pn, precision); _addrat(&a, tmp, precision); _addrat(&a, rat_one, precision); // Calculate the necessary bump in precision and up the precision. // The following code is equivalent to // precision += ln(exp(a)*pow(a,n+1.5))-ln(radix)); DUPRAT(tmp, *pn); one_pt_five = i32torat(3L); divrat(&one_pt_five, rat_two, precision); _addrat(&tmp, one_pt_five, precision); DUPRAT(term, a); powratcomp(&term, tmp, radix, precision); DUPRAT(tmp, a); exprat(&tmp, radix, precision); mulrat(&term, tmp, precision); _lograt(&term, precision); const auto ratRadix = i32torat(radix); DUPRAT(tmp, ratRadix); _lograt(&tmp, precision); _subrat(&term, tmp, precision); precision += rattoi32(term, radix, precision); // Set up initial terms for series, refer to series in above comment block. DUPRAT(factorial, rat_one); // Start factorial out with one count = i32tonum(0L, BASEX); DUPRAT(mpy, a); powratcomp(&mpy, *pn, radix, precision); // a2=a^2 DUPRAT(a2, a); mulrat(&a2, a, precision); // sum=(1/n)-(a/(n+1)) DUPRAT(sum, rat_one); divrat(&sum, *pn, precision); DUPRAT(tmp, *pn); _addrat(&tmp, rat_one, precision); DUPRAT(term, a); divrat(&term, tmp, precision); _subrat(&sum, term, precision); DUPRAT(err, ratRadix); NEGATE(ratprec); powratcomp(&err, ratprec, radix, precision); divrat(&err, ratRadix, precision); // Just get something not tiny in term DUPRAT(term, rat_two); // Loop until precision is reached, or asked to halt. while (!zerrat(term) && rat_gt(term, err, precision)) { _addrat(pn, rat_two, precision); // WARNING: mixing numbers and rationals here. // for speed and efficiency. INC(count); mulnumx(&(factorial->pp), count); INC(count) mulnumx(&(factorial->pp), count); divrat(&factorial, a2, precision); DUPRAT(tmp, *pn); _addrat(&tmp, rat_one, precision); destroyrat(term); createrat(term); DUPNUM(term->pp, count); DUPNUM(term->pq, num_one); _addrat(&term, rat_one, precision); mulrat(&term, tmp, precision); DUPRAT(tmp, a); divrat(&tmp, term, precision); DUPRAT(term, rat_one); divrat(&term, *pn, precision); _subrat(&term, tmp, precision); divrat(&term, factorial, precision); _addrat(&sum, term, precision); ABSRAT(term); } // Multiply by factor. mulrat(&sum, mpy, precision); // And cleanup destroyrat(ratprec); destroyrat(err); destroyrat(term); destroyrat(a); destroyrat(a2); destroyrat(tmp); destroyrat(one_pt_five); destroynum(count); destroyrat(factorial); destroyrat(*pn); DUPRAT(*pn, sum); destroyrat(sum); } void factrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT fact = nullptr; PRAT frac = nullptr; PRAT neg_rat_one = nullptr; if (rat_gt(*px, rat_max_fact, precision) || rat_lt(*px, rat_min_fact, precision)) { // Don't attempt factorial of anything too large or small. throw CALC_E_OVERFLOW; } DUPRAT(fact, rat_one); DUPRAT(neg_rat_one, rat_one); neg_rat_one->pp->sign *= -1; DUPRAT(frac, *px); fracrat(&frac, radix, precision); // Check for negative integers and throw an error. if ((zerrat(frac) || (LOGRATRADIX(frac) <= -precision)) && (SIGN(*px) == -1)) { throw CALC_E_DOMAIN; } while (rat_gt(*px, rat_zero, precision) && (LOGRATRADIX(*px) > -precision)) { mulrat(&fact, *px, precision); _subrat(px, rat_one, precision); } // Added to make numbers 'close enough' to integers use integer factorial. if (LOGRATRADIX(*px) <= -precision) { DUPRAT((*px), rat_zero); intrat(&fact, radix, precision); } while (rat_lt(*px, neg_rat_one, precision)) { _addrat(px, rat_one, precision); divrat(&fact, *px, precision); } if (rat_neq(*px, rat_zero, precision)) { _addrat(px, rat_one, precision); _gamma(px, radix, precision); mulrat(px, fact, precision); } else { DUPRAT(*px, fact); } destroyrat(fact); destroyrat(frac); destroyrat(neg_rat_one); } ================================================ FILE: src/CalcManager/Ratpack/itrans.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File itrans.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains inverse sin, cos, tan functions for rationals // // Special Information // //----------------------------------------------------------------------------- #include "ratpak.h" void ascalerat(_Inout_ PRAT* pa, AngleType angletype, int32_t precision) { switch (angletype) { case AngleType::Radians: break; case AngleType::Degrees: divrat(pa, two_pi, precision); mulrat(pa, rat_360, precision); break; case AngleType::Gradians: divrat(pa, two_pi, precision); mulrat(pa, rat_400, precision); break; } } //----------------------------------------------------------------------------- // // FUNCTION: asinrat, _asinrat // // ARGUMENTS: x PRAT representation of number to take the inverse // sine of // RETURN: asin of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2 2 // \ ] (2j+1) X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j+2)*(2j+3) // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // // If abs(x) > 0.85 then an alternate form is used // pi/2-sgn(x)*asin(sqrt(1-x^2) // // //----------------------------------------------------------------------------- void _asinrat(PRAT* px, int32_t precision) { CREATETAYLOR(); DUPRAT(pret, *px); DUPRAT(thisterm, *px); DUPNUM(n2, num_one); do { NEXTTERM(xx, MULNUM(n2) MULNUM(n2) INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void asinanglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { asinrat(pa, radix, precision); ascalerat(pa, angletype, precision); } void asinrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT pret = nullptr; PRAT phack = nullptr; int32_t sgn = SIGN(*px); (*px)->pp->sign = 1; (*px)->pq->sign = 1; // Avoid the really bad part of the asin curve near +/-1. DUPRAT(phack, *px); _subrat(&phack, rat_one, precision); // Since *px might be epsilon near zero we must set it to zero. if (rat_le(phack, rat_smallest, precision) && rat_ge(phack, rat_negsmallest, precision)) { destroyrat(phack); DUPRAT(*px, pi_over_two); } else { destroyrat(phack); if (rat_gt(*px, pt_eight_five, precision)) { if (rat_gt(*px, rat_one, precision)) { _subrat(px, rat_one, precision); if (rat_gt(*px, rat_smallest, precision)) { throw(CALC_E_DOMAIN); } else { DUPRAT(*px, rat_one); } } DUPRAT(pret, *px); mulrat(px, pret, precision); (*px)->pp->sign *= -1; _addrat(px, rat_one, precision); rootrat(px, rat_two, radix, precision); _asinrat(px, precision); (*px)->pp->sign *= -1; _addrat(px, pi_over_two, precision); destroyrat(pret); } else { _asinrat(px, precision); } } (*px)->pp->sign = sgn; (*px)->pq->sign = 1; } //----------------------------------------------------------------------------- // // FUNCTION: acosrat, _acosrat // // ARGUMENTS: x PRAT representation of number to take the inverse // cosine of // RETURN: acos of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2 2 // \ ] (2j+1) X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j+2)*(2j+3) // /__] // j=0 // // thisterm = 1 ; and stop when thisterm < precision used. // 0 n // // In this case pi/2-asin(x) is used. At least for now _acosrat isn't // called. // //----------------------------------------------------------------------------- void acosanglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { acosrat(pa, radix, precision); ascalerat(pa, angletype, precision); } void _acosrat(PRAT* px, int32_t precision) { CREATETAYLOR(); createrat(thisterm); thisterm->pp = i32tonum(1L, BASEX); thisterm->pq = i32tonum(1L, BASEX); DUPNUM(n2, num_one); do { NEXTTERM(xx, MULNUM(n2) MULNUM(n2) INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void acosrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { int32_t sgn = SIGN(*px); (*px)->pp->sign = 1; (*px)->pq->sign = 1; if (rat_equ(*px, rat_one, precision)) { if (sgn == -1) { DUPRAT(*px, pi); } else { DUPRAT(*px, rat_zero); } } else { (*px)->pp->sign = sgn; asinrat(px, radix, precision); (*px)->pp->sign *= -1; _addrat(px, pi_over_two, precision); } } //----------------------------------------------------------------------------- // // FUNCTION: atanrat, _atanrat // // ARGUMENTS: x PRAT representation of number to take the inverse // hyperbolic tangent of // // RETURN: atanh of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2 // \ ] (2j)*X (-1^j) // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j+2) // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // // If abs(x) > 0.85 then an alternate form is used // asin(x/sqrt(q+x^2)) // // And if abs(x) > 2.0 then this form is used. // // pi/2 - atan(1/x) // //----------------------------------------------------------------------------- void atananglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { atanrat(pa, radix, precision); ascalerat(pa, angletype, precision); } void _atanrat(PRAT* px, int32_t precision) { CREATETAYLOR(); DUPRAT(pret, *px); DUPRAT(thisterm, *px); DUPNUM(n2, num_one); xx->pp->sign *= -1; do { NEXTTERM(xx, MULNUM(n2) INC(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void atanrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT tmpx = nullptr; int32_t sgn = SIGN(*px); (*px)->pp->sign = 1; (*px)->pq->sign = 1; if (rat_gt((*px), pt_eight_five, precision)) { if (rat_gt((*px), rat_two, precision)) { (*px)->pp->sign = sgn; (*px)->pq->sign = 1; DUPRAT(tmpx, rat_one); divrat(&tmpx, (*px), precision); _atanrat(&tmpx, precision); tmpx->pp->sign = sgn; tmpx->pq->sign = 1; DUPRAT(*px, pi_over_two); _subrat(px, tmpx, precision); destroyrat(tmpx); } else { (*px)->pp->sign = sgn; DUPRAT(tmpx, *px); mulrat(&tmpx, *px, precision); _addrat(&tmpx, rat_one, precision); rootrat(&tmpx, rat_two, radix, precision); divrat(px, tmpx, precision); destroyrat(tmpx); asinrat(px, radix, precision); (*px)->pp->sign = sgn; (*px)->pq->sign = 1; } } else { (*px)->pp->sign = sgn; (*px)->pq->sign = 1; _atanrat(px, precision); } if (rat_gt(*px, pi_over_two, precision)) { _subrat(px, pi, precision); } } ================================================ FILE: src/CalcManager/Ratpack/itransh.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File itransh.c // Copyright (C) 1995-97 Microsoft // Date 01-16-95 // // // Description // // Contains inverse hyperbolic sin, cos, and tan functions. // // Special Information // // //----------------------------------------------------------------------------- #include "ratpak.h" //----------------------------------------------------------------------------- // // FUNCTION: asinhrat // // ARGUMENTS: x PRAT representation of number to take the inverse // hyperbolic sine of // RETURN: asinh of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2 2 // \ ] -(2j+1) X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j+2)*(2j+3) // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // // For abs(x) < .85, and // // asinh(x) = log(x+sqrt(x^2+1)) // // For abs(x) >= .85 // //----------------------------------------------------------------------------- void asinhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT neg_pt_eight_five = nullptr; DUPRAT(neg_pt_eight_five, pt_eight_five); neg_pt_eight_five->pp->sign *= -1; if (rat_gt(*px, pt_eight_five, precision) || rat_lt(*px, neg_pt_eight_five, precision)) { PRAT ptmp = nullptr; DUPRAT(ptmp, (*px)); mulrat(&ptmp, *px, precision); _addrat(&ptmp, rat_one, precision); rootrat(&ptmp, rat_two, radix, precision); _addrat(px, ptmp, precision); _lograt(px, precision); destroyrat(ptmp); } else { CREATETAYLOR(); xx->pp->sign *= -1; DUPRAT(pret, (*px)); DUPRAT(thisterm, (*px)); DUPNUM(n2, num_one); do { NEXTTERM(xx, MULNUM(n2) MULNUM(n2) INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } destroyrat(neg_pt_eight_five); } //----------------------------------------------------------------------------- // // FUNCTION: acoshrat // // ARGUMENTS: x PRAT representation of number to take the inverse // hyperbolic cose of // RETURN: acosh of x in PRAT form. // // EXPLANATION: This uses // // acosh(x)=ln(x+sqrt(x^2-1)) // // For x >= 1 // //----------------------------------------------------------------------------- void acoshrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { if (rat_lt(*px, rat_one, precision)) { throw CALC_E_DOMAIN; } else { PRAT ptmp = nullptr; DUPRAT(ptmp, (*px)); mulrat(&ptmp, *px, precision); _subrat(&ptmp, rat_one, precision); rootrat(&ptmp, rat_two, radix, precision); _addrat(px, ptmp, precision); _lograt(px, precision); destroyrat(ptmp); } } //----------------------------------------------------------------------------- // // FUNCTION: atanhrat // // ARGUMENTS: x PRAT representation of number to take the inverse // hyperbolic tangent of // // RETURN: atanh of x in PRAT form. // // EXPLANATION: This uses // // 1 x+1 // atanh(x) = -*ln(----) // 2 x-1 // //----------------------------------------------------------------------------- void atanhrat(_Inout_ PRAT* px, int32_t precision) { PRAT ptmp = nullptr; DUPRAT(ptmp, (*px)); _subrat(&ptmp, rat_one, precision); _addrat(px, rat_one, precision); divrat(px, ptmp, precision); (*px)->pp->sign *= -1; _lograt(px, precision); divrat(px, rat_two, precision); destroyrat(ptmp); } ================================================ FILE: src/CalcManager/Ratpack/logic.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //--------------------------------------------------------------------------- // Package Title ratpak // File num.c // Copyright (C) 1995-99 Microsoft // Date 01-16-95 // // // Description // // Contains routines for and, or, xor, not and other support // //--------------------------------------------------------------------------- #include "ratpak.h" using namespace std; void lshrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision) { PRAT pwr = nullptr; intrat(pa, radix, precision); if (!zernum((*pa)->pp)) { // If input is zero we're done. if (rat_gt(b, rat_max_exp, precision)) { // Don't attempt lsh of anything big throw(CALC_E_DOMAIN); } const int32_t intb = rattoi32(b, radix, precision); DUPRAT(pwr, rat_two); ratpowi32(&pwr, intb, precision); mulrat(pa, pwr, precision); destroyrat(pwr); } } void rshrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision) { PRAT pwr = nullptr; intrat(pa, radix, precision); if (!zernum((*pa)->pp)) { // If input is zero we're done. if (rat_lt(b, rat_min_exp, precision)) { // Don't attempt rsh of anything big and negative. throw(CALC_E_DOMAIN); } const int32_t intb = rattoi32(b, radix, precision); DUPRAT(pwr, rat_two); ratpowi32(&pwr, intb, precision); divrat(pa, pwr, precision); destroyrat(pwr); } } void boolrat(PRAT* pa, PRAT b, int func, uint32_t radix, int32_t precision); void boolnum(PNUMBER* pa, PNUMBER b, int func); enum { FUNC_AND, FUNC_OR, FUNC_XOR } BOOL_FUNCS; void andrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision) { boolrat(pa, b, FUNC_AND, radix, precision); } void orrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision) { boolrat(pa, b, FUNC_OR, radix, precision); } void xorrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision) { boolrat(pa, b, FUNC_XOR, radix, precision); } //--------------------------------------------------------------------------- // // FUNCTION: boolrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes pointer. // // DESCRIPTION: Does the rational equivalent of *pa op= b; // //--------------------------------------------------------------------------- void boolrat(PRAT* pa, PRAT b, int func, uint32_t radix, int32_t precision) { PRAT tmp = nullptr; intrat(pa, radix, precision); DUPRAT(tmp, b); intrat(&tmp, radix, precision); boolnum(&((*pa)->pp), tmp->pp, func); destroyrat(tmp); } //--------------------------------------------------------------------------- // // FUNCTION: boolnum // // ARGUMENTS: pointer to a number a second number // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa &= b. // radix doesn't matter for logicals. // WARNING: Assumes numbers are unsigned. // //--------------------------------------------------------------------------- void boolnum(PNUMBER* pa, PNUMBER b, int func) { PNUMBER c = nullptr; PNUMBER a = nullptr; MANTTYPE* pcha; MANTTYPE* pchb; MANTTYPE* pchc; int32_t cdigits; int32_t mexp; MANTTYPE da; MANTTYPE db; a = *pa; cdigits = max(a->cdigit + a->exp, b->cdigit + b->exp) - min(a->exp, b->exp); createnum(c, cdigits); c->exp = min(a->exp, b->exp); mexp = c->exp; c->cdigit = cdigits; pcha = a->mant; pchb = b->mant; pchc = c->mant; for (; cdigits > 0; cdigits--, mexp++) { da = (((mexp >= a->exp) && (cdigits + a->exp - c->exp > (c->cdigit - a->cdigit))) ? *pcha++ : 0); db = (((mexp >= b->exp) && (cdigits + b->exp - c->exp > (c->cdigit - b->cdigit))) ? *pchb++ : 0); switch (func) { case FUNC_AND: *pchc++ = da & db; break; case FUNC_OR: *pchc++ = da | db; break; case FUNC_XOR: *pchc++ = da ^ db; break; } } c->sign = a->sign; while (c->cdigit > 1 && *(--pchc) == 0) { c->cdigit--; } destroynum(*pa); *pa = c; } //----------------------------------------------------------------------------- // // FUNCTION: remrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes pointer. // // DESCRIPTION: Calculate the remainder of *pa / b, // equivalent of 'pa % b' in C/C++ and produces a result // that is either zero or has the same sign as the dividend. // //----------------------------------------------------------------------------- void remrat(_Inout_ PRAT* pa, _In_ PRAT b) { if (zerrat(b)) { throw CALC_E_INDEFINITE; } PRAT tmp = nullptr; DUPRAT(tmp, b); mulnumx(&((*pa)->pp), tmp->pq); mulnumx(&(tmp->pp), (*pa)->pq); remnum(&((*pa)->pp), tmp->pp, BASEX); mulnumx(&((*pa)->pq), tmp->pq); // Get *pa back in the integer over integer form. RENORMALIZE(*pa); destroyrat(tmp); } //----------------------------------------------------------------------------- // // FUNCTION: modrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes pointer. // // DESCRIPTION: Calculate the remainder of *pa / b, with the sign of the result // either zero or has the same sign as the divisor. // NOTE: When *pa or b are negative, the result won't be the same as // the C/C++ operator %, use remrat if it's the behavior you expect. // //----------------------------------------------------------------------------- void modrat(_Inout_ PRAT* pa, _In_ PRAT b) { // contrary to remrat(X, 0) returning 0, modrat(X, 0) must return X if (zerrat(b)) { return; } PRAT tmp = nullptr; DUPRAT(tmp, b); auto needAdjust = (SIGN(*pa) == -1 ? (SIGN(b) == 1) : (SIGN(b) == -1)); mulnumx(&((*pa)->pp), tmp->pq); mulnumx(&(tmp->pp), (*pa)->pq); remnum(&((*pa)->pp), tmp->pp, BASEX); mulnumx(&((*pa)->pq), tmp->pq); if (needAdjust && !zerrat(*pa)) { _addrat(pa, b, BASEX); } // Get *pa back in the integer over integer form. RENORMALIZE(*pa); destroyrat(tmp); } ================================================ FILE: src/CalcManager/Ratpack/num.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File num.c // Copyright (C) 1995-97 Microsoft // Date 01-16-95 // // // Description // // Contains number routines for add, mul, div, rem and other support // and longs. // // Special Information // // //----------------------------------------------------------------------------- #include #include // for memmove #include "ratpak.h" using namespace std; //---------------------------------------------------------------------------- // // FUNCTION: addnum // // ARGUMENTS: pointer to a number a second number, and the // radix. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa += b. // Assumes radix is the base of both numbers. // // ALGORITHM: Adds each digit from least significant to most // significant. // // //---------------------------------------------------------------------------- void _addnum(PNUMBER* pa, PNUMBER b, uint32_t radix); void addnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix) { if (b->cdigit > 1 || b->mant[0] != 0) { // If b is zero we are done. if ((*pa)->cdigit > 1 || (*pa)->mant[0] != 0) { // pa and b are both nonzero. _addnum(pa, b, radix); } else { // if pa is zero and b isn't just copy b. DUPNUM(*pa, b); } } } void _addnum(PNUMBER* pa, PNUMBER b, uint32_t radix) { PNUMBER c = nullptr; // c will contain the result. PNUMBER a = nullptr; // a is the dereferenced number pointer from *pa MANTTYPE* pcha; // pcha is a pointer to the mantissa of a. MANTTYPE* pchb; // pchb is a pointer to the mantissa of b. MANTTYPE* pchc; // pchc is a pointer to the mantissa of c. int32_t cdigits; // cdigits is the max count of the digits results used as a counter. int32_t mexp; // mexp is the exponent of the result. MANTTYPE da; // da is a single 'digit' after possible padding. MANTTYPE db; // db is a single 'digit' after possible padding. MANTTYPE cy = 0; // cy is the value of a carry after adding two 'digits' int32_t fcompla = 0; // fcompla is a flag to signal a is negative. int32_t fcomplb = 0; // fcomplb is a flag to signal b is negative. a = *pa; // Calculate the overlap of the numbers after alignment, this includes // necessary padding 0's cdigits = max(a->cdigit + a->exp, b->cdigit + b->exp) - min(a->exp, b->exp); createnum(c, cdigits + 1); c->exp = min(a->exp, b->exp); mexp = c->exp; c->cdigit = cdigits; pcha = a->mant; pchb = b->mant; pchc = c->mant; // Figure out the sign of the numbers if (a->sign != b->sign) { cy = 1; fcompla = (a->sign == -1); fcomplb = (b->sign == -1); } // Loop over all the digits, real and 0 padded. Here we know a and b are // aligned for (; cdigits > 0; cdigits--, mexp++) { // Get digit from a, taking padding into account. da = (((mexp >= a->exp) && (cdigits + a->exp - c->exp > (c->cdigit - a->cdigit))) ? *pcha++ : 0); // Get digit from b, taking padding into account. db = (((mexp >= b->exp) && (cdigits + b->exp - c->exp > (c->cdigit - b->cdigit))) ? *pchb++ : 0); // Handle complementing for a and b digit. Might be a better way, but // haven't found it yet. if (fcompla) { da = (MANTTYPE)(radix)-1 - da; } if (fcomplb) { db = (MANTTYPE)(radix)-1 - db; } // Update carry as necessary cy = da + db + cy; *pchc++ = (MANTTYPE)(cy % (MANTTYPE)radix); cy /= (MANTTYPE)radix; } // Handle carry from last sum as extra digit if (cy && !(fcompla || fcomplb)) { *pchc++ = cy; c->cdigit++; } // Compute sign of result if (!(fcompla || fcomplb)) { c->sign = a->sign; } else { if (cy) { c->sign = 1; } else { // In this particular case an overflow or underflow has occurred // and all the digits need to be complemented, at one time an // attempt to handle this above was made, it turned out to be much // slower on average. c->sign = -1; cy = 1; for ((cdigits = c->cdigit), (pchc = c->mant); cdigits > 0; cdigits--) { cy = (MANTTYPE)radix - (MANTTYPE)1 - *pchc + cy; *pchc++ = (MANTTYPE)(cy % (MANTTYPE)radix); cy /= (MANTTYPE)radix; } } } // Remove leading zeros, remember digits are in order of // increasing significance. i.e. 100 would be 0,0,1 while (c->cdigit > 1 && *(--pchc) == 0) { c->cdigit--; } destroynum(*pa); *pa = c; } //---------------------------------------------------------------------------- // // FUNCTION: mulnum // // ARGUMENTS: pointer to a number a second number, and the // radix. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa *= b. // Assumes radix is the radix of both numbers. This algorithm is the // same one you learned in grade school. // //---------------------------------------------------------------------------- void _mulnum(PNUMBER* pa, PNUMBER b, uint32_t radix); void mulnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix) { if (b->cdigit > 1 || b->mant[0] != 1 || b->exp != 0) { // If b is one we don't multiply exactly. if ((*pa)->cdigit > 1 || (*pa)->mant[0] != 1 || (*pa)->exp != 0) { // pa and b are both non-one. _mulnum(pa, b, radix); } else { // if pa is one and b isn't just copy b, and adjust the sign. int32_t sign = (*pa)->sign; DUPNUM(*pa, b); (*pa)->sign *= sign; } } else { // But we do have to set the sign. (*pa)->sign *= b->sign; } } void _mulnum(PNUMBER* pa, PNUMBER b, uint32_t radix) { PNUMBER c = nullptr; // c will contain the result. PNUMBER a = nullptr; // a is the dereferenced number pointer from *pa MANTTYPE* pcha; // pcha is a pointer to the mantissa of a. MANTTYPE* pchb; // pchb is a pointer to the mantissa of b. MANTTYPE* pchc; // pchc is a pointer to the mantissa of c. MANTTYPE* pchcoffset; // pchcoffset, is the anchor location of the next // single digit multiply partial result. int32_t iadigit = 0; // Index of digit being used in the first number. int32_t ibdigit = 0; // Index of digit being used in the second number. MANTTYPE da = 0; // da is the digit from the fist number. TWO_MANTTYPE cy = 0; // cy is the carry resulting from the addition of // a multiplied row into the result. TWO_MANTTYPE mcy = 0; // mcy is the resultant from a single // multiply, AND the carry of that multiply. int32_t icdigit = 0; // Index of digit being calculated in final result. a = *pa; ibdigit = a->cdigit + b->cdigit - 1; createnum(c, ibdigit + 1); c->cdigit = ibdigit; c->sign = a->sign * b->sign; c->exp = a->exp + b->exp; pcha = a->mant; pchcoffset = c->mant; for (iadigit = a->cdigit; iadigit > 0; iadigit--) { da = *pcha++; pchb = b->mant; // Shift pchc, and pchcoffset, one for each digit pchc = pchcoffset++; for (ibdigit = b->cdigit; ibdigit > 0; ibdigit--) { cy = 0; mcy = (TWO_MANTTYPE)da * *pchb; if (mcy) { icdigit = 0; if (ibdigit == 1 && iadigit == 1) { c->cdigit++; } } // If result is nonzero, or while result of carry is nonzero... while (mcy || cy) { // update carry from addition(s) and multiply. cy += (TWO_MANTTYPE)pchc[icdigit] + (mcy % (TWO_MANTTYPE)radix); // update result digit from pchc[icdigit++] = (MANTTYPE)(cy % (TWO_MANTTYPE)radix); // update carries from mcy /= (TWO_MANTTYPE)radix; cy /= (TWO_MANTTYPE)radix; } pchb++; pchc++; } } // prevent different kinds of zeros, by stripping leading duplicate zeros. // digits are in order of increasing significance. while (c->cdigit > 1 && c->mant[c->cdigit - 1] == 0) { c->cdigit--; } destroynum(*pa); *pa = c; } //---------------------------------------------------------------------------- // // FUNCTION: remnum // // ARGUMENTS: pointer to a number a second number, and the // radix. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa %= b. // Repeatedly subtracts off powers of 2 of b until *pa < b. // // //---------------------------------------------------------------------------- void remnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix) { PNUMBER tmp = nullptr; // tmp is the working remainder. PNUMBER lasttmp = nullptr; // lasttmp is the last remainder which worked. // Once *pa is less than b, *pa is the remainder. while (!lessnum(*pa, b)) { DUPNUM(tmp, b); if (lessnum(tmp, *pa)) { // Start off close to the right answer for subtraction. tmp->exp = (*pa)->cdigit + (*pa)->exp - tmp->cdigit; if (MSD(*pa) <= MSD(tmp)) { // Don't take the chance that the numbers are equal. tmp->exp--; } } destroynum(lasttmp); lasttmp = i32tonum(0, radix); while (lessnum(tmp, *pa)) { DUPNUM(lasttmp, tmp); addnum(&tmp, tmp, radix); } if (lessnum(*pa, tmp)) { // too far, back up... destroynum(tmp); tmp = lasttmp; lasttmp = nullptr; } // Subtract the working remainder from the remainder holder. tmp->sign = -1 * (*pa)->sign; addnum(pa, tmp, radix); destroynum(tmp); destroynum(lasttmp); } } //--------------------------------------------------------------------------- // // FUNCTION: divnum // // ARGUMENTS: pointer to a number a second number, and the // radix. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the number equivalent of *pa /= b. // Assumes radix is the radix of both numbers. // //--------------------------------------------------------------------------- void _divnum(PNUMBER* pa, PNUMBER b, uint32_t radix, int32_t precision); void divnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix, int32_t precision) { if (b->cdigit > 1 || b->mant[0] != 1 || b->exp != 0) { // b is not one _divnum(pa, b, radix, precision); } else { // But we do have to set the sign. (*pa)->sign *= b->sign; } } void _divnum(PNUMBER* pa, PNUMBER b, uint32_t radix, int32_t precision) { PNUMBER a = *pa; int32_t thismax = precision + 2; if (thismax < a->cdigit) { thismax = a->cdigit; } if (thismax < b->cdigit) { thismax = b->cdigit; } PNUMBER c = nullptr; createnum(c, thismax + 1); c->exp = (a->cdigit + a->exp) - (b->cdigit + b->exp) + 1; c->sign = a->sign * b->sign; MANTTYPE* ptrc = c->mant + thismax; PNUMBER rem = nullptr; PNUMBER tmp = nullptr; DUPNUM(rem, a); DUPNUM(tmp, b); tmp->sign = a->sign; rem->exp = b->cdigit + b->exp - rem->cdigit; // Build a table of multiplications of the divisor, this is quicker for // more than radix 'digits' list numberList{ i32tonum(0L, radix) }; for (uint32_t i = 1; i < radix; i++) { PNUMBER newValue = nullptr; DUPNUM(newValue, numberList.front()); addnum(&newValue, tmp, radix); numberList.emplace_front(newValue); } destroynum(tmp); int32_t digit; int32_t cdigits = 0; while (cdigits++ < thismax && !zernum(rem)) { digit = radix - 1; PNUMBER multiple = nullptr; for (const auto& num : numberList) { if (!lessnum(rem, num) || !--digit) { multiple = num; break; } } if (digit) { multiple->sign *= -1; addnum(&rem, multiple, radix); multiple->sign *= -1; } rem->exp++; *ptrc-- = (MANTTYPE)digit; } cdigits--; if (c->mant != ++ptrc) { memmove(c->mant, ptrc, (int)(cdigits * sizeof(MANTTYPE))); } // Cleanup table structure for (auto& num : numberList) { destroynum(num); } if (!cdigits) { c->cdigit = 1; c->exp = 0; } else { c->cdigit = cdigits; c->exp -= cdigits; while (c->cdigit > 1 && c->mant[c->cdigit - 1] == 0) { c->cdigit--; } } destroynum(rem); destroynum(*pa); *pa = c; } //--------------------------------------------------------------------------- // // FUNCTION: equnum // // ARGUMENTS: two numbers. // // RETURN: Boolean // // DESCRIPTION: Does the number equivalent of ( a == b ) // Only assumes that a and b are the same radix. // //--------------------------------------------------------------------------- bool equnum(_In_ PNUMBER a, _In_ PNUMBER b) { int32_t diff; MANTTYPE* pa; MANTTYPE* pb; int32_t cdigits; int32_t ccdigits; MANTTYPE da; MANTTYPE db; diff = (a->cdigit + a->exp) - (b->cdigit + b->exp); if (diff < 0) { // If the exponents are different, these are different numbers. return false; } else { if (diff > 0) { // If the exponents are different, these are different numbers. return false; } else { // OK the exponents match. pa = a->mant; pb = b->mant; pa += a->cdigit - 1; pb += b->cdigit - 1; cdigits = max(a->cdigit, b->cdigit); ccdigits = cdigits; // Loop over all digits until we run out of digits or there is a // difference in the digits. for (; cdigits > 0; cdigits--) { da = ((cdigits > (ccdigits - a->cdigit)) ? *pa-- : 0); db = ((cdigits > (ccdigits - b->cdigit)) ? *pb-- : 0); if (da != db) { return false; } } // In this case, they are equal. return true; } } } //--------------------------------------------------------------------------- // // FUNCTION: lessnum // // ARGUMENTS: two numbers. // // RETURN: Boolean // // DESCRIPTION: Does the number equivalent of ( abs(a) < abs(b) ) // Only assumes that a and b are the same radix, WARNING THIS IS AN. // UNSIGNED COMPARE! // //--------------------------------------------------------------------------- bool lessnum(_In_ PNUMBER a, _In_ PNUMBER b) { int32_t diff = (a->cdigit + a->exp) - (b->cdigit + b->exp); if (diff < 0) { // The exponent of a is less than b return true; } if (diff > 0) { return false; } MANTTYPE* pa = a->mant; MANTTYPE* pb = b->mant; pa += a->cdigit - 1; pb += b->cdigit - 1; int32_t cdigits = max(a->cdigit, b->cdigit); int32_t ccdigits = cdigits; for (; cdigits > 0; cdigits--) { MANTTYPE da = ((cdigits > (ccdigits - a->cdigit)) ? *pa-- : 0); MANTTYPE db = ((cdigits > (ccdigits - b->cdigit)) ? *pb-- : 0); diff = da - db; if (diff) { return (diff < 0); } } // In this case, they are equal. return false; } //---------------------------------------------------------------------------- // // FUNCTION: zernum // // ARGUMENTS: number // // RETURN: Boolean // // DESCRIPTION: Does the number equivalent of ( !a ) // //---------------------------------------------------------------------------- bool zernum(_In_ PNUMBER a) { int32_t length; MANTTYPE* pcha; length = a->cdigit; pcha = a->mant; // loop over all the digits until you find a nonzero or until you run // out of digits while (length-- > 0) { if (*pcha++) { // One of the digits isn't zero, therefore the number isn't zero return false; } } // All of the digits are zero, therefore the number is zero return true; } ================================================ FILE: src/CalcManager/Ratpack/rat.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File rat.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains mul, div, add, and other support functions for rationals. // // // //----------------------------------------------------------------------------- #include "ratpak.h" using namespace std; //----------------------------------------------------------------------------- // // FUNCTION: gcdrat // // ARGUMENTS: pointer to a rational. // // // RETURN: None, changes first pointer. // // DESCRIPTION: Divides p and q in rational by the G.C.D. // of both. It was hoped this would speed up some // calculations, and until the above trimming was done it // did, but after trimming gcdratting, only slows things // down. // //----------------------------------------------------------------------------- void gcdrat(_Inout_ PRAT* pa, int32_t precision) { PNUMBER pgcd = nullptr; PRAT a = nullptr; a = *pa; pgcd = gcd(a->pp, a->pq); if (!zernum(pgcd)) { divnumx(&(a->pp), pgcd, precision); divnumx(&(a->pq), pgcd, precision); } destroynum(pgcd); *pa = a; RENORMALIZE(*pa); } //----------------------------------------------------------------------------- // // FUNCTION: fracrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes pointer. // // DESCRIPTION: Does the rational equivalent of frac(*pa); // //----------------------------------------------------------------------------- void fracrat(_Inout_ PRAT* pa, uint32_t radix, int32_t precision) { // Only do the flatrat operation if number is nonzero. // and only if the bottom part is not one. if (!zernum((*pa)->pp) && !equnum((*pa)->pq, num_one)) { flatrat(*pa, radix, precision); } remnum(&((*pa)->pp), (*pa)->pq, BASEX); // Get *pa back in the integer over integer form. RENORMALIZE(*pa); } //----------------------------------------------------------------------------- // // FUNCTION: mulrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the rational equivalent of *pa *= b. // Assumes radix is the radix of both numbers. // //----------------------------------------------------------------------------- void mulrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { // Only do the multiply if it isn't zero. if (!zernum((*pa)->pp)) { mulnumx(&((*pa)->pp), b->pp); mulnumx(&((*pa)->pq), b->pq); trimit(pa, precision); } else { // If it is zero, blast a one in the denominator. DUPNUM(((*pa)->pq), num_one); } #ifdef MULGCD gcdrat(pa); #endif } //----------------------------------------------------------------------------- // // FUNCTION: divrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the rational equivalent of *pa /= b. // Assumes radix is the radix of both numbers. // //----------------------------------------------------------------------------- void divrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { if (!zernum((*pa)->pp)) { // Only do the divide if the top isn't zero. mulnumx(&((*pa)->pp), b->pq); mulnumx(&((*pa)->pq), b->pp); if (zernum((*pa)->pq)) { // raise an exception if the bottom is 0. throw(CALC_E_DIVIDEBYZERO); } trimit(pa, precision); } else { // Top is zero. if (zerrat(b)) { // If bottom is zero // 0 / 0 is indefinite, raise an exception. throw(CALC_E_INDEFINITE); } else { // 0/x make a unique 0. DUPNUM(((*pa)->pq), num_one); } } #ifdef DIVGCD gcdrat(pa); #endif } //----------------------------------------------------------------------------- // // FUNCTION: subrat, _subrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the rational equivalent of *pa -= b. // Assumes base is internal throughout. // // subrat does snapping to zero after subtraction. All ratpak internal // should use _subrat by default. // //----------------------------------------------------------------------------- void subrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { PRAT a = nullptr; DUPRAT(a, *pa); _subrat(pa, b, precision); _snaprat(pa, a, b, precision); destroyrat(a); } void _subrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { b->pp->sign *= -1; _addrat(pa, b, precision); b->pp->sign *= -1; } //----------------------------------------------------------------------------- // // FUNCTION: addrat, _addrat // // ARGUMENTS: pointer to a rational a second rational. // // RETURN: None, changes first pointer. // // DESCRIPTION: Does the rational equivalent of *pa += b. // Assumes base is internal throughout. // // addrat does snapping to zero after addition. All ratpak internal should // use _addrat by default. // //----------------------------------------------------------------------------- void addrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { PRAT a = nullptr; DUPRAT(a, *pa); _addrat(pa, b, precision); _snaprat(pa, a, b, precision); destroyrat(a); } void _addrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision) { PNUMBER bot = nullptr; if (equnum((*pa)->pq, b->pq)) { // Very special case, q's match., // make sure signs are involved in the calculation // we have to do this since the optimization here is only // working with the top half of the rationals. (*pa)->pp->sign *= (*pa)->pq->sign; (*pa)->pq->sign = 1; b->pp->sign *= b->pq->sign; b->pq->sign = 1; addnum(&((*pa)->pp), b->pp, BASEX); } else { // Usual case q's aren't the same. DUPNUM(bot, (*pa)->pq); mulnumx(&bot, b->pq); mulnumx(&((*pa)->pp), b->pq); mulnumx(&((*pa)->pq), b->pp); addnum(&((*pa)->pp), (*pa)->pq, BASEX); destroynum((*pa)->pq); (*pa)->pq = bot; trimit(pa, precision); // Get rid of negative zeros here. (*pa)->pp->sign *= (*pa)->pq->sign; (*pa)->pq->sign = 1; } #ifdef ADDGCD gcdrat(pa); #endif } //----------------------------------------------------------------------------- // // FUNCTION: rootrat // // PARAMETERS: y prat representation of number to take the root of // n prat representation of the root to take. // // RETURN: bth root of a in rat form. // // EXPLANATION: This is now a stub function to powrat(). // //----------------------------------------------------------------------------- void rootrat(_Inout_ PRAT* py, _In_ PRAT n, uint32_t radix, int32_t precision) { // Initialize 1/n PRAT oneovern = nullptr; DUPRAT(oneovern, rat_one); divrat(&oneovern, n, precision); powrat(py, oneovern, radix, precision); destroyrat(oneovern); } //----------------------------------------------------------------------------- // // FUNCTION: zerrat // // ARGUMENTS: Rational number. // // RETURN: Boolean // // DESCRIPTION: Returns true if input is zero. // False otherwise. // //----------------------------------------------------------------------------- bool zerrat(_In_ PRAT a) { return (zernum(a->pp)); } //----------------------------------------------------------------------------- // // FUNCTION: _snaprat // // ARGUMENTS: r prat to potentially snap to zero // a, b prats for comparison. // b is optional and can be null for unary operations. // // DESCRIPTION: If |pr| is magnitude smaller than |a| or |b| beyond // precision, snap pr to 0. This is to address issues with exposing tiny // residuals to the user in calculations that should yield zero. // // Example: let rat a = sqrt(2.25), rat b = 1.5. r = a - b should be zero. // However, rat a is an approximation of sqrt(2.25) and very close to 1.5, // but not exactly 1.5. The result r is a tiny residual close to zero, but // not zero. _snaprat can be used to check if r is small enough compared to // a or b, and snap it to zero if so. Without this, users may see unexpected // tiny values in results that should be zero. // // log(a) where a is very close to 1 is another example. The result should be // zero. // // trimit also removes digits but it's for a different reason. // // Notice that trigonometric functions sinrat/cosrat have specifically // adjusted for approximation errors. // //----------------------------------------------------------------------------- void _snaprat(_Inout_ PRAT* pr, _In_ PRAT a, _In_opt_ PRAT b, int32_t precision) { PRAT threshold = nullptr; if (!b) { DUPRAT(threshold, a); ABSRAT(threshold); } else { PRAT absA = nullptr; PRAT absB = nullptr; DUPRAT(absA, a); DUPRAT(absB, b); ABSRAT(absA); ABSRAT(absB); if (rat_lt(absA, absB, precision)) { DUPRAT(threshold, absB); } else { DUPRAT(threshold, absA); } destroyrat(absA); destroyrat(absB); } mulrat(&threshold, rat_smallest, precision); PRAT absR = nullptr; DUPRAT(absR, *pr); ABSRAT(absR); // if absResult < threshold => snap to zero if (rat_lt(absR, threshold, precision)) { DUPRAT(*pr, rat_zero); } destroyrat(absR); destroyrat(threshold); } ================================================ FILE: src/CalcManager/Ratpack/ratconst.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_num_one = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_num_two = { 1, 1, 0, { 2, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_num_five = { 1, 1, 0, { 5, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_num_six = { 1, 1, 0, { 6, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_num_ten = { 1, 1, 0, { 10, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_smallest = { 1, 1, 0, { 1, } }; inline const NUMBER init_q_rat_smallest = { 1, 4, 0, { 0, 190439170, 901055854, 10097, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_negsmallest = { -1, 1, 0, { 1, } }; inline const NUMBER init_q_rat_negsmallest = { 1, 4, 0, { 0, 190439170, 901055854, 10097, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_pt_eight_five = { 1, 1, 0, { 85, } }; inline const NUMBER init_q_pt_eight_five = { 1, 1, 0, { 100, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_six = { 1, 1, 0, { 6, } }; inline const NUMBER init_q_rat_six = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_two = { 1, 1, 0, { 2, } }; inline const NUMBER init_q_rat_two = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_zero = { 1, 1, 0, { 0, } }; inline const NUMBER init_q_rat_zero = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_one = { 1, 1, 0, { 1, } }; inline const NUMBER init_q_rat_one = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_neg_one = { -1, 1, 0, { 1, } }; inline const NUMBER init_q_rat_neg_one = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_half = { 1, 1, 0, { 1, } }; inline const NUMBER init_q_rat_half = { 1, 1, 0, { 2, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_ten = { 1, 1, 0, { 10, } }; inline const NUMBER init_q_rat_ten = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_pi = { 1, 6, 0, { 125527896, 283898350, 1960493936, 1672850762, 1288168272, 8, } }; inline const NUMBER init_q_pi = { 1, 6, 0, { 1288380402, 1120116153, 1860424692, 1944118326, 1583591604, 2, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_two_pi = { 1, 6, 0, { 251055792, 567796700, 1773504224, 1198217877, 428852897, 17, } }; inline const NUMBER init_q_two_pi = { 1, 6, 0, { 1288380402, 1120116153, 1860424692, 1944118326, 1583591604, 2, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_pi_over_two = { 1, 6, 0, { 125527896, 283898350, 1960493936, 1672850762, 1288168272, 8, } }; inline const NUMBER init_q_pi_over_two = { 1, 6, 0, { 429277156, 92748659, 1573365737, 1740753005, 1019699561, 5, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_one_pt_five_pi = { 1, 6, 0, { 1241201312, 270061909, 1051574664, 1924965045, 1340320627, 70, } }; inline const NUMBER init_q_one_pt_five_pi = { 1, 6, 0, { 1579671539, 1837970263, 1067644340, 523549916, 2119366659, 14, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_e_to_one_half = { 1, 6, 0, { 256945612, 216219427, 223516738, 477442596, 581063757, 23, } }; inline const NUMBER init_q_e_to_one_half = { 1, 6, 0, { 1536828363, 698484484, 1127331835, 224219346, 245499408, 14, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_exp = { 1, 6, 0, { 943665199, 1606559160, 1094967530, 1759391384, 1671799163, 1123581, } }; inline const NUMBER init_q_rat_exp = { 1, 6, 0, { 879242208, 2022880100, 617392930, 1374929092, 1367479163, 413342, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_ln_ten = { 1, 6, 0, { 2086268922, 165794492, 1416063951, 1851428830, 1893239400, 65366841, } }; inline const NUMBER init_q_ln_ten = { 1, 6, 0, { 26790652, 564532679, 783998273, 216030448, 1564709968, 28388458, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_ln_two = { 1, 6, 0, { 1789230241, 1057927868, 715399197, 908801241, 1411265331, 3, } }; inline const NUMBER init_q_ln_two = { 1, 6, 0, { 1559869847, 1930657510, 1228561531, 219003871, 593099283, 5, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rad_to_deg = { 1, 6, 0, { 2127722024, 1904928383, 2016479213, 2048947859, 1578647346, 492, } }; inline const NUMBER init_q_rad_to_deg = { 1, 6, 0, { 125527896, 283898350, 1960493936, 1672850762, 1288168272, 8, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rad_to_grad = { 1, 6, 0, { 2125526288, 684931327, 570267400, 129125085, 1038224725, 547, } }; inline const NUMBER init_q_rad_to_grad = { 1, 6, 0, { 125527896, 283898350, 1960493936, 1672850762, 1288168272, 8, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_qword = { 1, 3, 0, { 2147483647, 2147483647, 3, } }; inline const NUMBER init_q_rat_qword = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_dword = { 1, 2, 0, { 2147483647, 1, } }; inline const NUMBER init_q_rat_dword = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_max_i32 = { 1, 1, 0, { 2147483647, } }; inline const NUMBER init_q_rat_max_i32 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_min_i32 = { -1, 2, 0, { 0, 1, } }; inline const NUMBER init_q_rat_min_i32 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_word = { 1, 1, 0, { 65535, } }; inline const NUMBER init_q_rat_word = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_byte = { 1, 1, 0, { 255, } }; inline const NUMBER init_q_rat_byte = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_400 = { 1, 1, 0, { 400, } }; inline const NUMBER init_q_rat_400 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_360 = { 1, 1, 0, { 360, } }; inline const NUMBER init_q_rat_360 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_200 = { 1, 1, 0, { 200, } }; inline const NUMBER init_q_rat_200 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_180 = { 1, 1, 0, { 180, } }; inline const NUMBER init_q_rat_180 = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_max_exp = { 1, 1, 0, { 100000, } }; inline const NUMBER init_q_rat_max_exp = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_min_exp = { -1, 1, 0, { 100000, } }; inline const NUMBER init_q_rat_min_exp = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_max_fact = { 1, 1, 0, { 3249, } }; inline const NUMBER init_q_rat_max_fact = { 1, 1, 0, { 1, } }; // Autogenerated by _dumprawrat in support.cpp inline const NUMBER init_p_rat_min_fact = { -1, 1, 0, { 1000, } }; inline const NUMBER init_q_rat_min_fact = { 1, 1, 0, { 1, } }; ================================================ FILE: src/CalcManager/Ratpack/ratpak.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once //----------------------------------------------------------------------------- // Package Title ratpak // File ratpak.h // Copyright (C) 1995-99 Microsoft // Date 01-16-95 // // // Description // // Infinite precision math package header file, if you use ratpak.lib you // need to include this header. // //----------------------------------------------------------------------------- #include #include #include "CalcErr.h" #include // for memmove #include "sal_cross_platform.h" // for SAL static constexpr uint32_t BASEXPWR = 31L; // Internal log2(BASEX) static constexpr uint32_t BASEX = 0x80000000; // Internal radix used in calculations, hope to raise // this to 2^32 after solving scaling problems with // overflow detection esp. in mul typedef uint32_t MANTTYPE; typedef uint64_t TWO_MANTTYPE; enum class NumberFormat { Float, // returns floating point, or exponential if number is too big Scientific, // always returns scientific notation Engineering // always returns engineering notation such that exponent is a multiple of 3 }; enum class AngleType { Degrees, // Calculate trig using 360 degrees per revolution Radians, // Calculate trig using 2 pi radians per revolution Gradians // Calculate trig using 400 gradians per revolution }; //----------------------------------------------------------------------------- // // NUMBER type is a representation of a generic sized generic radix number // //----------------------------------------------------------------------------- #pragma warning(push) #pragma warning(disable : 4200) // nonstandard extension used : zero-sized array in struct/union typedef struct _number { int32_t sign; // The sign of the mantissa, +1, or -1 int32_t cdigit; // The number of digits, or what passes for digits in the // radix being used. int32_t exp; // The offset of digits from the radix point // (decimal point in radix 10) MANTTYPE mant[]; // This is actually allocated as a continuation of the // NUMBER structure. } NUMBER, *PNUMBER, **PPNUMBER; #pragma warning(pop) //----------------------------------------------------------------------------- // // RAT type is a representation radix on 2 NUMBER types. // pp/pq, where pp and pq are pointers to integral NUMBER types. // //----------------------------------------------------------------------------- typedef struct _rat { PNUMBER pp; PNUMBER pq; } RAT, *PRAT; static constexpr uint32_t MAX_LONG_SIZE = 33; // Base 2 requires 32 'digits' //----------------------------------------------------------------------------- // // List of useful constants for evaluation, note this list needs to be // initialized. // //----------------------------------------------------------------------------- extern PNUMBER num_one; extern PNUMBER num_two; extern PNUMBER num_five; extern PNUMBER num_six; extern PNUMBER num_ten; extern PRAT ln_ten; extern PRAT ln_two; extern PRAT rat_zero; extern PRAT rat_neg_one; extern PRAT rat_one; extern PRAT rat_two; extern PRAT rat_six; extern PRAT rat_half; extern PRAT rat_ten; extern PRAT pt_eight_five; extern PRAT pi; extern PRAT pi_over_two; extern PRAT two_pi; extern PRAT one_pt_five_pi; extern PRAT e_to_one_half; extern PRAT rat_exp; extern PRAT rad_to_deg; extern PRAT rad_to_grad; extern PRAT rat_qword; extern PRAT rat_dword; extern PRAT rat_word; extern PRAT rat_byte; extern PRAT rat_360; extern PRAT rat_400; extern PRAT rat_180; extern PRAT rat_200; extern PRAT rat_nRadix; extern PRAT rat_smallest; extern PRAT rat_negsmallest; extern PRAT rat_max_exp; extern PRAT rat_min_exp; extern PRAT rat_max_fact; extern PRAT rat_min_fact; extern PRAT rat_max_i32; extern PRAT rat_min_i32; // DUPNUM Duplicates a number taking care of allocation and internals #define DUPNUM(a, b) \ destroynum(a); \ createnum(a, (b)->cdigit); \ _dupnum(a, b); // DUPRAT Duplicates a rational taking care of allocation and internals #define DUPRAT(a, b) \ destroyrat(a); \ createrat(a); \ DUPNUM((a)->pp, (b)->pp); \ DUPNUM((a)->pq, (b)->pq); // ABSRAT returns the absolute value of the rational #define ABSRAT(x) (((x)->pp->sign = 1), ((x)->pq->sign = 1)) // LOG*RADIX calculates the integral portion of the log of a number in // the base currently being used, only accurate to within g_ratio #define LOGNUMRADIX(pnum) (((pnum)->cdigit + (pnum)->exp) * g_ratio) #define LOGRATRADIX(prat) (LOGNUMRADIX((prat)->pp) - LOGNUMRADIX((prat)->pq)) // LOG*2 calculates the integral portion of the log of a number in // the internal base being used, only accurate to within g_ratio #define LOGNUM2(pnum) ((pnum)->cdigit + (pnum)->exp) #define LOGRAT2(prat) (LOGNUM2((prat)->pp) - LOGNUM2((prat)->pq)) // SIGN returns the sign of the rational #define SIGN(prat) ((prat)->pp->sign * (prat)->pq->sign) #if defined(DEBUG_RATPAK) //----------------------------------------------------------------------------- // // Debug versions of rational number creation and destruction routines. // used for debugging allocation errors. // //----------------------------------------------------------------------------- #define createrat(y) \ (y) = _createrat(); \ { \ std::wstringstream outputString; \ outputString << "createrat " << y << " " << #y << " file= " << __FILE__ << ", line= " << __LINE__ << "\n"; \ OutputDebugString(outputString.str().c_str()); \ } #define destroyrat(x) \ { \ std::wstringstream outputString; \ outputString << "destroyrat " << x << " file= " << __FILE__ << ", line= " << __LINE__ << "\n"; \ OutputDebugString(outputString.str().c_str()); \ } \ _destroyrat(x), (x) = nullptr #define createnum(y, x) \ (y) = _createnum(x); \ { \ std::wstringstream outputString; \ outputString << "createnum " << y << " " << #y << " file= " << __FILE__ << ", line= " << __LINE__ << "\n"; \ OutputDebugString(outputString.str().c_str()); \ } #define destroynum(x) \ { \ std::wstringstream outputString; \ outputString << "destroynum " << x << " file= " << __FILE__ << ", line= " << __LINE__ << "\n"; \ OutputDebugString(outputString.str().c_str()); \ } \ _destroynum(x), (x) = nullptr #else #define createrat(y) (y) = _createrat() #define destroyrat(x) _destroyrat(x), (x) = nullptr #define createnum(y, x) (y) = _createnum(x) #define destroynum(x) _destroynum(x), (x) = nullptr #endif //----------------------------------------------------------------------------- // // Defines for checking when to stop taylor series expansions due to // precision satisfaction. // //----------------------------------------------------------------------------- // RENORMALIZE, gets the exponents non-negative. #define RENORMALIZE(x) \ if ((x)->pp->exp < 0) \ { \ (x)->pq->exp -= (x)->pp->exp; \ (x)->pp->exp = 0; \ } \ if ((x)->pq->exp < 0) \ { \ (x)->pp->exp -= (x)->pq->exp; \ (x)->pq->exp = 0; \ } // TRIMNUM ASSUMES the number is in radix form NOT INTERNAL BASEX!!! #define TRIMNUM(x, precision) \ if (!g_ftrueinfinite) \ { \ int32_t trim = (x)->cdigit - precision - g_ratio; \ if (trim > 1) \ { \ memmove((x)->mant, &((x)->mant[trim]), sizeof(MANTTYPE) * ((x)->cdigit - trim)); \ (x)->cdigit -= trim; \ (x)->exp += trim; \ } \ } // TRIMTOP ASSUMES the number is in INTERNAL BASEX!!! #define TRIMTOP(x, precision) \ if (!g_ftrueinfinite) \ { \ int32_t trim = (x)->pp->cdigit - (precision / g_ratio) - 2; \ if (trim > 1) \ { \ memmove((x)->pp->mant, &((x)->pp->mant[trim]), sizeof(MANTTYPE) * ((x)->pp->cdigit - trim)); \ (x)->pp->cdigit -= trim; \ (x)->pp->exp += trim; \ } \ trim = std::min((x)->pp->exp, (x)->pq->exp); \ (x)->pp->exp -= trim; \ (x)->pq->exp -= trim; \ } #define SMALL_ENOUGH_RAT(a, precision) (zernum((a)->pp) || ((((a)->pq->cdigit + (a)->pq->exp) - ((a)->pp->cdigit + (a)->pp->exp) - 1) * g_ratio > precision)) //----------------------------------------------------------------------------- // // Defines for setting up taylor series expansions for infinite precision // functions. // //----------------------------------------------------------------------------- #define CREATETAYLOR() \ PRAT xx = nullptr; \ PNUMBER n2 = nullptr; \ PRAT pret = nullptr; \ PRAT thisterm = nullptr; \ DUPRAT(xx, *px); \ mulrat(&xx, *px, precision); \ createrat(pret); \ pret->pp = i32tonum(0L, BASEX); \ pret->pq = i32tonum(0L, BASEX); #define DESTROYTAYLOR() \ destroynum(n2); \ destroyrat(xx); \ destroyrat(thisterm); \ destroyrat(*px); \ trimit(&pret, precision); \ *px = pret; // INC(a) is the rational equivalent of a++ // Check to see if we can avoid doing this the hard way. #define INC(a) \ if ((a)->mant[0] < BASEX - 1) \ { \ (a)->mant[0]++; \ } \ else \ { \ addnum(&(a), num_one, BASEX); \ } #define MSD(x) ((x)->mant[(x)->cdigit - 1]) // MULNUM(b) is the rational equivalent of thisterm *= b where thisterm is // a rational and b is a number, NOTE this is a mixed type operation for // efficiency reasons. #define MULNUM(b) mulnumx(&(thisterm->pp), b); // DIVNUM(b) is the rational equivalent of thisterm /= b where thisterm is // a rational and b is a number, NOTE this is a mixed type operation for // efficiency reasons. #define DIVNUM(b) mulnumx(&(thisterm->pq), b); // NEXTTERM(p,d) is the rational equivalent of // thisterm *= p // d // pret += thisterm #define NEXTTERM(p, d, precision) \ mulrat(&thisterm, p, precision); \ d _addrat(&pret, thisterm, precision) //----------------------------------------------------------------------------- // // External variables used in the math package. // //----------------------------------------------------------------------------- extern bool g_ftrueinfinite; // set to true to allow infinite precision // don't use unless you know what you are doing // used to help decide when to stop calculating. extern int32_t g_ratio; // Internally calculated ratio of internal radix //----------------------------------------------------------------------------- // // External functions defined in the math package. // //----------------------------------------------------------------------------- // Call whenever decimal separator character changes. extern void SetDecimalSeparator(wchar_t decimalSeparator); // Call whenever either radix or precision changes, is smarter about recalculating constants. extern void ChangeConstants(uint32_t radix, int32_t precision); extern bool equnum(_In_ PNUMBER a, _In_ PNUMBER b); // returns true of a == b extern bool lessnum(_In_ PNUMBER a, _In_ PNUMBER b); // returns true of a < b extern bool zernum(_In_ PNUMBER a); // returns true of a == 0 extern bool zerrat(_In_ PRAT a); // returns true if a == 0/q extern std::wstring NumberToString(_Inout_ PNUMBER& pnum, NumberFormat format, uint32_t radix, int32_t precision); // returns a text representation of a PRAT extern std::wstring RatToString(_Inout_ PRAT& prat, NumberFormat format, uint32_t radix, int32_t precision); // converts a PRAT into a PNUMBER extern PNUMBER RatToNumber(_In_ PRAT prat, uint32_t radix, int32_t precision); // flattens a PRAT by converting it to a PNUMBER and back to a PRAT extern void flatrat(_Inout_ PRAT& prat, uint32_t radix, int32_t precision); extern int32_t numtoi32(_In_ PNUMBER pnum, uint32_t radix); extern int32_t rattoi32(_In_ PRAT prat, uint32_t radix, int32_t precision); uint64_t rattoUi64(_In_ PRAT prat, uint32_t radix, int32_t precision); extern PNUMBER _createnum(_In_ uint32_t size); // returns an empty number structure with size digits extern PNUMBER nRadixxtonum(_In_ PNUMBER a, uint32_t radix, int32_t precision); extern PNUMBER gcd(_In_ PNUMBER a, _In_ PNUMBER b); extern PNUMBER StringToNumber( std::wstring_view numberString, uint32_t radix, int32_t precision); // takes a text representation of a number and returns a number. // takes a text representation of a number as a mantissa with sign and an exponent with sign. extern PRAT StringToRat(bool mantissaIsNegative, std::wstring_view mantissa, bool exponentIsNegative, std::wstring_view exponent, uint32_t radix, int32_t precision); extern PNUMBER i32factnum(int32_t ini32, uint32_t radix); extern PNUMBER i32prodnum(int32_t start, int32_t stop, uint32_t radix); extern PNUMBER i32tonum(int32_t ini32, uint32_t radix); extern PNUMBER Ui32tonum(uint32_t ini32, uint32_t radix); extern PNUMBER numtonRadixx(_In_ PNUMBER a, uint32_t radix); // creates a empty/undefined rational representation (p/q) extern PRAT _createrat(void); // returns a new rat structure with the acos of x->p/x->q taking into account // angle type extern void acosanglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); // returns a new rat structure with the acosh of x->p/x->q extern void acoshrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the acos of x->p/x->q extern void acosrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the asin of x->p/x->q taking into account // angle type extern void asinanglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); extern void asinhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the asinh of x->p/x->q // returns a new rat structure with the asin of x->p/x->q extern void asinrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the atan of x->p/x->q taking into account // angle type extern void atananglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); // returns a new rat structure with the atanh of x->p/x->q extern void atanhrat(_Inout_ PRAT* px, int32_t precision); // returns a new rat structure with the atan of x->p/x->q extern void atanrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the cosh of x->p/x->q extern void coshrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the cos of x->p/x->q extern void cosrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the cos of x->p/x->q taking into account // angle type extern void cosanglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); // returns a new rat structure with the exp of x->p/x->q this should not be called explicitly. extern void _exprat(_Inout_ PRAT* px, int32_t precision); // returns a new rat structure with the exp of x->p/x->q extern void exprat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the log base 10 of x->p/x->q extern void log10rat(_Inout_ PRAT* px, int32_t precision); // returns a new rat structure with the natural log of x->p/x->q extern void lograt(_Inout_ PRAT* px, int32_t precision); extern void _lograt(_Inout_ PRAT* px, int32_t precision); extern PRAT i32torat(int32_t ini32); extern PRAT Ui32torat(uint32_t inui32); extern PRAT numtorat(_In_ PNUMBER pin, uint32_t radix); extern void sinhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); extern void sinrat(_Inout_ PRAT* px); // returns a new rat structure with the sin of x->p/x->q taking into account // angle type extern void sinanglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); extern void tanhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); extern void tanrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); // returns a new rat structure with the tan of x->p/x->q taking into account // angle type extern void tananglerat(_Inout_ PRAT* px, AngleType angletype, uint32_t radix, int32_t precision); extern void _dupnum(_In_ PNUMBER dest, _In_ const NUMBER* const src); extern void _destroynum(_Frees_ptr_opt_ PNUMBER pnum); extern void _destroyrat(_Frees_ptr_opt_ PRAT prat); extern void addnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix); extern void addrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void _addrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void andrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void divnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix, int32_t precision); extern void divnumx(_Inout_ PNUMBER* pa, _In_ PNUMBER b, int32_t precision); extern void divrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void fracrat(_Inout_ PRAT* pa, uint32_t radix, int32_t precision); extern void factrat(_Inout_ PRAT* pa, uint32_t radix, int32_t precision); extern void remrat(_Inout_ PRAT* pa, _In_ PRAT b); extern void modrat(_Inout_ PRAT* pa, _In_ PRAT b); extern void gcdrat(_Inout_ PRAT* pa, int32_t precision); extern void intrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision); extern void mulnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix); extern void mulnumx(_Inout_ PNUMBER* pa, _In_ PNUMBER b); extern void mulrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void numpowi32(_Inout_ PNUMBER* proot, int32_t power, uint32_t radix, int32_t precision); extern void numpowi32x(_Inout_ PNUMBER* proot, int32_t power); extern void orrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void powrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void powratNumeratorDenominator(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void powratcomp(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void ratpowi32(_Inout_ PRAT* proot, int32_t power, int32_t precision); extern void remnum(_Inout_ PNUMBER* pa, _In_ PNUMBER b, uint32_t radix); extern void rootrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void scale2pi(_Inout_ PRAT* px, uint32_t radix, int32_t precision); extern void scale(_Inout_ PRAT* px, _In_ PRAT scalefact, uint32_t radix, int32_t precision); extern void subrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void _subrat(_Inout_ PRAT* pa, _In_ PRAT b, int32_t precision); extern void xorrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void lshrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern void rshrat(_Inout_ PRAT* pa, _In_ PRAT b, uint32_t radix, int32_t precision); extern bool rat_equ(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern bool rat_neq(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern bool rat_gt(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern bool rat_ge(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern bool rat_lt(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern bool rat_le(_In_ PRAT a, _In_ PRAT b, int32_t precision); extern void inbetween(_In_ PRAT* px, _In_ PRAT range, int32_t precision); extern void trimit(_Inout_ PRAT* px, int32_t precision); extern void _dumprawrat(_In_ const wchar_t* varname, _In_ PRAT rat, std::wostream& out); extern void _dumprawnum(_In_ const wchar_t* varname, _In_ PNUMBER num, std::wostream& out); // if |pr| is magnitude smaller than |a| or |b| beyond precision, snap pr to 0 extern void _snaprat(_Inout_ PRAT* pr, _In_ PRAT a, _In_opt_ PRAT b, int32_t precision); ================================================ FILE: src/CalcManager/Ratpack/support.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //---------------------------------------------------------------------------- // Package Title ratpak // File support.c // Copyright (C) 1995-96 Microsoft // Date 10-21-96 // // // Description // // Contains support functions for rationals and numbers. // // Special Information // // // //---------------------------------------------------------------------------- #include #include // for memmove #include // for wostream #include "ratpak.h" using namespace std; void _readconstants(); #if defined(GEN_CONST) static int cbitsofprecision = 0; #define READRAWRAT(v) #define READRAWNUM(v) #define DUMPRAWRAT(v) _dumprawrat(#v, v, wcout) #define DUMPRAWNUM(v) \ fprintf(stderr, "// Autogenerated by _dumprawrat in support.cpp\n"); \ fprintf(stderr, "inline const NUMBER init_" #v "= {\n"); \ _dumprawnum(v, wcout); \ fprintf(stderr, "};\n") #else #define DUMPRAWRAT(v) #define DUMPRAWNUM(v) #define READRAWRAT(v) \ createrat(v); \ DUPNUM((v)->pp, (&(init_p_##v))); \ DUPNUM((v)->pq, (&(init_q_##v))); #define READRAWNUM(v) DUPNUM(v, (&(init_##v))) #define INIT_AND_DUMP_RAW_NUM_IF_NULL(r, v) \ if (r == nullptr) \ { \ r = i32tonum(v, BASEX); \ DUMPRAWNUM(v); \ } #define INIT_AND_DUMP_RAW_RAT_IF_NULL(r, v) \ if (r == nullptr) \ { \ r = i32torat(v); \ DUMPRAWRAT(v); \ } static constexpr int RATIO_FOR_DECIMAL = 9; static constexpr int DECIMAL = 10; static constexpr int CALC_DECIMAL_DIGITS_DEFAULT = 32; static int cbitsofprecision = RATIO_FOR_DECIMAL * DECIMAL * CALC_DECIMAL_DIGITS_DEFAULT; #include "ratconst.h" #endif bool g_ftrueinfinite = false; // Set to true if you don't want // chopping internally // precision used internally PNUMBER num_one = nullptr; PNUMBER num_two = nullptr; PNUMBER num_five = nullptr; PNUMBER num_six = nullptr; PNUMBER num_ten = nullptr; PRAT ln_ten = nullptr; PRAT ln_two = nullptr; PRAT rat_zero = nullptr; PRAT rat_one = nullptr; PRAT rat_neg_one = nullptr; PRAT rat_two = nullptr; PRAT rat_six = nullptr; PRAT rat_half = nullptr; PRAT rat_ten = nullptr; PRAT pt_eight_five = nullptr; PRAT pi = nullptr; PRAT pi_over_two = nullptr; PRAT two_pi = nullptr; PRAT one_pt_five_pi = nullptr; PRAT e_to_one_half = nullptr; PRAT rat_exp = nullptr; PRAT rad_to_deg = nullptr; PRAT rad_to_grad = nullptr; PRAT rat_qword = nullptr; PRAT rat_dword = nullptr; // unsigned max ui32 PRAT rat_word = nullptr; PRAT rat_byte = nullptr; PRAT rat_360 = nullptr; PRAT rat_400 = nullptr; PRAT rat_180 = nullptr; PRAT rat_200 = nullptr; PRAT rat_nRadix = nullptr; PRAT rat_smallest = nullptr; PRAT rat_negsmallest = nullptr; PRAT rat_max_exp = nullptr; PRAT rat_min_exp = nullptr; PRAT rat_max_fact = nullptr; PRAT rat_min_fact = nullptr; PRAT rat_min_i32 = nullptr; // min signed i32 PRAT rat_max_i32 = nullptr; // max signed i32 //---------------------------------------------------------------------------- // // FUNCTION: ChangeConstants // // ARGUMENTS: base changing to, and precision to use. // // RETURN: None // // SIDE EFFECTS: sets a mess of constants. // // //---------------------------------------------------------------------------- void ChangeConstants(uint32_t radix, int32_t precision) { // ratio is set to the number of digits in the current radix, you can get // in the internal BASEX radix, this is important for length calculations // in translating from radix to BASEX and back. g_ratio = static_cast(ceil(BASEXPWR / log2(radix))) - 1; destroyrat(rat_nRadix); rat_nRadix = i32torat(radix); // Check to see what we have to recalculate and what we don't if (cbitsofprecision < (g_ratio * static_cast(radix) * precision)) { g_ftrueinfinite = false; INIT_AND_DUMP_RAW_NUM_IF_NULL(num_one, 1L); INIT_AND_DUMP_RAW_NUM_IF_NULL(num_two, 2L); INIT_AND_DUMP_RAW_NUM_IF_NULL(num_five, 5L); INIT_AND_DUMP_RAW_NUM_IF_NULL(num_six, 6L); INIT_AND_DUMP_RAW_NUM_IF_NULL(num_ten, 10L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_six, 6L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_two, 2L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_zero, 0L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_one, 1L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_neg_one, -1L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_ten, 10L); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_word, 0xffff); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_word, 0xff); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_400, 400); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_360, 360); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_200, 200); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_180, 180); INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_max_exp, 100000); // 3248, is the max number for which calc is able to compute factorial, after that it is unable to compute due to overflow. // Hence restricted factorial range as at most 3248.Beyond that calc will throw overflow error immediately. INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_max_fact, 3249); // -1000, is the min number for which calc is able to compute factorial, after that it takes too long to compute. INIT_AND_DUMP_RAW_RAT_IF_NULL(rat_min_fact, -1000); DUPRAT(rat_smallest, rat_nRadix); ratpowi32(&rat_smallest, -precision, precision); DUPRAT(rat_negsmallest, rat_smallest); rat_negsmallest->pp->sign = -1; DUMPRAWRAT(rat_smallest); DUMPRAWRAT(rat_negsmallest); if (rat_half == nullptr) { createrat(rat_half); DUPNUM(rat_half->pp, num_one); DUPNUM(rat_half->pq, num_two); DUMPRAWRAT(rat_half); } if (pt_eight_five == nullptr) { createrat(pt_eight_five); pt_eight_five->pp = i32tonum(85L, BASEX); pt_eight_five->pq = i32tonum(100L, BASEX); DUMPRAWRAT(pt_eight_five); } DUPRAT(rat_qword, rat_two); numpowi32(&(rat_qword->pp), 64, BASEX, precision); _subrat(&rat_qword, rat_one, precision); DUMPRAWRAT(rat_qword); DUPRAT(rat_dword, rat_two); numpowi32(&(rat_dword->pp), 32, BASEX, precision); _subrat(&rat_dword, rat_one, precision); DUMPRAWRAT(rat_dword); DUPRAT(rat_max_i32, rat_two); numpowi32(&(rat_max_i32->pp), 31, BASEX, precision); DUPRAT(rat_min_i32, rat_max_i32); _subrat(&rat_max_i32, rat_one, precision); // rat_max_i32 = 2^31 -1 DUMPRAWRAT(rat_max_i32); rat_min_i32->pp->sign *= -1; // rat_min_i32 = -2^31 DUMPRAWRAT(rat_min_i32); DUPRAT(rat_min_exp, rat_max_exp); rat_min_exp->pp->sign *= -1; DUMPRAWRAT(rat_min_exp); cbitsofprecision = g_ratio * radix * precision; // Apparently when dividing 180 by pi, another (internal) digit of // precision is needed. int32_t extraPrecision = precision + g_ratio; DUPRAT(pi, rat_half); asinrat(&pi, radix, extraPrecision); mulrat(&pi, rat_six, extraPrecision); DUMPRAWRAT(pi); DUPRAT(two_pi, pi); DUPRAT(pi_over_two, pi); DUPRAT(one_pt_five_pi, pi); _addrat(&two_pi, pi, extraPrecision); DUMPRAWRAT(two_pi); divrat(&pi_over_two, rat_two, extraPrecision); DUMPRAWRAT(pi_over_two); _addrat(&one_pt_five_pi, pi_over_two, extraPrecision); DUMPRAWRAT(one_pt_five_pi); DUPRAT(e_to_one_half, rat_half); _exprat(&e_to_one_half, extraPrecision); DUMPRAWRAT(e_to_one_half); DUPRAT(rat_exp, rat_one); _exprat(&rat_exp, extraPrecision); DUMPRAWRAT(rat_exp); // WARNING: remember _lograt uses exponent constants calculated above... DUPRAT(ln_ten, rat_ten); _lograt(&ln_ten, extraPrecision); DUMPRAWRAT(ln_ten); DUPRAT(ln_two, rat_two); _lograt(&ln_two, extraPrecision); DUMPRAWRAT(ln_two); destroyrat(rad_to_deg); rad_to_deg = i32torat(180L); divrat(&rad_to_deg, pi, extraPrecision); DUMPRAWRAT(rad_to_deg); destroyrat(rad_to_grad); rad_to_grad = i32torat(200L); divrat(&rad_to_grad, pi, extraPrecision); DUMPRAWRAT(rad_to_grad); } else { _readconstants(); DUPRAT(rat_smallest, rat_nRadix); ratpowi32(&rat_smallest, -precision, precision); DUPRAT(rat_negsmallest, rat_smallest); rat_negsmallest->pp->sign = -1; } } //---------------------------------------------------------------------------- // // FUNCTION: intrat // // ARGUMENTS: pointer to x PRAT representation of number // // RETURN: no return value x PRAT is smashed with integral number // // //---------------------------------------------------------------------------- void intrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { // Only do the intrat operation if number is nonzero. // and only if the bottom part is not one. if (!zernum((*px)->pp) && !equnum((*px)->pq, num_one)) { flatrat(*px, radix, precision); // Subtract the fractional part of the rational PRAT pret = nullptr; DUPRAT(pret, *px); remrat(&pret, rat_one); // Flatten pret in case it's not aligned with px after remrat operation if (!equnum((*px)->pq, pret->pq)) { flatrat(pret, radix, precision); } _subrat(px, pret, precision); destroyrat(pret); // Simplify the value if possible to resolve rounding errors flatrat(*px, radix, precision); } } //--------------------------------------------------------------------------- // // FUNCTION: rat_equ // // ARGUMENTS: PRAT a and PRAT b // // RETURN: true if equal false otherwise. // // //--------------------------------------------------------------------------- bool rat_equ(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); rattmp->pp->sign *= -1; _addrat(&rattmp, b, precision); bool bret = zernum(rattmp->pp); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // FUNCTION: rat_ge // // ARGUMENTS: PRAT a, PRAT b and int32_t precision // // RETURN: true if a is greater than or equal to b // // //--------------------------------------------------------------------------- bool rat_ge(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); b->pp->sign *= -1; _addrat(&rattmp, b, precision); b->pp->sign *= -1; bool bret = (zernum(rattmp->pp) || SIGN(rattmp) == 1); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // FUNCTION: rat_gt // // ARGUMENTS: PRAT a and PRAT b // // RETURN: true if a is greater than b // // //--------------------------------------------------------------------------- bool rat_gt(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); b->pp->sign *= -1; _addrat(&rattmp, b, precision); b->pp->sign *= -1; bool bret = (!zernum(rattmp->pp) && SIGN(rattmp) == 1); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // FUNCTION: rat_le // // ARGUMENTS: PRAT a, PRAT b and int32_t precision // // RETURN: true if a is less than or equal to b // // //--------------------------------------------------------------------------- bool rat_le(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); b->pp->sign *= -1; _addrat(&rattmp, b, precision); b->pp->sign *= -1; bool bret = (zernum(rattmp->pp) || SIGN(rattmp) == -1); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // FUNCTION: rat_lt // // ARGUMENTS: PRAT a, PRAT b and int32_t precision // // RETURN: true if a is less than b // // //--------------------------------------------------------------------------- bool rat_lt(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); b->pp->sign *= -1; _addrat(&rattmp, b, precision); b->pp->sign *= -1; bool bret = (!zernum(rattmp->pp) && SIGN(rattmp) == -1); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // FUNCTION: rat_neq // // ARGUMENTS: PRAT a and PRAT b // // RETURN: true if a is not equal to b // // //--------------------------------------------------------------------------- bool rat_neq(_In_ PRAT a, _In_ PRAT b, int32_t precision) { PRAT rattmp = nullptr; DUPRAT(rattmp, a); rattmp->pp->sign *= -1; _addrat(&rattmp, b, precision); bool bret = !(zernum(rattmp->pp)); destroyrat(rattmp); return (bret); } //--------------------------------------------------------------------------- // // function: scale // // ARGUMENTS: pointer to x PRAT representation of number, and scaling factor // // RETURN: no return, value x PRAT is smashed with a scaled number in the // range of the scalefact. // //--------------------------------------------------------------------------- void scale(_Inout_ PRAT* px, _In_ PRAT scalefact, uint32_t radix, int32_t precision) { PRAT pret = nullptr; DUPRAT(pret, *px); // Logscale is a quick way to tell how much extra precision is needed for // scaling by scalefact. int32_t logscale = g_ratio * ((pret->pp->cdigit + pret->pp->exp) - (pret->pq->cdigit + pret->pq->exp)); if (logscale > 0) { precision += logscale; } divrat(&pret, scalefact, precision); intrat(&pret, radix, precision); mulrat(&pret, scalefact, precision); pret->pp->sign *= -1; _addrat(px, pret, precision); destroyrat(pret); } //--------------------------------------------------------------------------- // // function: scale2pi // // ARGUMENTS: pointer to x PRAT representation of number // // RETURN: no return, value x PRAT is smashed with a scaled number in the // range of 0..2pi // //--------------------------------------------------------------------------- void scale2pi(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT pret = nullptr; PRAT my_two_pi = nullptr; DUPRAT(pret, *px); // Logscale is a quick way to tell how much extra precision is needed for // scaling by 2 pi. int32_t logscale = g_ratio * ((pret->pp->cdigit + pret->pp->exp) - (pret->pq->cdigit + pret->pq->exp)); if (logscale > 0) { precision += logscale; DUPRAT(my_two_pi, rat_half); asinrat(&my_two_pi, radix, precision); mulrat(&my_two_pi, rat_six, precision); mulrat(&my_two_pi, rat_two, precision); } else { DUPRAT(my_two_pi, two_pi); logscale = 0; } divrat(&pret, my_two_pi, precision); intrat(&pret, radix, precision); mulrat(&pret, my_two_pi, precision); pret->pp->sign *= -1; _addrat(px, pret, precision); destroyrat(my_two_pi); destroyrat(pret); } //--------------------------------------------------------------------------- // // FUNCTION: inbetween // // ARGUMENTS: PRAT *px, and PRAT range. // // RETURN: none, changes *px to -/+range, if px is outside -range..+range // //--------------------------------------------------------------------------- void inbetween(_In_ PRAT* px, _In_ PRAT range, int32_t precision) { if (rat_gt(*px, range, precision)) { DUPRAT(*px, range); } else { range->pp->sign *= -1; if (rat_lt(*px, range, precision)) { DUPRAT(*px, range); } range->pp->sign *= -1; } } //--------------------------------------------------------------------------- // // FUNCTION: _dumprawrat // // ARGUMENTS: const wchar *name of variable, PRAT x, output stream out // // RETURN: none, prints the results of a dump of the internal structures // of a PRAT, suitable for READRAWRAT to stderr. // //--------------------------------------------------------------------------- void _dumprawrat(_In_ const wchar_t* varname, _In_ PRAT rat, wostream& out) { _dumprawnum(varname, rat->pp, out); _dumprawnum(varname, rat->pq, out); } //--------------------------------------------------------------------------- // // FUNCTION: _dumprawnum // // ARGUMENTS: const wchar *name of variable, PNUMBER num, output stream out // // RETURN: none, prints the results of a dump of the internal structures // of a PNUMBER, suitable for READRAWNUM to stderr. // //--------------------------------------------------------------------------- void _dumprawnum(_In_ const wchar_t* varname, _In_ PNUMBER num, wostream& out) { out << L"NUMBER " << varname << L" = {\n"; out << L"\t" << num->sign << L",\n"; out << L"\t" << num->cdigit << L",\n"; out << L"\t" << num->exp << L",\n"; out << L"\t{ "; for (int i = 0; i < num->cdigit; i++) { out << L" " << num->mant[i] << L","; } out << L"}\n"; out << L"};\n"; } void _readconstants(void) { READRAWNUM(num_one); READRAWNUM(num_two); READRAWNUM(num_five); READRAWNUM(num_six); READRAWNUM(num_ten); READRAWRAT(pt_eight_five); READRAWRAT(rat_six); READRAWRAT(rat_two); READRAWRAT(rat_zero); READRAWRAT(rat_one); READRAWRAT(rat_neg_one); READRAWRAT(rat_half); READRAWRAT(rat_ten); READRAWRAT(pi); READRAWRAT(two_pi); READRAWRAT(pi_over_two); READRAWRAT(one_pt_five_pi); READRAWRAT(e_to_one_half); READRAWRAT(rat_exp); READRAWRAT(ln_ten); READRAWRAT(ln_two); READRAWRAT(rad_to_deg); READRAWRAT(rad_to_grad); READRAWRAT(rat_qword); READRAWRAT(rat_dword); READRAWRAT(rat_word); READRAWRAT(rat_byte); READRAWRAT(rat_360); READRAWRAT(rat_400); READRAWRAT(rat_180); READRAWRAT(rat_200); READRAWRAT(rat_smallest); READRAWRAT(rat_negsmallest); READRAWRAT(rat_max_exp); READRAWRAT(rat_min_exp); READRAWRAT(rat_max_fact); READRAWRAT(rat_min_fact); READRAWRAT(rat_min_i32); READRAWRAT(rat_max_i32); } //--------------------------------------------------------------------------- // // FUNCTION: trimit // // ARGUMENTS: PRAT *px, int32_t precision // // // DESCRIPTION: Chops off digits from rational numbers to avoid time // explosions in calculations of functions using series. // It can be shown that it is enough to only keep the first n digits // of the largest of p or q in the rational p over q form, and of course // scale the smaller by the same number of digits. This will give you // n-1 digits of accuracy. This dramatically speeds up calculations // involving hundreds of digits or more. // The last part of this trim dealing with exponents never affects accuracy // // RETURN: none, modifies the pointed to PRAT // //--------------------------------------------------------------------------- void trimit(_Inout_ PRAT* px, int32_t precision) { if (!g_ftrueinfinite) { PNUMBER pp = (*px)->pp; PNUMBER pq = (*px)->pq; int32_t trim = g_ratio * (min((pp->cdigit + pp->exp), (pq->cdigit + pq->exp)) - 1) - precision; if (trim > g_ratio) { trim /= g_ratio; if (trim <= pp->exp) { pp->exp -= trim; } else { memmove(pp->mant, &(pp->mant[trim - pp->exp]), sizeof(MANTTYPE) * (pp->cdigit - trim + pp->exp)); pp->cdigit -= trim - pp->exp; pp->exp = 0; } if (trim <= pq->exp) { pq->exp -= trim; } else { memmove(pq->mant, &(pq->mant[trim - pq->exp]), sizeof(MANTTYPE) * (pq->cdigit - trim + pq->exp)); pq->cdigit -= trim - pq->exp; pq->exp = 0; } } trim = min(pp->exp, pq->exp); pp->exp -= trim; pq->exp -= trim; } } ================================================ FILE: src/CalcManager/Ratpack/trans.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //---------------------------------------------------------------------------- // File trans.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains sin, cos and tan for rationals // // //---------------------------------------------------------------------------- #include "ratpak.h" void scalerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { switch (angletype) { case AngleType::Radians: scale2pi(pa, radix, precision); break; case AngleType::Degrees: scale(pa, rat_360, radix, precision); break; case AngleType::Gradians: scale(pa, rat_400, radix, precision); break; } } //----------------------------------------------------------------------------- // // FUNCTION: sinrat, _sinrat // // ARGUMENTS: x PRAT representation of number to take the sine of // // RETURN: sin of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2j+1 // \ ] j X // \ -1 * --------- // / (2j+1)! // /__] // j=0 // or, // n // ___ 2 // \ ] -X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j)*(2j+1) // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // //----------------------------------------------------------------------------- void _sinrat(PRAT* px, int32_t precision) { CREATETAYLOR(); DUPRAT(pret, *px); DUPRAT(thisterm, *px); DUPNUM(n2, num_one); xx->pp->sign *= -1; do { NEXTTERM(xx, INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); // Since *px might be epsilon above 1 or below -1, due to TRIMIT we need // this trick here. inbetween(px, rat_one, precision); // Since *px might be epsilon near zero we must set it to zero. if (rat_le(*px, rat_smallest, precision) && rat_ge(*px, rat_negsmallest, precision)) { DUPRAT(*px, rat_zero); } } void sinrat(PRAT* px, uint32_t radix, int32_t precision) { scale2pi(px, radix, precision); _sinrat(px, precision); } void sinanglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { scalerat(pa, angletype, radix, precision); switch (angletype) { case AngleType::Degrees: if (rat_gt(*pa, rat_180, precision)) { _subrat(pa, rat_360, precision); } divrat(pa, rat_180, precision); mulrat(pa, pi, precision); break; case AngleType::Gradians: if (rat_gt(*pa, rat_200, precision)) { _subrat(pa, rat_400, precision); } divrat(pa, rat_200, precision); mulrat(pa, pi, precision); break; } _sinrat(pa, precision); } //----------------------------------------------------------------------------- // // FUNCTION: cosrat, _cosrat // // ARGUMENTS: x PRAT representation of number to take the cosine of // // RETURN: cosine of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2j j // \ ] X -1 // \ --------- // / (2j)! // /__] // j=0 // or, // n // ___ 2 // \ ] -X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j)*(2j+1) // /__] // j=0 // // thisterm = 1 ; and stop when thisterm < precision used. // 0 n // //----------------------------------------------------------------------------- void _cosrat(PRAT* px, uint32_t radix, int32_t precision) { CREATETAYLOR(); destroynum(pret->pp); destroynum(pret->pq); pret->pp = i32tonum(1L, radix); pret->pq = i32tonum(1L, radix); DUPRAT(thisterm, pret) n2 = i32tonum(0L, radix); xx->pp->sign *= -1; do { NEXTTERM(xx, INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); // Since *px might be epsilon above 1 or below -1, due to TRIMIT we need // this trick here. inbetween(px, rat_one, precision); // Since *px might be epsilon near zero we must set it to zero. if (rat_le(*px, rat_smallest, precision) && rat_ge(*px, rat_negsmallest, precision)) { DUPRAT(*px, rat_zero); } } void cosrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { scale2pi(px, radix, precision); _cosrat(px, radix, precision); } void cosanglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { scalerat(pa, angletype, radix, precision); switch (angletype) { case AngleType::Degrees: if (rat_gt(*pa, rat_180, precision)) { PRAT ptmp = nullptr; DUPRAT(ptmp, rat_360); _subrat(&ptmp, *pa, precision); destroyrat(*pa); *pa = ptmp; } divrat(pa, rat_180, precision); mulrat(pa, pi, precision); break; case AngleType::Gradians: if (rat_gt(*pa, rat_200, precision)) { PRAT ptmp = nullptr; DUPRAT(ptmp, rat_400); _subrat(&ptmp, *pa, precision); destroyrat(*pa); *pa = ptmp; } divrat(pa, rat_200, precision); mulrat(pa, pi, precision); break; } _cosrat(pa, radix, precision); } //----------------------------------------------------------------------------- // // FUNCTION: tanrat, _tanrat // // ARGUMENTS: x PRAT representation of number to take the tangent of // // RETURN: tan of x in PRAT form. // // EXPLANATION: This uses sinrat and cosrat // //----------------------------------------------------------------------------- void _tanrat(PRAT* px, uint32_t radix, int32_t precision) { PRAT ptmp = nullptr; DUPRAT(ptmp, *px); _sinrat(px, precision); _cosrat(&ptmp, radix, precision); if (zerrat(ptmp)) { destroyrat(ptmp); throw(CALC_E_DOMAIN); } divrat(px, ptmp, precision); destroyrat(ptmp); } void tanrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { scale2pi(px, radix, precision); _tanrat(px, radix, precision); } void tananglerat(_Inout_ PRAT* pa, AngleType angletype, uint32_t radix, int32_t precision) { scalerat(pa, angletype, radix, precision); switch (angletype) { case AngleType::Degrees: if (rat_gt(*pa, rat_180, precision)) { _subrat(pa, rat_180, precision); } divrat(pa, rat_180, precision); mulrat(pa, pi, precision); break; case AngleType::Gradians: if (rat_gt(*pa, rat_200, precision)) { _subrat(pa, rat_200, precision); } divrat(pa, rat_200, precision); mulrat(pa, pi, precision); break; } _tanrat(pa, radix, precision); } ================================================ FILE: src/CalcManager/Ratpack/transh.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. //----------------------------------------------------------------------------- // Package Title ratpak // File transh.c // Copyright (C) 1995-96 Microsoft // Date 01-16-95 // // // Description // // Contains hyperbolic sin, cos, and tan for rationals. // // //----------------------------------------------------------------------------- #include "ratpak.h" bool IsValidForHypFunc(PRAT px, int32_t precision) { PRAT ptmp = nullptr; bool bRet = true; DUPRAT(ptmp, rat_min_exp); divrat(&ptmp, rat_ten, precision); if (rat_lt(px, ptmp, precision)) { bRet = false; } destroyrat(ptmp); return bRet; } //----------------------------------------------------------------------------- // // FUNCTION: sinhrat, _sinhrat // // ARGUMENTS: x PRAT representation of number to take the sine hyperbolic // of // RETURN: sinh of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2j+1 // \ ] X // \ --------- // / (2j+1)! // /__] // j=0 // or, // n // ___ 2 // \ ] X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j)*(2j+1) // /__] // j=0 // // thisterm = X ; and stop when thisterm < precision used. // 0 n // // if x is bigger than 1.0 (e^x-e^-x)/2 is used. // //----------------------------------------------------------------------------- void _sinhrat(PRAT* px, int32_t precision) { if (!IsValidForHypFunc(*px, precision)) { // Don't attempt exp of anything large or small throw(CALC_E_DOMAIN); } CREATETAYLOR(); DUPRAT(pret, *px); DUPRAT(thisterm, pret); DUPNUM(n2, num_one); do { NEXTTERM(xx, INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void sinhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT tmpx = nullptr; if (rat_ge(*px, rat_one, precision)) { DUPRAT(tmpx, *px); exprat(px, radix, precision); tmpx->pp->sign *= -1; exprat(&tmpx, radix, precision); _subrat(px, tmpx, precision); divrat(px, rat_two, precision); destroyrat(tmpx); } else { _sinhrat(px, precision); } } //----------------------------------------------------------------------------- // // FUNCTION: coshrat // // ARGUMENTS: x PRAT representation of number to take the cosine // hyperbolic of // // RETURN: cosh of x in PRAT form. // // EXPLANATION: This uses Taylor series // // n // ___ 2j // \ ] X // \ --------- // / (2j)! // /__] // j=0 // or, // n // ___ 2 // \ ] X // \ thisterm ; where thisterm = thisterm * --------- // / j j+1 j (2j)*(2j+1) // /__] // j=0 // // thisterm = 1 ; and stop when thisterm < precision used. // 0 n // // if x is bigger than 1.0 (e^x+e^-x)/2 is used. // //----------------------------------------------------------------------------- void _coshrat(PRAT* px, uint32_t radix, int32_t precision) { if (!IsValidForHypFunc(*px, precision)) { // Don't attempt exp of anything large or small throw(CALC_E_DOMAIN); } CREATETAYLOR(); pret->pp = i32tonum(1L, radix); pret->pq = i32tonum(1L, radix); DUPRAT(thisterm, pret) n2 = i32tonum(0L, radix); do { NEXTTERM(xx, INC(n2) DIVNUM(n2) INC(n2) DIVNUM(n2), precision); } while (!SMALL_ENOUGH_RAT(thisterm, precision)); DESTROYTAYLOR(); } void coshrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT tmpx = nullptr; (*px)->pp->sign = 1; (*px)->pq->sign = 1; if (rat_ge(*px, rat_one, precision)) { DUPRAT(tmpx, *px); exprat(px, radix, precision); tmpx->pp->sign *= -1; exprat(&tmpx, radix, precision); _addrat(px, tmpx, precision); divrat(px, rat_two, precision); destroyrat(tmpx); } else { _coshrat(px, radix, precision); } // Since *px might be epsilon below 1 due to TRIMIT // we need this trick here. if (rat_lt(*px, rat_one, precision)) { DUPRAT(*px, rat_one); } } //----------------------------------------------------------------------------- // // FUNCTION: tanhrat // // ARGUMENTS: x PRAT representation of number to take the tangent // hyperbolic of // // RETURN: tanh of x in PRAT form. // // EXPLANATION: This uses sinhrat and coshrat // //----------------------------------------------------------------------------- void tanhrat(_Inout_ PRAT* px, uint32_t radix, int32_t precision) { PRAT ptmp = nullptr; DUPRAT(ptmp, *px); sinhrat(px, radix, precision); coshrat(&ptmp, radix, precision); mulnumx(&((*px)->pp), ptmp->pq); mulnumx(&((*px)->pq), ptmp->pp); destroyrat(ptmp); } ================================================ FILE: src/CalcManager/UnitConverter.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include #include #include // for std::sort #include "Command.h" #include "UnitConverter.h" #include "NumberFormattingUtils.h" using namespace std; using namespace UnitConversionManager; using namespace UnitConversionManager::NumberFormattingUtils; static constexpr uint32_t EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT = 3U; static constexpr uint32_t EXPECTEDSERIALIZEDUNITTOKENCOUNT = 6U; static constexpr uint32_t EXPECTEDSTATEDATATOKENCOUNT = 5U; static constexpr uint32_t EXPECTEDMAPCOMPONENTTOKENCOUNT = 2U; static constexpr uint32_t MAXIMUMDIGITSALLOWED = 15U; static constexpr uint32_t OPTIMALDIGITSALLOWED = 7U; static constexpr wchar_t LEFTESCAPECHAR = L'{'; static constexpr wchar_t RIGHTESCAPECHAR = L'}'; static const double OPTIMALDECIMALALLOWED = 1e-6; // pow(10, -1 * (OPTIMALDIGITSALLOWED - 1)); static const double MINIMUMDECIMALALLOWED = 1e-14; // pow(10, -1 * (MAXIMUMDIGITSALLOWED - 1)); unordered_map quoteConversions; unordered_map unquoteConversions; /// /// Constructor, sets up all the variables and requires a configLoader /// /// An instance of the IConverterDataLoader interface which we use to read in category/unit names and conversion data UnitConverter::UnitConverter(_In_ const shared_ptr& dataLoader) : UnitConverter::UnitConverter(dataLoader, nullptr) { } /// /// Constructor, sets up all the variables and requires two configLoaders /// /// An instance of the IConverterDataLoader interface which we use to read in category/unit names and conversion data /// An instance of the IConverterDataLoader interface, specialized for loading currency data from an internet service UnitConverter::UnitConverter(_In_ const shared_ptr& dataLoader, _In_ const shared_ptr& currencyDataLoader) { m_dataLoader = dataLoader; m_currencyDataLoader = currencyDataLoader; // declaring the delimiter character conversion map quoteConversions[L'|'] = L"{p}"; quoteConversions[L'['] = L"{lc}"; quoteConversions[L']'] = L"{rc}"; quoteConversions[L':'] = L"{co}"; quoteConversions[L','] = L"{cm}"; quoteConversions[L';'] = L"{sc}"; quoteConversions[LEFTESCAPECHAR] = L"{lb}"; quoteConversions[RIGHTESCAPECHAR] = L"{rb}"; unquoteConversions[L"{p}"] = L'|'; unquoteConversions[L"{lc}"] = L'['; unquoteConversions[L"{rc}"] = L']'; unquoteConversions[L"{co}"] = L':'; unquoteConversions[L"{cm}"] = L','; unquoteConversions[L"{sc}"] = L';'; unquoteConversions[L"{lb}"] = LEFTESCAPECHAR; unquoteConversions[L"{rb}"] = RIGHTESCAPECHAR; ClearValues(); ResetCategoriesAndRatios(); } void UnitConverter::Initialize() { m_dataLoader->LoadData(); } bool UnitConverter::CheckLoad() { if (m_categories.empty()) { ResetCategoriesAndRatios(); } return !m_categories.empty(); } /// /// Returns a list of the categories in use by this converter /// vector UnitConverter::GetCategories() { CheckLoad(); return m_categories; } /// /// Sets the current category in use by this converter, /// and returns a list of unit types that exist under the given category. /// /// Category struct which we are setting CategorySelectionInitializer UnitConverter::SetCurrentCategory(const Category& input) { if (m_currencyDataLoader != nullptr && m_currencyDataLoader->SupportsCategory(input)) { m_currencyDataLoader->LoadData(); } vector newUnitList{}; if (CheckLoad()) { if (m_currentCategory.id != input.id) { for (auto& unit : m_categoryToUnits[m_currentCategory.id]) { unit.isConversionSource = (unit.id == m_fromType.id); unit.isConversionTarget = (unit.id == m_toType.id); } m_currentCategory = input; if (!m_currentCategory.supportsNegative && m_currentDisplay.front() == L'-') { m_currentDisplay.erase(0, 1); } } newUnitList = m_categoryToUnits[input.id]; } InitializeSelectedUnits(); return make_tuple(newUnitList, m_fromType, m_toType); } /// /// Gets the category currently being used /// Category UnitConverter::GetCurrentCategory() { return m_currentCategory; } /// /// Sets the current unit types to be used, indicates a likely change in the /// display values, so we re-calculate and callback the updated values /// /// Unit struct which the user is modifying /// Unit struct we are converting to void UnitConverter::SetCurrentUnitTypes(const Unit& fromType, const Unit& toType) { if (!CheckLoad()) { return; } if (m_fromType != fromType) { m_switchedActive = true; } m_fromType = fromType; m_toType = toType; Calculate(); UpdateCurrencySymbols(); } /// /// Switches the active field, indicating that we are now entering data into /// what was originally the return field, and storing results into what was /// originally the current field. We swap appropriate values, /// but do not callback, as values have not changed. /// /// /// wstring representing the value user had in the field they've just activated. /// We use this to handle cases where the front-end may choose to trim more digits /// than we have been storing internally, in which case appending will not function /// as expected without the use of this parameter. /// void UnitConverter::SwitchActive(const wstring& newValue) { if (!CheckLoad()) { return; } swap(m_fromType, m_toType); swap(m_currentHasDecimal, m_returnHasDecimal); m_returnDisplay = m_currentDisplay; m_currentDisplay = newValue; m_currentHasDecimal = (m_currentDisplay.find(L'.') != wstring::npos); m_switchedActive = true; if (m_currencyDataLoader != nullptr && m_vmCurrencyCallback != nullptr) { shared_ptr currencyDataLoader = GetCurrencyConverterDataLoader(); const pair currencyRatios = currencyDataLoader->GetCurrencyRatioEquality(m_fromType, m_toType); m_vmCurrencyCallback->CurrencyRatiosCallback(currencyRatios.first, currencyRatios.second); } } bool UnitConversionManager::UnitConverter::IsSwitchedActive() const { return m_switchedActive; } wstring UnitConverter::CategoryToString(const Category& c, wstring_view delimiter) { return Quote(std::to_wstring(c.id)) .append(delimiter) .append(Quote(std::to_wstring(c.supportsNegative))) .append(delimiter) .append(Quote(c.name)) .append(delimiter); } vector UnitConverter::StringToVector(wstring_view w, wstring_view delimiter, bool addRemainder) { size_t delimiterIndex = w.find(delimiter); size_t startIndex = 0; vector serializedTokens; while (delimiterIndex != wstring_view::npos) { serializedTokens.emplace_back(w.substr(startIndex, delimiterIndex - startIndex)); startIndex = delimiterIndex + static_cast(delimiter.size()); delimiterIndex = w.find(delimiter, startIndex); } if (addRemainder) { delimiterIndex = w.size(); serializedTokens.emplace_back(w.substr(startIndex, delimiterIndex - startIndex)); } return serializedTokens; } wstring UnitConverter::UnitToString(const Unit& u, wstring_view delimiter) { return Quote(std::to_wstring(u.id)) .append(delimiter) .append(Quote(u.name)) .append(delimiter) .append(Quote(u.abbreviation)) .append(delimiter) .append(std::to_wstring(u.isConversionSource)) .append(delimiter) .append(std::to_wstring(u.isConversionTarget)) .append(delimiter) .append(std::to_wstring(u.isWhimsical)) .append(delimiter); } Unit UnitConverter::StringToUnit(wstring_view w) { vector tokenList = StringToVector(w, L";"); assert(tokenList.size() == EXPECTEDSERIALIZEDUNITTOKENCOUNT); Unit serializedUnit; serializedUnit.id = wcstol(Unquote(tokenList[0]).c_str(), nullptr, 10); serializedUnit.name = Unquote(tokenList[1]); serializedUnit.accessibleName = serializedUnit.name; serializedUnit.abbreviation = Unquote(tokenList[2]); serializedUnit.isConversionSource = (tokenList[3] == L"1"); serializedUnit.isConversionTarget = (tokenList[4] == L"1"); serializedUnit.isWhimsical = (tokenList[5] == L"1"); return serializedUnit; } Category UnitConverter::StringToCategory(wstring_view w) { vector tokenList = StringToVector(w, L";"); assert(tokenList.size() == EXPECTEDSERIALIZEDCATEGORYTOKENCOUNT); Category serializedCategory; serializedCategory.id = wcstol(Unquote(tokenList[0]).c_str(), nullptr, 10); serializedCategory.supportsNegative = (tokenList[1] == L"1"); serializedCategory.name = Unquote(tokenList[2]); return serializedCategory; } /// /// De-Serializes the data in the converter from a string /// /// wstring_view holding the serialized data. If it does not have expected number of parameters, we will ignore it void UnitConverter::RestoreUserPreferences(wstring_view userPreferences) { if (userPreferences.empty()) { return; } vector outerTokens = StringToVector(userPreferences, L"|"); if (outerTokens.size() != 3) { return; } auto fromType = StringToUnit(outerTokens[0]); auto toType = StringToUnit(outerTokens[1]); m_currentCategory = StringToCategory(outerTokens[2]); // Only restore from the saved units if they are valid in the current available units. auto itr = m_categoryToUnits.find(m_currentCategory.id); if (itr != m_categoryToUnits.end()) { const auto& curUnits = itr->second; if (find(curUnits.begin(), curUnits.end(), fromType) != curUnits.end()) { m_fromType = fromType; } if (find(curUnits.begin(), curUnits.end(), toType) != curUnits.end()) { m_toType = toType; } } } /// /// Serializes the Category and Associated Units in the converter and returns it as a string /// wstring UnitConverter::SaveUserPreferences() { constexpr auto delimiter = L";"sv; constexpr auto pipe = L"|"sv; return UnitToString(m_fromType, delimiter) .append(pipe) .append(UnitToString(m_toType, delimiter)) .append(pipe) .append(CategoryToString(m_currentCategory, delimiter)) .append(pipe); } /// /// Sanitizes the input string, escape quoting any symbols we rely on for our delimiters, and returns the sanitized string. /// /// wstring_view to be sanitized wstring UnitConverter::Quote(wstring_view s) { wstring quotedString; // Iterate over the delimiter characters we need to quote for (const auto ch : s) { if (quoteConversions.find(ch) != quoteConversions.end()) { quotedString += quoteConversions[ch]; } else { quotedString += ch; } } return quotedString; } /// /// Unsanitizes the sanitized input string, returning it to its original contents before we had quoted it. /// /// wstring_view to be unsanitized wstring UnitConverter::Unquote(wstring_view s) { wstring quotedSubString; wstring unquotedString; wstring_view::const_iterator cursor = s.begin(); while (cursor != s.end()) { if (*cursor == LEFTESCAPECHAR) { quotedSubString.clear(); while (cursor != s.end() && *cursor != RIGHTESCAPECHAR) { quotedSubString += *cursor; ++cursor; } if (cursor == s.end()) { // Badly formatted break; } else { quotedSubString += *cursor; unquotedString += unquoteConversions[quotedSubString]; } } else { unquotedString += *cursor; } ++cursor; } return unquotedString; } /// /// Handles inputs to the converter from the view-model, corresponding to a given button or keyboard press /// /// Command enum representing the command that was entered void UnitConverter::SendCommand(Command command) { if (!CheckLoad()) { return; } // TODO: Localization of characters bool clearFront = false; bool clearBack = false; if (command != Command::Negate && m_switchedActive) { ClearValues(); m_switchedActive = false; clearFront = true; clearBack = false; } else { clearFront = (m_currentDisplay == L"0"); clearBack = ((m_currentHasDecimal && m_currentDisplay.size() - 1 >= MAXIMUMDIGITSALLOWED) || (!m_currentHasDecimal && m_currentDisplay.size() >= MAXIMUMDIGITSALLOWED)); } switch (command) { case Command::Zero: m_currentDisplay += L'0'; break; case Command::One: m_currentDisplay += L'1'; break; case Command::Two: m_currentDisplay += L'2'; break; case Command::Three: m_currentDisplay += L'3'; break; case Command::Four: m_currentDisplay += L'4'; break; case Command::Five: m_currentDisplay += L'5'; break; case Command::Six: m_currentDisplay += L'6'; break; case Command::Seven: m_currentDisplay += L'7'; break; case Command::Eight: m_currentDisplay += L'8'; break; case Command::Nine: m_currentDisplay += L'9'; break; case Command::Decimal: clearFront = false; clearBack = false; if (!m_currentHasDecimal) { m_currentDisplay += L'.'; m_currentHasDecimal = true; } break; case Command::Backspace: clearFront = false; clearBack = false; if ((m_currentDisplay.front() != L'-' && m_currentDisplay.size() > 1) || m_currentDisplay.size() > 2) { if (m_currentDisplay.back() == L'.') { m_currentHasDecimal = false; } m_currentDisplay.pop_back(); } else { m_currentDisplay = L"0"; m_currentHasDecimal = false; } break; case Command::Negate: clearFront = false; clearBack = false; if (m_currentCategory.supportsNegative) { if (m_currentDisplay.front() == L'-') { m_currentDisplay.erase(0, 1); } else { m_currentDisplay.insert(0, 1, L'-'); } } break; case Command::Clear: clearFront = false; clearBack = false; ClearValues(); break; case Command::Reset: clearFront = false; clearBack = false; ClearValues(); ResetCategoriesAndRatios(); break; default: break; } if (clearFront) { m_currentDisplay.erase(0, 1); } if (clearBack) { m_currentDisplay.pop_back(); m_vmCallback->MaxDigitsReached(); } Calculate(); } /// /// Sets the callback interface to send display update calls to /// /// instance of IDisplayCallback interface that receives our update calls void UnitConverter::SetViewModelCallback(_In_ const shared_ptr& newCallback) { m_vmCallback = newCallback; if (CheckLoad()) { UpdateViewModel(); } } void UnitConverter::SetViewModelCurrencyCallback(_In_ const shared_ptr& newCallback) { m_vmCurrencyCallback = newCallback; shared_ptr currencyDataLoader = GetCurrencyConverterDataLoader(); if (currencyDataLoader != nullptr) { currencyDataLoader->SetViewModelCallback(newCallback); } } future> UnitConverter::RefreshCurrencyRatios() { shared_ptr currencyDataLoader = GetCurrencyConverterDataLoader(); future loadDataResult; if (currencyDataLoader != nullptr) { loadDataResult = currencyDataLoader->TryLoadDataFromWebOverrideAsync(); } else { loadDataResult = async([] { return false; }); } shared_future sharedLoadResult = loadDataResult.share(); return async([currencyDataLoader, sharedLoadResult]() { sharedLoadResult.wait(); bool didLoad = sharedLoadResult.get(); wstring timestamp; if (currencyDataLoader != nullptr) { timestamp = currencyDataLoader->GetCurrencyTimestamp(); } return make_pair(didLoad, timestamp); }); } shared_ptr UnitConverter::GetCurrencyConverterDataLoader() { return dynamic_pointer_cast(m_currencyDataLoader); } /// /// Converts a double value into another unit type /// /// double input value to convert /// offset and ratio to use double UnitConverter::Convert(double value, const ConversionData& conversionData) { if (conversionData.offsetFirst) { return (value + conversionData.offset) * conversionData.ratio; } else { return (value * conversionData.ratio) + conversionData.offset; } } /// /// Calculates the suggested values for the current display value and returns them as a vector /// vector> UnitConverter::CalculateSuggested() { if (m_currencyDataLoader != nullptr && m_currencyDataLoader->SupportsCategory(m_currentCategory)) { return vector>(); } vector> returnVector; vector intermediateVector; vector intermediateWhimsicalVector; unordered_map ratios = m_ratioMap[m_fromType]; // Calculate converted values for every other unit type in this category, along with their magnitude for (const auto& cur : ratios) { if (cur.first != m_fromType && cur.first != m_toType) { double convertedValue = Convert(stod(m_currentDisplay), cur.second); SuggestedValueIntermediate newEntry; newEntry.magnitude = log10(convertedValue); newEntry.value = convertedValue; newEntry.type = cur.first; if (newEntry.type.isWhimsical) intermediateWhimsicalVector.push_back(newEntry); else intermediateVector.push_back(newEntry); } } // Sort the resulting list by absolute magnitude, breaking ties by choosing the positive value sort(intermediateVector.begin(), intermediateVector.end(), [](SuggestedValueIntermediate first, SuggestedValueIntermediate second) { if (abs(first.magnitude) == abs(second.magnitude)) { return first.magnitude > second.magnitude; } else { return abs(first.magnitude) < abs(second.magnitude); } }); // Now that the list is sorted, iterate over it and populate the return vector with properly rounded and formatted return strings for (const auto& entry : intermediateVector) { wstring roundedString; if (abs(entry.value) < 100) { roundedString = RoundSignificantDigits(entry.value, 2U); } else if (abs(entry.value) < 1000) { roundedString = RoundSignificantDigits(entry.value, 1U); } else { roundedString = RoundSignificantDigits(entry.value, 0U); } if (stod(roundedString) != 0.0 || m_currentCategory.supportsNegative) { TrimTrailingZeros(roundedString); returnVector.emplace_back(roundedString, entry.type); } } // The Whimsicals are determined differently // Sort the resulting list by absolute magnitude, breaking ties by choosing the positive value sort(intermediateWhimsicalVector.begin(), intermediateWhimsicalVector.end(), [](SuggestedValueIntermediate first, SuggestedValueIntermediate second) { if (abs(first.magnitude) == abs(second.magnitude)) { return first.magnitude > second.magnitude; } else { return abs(first.magnitude) < abs(second.magnitude); } }); // Now that the list is sorted, iterate over it and populate the return vector with properly rounded and formatted return strings vector> whimsicalReturnVector; for (const auto& entry : intermediateWhimsicalVector) { wstring roundedString; if (abs(entry.value) < 100) { roundedString = RoundSignificantDigits(entry.value, 2U); } else if (abs(entry.value) < 1000) { roundedString = RoundSignificantDigits(entry.value, 1U); } else { roundedString = RoundSignificantDigits(entry.value, 0U); } // How to work out which is the best whimsical value to add to the vector? if (stod(roundedString) != 0.0) { TrimTrailingZeros(roundedString); whimsicalReturnVector.emplace_back(roundedString, entry.type); } } // Pickup the 'best' whimsical value - currently the first one if (!whimsicalReturnVector.empty()) { returnVector.push_back(whimsicalReturnVector.front()); } return returnVector; } /// /// Resets categories and ratios /// void UnitConverter::ResetCategoriesAndRatios() { m_switchedActive = false; m_categories = m_dataLoader->GetOrderedCategories(); if (m_categories.empty()) { return; } m_currentCategory = m_categories[0]; m_categoryToUnits.clear(); m_ratioMap.clear(); bool readyCategoryFound = false; for (const Category& category : m_categories) { shared_ptr activeDataLoader = GetDataLoaderForCategory(category); if (activeDataLoader == nullptr) { // The data loader is different depending on the category, e.g. currency data loader // is different from the static data loader. // If there is no data loader for this category, continue. continue; } vector units = activeDataLoader->GetOrderedUnits(category); m_categoryToUnits[category.id] = units; // Just because the units are empty, doesn't mean the user can't select this category, // we just want to make sure we don't let an unready category be the default. if (!units.empty()) { for (const Unit& u : units) { m_ratioMap[u] = activeDataLoader->LoadOrderedRatios(u); } if (!readyCategoryFound) { m_currentCategory = category; readyCategoryFound = true; } } } InitializeSelectedUnits(); } /// /// Sets the active data loader based on the input category. /// shared_ptr UnitConverter::GetDataLoaderForCategory(const Category& category) { if (m_currencyDataLoader != nullptr && m_currencyDataLoader->SupportsCategory(category)) { return m_currencyDataLoader; } else { return m_dataLoader; } } /// /// Sets the initial values for m_fromType and m_toType. /// This is an internal helper method as opposed to SetCurrentUnits /// which is for external use by clients. /// If we fail to set units, we will fallback to the EMPTY_UNIT. /// void UnitConverter::InitializeSelectedUnits() { if (m_categoryToUnits.empty()) { return; } auto itr = m_categoryToUnits.find(m_currentCategory.id); if (itr == m_categoryToUnits.end()) { return; } const vector& curUnits = itr->second; if (!curUnits.empty()) { // Units may already have been initialized through UnitConverter::RestoreUserPreferences(). // Check if they have been, and if so, do not override restored units. const bool isFromUnitValid = m_fromType != EMPTY_UNIT && find(curUnits.begin(), curUnits.end(), m_fromType) != curUnits.end(); const bool isToUnitValid = m_toType != EMPTY_UNIT && find(curUnits.begin(), curUnits.end(), m_toType) != curUnits.end(); if (isFromUnitValid && isToUnitValid) { return; } bool conversionSourceSet = false; bool conversionTargetSet = false; for (const Unit& cur : curUnits) { if (!conversionSourceSet && cur.isConversionSource && !isFromUnitValid) { m_fromType = cur; conversionSourceSet = true; } if (!conversionTargetSet && cur.isConversionTarget && !isToUnitValid) { m_toType = cur; conversionTargetSet = true; } if (conversionSourceSet && conversionTargetSet) { return; } } } m_fromType = EMPTY_UNIT; m_toType = EMPTY_UNIT; } /// /// Resets the value fields to 0 /// void UnitConverter::ClearValues() { m_currentHasDecimal = false; m_returnHasDecimal = false; m_currentDisplay = L"0"; } /// /// Checks if either unit is EMPTY_UNIT. /// bool UnitConverter::AnyUnitIsEmpty() { return m_fromType == EMPTY_UNIT || m_toType == EMPTY_UNIT; } /// /// Calculates a new return value based on the current display value /// void UnitConverter::Calculate() { if (AnyUnitIsEmpty()) { m_returnDisplay = m_currentDisplay; m_returnHasDecimal = m_currentHasDecimal; TrimTrailingZeros(m_returnDisplay); UpdateViewModel(); return; } unordered_map conversionTable = m_ratioMap[m_fromType]; if (AnyUnitIsEmpty() || (conversionTable[m_toType].ratio == 1.0 && conversionTable[m_toType].offset == 0.0)) { m_returnDisplay = m_currentDisplay; m_returnHasDecimal = m_currentHasDecimal; TrimTrailingZeros(m_returnDisplay); } else { double currentValue = stod(m_currentDisplay); const double returnValue = Convert(currentValue, conversionTable[m_toType]); const auto isCurrencyConverter = m_currencyDataLoader != nullptr && m_currencyDataLoader->SupportsCategory(this->m_currentCategory); if (isCurrencyConverter) { // We don't need to trim the value when it's a currency. m_returnDisplay = RoundSignificantDigits(returnValue, MAXIMUMDIGITSALLOWED); TrimTrailingZeros(m_returnDisplay); } else { const unsigned int numPreDecimal = GetNumberDigitsWholeNumberPart(returnValue); if (numPreDecimal > MAXIMUMDIGITSALLOWED || (returnValue != 0 && abs(returnValue) < MINIMUMDECIMALALLOWED)) { m_returnDisplay = ToScientificNumber(returnValue); } else { const unsigned int currentNumberSignificantDigits = GetNumberDigits(m_currentDisplay); unsigned int precision; if (abs(returnValue) < OPTIMALDECIMALALLOWED) { precision = MAXIMUMDIGITSALLOWED; } else { // Fewer digits are needed following the decimal if the number is large, // we calculate the number of decimals necessary based on the number of digits in the integer part. auto numberDigits = max(OPTIMALDIGITSALLOWED, min(MAXIMUMDIGITSALLOWED, currentNumberSignificantDigits)); precision = numberDigits > numPreDecimal ? numberDigits - numPreDecimal : 0; } m_returnDisplay = RoundSignificantDigits(returnValue, precision); TrimTrailingZeros(m_returnDisplay); } m_returnHasDecimal = (m_returnDisplay.find(L'.') != wstring::npos); } } UpdateViewModel(); } void UnitConverter::UpdateCurrencySymbols() { if (m_currencyDataLoader != nullptr && m_vmCurrencyCallback != nullptr) { shared_ptr currencyDataLoader = GetCurrencyConverterDataLoader(); const pair currencySymbols = currencyDataLoader->GetCurrencySymbols(m_fromType, m_toType); const pair currencyRatios = currencyDataLoader->GetCurrencyRatioEquality(m_fromType, m_toType); m_vmCurrencyCallback->CurrencySymbolsCallback(currencySymbols.first, currencySymbols.second); m_vmCurrencyCallback->CurrencyRatiosCallback(currencyRatios.first, currencyRatios.second); } } void UnitConverter::UpdateViewModel() { m_vmCallback->DisplayCallback(m_currentDisplay, m_returnDisplay); m_vmCallback->SuggestedValueCallback(CalculateSuggested()); } ================================================ FILE: src/CalcManager/UnitConverter.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include #include #include "sal_cross_platform.h" // for SAL #include // for std::shared_ptr namespace UnitConversionManager { enum class Command; struct Unit { Unit() { } Unit(int id, std::wstring_view name, std::wstring abbreviation, bool isConversionSource, bool isConversionTarget, bool isWhimsical) : id(id) , name(name) , accessibleName(name) , abbreviation(std::move(abbreviation)) , isConversionSource(isConversionSource) , isConversionTarget(isConversionTarget) , isWhimsical(isWhimsical) { } Unit( int id, std::wstring_view currencyName, std::wstring_view countryName, std::wstring abbreviation, bool isRtlLanguage, bool isConversionSource, bool isConversionTarget) : id(id) , abbreviation(std::move(abbreviation)) , isConversionSource(isConversionSource) , isConversionTarget(isConversionTarget) , isWhimsical(false) { auto nameValue1 = isRtlLanguage ? currencyName : countryName; auto nameValue2 = isRtlLanguage ? countryName : currencyName; name = nameValue1; name.append(L" - ").append(nameValue2); accessibleName = nameValue1; accessibleName.append(1, L' ').append(nameValue2); } int id; std::wstring name; std::wstring accessibleName; std::wstring abbreviation; bool isConversionSource; bool isConversionTarget; bool isWhimsical; bool operator!=(const Unit& that) const { return that.id != id; } bool operator==(const Unit& that) const { return that.id == id; } }; // The EMPTY_UNIT acts as a 'null-struct' so that // Unit pointers can safely be dereferenced without // null checks. // // unitId, name, abbreviation, isConversionSource, isConversionTarget, isWhimsical inline const Unit EMPTY_UNIT = Unit{ -1, L"", L"", true, true, false }; struct Category { Category() { } Category(int id, std::wstring name, bool supportsNegative) : id(id) , name(std::move(name)) , supportsNegative(supportsNegative) { } int id; std::wstring name; bool supportsNegative; bool operator!=(const Category& that) const { return that.id != id; } bool operator==(const Category& that) const { return that.id == id; } }; class UnitHash { public: size_t operator()(const Unit& x) const { return x.id; } }; struct SuggestedValueIntermediate { double magnitude; double value; Unit type; }; struct ConversionData { ConversionData() { } ConversionData(double ratio, double offset, bool offsetFirst) : ratio(ratio) , offset(offset) , offsetFirst(offsetFirst) { } double ratio; double offset; bool offsetFirst; }; struct CurrencyStaticData { std::wstring countryCode; std::wstring countryName; std::wstring currencyCode; std::wstring currencyName; std::wstring currencySymbol; }; struct CurrencyRatio { double ratio; std::wstring sourceCurrencyCode; std::wstring targetCurrencyCode; }; using CategorySelectionInitializer = std::tuple, UnitConversionManager::Unit, UnitConversionManager::Unit>; using UnitToUnitToConversionDataMap = std::unordered_map< UnitConversionManager::Unit, std::unordered_map, UnitConversionManager::UnitHash>; using CategoryToUnitVectorMap = std::unordered_map>; class IViewModelCurrencyCallback { public: virtual ~IViewModelCurrencyCallback(){}; virtual void CurrencyDataLoadFinished(bool didLoad) = 0; virtual void CurrencySymbolsCallback(_In_ const std::wstring& fromSymbol, _In_ const std::wstring& toSymbol) = 0; virtual void CurrencyRatiosCallback(_In_ const std::wstring& ratioEquality, _In_ const std::wstring& accRatioEquality) = 0; virtual void CurrencyTimestampCallback(_In_ const std::wstring& timestamp, bool isWeekOldData) = 0; virtual void NetworkBehaviorChanged(_In_ int newBehavior) = 0; }; class IConverterDataLoader { public: virtual ~IConverterDataLoader(){}; virtual void LoadData() = 0; // prepare data if necessary before calling other functions virtual std::vector GetOrderedCategories() = 0; virtual std::vector GetOrderedUnits(const Category& c) = 0; virtual std::unordered_map LoadOrderedRatios(const Unit& u) = 0; virtual bool SupportsCategory(const Category& target) = 0; }; class ICurrencyConverterDataLoader { public: virtual void SetViewModelCallback(const std::shared_ptr& callback) = 0; virtual std::pair GetCurrencySymbols(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) = 0; virtual std::pair GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) = 0; virtual std::wstring GetCurrencyTimestamp() = 0; virtual std::future TryLoadDataFromCacheAsync() = 0; virtual std::future TryLoadDataFromWebAsync() = 0; virtual std::future TryLoadDataFromWebOverrideAsync() = 0; }; class IUnitConverterVMCallback { public: virtual ~IUnitConverterVMCallback(){}; virtual void DisplayCallback(const std::wstring& from, const std::wstring& to) = 0; virtual void SuggestedValueCallback(const std::vector>& suggestedValues) = 0; virtual void MaxDigitsReached() = 0; }; class IUnitConverter { public: virtual ~IUnitConverter() { } virtual void Initialize() = 0; // Use to initialize first time, use deserialize instead to rehydrate virtual std::vector GetCategories() = 0; virtual CategorySelectionInitializer SetCurrentCategory(const Category& input) = 0; virtual Category GetCurrentCategory() = 0; virtual void SetCurrentUnitTypes(const Unit& fromType, const Unit& toType) = 0; virtual void SwitchActive(const std::wstring& newValue) = 0; virtual bool IsSwitchedActive() const = 0; virtual std::wstring SaveUserPreferences() = 0; virtual void RestoreUserPreferences(_In_ std::wstring_view userPreferences) = 0; virtual void SendCommand(Command command) = 0; virtual void SetViewModelCallback(_In_ const std::shared_ptr& newCallback) = 0; virtual void SetViewModelCurrencyCallback(_In_ const std::shared_ptr& newCallback) = 0; virtual std::future> RefreshCurrencyRatios() = 0; virtual void Calculate() = 0; virtual void ResetCategoriesAndRatios() = 0; }; class UnitConverter : public IUnitConverter, public std::enable_shared_from_this { public: UnitConverter(_In_ const std::shared_ptr& dataLoader); UnitConverter(_In_ const std::shared_ptr& dataLoader, _In_ const std::shared_ptr& currencyDataLoader); // IUnitConverter void Initialize() override; std::vector GetCategories() override; CategorySelectionInitializer SetCurrentCategory(const Category& input) override; Category GetCurrentCategory() override; void SetCurrentUnitTypes(const Unit& fromType, const Unit& toType) override; void SwitchActive(const std::wstring& newValue) override; bool IsSwitchedActive() const override; std::wstring SaveUserPreferences() override; void RestoreUserPreferences(std::wstring_view userPreference) override; void SendCommand(Command command) override; void SetViewModelCallback(_In_ const std::shared_ptr& newCallback) override; void SetViewModelCurrencyCallback(_In_ const std::shared_ptr& newCallback) override; std::future> RefreshCurrencyRatios() override; void Calculate() override; void ResetCategoriesAndRatios() override; // IUnitConverter static std::vector StringToVector(std::wstring_view w, std::wstring_view delimiter, bool addRemainder = false); static std::wstring Quote(std::wstring_view s); static std::wstring Unquote(std::wstring_view s); private: bool CheckLoad(); double Convert(double value, const ConversionData& conversionData); std::vector> CalculateSuggested(); void ClearValues(); void InitializeSelectedUnits(); Category StringToCategory(std::wstring_view w); std::wstring CategoryToString(const Category& c, std::wstring_view delimiter); std::wstring UnitToString(const Unit& u, std::wstring_view delimiter); Unit StringToUnit(std::wstring_view w); void UpdateCurrencySymbols(); void UpdateViewModel(); bool AnyUnitIsEmpty(); std::shared_ptr GetDataLoaderForCategory(const Category& category); std::shared_ptr GetCurrencyConverterDataLoader(); private: std::shared_ptr m_dataLoader; std::shared_ptr m_currencyDataLoader; std::shared_ptr m_vmCallback; std::shared_ptr m_vmCurrencyCallback; std::vector m_categories; CategoryToUnitVectorMap m_categoryToUnits; UnitToUnitToConversionDataMap m_ratioMap; Category m_currentCategory; Unit m_fromType; Unit m_toType; std::wstring m_currentDisplay; std::wstring m_returnDisplay; bool m_currentHasDecimal; bool m_returnHasDecimal; bool m_switchedActive; }; } ================================================ FILE: src/CalcManager/pch.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Intentionally do not include the pch.h here. For projects that don't // use precompiled headers, including the header here would force unnecessary compilation. // The pch will be included through forced include. ================================================ FILE: src/CalcManager/pch.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once // The CalcManager project should be able to be compiled with or without a precompiled header // in - order to support other toolchains besides MSVC. When adding new system headers, make sure // that the relevant source file includes all headers it needs, but then also add the system headers // here so that MSVC users see the performance benefit. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include ================================================ FILE: src/CalcManager/ratpak.natvis ================================================ sign exp cdigit mant {*pp}/{*pq} ================================================ FILE: src/CalcManager/sal_cross_platform.h ================================================ #pragma once #if defined(_WIN32) && defined(_MSC_VER) #include #else // Empty macro definitions for source annotations #define _In_opt_ #define _Out_opt_ #define _In_ #define _Out_ #define _Inout_ #define __in_opt #define _Frees_ptr_opt_ #endif ================================================ FILE: src/CalcManager/winerror_cross_platform.h ================================================ #pragma once #if defined(_WIN32) && defined(_MSC_VER) #include #else #include "Ratpack/CalcErr.h" #define E_ACCESSDENIED 0x80070005 #define E_FAIL 0x80004005 #define E_INVALIDARG 0x80070057 #define E_OUTOFMEMORY 0x8007000E #define E_POINTER 0x80004003 #define E_UNEXPECTED 0x8000FFFF #define E_BOUNDS 0x8000000B #define S_OK 0x0 #define S_FALSE 0x1 #define SUCCEEDED(hr) (((ResultCode)(hr)) >= 0) #define FAILED(hr) (((ResultCode)(hr)) < 0) #define SCODE_CODE(sc) ((sc)&0xFFFF) #endif ================================================ FILE: src/CalcViewModel/CalcViewModel.rc ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #define APP_FILE_NAME "CalcViewModel" #define APP_FILE_IS_EXE #define APP_PRODUCT_NAME "Microsoft Calculator ViewModel" #define APP_COMPANY_NAME "Microsoft Corporation" #define APP_COPYRIGHT "\251 Microsoft Corporation. All rights reserved." #include "../build/appversion.rc" ================================================ FILE: src/CalcViewModel/CalcViewModel.vcxproj ================================================ Debug ARM64 Debug Win32 Debug x64 Release ARM64 Release Win32 Release x64 {812d1a7b-b8ac-49e4-8e6d-af5d59500d56} WindowsRuntimeComponent CalculatorApp.ViewModel en-US 14.0 true Windows Store 10.0.26100.0 10.0.19041.0 10.0 DynamicLibrary true v143 DynamicLibrary true v143 DynamicLibrary true v143 DynamicLibrary false true v143 DynamicLibrary false true v143 DynamicLibrary false true v143 false false false false false false Use _WINRT_DLL;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Level4 true Console false Use _WINRT_DLL;NDEBUG;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Guard Level4 true Console false Use _WINRT_DLL;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Level4 true Console false Use _WINRT_DLL;NDEBUG;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Guard Level4 true Console false Use _WINRT_DLL;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Level4 true Console false Use _WINRT_DLL;NDEBUG;%(PreprocessorDefinitions) pch.h $(IntDir)pch.pch $(SolutionDir);%(AdditionalIncludeDirectories) $(WindowsSDK_WindowsMetadata);$(AdditionalUsingDirectories) /bigobj /await /w44242 %(AdditionalOptions) 28204;4453 stdcpp17 Guard Level4 true Console false /DSEND_DIAGNOSTICS %(AdditionalOptions) 0.0.0.0 Create Create Create Create Create Create {311e866d-8b93-4609-a691-265941fee101} {e727a92b-f149-492c-8117-c039a298719b} {fc81ff41-02cd-4cd9-9bc5-45a1e39ac6ed} ================================================ FILE: src/CalcViewModel/CalcViewModel.vcxproj.filters ================================================  {05fb7833-4679-4430-bf21-808354e815bf} {8f1ef587-e5ce-4fc2-b9b7-73326d5e779a} {70216695-3d7b-451a-98e4-cacbea3ba0a6} {9b94309f-6b9b-4cbb-8584-4273061cc432} Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common\Automation Common\Automation DataLoaders DataLoaders DataLoaders GraphingCalculator GraphingCalculator GraphingCalculator Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common\Automation Common\Automation DataLoaders DataLoaders DataLoaders DataLoaders GraphingCalculator GraphingCalculator GraphingCalculator GraphingCalculator DataLoaders ================================================ FILE: src/CalcViewModel/Common/AlwaysSelectedCollectionView.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp { namespace Common { ref class AlwaysSelectedCollectionView sealed : public Windows::UI::Xaml::DependencyObject, public Windows::UI::Xaml::Data::ICollectionView { internal : AlwaysSelectedCollectionView(Windows::UI::Xaml::Interop::IBindableVector ^ source) : m_currentPosition(-1) { m_source = source; Windows::UI::Xaml::Interop::IBindableObservableVector ^ observable = dynamic_cast(source); if (observable) { observable->VectorChanged += ref new Windows::UI::Xaml::Interop::BindableVectorChangedEventHandler( this, &AlwaysSelectedCollectionView::OnSourceBindableVectorChanged); } } private: // ICollectionView // Not implemented methods virtual WF::IAsyncOperation< Windows::UI::Xaml::Data::LoadMoreItemsResult> ^ LoadMoreItemsAsync(unsigned int) = Windows::UI::Xaml::Data::ICollectionView::LoadMoreItemsAsync { throw ref new Platform::NotImplementedException(); } virtual bool MoveCurrentToFirst() = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentToFirst { throw ref new Platform::NotImplementedException(); } virtual bool MoveCurrentToLast() = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentToLast { throw ref new Platform::NotImplementedException(); } virtual bool MoveCurrentToNext() = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentToNext { throw ref new Platform::NotImplementedException(); } virtual bool MoveCurrentToPrevious() = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentToPrevious { throw ref new Platform::NotImplementedException(); } property Windows::Foundation::Collections::IObservableVector ^ CollectionGroups { virtual Windows::Foundation::Collections::IObservableVector< Platform::Object ^> ^ get() = Windows::UI::Xaml::Data::ICollectionView::CollectionGroups::get { return ref new Platform::Collections::Vector(); } } property bool HasMoreItems { virtual bool get() = Windows::UI::Xaml::Data::ICollectionView::HasMoreItems::get { return false; } } // Implemented methods virtual bool MoveCurrentTo(Platform::Object ^ item) = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentTo { if (item) { unsigned int newCurrentPosition = 0; bool result = m_source->IndexOf(item, &newCurrentPosition); if (result) { m_currentPosition = newCurrentPosition; m_currentChanged(this, nullptr); return true; } } // The item is not in the collection // We're going to schedule a call back later so we // restore the selection to the way we wanted it to begin with if (m_currentPosition >= 0 && m_currentPosition < static_cast(m_source->Size)) { this->Dispatcher->RunAsync(Windows::UI::Core::CoreDispatcherPriority::Normal, ref new Windows::UI::Core::DispatchedHandler([this]() { m_currentChanged(this, nullptr); })); } return false; } virtual bool MoveCurrentToPosition(int index) = Windows::UI::Xaml::Data::ICollectionView::MoveCurrentToPosition { if (index < 0 || index >= static_cast(m_source->Size)) { return false; } m_currentPosition = index; m_currentChanged(this, nullptr); return true; } property Platform::Object^ CurrentItem { virtual Platform::Object^ get() = Windows::UI::Xaml::Data::ICollectionView::CurrentItem::get { if (m_currentPosition >= 0 && m_currentPosition < static_cast(m_source->Size)) { return m_source->GetAt(m_currentPosition); } return nullptr; } } property int CurrentPosition { virtual int get() = Windows::UI::Xaml::Data::ICollectionView::CurrentPosition::get { return m_currentPosition; } } property bool IsCurrentAfterLast { virtual bool get() = Windows::UI::Xaml::Data::ICollectionView::IsCurrentAfterLast::get { return m_currentPosition >= static_cast(m_source->Size); } } property bool IsCurrentBeforeFirst { virtual bool get() = Windows::UI::Xaml::Data::ICollectionView::IsCurrentBeforeFirst::get { return m_currentPosition < 0; } } event WF::EventHandler^ CurrentChanged { virtual WF::EventRegistrationToken add(WF::EventHandler^ handler) = Windows::UI::Xaml::Data::ICollectionView::CurrentChanged::add { return m_currentChanged += handler; } virtual void remove(WF::EventRegistrationToken token) = Windows::UI::Xaml::Data::ICollectionView::CurrentChanged::remove { m_currentChanged -= token; } } event Windows::UI::Xaml::Data::CurrentChangingEventHandler^ CurrentChanging { virtual WF::EventRegistrationToken add(Windows::UI::Xaml::Data::CurrentChangingEventHandler^ handler) = Windows::UI::Xaml::Data::ICollectionView::CurrentChanging::add { return m_currentChanging += handler; } virtual void remove(WF::EventRegistrationToken token) = Windows::UI::Xaml::Data::ICollectionView::CurrentChanging::remove { m_currentChanging -= token; } } // IVector // Not implemented methods virtual void Append(Platform::Object^ /*item*/) = Windows::Foundation::Collections::IVector::Append { throw ref new Platform::NotImplementedException(); } virtual void Clear() = Windows::Foundation::Collections::IVector::Clear { throw ref new Platform::NotImplementedException(); } virtual unsigned int GetMany( unsigned int /*startIndex*/, Platform::WriteOnlyArray ^ /*items*/) = Windows::Foundation::Collections::IVector::GetMany { throw ref new Platform::NotImplementedException(); } virtual Windows::Foundation::Collections::IVectorView ^ GetView() = Windows::Foundation::Collections::IVector< Platform::Object ^>::GetView { throw ref new Platform::NotImplementedException(); } virtual void InsertAt(unsigned int /*index*/, Platform::Object ^ /*item*/) = Windows::Foundation::Collections::IVector::InsertAt { throw ref new Platform::NotImplementedException(); } virtual void RemoveAt(unsigned int /*index*/) = Windows::Foundation::Collections::IVector::RemoveAt { throw ref new Platform::NotImplementedException(); } virtual void RemoveAtEnd() = Windows::Foundation::Collections::IVector::RemoveAtEnd { throw ref new Platform::NotImplementedException(); } virtual void ReplaceAll(const Platform::Array ^ /*items*/) = Windows::Foundation::Collections::IVector::ReplaceAll { throw ref new Platform::NotImplementedException(); } virtual void SetAt(unsigned int /*index*/, Platform::Object ^ /*item*/) = Windows::Foundation::Collections::IVector::SetAt { throw ref new Platform::NotImplementedException(); } // Implemented methods virtual Platform::Object ^ GetAt(unsigned int index) = Windows::Foundation::Collections::IVector::GetAt { return m_source->GetAt(index); } virtual bool IndexOf(Platform::Object ^ item, unsigned int* index) = Windows::Foundation::Collections::IVector::IndexOf { return m_source->IndexOf(item, index); } property unsigned int Size { virtual unsigned int get() = Windows::Foundation::Collections::IVector::Size::get { return m_source->Size; } } // IObservableVector event Windows::Foundation::Collections::VectorChangedEventHandler^ VectorChanged { virtual WF::EventRegistrationToken add(Windows::Foundation::Collections::VectorChangedEventHandler^ handler) = Windows::Foundation::Collections::IObservableVector::VectorChanged::add { return m_vectorChanged += handler; } virtual void remove(WF::EventRegistrationToken token) = Windows::Foundation::Collections::IObservableVector::VectorChanged::remove { m_vectorChanged -= token; } } // IIterable // Not implemented virtual Windows::Foundation::Collections::IIterator^ First() = Windows::Foundation::Collections::IIterable::First { throw ref new Platform::NotImplementedException(); } // Event handlers void OnSourceBindableVectorChanged(Windows::UI::Xaml::Interop::IBindableObservableVector ^ source, Platform::Object ^ e) { Windows::Foundation::Collections::IVectorChangedEventArgs ^ args = safe_cast(e); m_vectorChanged(this, args); } Windows::UI::Xaml::Interop::IBindableVector ^ m_source; int m_currentPosition; event WF::EventHandler ^ m_currentChanged; event Windows::UI::Xaml::Data::CurrentChangingEventHandler ^ m_currentChanging; event Windows::Foundation::Collections::VectorChangedEventHandler ^ m_vectorChanged; }; public ref class AlwaysSelectedCollectionViewConverter sealed : public Windows::UI::Xaml::Data::IValueConverter { public: AlwaysSelectedCollectionViewConverter() { } private: virtual Platform::Object ^ Convert( Platform::Object ^ value, Windows::UI::Xaml::Interop::TypeName /*targetType*/, Platform::Object ^ /*parameter*/, Platform::String ^ /*language*/) = Windows::UI::Xaml::Data::IValueConverter::Convert { auto result = dynamic_cast(value); if (result) { return ref new AlwaysSelectedCollectionView(result); } return Windows::UI::Xaml::DependencyProperty::UnsetValue; // Can't convert } virtual Platform::Object ^ ConvertBack( Platform::Object ^ /*value*/, Windows::UI::Xaml::Interop::TypeName /*targetType*/, Platform::Object ^ /*parameter*/, Platform::String ^ /*language*/) = Windows::UI::Xaml::Data::IValueConverter::ConvertBack { return Windows::UI::Xaml::DependencyProperty::UnsetValue; } }; } } ================================================ FILE: src/CalcViewModel/Common/AppResourceProvider.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "AppResourceProvider.h" using namespace Platform; using namespace Windows::ApplicationModel::Resources; using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; AppResourceProvider::AppResourceProvider() { m_stringResLoader = ResourceLoader::GetForViewIndependentUse(); m_cEngineStringResLoader = ResourceLoader::GetForViewIndependentUse(L"CEngineStrings"); } AppResourceProvider ^ AppResourceProvider::GetInstance() { static AppResourceProvider ^ s_instance = ref new AppResourceProvider(); return s_instance; } String ^ AppResourceProvider::GetResourceString(_In_ String ^ key) { return m_stringResLoader->GetString(key); } String ^ AppResourceProvider::GetCEngineString(_In_ String ^ key) { return m_cEngineStringResLoader->GetString(key); } ================================================ FILE: src/CalcViewModel/Common/AppResourceProvider.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel::Common { public ref class AppResourceProvider sealed { public: static AppResourceProvider ^ GetInstance(); Platform::String ^ GetResourceString(_In_ Platform::String ^ key); Platform::String ^ GetCEngineString(_In_ Platform::String ^ key); private: AppResourceProvider(); Windows::ApplicationModel::Resources::ResourceLoader ^ m_stringResLoader; Windows::ApplicationModel::Resources::ResourceLoader ^ m_cEngineStringResLoader; }; } ================================================ FILE: src/CalcViewModel/Common/Automation/INarratorAnnouncementHost.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "NarratorAnnouncement.h" // Declaration of the INarratorAnnouncementHost interface. // This interface exists to hide the concrete announcement host // being used. Depending on the version of the OS the app is running on, // the app may need a host that uses LiveRegionChanged or RaiseNotification. namespace CalculatorApp::ViewModel::Common::Automation { public interface class INarratorAnnouncementHost { public: // Is the host available on this OS. bool IsHostAvailable(); // Make a new instance of a concrete host. INarratorAnnouncementHost ^ MakeHost(); // Make an announcement using the concrete host's preferred method. void Announce(NarratorAnnouncement ^ announcement); }; } ================================================ FILE: src/CalcViewModel/Common/Automation/LiveRegionHost.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "LiveRegionHost.h" using namespace CalculatorApp::ViewModel::Common::Automation; using namespace Windows::UI::Xaml::Automation; using namespace Windows::UI::Xaml::Automation::Peers; using namespace Windows::UI::Xaml::Controls; LiveRegionHost::LiveRegionHost() : m_host(nullptr) { } bool LiveRegionHost::IsHostAvailable() { // LiveRegion is always available. return true; } INarratorAnnouncementHost ^ LiveRegionHost::MakeHost() { return ref new LiveRegionHost(); } void LiveRegionHost::Announce(NarratorAnnouncement ^ announcement) { if (m_host == nullptr) { m_host = ref new TextBlock(); AutomationProperties::SetLiveSetting(m_host, AutomationLiveSetting::Assertive); } AutomationProperties::SetName(m_host, announcement->Announcement); AutomationPeer ^ peer = FrameworkElementAutomationPeer::FromElement(m_host); if (peer != nullptr) { peer->RaiseAutomationEvent(AutomationEvents::LiveRegionChanged); } } ================================================ FILE: src/CalcViewModel/Common/Automation/LiveRegionHost.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "INarratorAnnouncementHost.h" // Declaration of the LiveRegionHost class. // This class announces NarratorAnnouncements using the LiveRegionChanged event. // This event is unreliable and should be deprecated in favor of the new // RaiseNotification API in RS3. namespace CalculatorApp::ViewModel::Common::Automation { // This class exists so that the app can run on RS2 and use LiveRegions // to host notifications on those builds. // When the app switches to min version RS3, this class can be removed // and the app will switch to using the Notification API. // TODO - MSFT 12735088 public ref class LiveRegionHost sealed : public INarratorAnnouncementHost { public: LiveRegionHost(); virtual bool IsHostAvailable(); virtual INarratorAnnouncementHost ^ MakeHost(); virtual void Announce(NarratorAnnouncement ^ announcement); private: Windows::UI::Xaml::UIElement ^ m_host; }; } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorAnnouncement.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "NarratorAnnouncement.h" using namespace CalculatorApp::ViewModel::Common::Automation; using namespace Platform; using namespace Windows::UI::Xaml::Automation::Peers; namespace CalculatorApp::ViewModel::Common::Automation { namespace CalculatorActivityIds { StringReference DisplayUpdated(L"DisplayUpdated"); StringReference MaxDigitsReached(L"MaxDigitsReached"); StringReference MemoryCleared(L"MemoryCleared"); StringReference MemoryItemChanged(L"MemorySlotChanged"); StringReference MemoryItemAdded(L"MemorySlotAdded"); StringReference HistoryCleared(L"HistoryCleared"); StringReference HistorySlotCleared(L"HistorySlotCleared"); StringReference CategoryNameChanged(L"CategoryNameChanged"); StringReference UpdateCurrencyRates(L"UpdateCurrencyRates"); StringReference DisplayCopied(L"DisplayCopied"); StringReference OpenParenthesisCountChanged(L"OpenParenthesisCountChanged"); StringReference NoParenthesisAdded(L"NoParenthesisAdded"); StringReference GraphModeChanged(L"GraphModeChanged"); StringReference GraphViewChanged(L"GraphViewChanged"); StringReference FunctionRemoved(L"FunctionRemoved"); StringReference GraphViewBestFitChanged(L"GraphViewBestFitChanged"); StringReference AlwaysOnTop(L"AlwaysOnTop"); StringReference BitShiftRadioButtonContent(L"BitShiftRadioButtonContent"); StringReference SettingsPageOpened(L"SettingsPageOpened"); } } NarratorAnnouncement::NarratorAnnouncement( String ^ announcement, String ^ activityId, AutomationNotificationKind kind, AutomationNotificationProcessing processing) : m_announcement(announcement) , m_activityId(activityId) , m_kind(kind) , m_processing(processing) { } String ^ NarratorAnnouncement::Announcement::get() { return m_announcement; } String ^ NarratorAnnouncement::ActivityId::get() { return m_activityId; } AutomationNotificationKind NarratorAnnouncement::Kind::get() { return m_kind; } AutomationNotificationProcessing NarratorAnnouncement::Processing::get() { return m_processing; } bool NarratorAnnouncement::IsValid(NarratorAnnouncement ^ announcement) { return announcement != nullptr && announcement->Announcement != nullptr && !announcement->Announcement->IsEmpty(); } NarratorAnnouncement ^ CalculatorAnnouncement::GetDisplayUpdatedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::DisplayUpdated, AutomationNotificationKind::Other, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetMaxDigitsReachedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::MaxDigitsReached, AutomationNotificationKind::Other, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetMemoryClearedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::MemoryCleared, AutomationNotificationKind::ItemRemoved, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetMemoryItemChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::MemoryItemChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::MostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetMemoryItemAddedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::MemoryItemAdded, AutomationNotificationKind::ItemAdded, AutomationNotificationProcessing::MostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetHistoryClearedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::HistoryCleared, AutomationNotificationKind::ItemRemoved, AutomationNotificationProcessing::MostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetHistorySlotClearedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::HistorySlotCleared, AutomationNotificationKind::ItemRemoved, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetCategoryNameChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::CategoryNameChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetUpdateCurrencyRatesAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::UpdateCurrencyRates, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetDisplayCopiedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::DisplayCopied, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetOpenParenthesisCountChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::OpenParenthesisCountChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetNoRightParenthesisAddedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::NoParenthesisAdded, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetGraphModeChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::GraphModeChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetGraphViewChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::GraphViewChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::CurrentThenMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetFunctionRemovedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::FunctionRemoved, AutomationNotificationKind::ItemRemoved, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetGraphViewBestFitChangedAnnouncement(Platform::String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::GraphViewBestFitChanged, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::MostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetAlwaysOnTopChangedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::AlwaysOnTop, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetBitShiftRadioButtonCheckedAnnouncement(String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::BitShiftRadioButtonContent, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } NarratorAnnouncement ^ CalculatorAnnouncement::GetSettingsPageOpenedAnnouncement(Platform::String ^ announcement) { return ref new NarratorAnnouncement( announcement, CalculatorActivityIds::SettingsPageOpened, AutomationNotificationKind::ActionCompleted, AutomationNotificationProcessing::ImportantMostRecent); } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorAnnouncement.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel::Common::Automation { public ref class NarratorAnnouncement sealed { public: property Platform::String ^ Announcement { Platform::String ^ get(); } property Platform::String ^ ActivityId { Platform::String ^ get(); } property Windows::UI::Xaml::Automation::Peers::AutomationNotificationKind Kind { Windows::UI::Xaml::Automation::Peers::AutomationNotificationKind get(); } property Windows::UI::Xaml::Automation::Peers::AutomationNotificationProcessing Processing { Windows::UI::Xaml::Automation::Peers::AutomationNotificationProcessing get(); } static bool IsValid(NarratorAnnouncement ^ announcement); private: Platform::String ^ m_announcement; Platform::String ^ m_activityId; Windows::UI::Xaml::Automation::Peers::AutomationNotificationKind m_kind; Windows::UI::Xaml::Automation::Peers::AutomationNotificationProcessing m_processing; internal: NarratorAnnouncement( Platform::String ^ announcement, Platform::String ^ activityId, Windows::UI::Xaml::Automation::Peers::AutomationNotificationKind kind, Windows::UI::Xaml::Automation::Peers::AutomationNotificationProcessing processing); }; // CalculatorAnnouncement is intended to contain only static methods // that return announcements made for the Calculator app. public ref class CalculatorAnnouncement sealed { public: static NarratorAnnouncement ^ GetDisplayUpdatedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetMaxDigitsReachedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetMemoryClearedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetMemoryItemChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetMemoryItemAddedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetHistoryClearedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetHistorySlotClearedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetCategoryNameChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetUpdateCurrencyRatesAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetDisplayCopiedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetOpenParenthesisCountChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetNoRightParenthesisAddedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetGraphModeChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetGraphViewChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetGraphViewBestFitChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetFunctionRemovedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetAlwaysOnTopChangedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetBitShiftRadioButtonCheckedAnnouncement(Platform::String ^ announcement); static NarratorAnnouncement ^ GetSettingsPageOpenedAnnouncement(Platform::String ^ announcement); }; } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorAnnouncementHostFactory.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "NarratorAnnouncementHostFactory.h" #include "NotificationHost.h" #include "LiveRegionHost.h" using namespace CalculatorApp::ViewModel::Common::Automation; using namespace std; INarratorAnnouncementHost ^ NarratorAnnouncementHostFactory::s_hostProducer; vector NarratorAnnouncementHostFactory::s_hosts; // This static variable is used only to call the initialization function, to initialize the other static variables. int NarratorAnnouncementHostFactory::s_init = NarratorAnnouncementHostFactory::Initialize(); int NarratorAnnouncementHostFactory::Initialize() { RegisterHosts(); NarratorAnnouncementHostFactory::s_hostProducer = GetHostProducer(); return 0; } // For now, there are two type of announcement hosts. // We'd prefer to use Notification if it's available and fall back to LiveRegion // if not. The availability of the host depends on the version of the OS the app is running on. // When the app switches to min version RS3, the LiveRegionHost can be removed and we will always // use NotificationHost. // TODO - MSFT 12735088 void NarratorAnnouncementHostFactory::RegisterHosts() { // The host that will be used is the first available host, // therefore, order of hosts is important here. NarratorAnnouncementHostFactory::s_hosts = { ref new NotificationHost(), ref new LiveRegionHost() }; } INarratorAnnouncementHost ^ NarratorAnnouncementHostFactory::GetHostProducer() { for (INarratorAnnouncementHost ^ host : NarratorAnnouncementHostFactory::s_hosts) { if (host->IsHostAvailable()) { return host; } } assert(false && L"No suitable AnnouncementHost was found."); return nullptr; } INarratorAnnouncementHost ^ NarratorAnnouncementHostFactory::MakeHost() { if (NarratorAnnouncementHostFactory::s_hostProducer == nullptr) { assert(false && L"No host producer has been assigned."); return nullptr; } return NarratorAnnouncementHostFactory::s_hostProducer->MakeHost(); } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorAnnouncementHostFactory.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "INarratorAnnouncementHost.h" // Declaration of the NarratorAnnouncementHostFactory class. // This class exists to hide the construction of a concrete INarratorAnnouncementHost. // Depending on the version of the OS the app is running on, the factory will return // an announcement host appropriate for that version. namespace CalculatorApp::ViewModel::Common::Automation { class NarratorAnnouncementHostFactory { public: static INarratorAnnouncementHost ^ MakeHost(); private: NarratorAnnouncementHostFactory() { } static int Initialize(); static void RegisterHosts(); static INarratorAnnouncementHost ^ GetHostProducer(); private: static int s_init; static INarratorAnnouncementHost ^ s_hostProducer; static std::vector s_hosts; }; } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorNotifier.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Implementation of the NarratorNotifier class. #include "pch.h" #include "NarratorNotifier.h" using namespace CalculatorApp::ViewModel::Common::Automation; using namespace Platform; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Automation; using namespace Windows::UI::Xaml::Automation::Peers; DependencyProperty ^ NarratorNotifier::s_announcementProperty; NarratorNotifier::NarratorNotifier() { } void NarratorNotifier::Announce(NarratorAnnouncement ^ announcement) { if (NarratorAnnouncement::IsValid(announcement)) { if (m_announcementElement == nullptr) { m_announcementElement = ref new Windows::UI::Xaml::Controls::TextBlock(); } auto peer = FrameworkElementAutomationPeer::FromElement(m_announcementElement); if (peer != nullptr) { peer->RaiseNotificationEvent(announcement->Kind, announcement->Processing, announcement->Announcement, announcement->ActivityId); } } } void NarratorNotifier::RegisterDependencyProperties() { s_announcementProperty = DependencyProperty::Register( L"Announcement", // The name of the dependency property. NarratorAnnouncement::typeid, // The type of the dependency property. NarratorNotifier::typeid, // The owner of the dependency property. ref new PropertyMetadata( nullptr, // Default value of the dependency property. ref new PropertyChangedCallback(OnAnnouncementChanged))); } void NarratorNotifier::OnAnnouncementChanged(_In_ DependencyObject ^ dependencyObject, _In_ DependencyPropertyChangedEventArgs ^ e) { auto instance = safe_cast(dependencyObject); if (instance != nullptr) { instance->Announce(safe_cast(e->NewValue)); } } ================================================ FILE: src/CalcViewModel/Common/Automation/NarratorNotifier.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Declaration of the NarratorNotifier class. #pragma once #include "NarratorAnnouncement.h" namespace CalculatorApp::ViewModel::Common::Automation { public ref class NarratorNotifier sealed : public Windows::UI::Xaml::DependencyObject { public: NarratorNotifier(); void Announce(NarratorAnnouncement ^ announcement); property NarratorAnnouncement^ Announcement { NarratorAnnouncement^ get() { return GetAnnouncement(this); } void set(NarratorAnnouncement^ value) { SetAnnouncement(this, value); } } static void RegisterDependencyProperties(); static property Windows::UI::Xaml::DependencyProperty ^ AnnouncementProperty { Windows::UI::Xaml::DependencyProperty ^ get() { return s_announcementProperty; } } static NarratorAnnouncement ^ GetAnnouncement( Windows::UI::Xaml::DependencyObject ^ element) { return safe_cast(element->GetValue(s_announcementProperty)); } static void SetAnnouncement(Windows::UI::Xaml::DependencyObject ^ element, NarratorAnnouncement ^ value) { element->SetValue(s_announcementProperty, value); } private: static void OnAnnouncementChanged( _In_ Windows::UI::Xaml::DependencyObject ^ dependencyObject, _In_ Windows::UI::Xaml::DependencyPropertyChangedEventArgs ^ eventArgs); static Windows::UI::Xaml::DependencyProperty ^ s_announcementProperty; private: Windows::UI::Xaml::UIElement ^ m_announcementElement; }; } ================================================ FILE: src/CalcViewModel/Common/Automation/NotificationHost.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "NotificationHost.h" using namespace CalculatorApp::ViewModel::Common::Automation; using namespace Windows::Foundation::Metadata; using namespace Windows::UI::Xaml::Automation; using namespace Windows::UI::Xaml::Automation::Peers; using namespace Windows::UI::Xaml::Controls; NotificationHost::NotificationHost() : m_host(nullptr) { } bool NotificationHost::IsHostAvailable() { return ApiInformation::IsMethodPresent(L"Windows.UI.Xaml.Automation.Peers.AutomationPeer", L"RaiseNotificationEvent"); } INarratorAnnouncementHost ^ NotificationHost::MakeHost() { return ref new NotificationHost(); } void NotificationHost::Announce(NarratorAnnouncement ^ announcement) { if (m_host == nullptr) { m_host = ref new TextBlock(); } auto peer = FrameworkElementAutomationPeer::FromElement(m_host); if (peer != nullptr) { peer->RaiseNotificationEvent( GetWindowsNotificationKind(announcement->Kind), GetWindowsNotificationProcessing(announcement->Processing), announcement->Announcement, announcement->ActivityId); } } StandardPeers::AutomationNotificationKind NotificationHost::GetWindowsNotificationKind(CustomPeers::AutomationNotificationKind customKindType) { switch (customKindType) { case CustomPeers::AutomationNotificationKind::ItemAdded: return StandardPeers::AutomationNotificationKind::ItemAdded; case CustomPeers::AutomationNotificationKind::ItemRemoved: return StandardPeers::AutomationNotificationKind::ItemRemoved; case CustomPeers::AutomationNotificationKind::ActionCompleted: return StandardPeers::AutomationNotificationKind::ActionCompleted; case CustomPeers::AutomationNotificationKind::ActionAborted: return StandardPeers::AutomationNotificationKind::ActionAborted; case CustomPeers::AutomationNotificationKind::Other: return StandardPeers::AutomationNotificationKind::Other; default: assert(false && L"Unexpected AutomationNotificationKind"); } return StandardPeers::AutomationNotificationKind::Other; } StandardPeers::AutomationNotificationProcessing NotificationHost::GetWindowsNotificationProcessing(CustomPeers::AutomationNotificationProcessing customProcessingType) { switch (customProcessingType) { case CustomPeers::AutomationNotificationProcessing::ImportantAll: return StandardPeers::AutomationNotificationProcessing::ImportantAll; case CustomPeers::AutomationNotificationProcessing::ImportantMostRecent: return StandardPeers::AutomationNotificationProcessing::ImportantMostRecent; case CustomPeers::AutomationNotificationProcessing::All: return StandardPeers::AutomationNotificationProcessing::All; case CustomPeers::AutomationNotificationProcessing::MostRecent: return StandardPeers::AutomationNotificationProcessing::MostRecent; case CustomPeers::AutomationNotificationProcessing::CurrentThenMostRecent: return StandardPeers::AutomationNotificationProcessing::CurrentThenMostRecent; default: assert(false && L"Unexpected AutomationNotificationProcessing"); } return StandardPeers::AutomationNotificationProcessing::ImportantMostRecent; } ================================================ FILE: src/CalcViewModel/Common/Automation/NotificationHost.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "INarratorAnnouncementHost.h" // Declaration of the NotificationHost class. // This class announces NarratorAnnouncements using the RaiseNotification API // available in RS3. namespace CalculatorApp::ViewModel::Common::Automation { public ref class NotificationHost sealed : public INarratorAnnouncementHost { public: NotificationHost(); virtual bool IsHostAvailable(); virtual INarratorAnnouncementHost ^ MakeHost(); virtual void Announce(NarratorAnnouncement ^ announcement); private: static Windows::UI::Xaml::Automation::Peers::AutomationNotificationKind GetWindowsNotificationKind(CalculatorApp::ViewModel::Common::Automation::AutomationNotificationKind customKindType); static Windows::UI::Xaml::Automation::Peers::AutomationNotificationProcessing GetWindowsNotificationProcessing(CalculatorApp::ViewModel::Common::Automation::AutomationNotificationProcessing customProcessingType); private: Windows::UI::Xaml::UIElement ^ m_host; }; } ================================================ FILE: src/CalcViewModel/Common/BitLength.h ================================================ #pragma once namespace CalculatorApp::ViewModel { namespace Common { public enum class BitLength : int { BitLengthUnknown = -1, BitLengthByte = 8, BitLengthWord = 16, BitLengthDWord = 32, BitLengthQWord = 64, }; } } ================================================ FILE: src/CalcViewModel/Common/CalculatorButtonPressedEventArgs.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "CalculatorButtonPressedEventArgs.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::Common; using namespace Platform; NumbersAndOperatorsEnum CalculatorButtonPressedEventArgs::GetOperationFromCommandParameter(_In_ Object ^ commandParameter) { auto eventArgs = dynamic_cast(commandParameter); if (eventArgs != nullptr) { return eventArgs->Operation; } else { return safe_cast(commandParameter); } } String ^ CalculatorButtonPressedEventArgs::GetAuditoryFeedbackFromCommandParameter(_In_ Object ^ commandParameter) { auto eventArgs = dynamic_cast(commandParameter); if (eventArgs != nullptr) { return eventArgs->AuditoryFeedback; } else { return nullptr; } } ================================================ FILE: src/CalcViewModel/Common/CalculatorButtonPressedEventArgs.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalculatorButtonUser.h" #include "Utils.h" namespace CalculatorApp::ViewModel { namespace Common { public ref class CalculatorButtonPressedEventArgs sealed { public: PROPERTY_R(Platform::String ^, AuditoryFeedback); PROPERTY_R(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum, Operation); CalculatorButtonPressedEventArgs(Platform::String ^ feedback, CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum operation) : m_AuditoryFeedback(feedback) , m_Operation(operation) { } static CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum GetOperationFromCommandParameter(_In_ Platform::Object ^ commandParameter); static Platform::String ^ GetAuditoryFeedbackFromCommandParameter(_In_ Platform::Object ^ commandParameter); }; } } ================================================ FILE: src/CalcViewModel/Common/CalculatorButtonUser.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/Command.h" namespace CalculatorApp::ViewModel::Common { namespace CM = CalculationManager; public enum class NumbersAndOperatorsEnum { Zero = (int)CM::Command::Command0, One = (int)CM::Command::Command1, Two = (int)CM::Command::Command2, Three = (int)CM::Command::Command3, Four = (int)CM::Command::Command4, Five = (int)CM::Command::Command5, Six = (int)CM::Command::Command6, Seven = (int)CM::Command::Command7, Eight = (int)CM::Command::Command8, Nine = (int)CM::Command::Command9, Add = (int)CM::Command::CommandADD, Subtract = (int)CM::Command::CommandSUB, Multiply = (int)CM::Command::CommandMUL, Divide = (int)CM::Command::CommandDIV, Invert = (int)CM::Command::CommandREC, Equals = (int)CM::Command::CommandEQU, Decimal = (int)CM::Command::CommandPNT, Sqrt = (int)CM::Command::CommandSQRT, Percent = (int)CM::Command::CommandPERCENT, Negate = (int)CM::Command::CommandSIGN, Backspace = (int)CM::Command::CommandBACK, ClearEntry = (int)CM::Command::CommandCENTR, Clear = (int)CM::Command::CommandCLEAR, Degree = (int)CM::Command::CommandDEG, Radians = (int)CM::Command::CommandRAD, Grads = (int)CM::Command::CommandGRAD, Degrees = (int)CM::Command::CommandDegrees, OpenParenthesis = (int)CM::Command::CommandOPENP, CloseParenthesis = (int)CM::Command::CommandCLOSEP, Pi = (int)CM::Command::CommandPI, Sin = (int)CM::Command::CommandSIN, Cos = (int)CM::Command::CommandCOS, Tan = (int)CM::Command::CommandTAN, Factorial = (int)CM::Command::CommandFAC, XPower2 = (int)CM::Command::CommandSQR, Mod = (int)CM::Command::CommandMOD, FToE = (int)CM::Command::CommandFE, LogBaseE = (int)CM::Command::CommandLN, InvSin = (int)CM::Command::CommandASIN, InvCos = (int)CM::Command::CommandACOS, InvTan = (int)CM::Command::CommandATAN, LogBase10 = (int)CM::Command::CommandLOG, XPowerY = (int)CM::Command::CommandPWR, YRootX = (int)CM::Command::CommandROOT, TenPowerX = (int)CM::Command::CommandPOW10, EPowerX = (int)CM::Command::CommandPOWE, Exp = (int)CM::Command::CommandEXP, IsScientificMode = (int)CM::Command::ModeScientific, IsStandardMode = (int)CM::Command::ModeBasic, None = (int)CM::Command::CommandNULL, IsProgrammerMode = (int)CM::Command::ModeProgrammer, DecButton = (int)CM::Command::CommandDec, OctButton = (int)CM::Command::CommandOct, HexButton = (int)CM::Command::CommandHex, BinButton = (int)CM::Command::CommandBin, And = (int)CM::Command::CommandAnd, Ror = (int)CM::Command::CommandROR, Rol = (int)CM::Command::CommandROL, Or = (int)CM::Command::CommandOR, Lsh = (int)CM::Command::CommandLSHF, Rsh = (int)CM::Command::CommandRSHF, Xor = (int)CM::Command::CommandXor, Not = (int)CM::Command::CommandNot, A = (int)CM::Command::CommandA, B = (int)CM::Command::CommandB, C = (int)CM::Command::CommandC, D = (int)CM::Command::CommandD, E = (int)CM::Command::CommandE, F = (int)CM::Command::CommandF, Memory, // This is the memory button. Doesn't have a direct mapping to the CalcEngine. Sinh = (int)CM::Command::CommandSINH, Cosh = (int)CM::Command::CommandCOSH, Tanh = (int)CM::Command::CommandTANH, InvSinh = (int)CM::Command::CommandASINH, InvCosh = (int)CM::Command::CommandACOSH, InvTanh = (int)CM::Command::CommandATANH, Qword = (int)CM::Command::CommandQword, Dword = (int)CM::Command::CommandDword, Word = (int)CM::Command::CommandWord, Byte = (int)CM::Command::CommandByte, Cube = (int)CM::Command::CommandCUB, DMS = (int)CM::Command::CommandDMS, Hyp = (int)CM::Command::CommandHYP, Sec = (int)CM::Command::CommandSEC, Csc = (int)CM::Command::CommandCSC, Cot = (int)CM::Command::CommandCOT, InvSec = (int)CM::Command::CommandASEC, InvCsc = (int)CM::Command::CommandACSC, InvCot = (int)CM::Command::CommandACOT, Sech = (int)CM::Command::CommandSECH, Csch = (int)CM::Command::CommandCSCH, Coth = (int)CM::Command::CommandCOTH, InvSech = (int)CM::Command::CommandASECH, InvCsch = (int)CM::Command::CommandACSCH, InvCoth = (int)CM::Command::CommandACOTH, CubeRoot = (int)CM::Command::CommandCUBEROOT, TwoPowerX = (int)CM::Command::CommandPOW2, LogBaseY = (int)CM::Command::CommandLogBaseY, Nand = (int)CM::Command::CommandNand, Nor = (int)CM::Command::CommandNor, Abs = (int)CM::Command::CommandAbs, Floor = (int)CM::Command::CommandFloor, Ceil = (int)CM::Command::CommandCeil, Rand = (int)CM::Command::CommandRand, Euler = (int)CM::Command::CommandEuler, RshL = (int)CM::Command::CommandRSHFL, RolC = (int)CM::Command::CommandROLC, RorC = (int)CM::Command::CommandRORC, BINSTART = (int)CM::Command::CommandBINEDITSTART, BINPOS0 = (int)CM::Command::CommandBINPOS0, BINPOS1 = (int)CM::Command::CommandBINPOS1, BINPOS2 = (int)CM::Command::CommandBINPOS2, BINPOS3 = (int)CM::Command::CommandBINPOS3, BINPOS4 = (int)CM::Command::CommandBINPOS4, BINPOS5 = (int)CM::Command::CommandBINPOS5, BINPOS6 = (int)CM::Command::CommandBINPOS6, BINPOS7 = (int)CM::Command::CommandBINPOS7, BINPOS8 = (int)CM::Command::CommandBINPOS8, BINPOS9 = (int)CM::Command::CommandBINPOS9, BINPOS10 = (int)CM::Command::CommandBINPOS10, BINPOS11 = (int)CM::Command::CommandBINPOS11, BINPOS12 = (int)CM::Command::CommandBINPOS12, BINPOS13 = (int)CM::Command::CommandBINPOS13, BINPOS14 = (int)CM::Command::CommandBINPOS14, BINPOS15 = (int)CM::Command::CommandBINPOS15, BINPOS16 = (int)CM::Command::CommandBINPOS16, BINPOS17 = (int)CM::Command::CommandBINPOS17, BINPOS18 = (int)CM::Command::CommandBINPOS18, BINPOS19 = (int)CM::Command::CommandBINPOS19, BINPOS20 = (int)CM::Command::CommandBINPOS20, BINPOS21 = (int)CM::Command::CommandBINPOS21, BINPOS22 = (int)CM::Command::CommandBINPOS22, BINPOS23 = (int)CM::Command::CommandBINPOS23, BINPOS24 = (int)CM::Command::CommandBINPOS24, BINPOS25 = (int)CM::Command::CommandBINPOS25, BINPOS26 = (int)CM::Command::CommandBINPOS26, BINPOS27 = (int)CM::Command::CommandBINPOS27, BINPOS28 = (int)CM::Command::CommandBINPOS28, BINPOS29 = (int)CM::Command::CommandBINPOS29, BINPOS30 = (int)CM::Command::CommandBINPOS30, BINPOS31 = (int)CM::Command::CommandBINPOS31, BINPOS32 = (int)CM::Command::CommandBINPOS32, BINPOS33 = (int)CM::Command::CommandBINPOS33, BINPOS34 = (int)CM::Command::CommandBINPOS34, BINPOS35 = (int)CM::Command::CommandBINPOS35, BINPOS36 = (int)CM::Command::CommandBINPOS36, BINPOS37 = (int)CM::Command::CommandBINPOS37, BINPOS38 = (int)CM::Command::CommandBINPOS38, BINPOS39 = (int)CM::Command::CommandBINPOS39, BINPOS40 = (int)CM::Command::CommandBINPOS40, BINPOS41 = (int)CM::Command::CommandBINPOS41, BINPOS42 = (int)CM::Command::CommandBINPOS42, BINPOS43 = (int)CM::Command::CommandBINPOS43, BINPOS44 = (int)CM::Command::CommandBINPOS44, BINPOS45 = (int)CM::Command::CommandBINPOS45, BINPOS46 = (int)CM::Command::CommandBINPOS46, BINPOS47 = (int)CM::Command::CommandBINPOS47, BINPOS48 = (int)CM::Command::CommandBINPOS48, BINPOS49 = (int)CM::Command::CommandBINPOS49, BINPOS50 = (int)CM::Command::CommandBINPOS50, BINPOS51 = (int)CM::Command::CommandBINPOS51, BINPOS52 = (int)CM::Command::CommandBINPOS52, BINPOS53 = (int)CM::Command::CommandBINPOS53, BINPOS54 = (int)CM::Command::CommandBINPOS54, BINPOS55 = (int)CM::Command::CommandBINPOS55, BINPOS56 = (int)CM::Command::CommandBINPOS56, BINPOS57 = (int)CM::Command::CommandBINPOS57, BINPOS58 = (int)CM::Command::CommandBINPOS58, BINPOS59 = (int)CM::Command::CommandBINPOS59, BINPOS60 = (int)CM::Command::CommandBINPOS60, BINPOS61 = (int)CM::Command::CommandBINPOS61, BINPOS62 = (int)CM::Command::CommandBINPOS62, BINPOS63 = (int)CM::Command::CommandBINPOS63, BINEND = (int)CM::Command::CommandBINEDITEND, // Enum values below are used for Tracelogging and do not map to the Calculator engine MemoryAdd = (int)CM::Command::CommandMPLUS, MemorySubtract = (int)CM::Command::CommandMMINUS, MemoryRecall = (int)CM::Command::CommandRECALL, MemoryClear = (int)CM::Command::CommandMCLEAR, BitflipButton = 1000, FullKeypadButton = 1001, // Buttons used in graphing calculator LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, X, Y, Submit }; } ================================================ FILE: src/CalcViewModel/Common/CalculatorDisplay.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // This class provides the concrete implementation for the ICalcDisplay interface // that is declared in the Calculation Manager Library. #include "pch.h" #include "CalculatorDisplay.h" #include "StandardCalculatorViewModel.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::Common; using namespace CalculationManager; using namespace Platform; using namespace std; namespace CalculatorApp::ViewModel::Common { CalculatorDisplay::CalculatorDisplay() { } void CalculatorDisplay::SetCallback(Platform::WeakReference callbackReference) { m_callbackReference = callbackReference; } void CalculatorDisplay::SetHistoryCallback(Platform::WeakReference callbackReference) { m_historyCallbackReference = callbackReference; } void CalculatorDisplay::SetPrimaryDisplay(_In_ const wstring& displayStringValue, _In_ bool isError) { if (m_callbackReference) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->SetPrimaryDisplay(StringReference(displayStringValue.c_str()), isError); } } } void CalculatorDisplay::SetParenthesisNumber(_In_ unsigned int parenthesisCount) { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->SetParenthesisCount(parenthesisCount); } } } void CalculatorDisplay::OnNoRightParenAdded() { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->OnNoRightParenAdded(); } } } void CalculatorDisplay::SetIsInError(bool isError) { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->IsInError = isError; } } } void CalculatorDisplay::SetExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands) { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->SetExpressionDisplay(tokens, commands); } } } void CalculatorDisplay::SetMemorizedNumbers(_In_ const vector& newMemorizedNumbers) { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->SetMemorizedNumbers(newMemorizedNumbers); } } } void CalculatorDisplay::OnHistoryItemAdded(_In_ unsigned int addedItemIndex) { if (m_historyCallbackReference != nullptr) { if (auto historyVM = m_historyCallbackReference.Resolve()) { historyVM->OnHistoryItemAdded(addedItemIndex); } } } void CalculatorDisplay::MaxDigitsReached() { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->OnMaxDigitsReached(); } } } void CalculatorDisplay::BinaryOperatorReceived() { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->OnBinaryOperatorReceived(); } } } void CalculatorDisplay::MemoryItemChanged(unsigned int indexOfMemory) { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->OnMemoryItemChanged(indexOfMemory); } } } void CalculatorDisplay::InputChanged() { if (m_callbackReference != nullptr) { if (auto calcVM = m_callbackReference.Resolve()) { calcVM->OnInputChanged(); } } } } ================================================ FILE: src/CalcViewModel/Common/CalculatorDisplay.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/Header Files/ICalcDisplay.h" namespace CalculatorApp::ViewModel::Common { // Callback interface to be implemented by the CalculatorManager class CalculatorDisplay : public ICalcDisplay { public: CalculatorDisplay(); void SetCallback(Platform::WeakReference callbackReference); void SetHistoryCallback(Platform::WeakReference callbackReference); private: void SetPrimaryDisplay(_In_ const std::wstring& displayString, _In_ bool isError) override; void SetIsInError(bool isError) override; void SetExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands) override; void SetMemorizedNumbers(_In_ const std::vector& memorizedNumbers) override; void OnHistoryItemAdded(_In_ unsigned int addedItemIndex) override; void SetParenthesisNumber(_In_ unsigned int parenthesisCount) override; void OnNoRightParenAdded() override; void MaxDigitsReached() override; void BinaryOperatorReceived() override; void MemoryItemChanged(unsigned int indexOfMemory) override; void InputChanged() override; private: Platform::WeakReference m_callbackReference; Platform::WeakReference m_historyCallbackReference; }; } ================================================ FILE: src/CalcViewModel/Common/CopyPasteManager.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "CopyPasteManager.h" #include "Common/TraceLogger.h" #include "Common/LocalizationSettings.h" using namespace std; using namespace concurrency; using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace Platform::Collections; using namespace Windows::Foundation; using namespace Windows::System; using namespace Windows::ApplicationModel::DataTransfer; using namespace Windows::Foundation::Collections; StringReference PasteErrorString(L"NoOp"); static const wstring c_validBasicCharacterSet = L"0123456789+-.e"; static const wstring c_validStandardCharacterSet = c_validBasicCharacterSet + L"*/"; static const wstring c_validScientificCharacterSet = c_validStandardCharacterSet + L"()^%"; static const wstring c_validProgrammerCharacterSet = c_validStandardCharacterSet + L"()%abcdfABCDEF"; // The below values can not be "constexpr"-ed, // as both wstring_view and wchar[] can not be concatenated // [\s\x85] means white-space characters static const wstring c_wspc = L"[\\s\\x85]*"; static const wstring c_wspcLParens = c_wspc + L"[(]*" + c_wspc; static const wstring c_wspcLParenSigned = c_wspc + L"([-+]?[(])*" + c_wspc; static const wstring c_wspcRParens = c_wspc + L"[)]*" + c_wspc; static const wstring c_signedDecFloat = L"(?:[-+]?(?:\\d+(\\.\\d*)?|\\.\\d+))"; static const wstring c_optionalENotation = L"(?:e[+-]?\\d+)?"; // Programmer Mode Integer patterns // Support digit separators ` (WinDbg/MASM), ' (C++), and _ (C# and other languages) static const wstring c_hexProgrammerChars = L"([a-f]|[A-F]|\\d)+((_|'|`)([a-f]|[A-F]|\\d)+)*"; static const wstring c_decProgrammerChars = L"\\d+((_|'|`)\\d+)*"; static const wstring c_octProgrammerChars = L"[0-7]+((_|'|`)[0-7]+)*"; static const wstring c_binProgrammerChars = L"[0-1]+((_|'|`)[0-1]+)*"; static const wstring c_uIntSuffixes = L"[uU]?[lL]{0,2}"; // RegEx Patterns used by various modes static const array standardModePatterns = { wregex(c_wspc + c_signedDecFloat + c_optionalENotation + c_wspc) }; static const array scientificModePatterns = { wregex( L"(" + c_wspc + L"[-+]?)|(" + c_wspcLParenSigned + L")" + c_signedDecFloat + c_optionalENotation + c_wspcRParens) }; static const array, 4> programmerModePatterns = { { // Hex numbers like 5F, 4A0C, 0xa9, 0xFFull, 47CDh { wregex(c_wspcLParens + L"(0[xX])?" + c_hexProgrammerChars + c_uIntSuffixes + c_wspcRParens), wregex(c_wspcLParens + c_hexProgrammerChars + L"[hH]?" + c_wspcRParens) }, // Decimal numbers like -145, 145, 0n145, 123ull etc { wregex(c_wspcLParens + L"[-+]?" + c_decProgrammerChars + L"[lL]{0,2}" + c_wspcRParens), wregex(c_wspcLParens + L"(0[nN])?" + c_decProgrammerChars + c_uIntSuffixes + c_wspcRParens) }, // Octal numbers like 06, 010, 0t77, 0o77, 077ull etc { wregex(c_wspcLParens + L"(0[otOT])?" + c_octProgrammerChars + c_uIntSuffixes + c_wspcRParens) }, // Binary numbers like 011010110, 0010110, 10101001, 1001b, 0b1001, 0y1001, 0b1001ull { wregex(c_wspcLParens + L"(0[byBY])?" + c_binProgrammerChars + c_uIntSuffixes + c_wspcRParens), wregex(c_wspcLParens + c_binProgrammerChars + L"[bB]?" + c_wspcRParens) } } }; static const array unitConverterPatterns = { wregex(c_wspc + c_signedDecFloat + c_wspc) }; void CopyPasteManager::CopyToClipboard(String ^ stringToCopy) { // Copy the string to the clipboard auto dataPackage = ref new DataPackage(); dataPackage->SetText(stringToCopy); Clipboard::SetContentWithOptions(dataPackage, nullptr); } IAsyncOperation ^ CopyPasteManager::GetStringToPaste(ViewMode mode, CategoryGroupType modeType, NumberBase programmerNumberBase, BitLength bitLengthType) { // Retrieve the text in the clipboard auto dataPackageView = Clipboard::GetContent(); // TODO: Support all formats supported by ClipboardHasText //-- add support to avoid pasting of expressions like 12 34(as of now we allow 1234) //-- add support to allow pasting for expressions like .2 , -.2 //-- add support to allow pasting for expressions like 1.3e12(as of now we allow 1.3e+12) return create_async([dataPackageView, mode, modeType, programmerNumberBase, bitLengthType] { return create_task(dataPackageView->GetTextAsync(::StandardDataFormats::Text)) .then( [mode, modeType, programmerNumberBase, bitLengthType](String ^ pastedText) { return ValidatePasteExpression(pastedText, mode, modeType, programmerNumberBase, bitLengthType); }, task_continuation_context::use_arbitrary()); }); } bool CopyPasteManager::HasStringToPaste() { return Clipboard::GetContent()->Contains(StandardDataFormats::Text); } String ^ CopyPasteManager::ValidatePasteExpression(String ^ pastedText, ViewMode mode, NumberBase programmerNumberBase, BitLength bitLengthType) { return ValidatePasteExpression(pastedText, mode, NavCategoryStates::GetGroupType(mode), programmerNumberBase, bitLengthType); } // return "NoOp" if pastedText is invalid else return pastedText String ^ CopyPasteManager::ValidatePasteExpression( String ^ pastedText, ViewMode mode, CategoryGroupType modeType, NumberBase programmerNumberBase, BitLength bitLengthType) { if (pastedText->Length() > MaxPasteableLength) { // return NoOp to indicate don't paste anything. TraceLogger::GetInstance()->LogError(mode, L"CopyPasteManager::ValidatePasteExpression", L"PastedExpressionSizeGreaterThanMaxAllowed"); return PasteErrorString; } // Get english translated expression String ^ englishString = LocalizationSettings::GetInstance()->GetEnglishValueFromLocalizedDigits(pastedText); // Removing the spaces, comma separator from the pasteExpression to allow pasting of expressions like 1 + 2+1,333 auto pasteExpression = wstring(RemoveUnwantedCharsFromString(englishString)->Data()); // If the last character is an = sign, remove it from the pasteExpression to allow evaluating the result on paste. if (!pasteExpression.empty() && pasteExpression.back() == L'=') { pasteExpression = pasteExpression.substr(0, pasteExpression.length() - 1); } // Extract operands from the expression to make regex comparison easy and quick. For whole expression it was taking too much of time. // Operands vector will have the list of operands in the pasteExpression auto operands = ExtractOperands(StringReference(pasteExpression.c_str()), mode); if (operands->Size == 0) { // return NoOp to indicate don't paste anything. return PasteErrorString; } if (modeType == CategoryGroupType::Converter) { operands->Clear(); operands->Append(ref new String(pasteExpression.c_str())); } // validate each operand with patterns for different modes if (!ExpressionRegExMatch(operands, mode, modeType, programmerNumberBase, bitLengthType)) { TraceLogger::GetInstance()->LogError(mode, L"CopyPasteManager::ValidatePasteExpression", L"InvalidExpressionForPresentMode"); return PasteErrorString; } return pastedText; } IVector ^ CopyPasteManager::ExtractOperands(Platform::String ^ pasteExpression, ViewMode mode) { auto operands = ref new Vector(); size_t lastIndex = 0; bool haveOperator = false; bool startExpCounting = false; bool startOfExpression = true; bool isPreviousOpenParen = false; bool isPreviousOperator = false; wstring validCharacterSet; switch (mode) { case ViewMode::Standard: validCharacterSet = c_validStandardCharacterSet; break; case ViewMode::Scientific: validCharacterSet = c_validScientificCharacterSet; break; case ViewMode::Programmer: validCharacterSet = c_validProgrammerCharacterSet; break; default: validCharacterSet = c_validBasicCharacterSet; } // This will have the exponent length size_t expLength = 0; int i = -1; for (auto currentChar : pasteExpression) { ++i; // if the current character is not a valid one don't process it if (validCharacterSet.find(currentChar) == wstring_view::npos) { continue; } if (operands->Size >= MaxOperandCount) { TraceLogger::GetInstance()->LogError(mode, L"CopyPasteManager::ExtractOperands", L"OperandCountGreaterThanMaxCount"); operands->Clear(); return operands; } if (currentChar >= L'0' && currentChar <= L'9') { if (startExpCounting) { expLength++; // to disallow pasting of 1e+12345 as 1e+1234, max exponent that can be pasted is 9999. if (expLength > MaxExponentLength) { TraceLogger::GetInstance()->LogError(mode, L"CopyPasteManager::ExtractOperands", L"ExponentLengthGreaterThanMaxLength"); operands->Clear(); return operands; } } isPreviousOperator = false; } else if (currentChar == L'e') { if (mode != ViewMode::Programmer) { startExpCounting = true; } isPreviousOperator = false; } else if (currentChar == L'+' || currentChar == L'-' || currentChar == L'*' || currentChar == L'/' || currentChar == L'^' || currentChar == L'%') { if (currentChar == L'+' || currentChar == L'-') { // don't break the expression into operands if the encountered character corresponds to sign command(+-) if (isPreviousOpenParen || startOfExpression || isPreviousOperator || ((mode != ViewMode::Programmer) && !((i != 0) && pasteExpression->Data()[i - 1] != L'e'))) { isPreviousOperator = false; continue; } } startExpCounting = false; expLength = 0; haveOperator = true; isPreviousOperator = true; operands->Append(ref new String(wstring(pasteExpression->Data()).substr(lastIndex, i - lastIndex).c_str())); lastIndex = i + 1; } else { isPreviousOperator = false; } isPreviousOpenParen = (currentChar == L'('); startOfExpression = false; } if (!haveOperator) { operands->Clear(); operands->Append(pasteExpression); } else { operands->Append(ref new String(wstring(pasteExpression->Data()).substr(lastIndex, pasteExpression->Length() - 1).c_str())); } return operands; } bool CopyPasteManager::ExpressionRegExMatch( IVector ^ operands, ViewMode mode, CategoryGroupType modeType, NumberBase programmerNumberBase, BitLength bitLengthType) { if (operands->Size == 0) { return false; } vector patterns{}; if (mode == ViewMode::Standard) { patterns.assign(standardModePatterns.begin(), standardModePatterns.end()); } else if (mode == ViewMode::Scientific) { patterns.assign(scientificModePatterns.begin(), scientificModePatterns.end()); } else if (mode == ViewMode::Programmer) { auto pattern = &programmerModePatterns[static_cast(programmerNumberBase) - static_cast(NumberBase::HexBase)]; patterns.assign(pattern->begin(), pattern->end()); } else if (modeType == CategoryGroupType::Converter) { patterns.assign(unitConverterPatterns.begin(), unitConverterPatterns.end()); } auto maxOperandLengthAndValue = GetMaxOperandLengthAndValue(mode, modeType, programmerNumberBase, bitLengthType); bool expMatched = true; for (const auto& operand : operands) { // Each operand only needs to match one of the available patterns. bool operandMatched = false; for (const auto& pattern : patterns) { operandMatched = operandMatched || regex_match(operand->Data(), pattern); } if (operandMatched) { // Remember the sign of the operand bool isNegativeValue = operand->Data()[0] == L'-'; // Remove characters that are valid in the expression but we do not want to include in length calculations // or which will break conversion from string-to-ULL. auto operandValue = SanitizeOperand(operand); // If an operand exceeds the maximum length allowed, break and return. if (OperandLength(operandValue, mode, modeType, programmerNumberBase) > maxOperandLengthAndValue.maxLength) { expMatched = false; break; } // If maxOperandValue is set and the operandValue exceeds it, break and return. if (maxOperandLengthAndValue.maxValue != 0) { auto operandAsULL = TryOperandToULL(operandValue, programmerNumberBase); if (operandAsULL == nullptr) { // Operand was empty, received invalid_argument, or received out_of_range. Input is invalid. expMatched = false; break; } // Calculate how much we exceed the maxValue. // In case we exceed it for 1 only, and working with negative number - that's a corner case for max signed values (e.g. -32768) bool isOverflow = operandAsULL->Value > maxOperandLengthAndValue.maxValue; bool isMaxNegativeValue = operandAsULL->Value - 1 == maxOperandLengthAndValue.maxValue; if (isOverflow && !(isNegativeValue && isMaxNegativeValue)) { expMatched = false; break; } } } expMatched = expMatched && operandMatched; } return expMatched; } CopyPasteMaxOperandLengthAndValue CopyPasteManager::GetMaxOperandLengthAndValue(ViewMode mode, CategoryGroupType modeType, NumberBase programmerNumberBase, BitLength bitLengthType) { constexpr size_t defaultMaxOperandLength = 0; constexpr uint64_t defaultMaxValue = 0; CopyPasteMaxOperandLengthAndValue res; if (mode == ViewMode::Standard) { res.maxLength = MaxStandardOperandLength; res.maxValue = defaultMaxValue; return res; } else if (mode == ViewMode::Scientific) { res.maxLength = MaxScientificOperandLength; res.maxValue = defaultMaxValue; return res; } else if (mode == ViewMode::Programmer) { unsigned int bitLength = 0; switch (bitLengthType) { case BitLength::BitLengthQWord: bitLength = 64; break; case BitLength::BitLengthDWord: bitLength = 32; break; case BitLength::BitLengthWord: bitLength = 16; break; case BitLength::BitLengthByte: bitLength = 8; break; } double bitsPerDigit = 0; switch (programmerNumberBase) { case NumberBase::BinBase: bitsPerDigit = log2(2); break; case NumberBase::OctBase: bitsPerDigit = log2(8); break; case NumberBase::DecBase: bitsPerDigit = log2(10); break; case NumberBase::HexBase: bitsPerDigit = log2(16); break; } unsigned int signBit = (programmerNumberBase == NumberBase::DecBase) ? 1 : 0; const auto maxLength = static_cast(ceil((bitLength - signBit) / bitsPerDigit)); const uint64_t maxValue = UINT64_MAX >> (MaxProgrammerBitLength - (bitLength - signBit)); res.maxLength = maxLength; res.maxValue = maxValue; return res; } else if (modeType == CategoryGroupType::Converter) { res.maxLength = MaxConverterInputLength; res.maxValue = defaultMaxValue; return res; } res.maxLength = defaultMaxOperandLength; res.maxValue = defaultMaxValue; return res; } Platform::String ^ CopyPasteManager::SanitizeOperand(Platform::String ^ operand) { constexpr wchar_t unWantedChars[] = { L'\'', L'_', L'`', L'(', L')', L'-', L'+' }; return ref new String(Utils::RemoveUnwantedCharsFromString(operand->Data(), unWantedChars).c_str()); } IBox ^ CopyPasteManager::TryOperandToULL(String ^ operand, NumberBase numberBase) { if (operand->Length() == 0 || operand->Data()[0] == L'-') { return nullptr; } int intBase; switch (numberBase) { case NumberBase::HexBase: intBase = 16; break; case NumberBase::OctBase: intBase = 8; break; case NumberBase::BinBase: intBase = 2; break; default: case NumberBase::DecBase: intBase = 10; break; } wstring::size_type size = 0; try { return stoull(operand->Data(), &size, intBase); } catch (const invalid_argument&) { // Do nothing } catch (const out_of_range&) { // Do nothing } return nullptr; } ULONG32 CopyPasteManager::OperandLength(Platform::String ^ operand, ViewMode mode, CategoryGroupType modeType, NumberBase programmerNumberBase) { if (modeType == CategoryGroupType::Converter) { return operand->Length(); } switch (mode) { case ViewMode::Standard: case ViewMode::Scientific: return StandardScientificOperandLength(operand); case ViewMode::Programmer: return ProgrammerOperandLength(operand, programmerNumberBase); default: return 0; } } ULONG32 CopyPasteManager::StandardScientificOperandLength(Platform::String ^ operand) { auto operandWstring = wstring(operand->Data()); const bool hasDecimal = operandWstring.find('.') != wstring::npos; auto length = operandWstring.length(); if (hasDecimal && length >= 2) { if ((operandWstring[0] == L'0') && (operandWstring[1] == L'.')) { length -= 2; } else { length -= 1; } } auto exponentPos = operandWstring.find('e'); const bool hasExponent = exponentPos != wstring::npos; if (hasExponent) { auto expLength = operandWstring.substr(exponentPos).length(); length -= expLength; } return static_cast(length); } ULONG32 CopyPasteManager::ProgrammerOperandLength(Platform::String ^ operand, NumberBase numberBase) { vector prefixes{}; vector suffixes{}; switch (numberBase) { case NumberBase::BinBase: prefixes = { L"0B", L"0Y" }; suffixes = { L"B" }; break; case NumberBase::DecBase: prefixes = { L"-", L"0N" }; break; case NumberBase::OctBase: prefixes = { L"0T", L"0O" }; break; case NumberBase::HexBase: prefixes = { L"0X" }; suffixes = { L"H" }; break; default: // No defined prefixes/suffixes return 0; } // UInt suffixes are common across all modes const array uintSuffixes = { L"ULL", L"UL", L"LL", L"U", L"L" }; suffixes.insert(suffixes.end(), uintSuffixes.begin(), uintSuffixes.end()); wstring operandUpper = wstring(operand->Data()); transform(operandUpper.begin(), operandUpper.end(), operandUpper.begin(), towupper); size_t len = operand->Length(); // Detect if there is a suffix and subtract its length // Check suffixes first to allow e.g. "0b" to result in length 1 (value 0), rather than length 0 (no value). for (const auto& suffix : suffixes) { if (len < suffix.length()) { continue; } if (operandUpper.compare(operandUpper.length() - suffix.length(), suffix.length(), suffix) == 0) { len -= suffix.length(); break; } } // Detect if there is a prefix and subtract its length for (const auto& prefix : prefixes) { if (len < prefix.length()) { continue; } if (operandUpper.compare(0, prefix.length(), prefix) == 0) { len -= prefix.length(); break; } } return static_cast(len); } // return wstring after removing characters like space, comma, double quotes, and monetary prefix currency symbols supported by the Windows keyboard: // yen or yuan(¥) - 165 // unspecified currency sign(¤) - 164 // Ghanaian cedi(₵) - 8373 // dollar or peso($) - 36 // colón(₡) - 8353 // won(₩) - 8361 // shekel(₪) - 8362 // naira(₦) - 8358 // Indian rupee(₹) - 8377 // pound(£) - 163 // euro(€) - 8364 // non-breaking whitespace - 160 Platform::String ^ CopyPasteManager::RemoveUnwantedCharsFromString(Platform::String ^ input) { constexpr wchar_t unWantedChars[] = { L' ', L',', L'"', 165, 164, 8373, 36, 8353, 8361, 8362, 8358, 8377, 163, 8364, 8234, 8235, 8236, 8237, 160 }; input = CalculatorApp::ViewModel::Common::LocalizationSettings::GetInstance()->RemoveGroupSeparators(input); return ref new String(Utils::RemoveUnwantedCharsFromString(input->Data(), unWantedChars).c_str()); } bool CopyPasteManager::IsErrorMessage(Platform::String ^ message) { return message == PasteErrorString; } ================================================ FILE: src/CalcViewModel/Common/CopyPasteManager.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "AppResourceProvider.h" #include "NavCategory.h" #include "BitLength.h" #include "NumberBase.h" namespace CalculatorUnitTests { class CopyPasteManagerTest; } namespace CalculatorApp::ViewModel::Common { public value struct CopyPasteMaxOperandLengthAndValue { unsigned int maxLength; unsigned long long maxValue; }; public ref class CopyPasteManager sealed { public: static void CopyToClipboard(Platform::String ^ stringToCopy); static Windows::Foundation::IAsyncOperation ^ GetStringToPaste( CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::CategoryGroupType modeType, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase, CalculatorApp::ViewModel::Common::BitLength bitLengthType); static bool HasStringToPaste(); static bool IsErrorMessage(Platform::String ^ message); static property unsigned int MaxPasteableLength { unsigned int get() { return MaxPasteableLengthValue; } } static property unsigned int MaxOperandCount { unsigned int get() { return MaxOperandCountValue; } } static property unsigned int MaxStandardOperandLength { unsigned int get() { return MaxStandardOperandLengthValue; } } static property unsigned int MaxScientificOperandLength { unsigned int get() { return MaxScientificOperandLengthValue; } } static property unsigned int MaxConverterInputLength { unsigned int get() { return MaxConverterInputLengthValue; } } static property unsigned int MaxExponentLength { unsigned int get() { return MaxExponentLengthValue; } } static property unsigned int MaxProgrammerBitLength { unsigned int get() { return MaxProgrammerBitLengthValue; } } static Platform::String ^ ValidatePasteExpression( Platform::String ^ pastedText, CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase, CalculatorApp::ViewModel::Common::BitLength bitLengthType); static Platform::String ^ ValidatePasteExpression( Platform::String ^ pastedText, CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::CategoryGroupType modeType, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase, CalculatorApp::ViewModel::Common::BitLength bitLengthType); static CopyPasteMaxOperandLengthAndValue GetMaxOperandLengthAndValue( CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::CategoryGroupType modeType, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase, CalculatorApp::ViewModel::Common::BitLength bitLengthType); static Windows::Foundation::Collections::IVector< Platform::String ^> ^ ExtractOperands(Platform::String ^ pasteExpression, CalculatorApp::ViewModel::Common::ViewMode mode); static bool ExpressionRegExMatch( Windows::Foundation::Collections::IVector ^ operands, CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::CategoryGroupType modeType, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase, CalculatorApp::ViewModel::Common::BitLength bitLengthType); static Platform::String ^ SanitizeOperand(Platform::String ^ operand); static Platform::String ^ RemoveUnwantedCharsFromString(Platform::String ^ input); static Platform::IBox ^ TryOperandToULL(Platform::String ^ operand, CalculatorApp::ViewModel::Common::NumberBase numberBase); static ULONG32 StandardScientificOperandLength(Platform::String ^ operand); static ULONG32 OperandLength( Platform::String ^ operand, CalculatorApp::ViewModel::Common::ViewMode mode, CalculatorApp::ViewModel::Common::CategoryGroupType modeType, CalculatorApp::ViewModel::Common::NumberBase programmerNumberBase); static ULONG32 ProgrammerOperandLength(Platform::String ^ operand, CalculatorApp::ViewModel::Common::NumberBase numberBase); private: static constexpr size_t MaxStandardOperandLengthValue = 16; static constexpr size_t MaxScientificOperandLengthValue = 32; static constexpr size_t MaxConverterInputLengthValue = 16; static constexpr size_t MaxOperandCountValue = 100; static constexpr size_t MaxExponentLengthValue = 4; static constexpr size_t MaxProgrammerBitLengthValue = 64; static constexpr size_t MaxPasteableLengthValue = 512; }; } ================================================ FILE: src/CalcViewModel/Common/DateCalculator.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "DateCalculator.h" using namespace Platform; using namespace Windows::Foundation; using namespace Windows::Globalization; using namespace CalculatorApp::ViewModel::Common::DateCalculation; bool operator==(const DateDifference& l, const DateDifference& r) { return l.year == r.year && l.month == r.month && l.week == r.week && l.day == r.day; } DateCalculationEngine::DateCalculationEngine(_In_ String ^ calendarIdentifier) { m_calendar = ref new Calendar(); m_calendar->ChangeTimeZone("UTC"); m_calendar->ChangeCalendarSystem(calendarIdentifier); } // Adding Duration to a Date // Returns: True if function succeeds to calculate the date else returns False IBox ^ DateCalculationEngine::AddDuration(DateTime startDate, DateDifference duration) { auto currentCalendarSystem = m_calendar->GetCalendarSystem(); try { m_calendar->SetDateTime(startDate); // The Japanese Era system can have multiple year partitions within the same year. // For example, April 30, 2019 is denoted April 30, Heisei 31; May 1, 2019 is denoted as May 1, Reiwa 1. // The Calendar treats Heisei 31 and Reiwa 1 as separate years, which results in some unexpected behaviors where subtracting a year from Reiwa 1 results // in a date in Heisei 31. To provide the expected result across era boundaries, we first convert the Japanese era system to a Gregorian system, do date // math, and then convert back to the Japanese era system. This works because the Japanese era system maintains the same year/month boundaries and // durations as the Gregorian system and is only different in display value. if (currentCalendarSystem == CalendarIdentifiers::Japanese) { m_calendar->ChangeCalendarSystem(CalendarIdentifiers::Gregorian); } if (duration.year != 0) { m_calendar->AddYears(duration.year); } if (duration.month != 0) { m_calendar->AddMonths(duration.month); } if (duration.day != 0) { m_calendar->AddDays(duration.day); } m_calendar->ChangeCalendarSystem(currentCalendarSystem); return m_calendar->GetDateTime(); } catch (Platform::InvalidArgumentException ^ ex) { // ensure that we revert to the correct calendar system m_calendar->ChangeCalendarSystem(currentCalendarSystem); // Do nothing return nullptr; } } // Subtracting Duration from a Date // Returns: True if function succeeds to calculate the date else returns False IBox ^ DateCalculationEngine::SubtractDuration(_In_ DateTime startDate, _In_ DateDifference duration) { auto currentCalendarSystem = m_calendar->GetCalendarSystem(); // For Subtract the Algorithm is different than Add. Here the smaller units are subtracted first // and then the larger units. try { m_calendar->SetDateTime(startDate); // The Japanese Era system can have multiple year partitions within the same year. // For example, April 30, 2019 is denoted April 30, Heisei 31; May 1, 2019 is denoted as May 1, Reiwa 1. // The Calendar treats Heisei 31 and Reiwa 1 as separate years, which results in some unexpected behaviors where subtracting a year from Reiwa 1 results // in a date in Heisei 31. To provide the expected result across era boundaries, we first convert the Japanese era system to a Gregorian system, do date // math, and then convert back to the Japanese era system. This works because the Japanese era system maintains the same year/month boundaries and // durations as the Gregorian system and is only different in display value. if (currentCalendarSystem == CalendarIdentifiers::Japanese) { m_calendar->ChangeCalendarSystem(CalendarIdentifiers::Gregorian); } if (duration.day != 0) { m_calendar->AddDays(-duration.day); } if (duration.month != 0) { m_calendar->AddMonths(-duration.month); } if (duration.year != 0) { m_calendar->AddYears(-duration.year); } m_calendar->ChangeCalendarSystem(currentCalendarSystem); auto dateTime = m_calendar->GetDateTime(); // Check that the UniversalTime value is not negative if (dateTime.UniversalTime >= 0) { return dateTime; } else { return nullptr; } } catch (Platform::InvalidArgumentException ^ ex) { // ensure that we revert to the correct calendar system m_calendar->ChangeCalendarSystem(currentCalendarSystem); // Do nothing return nullptr; } } // Calculate the difference between two dates IBox ^ DateCalculationEngine::TryGetDateDifference(_In_ DateTime date1, _In_ DateTime date2, _In_ DateUnit outputFormat) { DateTime startDate; DateTime endDate; DateTime pivotDate; DateTime tempPivotDate; UINT daysDiff = 0; UINT differenceInDates[c_unitsOfDate] = { 0 }; if (date1.UniversalTime < date2.UniversalTime) { startDate = date1; endDate = date2; } else { startDate = date2; endDate = date1; } pivotDate = startDate; daysDiff = GetDifferenceInDays(startDate, endDate); // If output has units other than days // 0th bit: Year, 1st bit: Month, 2nd bit: Week, 3rd bit: Day if (static_cast(outputFormat) & 7) { UINT daysInMonth; UINT approximateDaysInYear; // If we're unable to calculate the days-in-month or days-in-year, we'll leave the values at 0. if (TryGetCalendarDaysInMonth(startDate, daysInMonth) && TryGetCalendarDaysInYear(endDate, approximateDaysInYear)) { UINT daysIn[c_unitsOfDate] = { approximateDaysInYear, daysInMonth, c_daysInWeek, 1 }; for (int unitIndex = 0; unitIndex < c_unitsGreaterThanDays; unitIndex++) { tempPivotDate = pivotDate; // Check if the bit flag is set for the date unit DateUnit dateUnit = static_cast(1 << unitIndex); if (static_cast(outputFormat & dateUnit)) { bool isEndDateHit = false; differenceInDates[unitIndex] = (daysDiff / daysIn[unitIndex]); if (differenceInDates[unitIndex] != 0) { try { pivotDate = AdjustCalendarDate(pivotDate, dateUnit, static_cast(differenceInDates[unitIndex])); } catch (Platform::InvalidArgumentException ^) { // Operation failed due to out of bound result // For example: 31st Dec, 9999 - last valid date return nullptr; } } int tempDaysDiff; do { tempDaysDiff = GetDifferenceInDays(pivotDate, endDate); if (tempDaysDiff < 0) { // pivotDate has gone over the end date; start from the beginning of this unit if (differenceInDates[unitIndex] == 0) { // differenceInDates[unitIndex] is unsigned, the value can't be negative return nullptr; } differenceInDates[unitIndex] -= 1; pivotDate = tempPivotDate; pivotDate = AdjustCalendarDate(pivotDate, dateUnit, static_cast(differenceInDates[unitIndex])); isEndDateHit = true; } else if (tempDaysDiff > 0) { if (isEndDateHit) { // This is the closest the pivot can get to the end date for this unit break; } // pivotDate is still below the end date try { pivotDate = AdjustCalendarDate(tempPivotDate, dateUnit, static_cast(differenceInDates[unitIndex] + 1)); differenceInDates[unitIndex] += 1; } catch (Platform::InvalidArgumentException ^) { // Operation failed due to out of bound result // For example: 31st Dec, 9999 - last valid date return nullptr; } } } while (tempDaysDiff != 0); // dates are the same - exit the loop tempPivotDate = AdjustCalendarDate(tempPivotDate, dateUnit, static_cast(differenceInDates[unitIndex])); pivotDate = tempPivotDate; int signedDaysDiff = GetDifferenceInDays(pivotDate, endDate); if (signedDaysDiff < 0) { // daysDiff is unsigned, the value can't be negative return nullptr; } daysDiff = signedDaysDiff; } } } } differenceInDates[3] = daysDiff; DateDifference result; result.year = differenceInDates[0]; result.month = differenceInDates[1]; result.week = differenceInDates[2]; result.day = differenceInDates[3]; return result; } // Private Methods // Gets number of days between the two date time values int DateCalculationEngine::GetDifferenceInDays(DateTime date1, DateTime date2) { // A tick is defined as the number of 100 nanoseconds long long ticksDifference = date2.UniversalTime - date1.UniversalTime; return static_cast(ticksDifference / static_cast(c_day)); } // Gets number of Calendar days in the month in which this date falls. // Returns true if successful, false otherwise. bool DateCalculationEngine::TryGetCalendarDaysInMonth(_In_ DateTime date, _Out_ UINT& daysInMonth) { bool result = false; m_calendar->SetDateTime(date); // NumberOfDaysInThisMonth returns -1 if unknown. int daysInThisMonth = m_calendar->NumberOfDaysInThisMonth; if (daysInThisMonth != -1) { daysInMonth = static_cast(daysInThisMonth); result = true; } return result; } // Gets number of Calendar days in the year in which this date falls. // Returns true if successful, false otherwise. bool DateCalculationEngine::TryGetCalendarDaysInYear(_In_ DateTime date, _Out_ UINT& daysInYear) { bool result = false; UINT days = 0; m_calendar->SetDateTime(date); // NumberOfMonthsInThisYear returns -1 if unknown. int monthsInYear = m_calendar->NumberOfMonthsInThisYear; if (monthsInYear != -1) { bool monthResult = true; // Not all years begin with Month 1. int firstMonthThisYear = m_calendar->FirstMonthInThisYear; for (int month = 0; month < monthsInYear; month++) { m_calendar->Month = firstMonthThisYear + month; // NumberOfDaysInThisMonth returns -1 if unknown. int daysInMonth = m_calendar->NumberOfDaysInThisMonth; if (daysInMonth == -1) { monthResult = false; break; } days += daysInMonth; } if (monthResult) { daysInYear = days; result = true; } } return result; } // Adds/Subtracts certain value for a particular date unit DateTime DateCalculationEngine::AdjustCalendarDate(Windows::Foundation::DateTime date, DateUnit dateUnit, int difference) { m_calendar->SetDateTime(date); // The Japanese Era system can have multiple year partitions within the same year. // For example, April 30, 2019 is denoted April 30, Heisei 31; May 1, 2019 is denoted as May 1, Reiwa 1. // The Calendar treats Heisei 31 and Reiwa 1 as separate years, which results in some unexpected behaviors where subtracting a year from Reiwa 1 results in // a date in Heisei 31. To provide the expected result across era boundaries, we first convert the Japanese era system to a Gregorian system, do date math, // and then convert back to the Japanese era system. This works because the Japanese era system maintains the same year/month boundaries and durations as // the Gregorian system and is only different in display value. auto currentCalendarSystem = m_calendar->GetCalendarSystem(); if (currentCalendarSystem == CalendarIdentifiers::Japanese) { m_calendar->ChangeCalendarSystem(CalendarIdentifiers::Gregorian); } switch (dateUnit) { case DateUnit::Year: m_calendar->AddYears(difference); break; case DateUnit::Month: m_calendar->AddMonths(difference); break; case DateUnit::Week: m_calendar->AddWeeks(difference); break; } m_calendar->ChangeCalendarSystem(currentCalendarSystem); return m_calendar->GetDateTime(); } ================================================ FILE: src/CalcViewModel/Common/DateCalculator.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once const uint64_t c_millisecond = 10000; const uint64_t c_second = 1000 * c_millisecond; const uint64_t c_minute = 60 * c_second; const uint64_t c_hour = 60 * c_minute; const uint64_t c_day = 24 * c_hour; const int c_unitsOfDate = 4; // Units Year,Month,Week,Day const int c_unitsGreaterThanDays = 3; // Units Greater than Days (Year/Month/Week) 3 const int c_daysInWeek = 7; namespace CalculatorApp::ViewModel { namespace Common { namespace DateCalculation { public enum class _Enum_is_bitflag_ DateUnit { Year = 0x01, Month = 0x02, Week = 0x04, Day = 0x08 }; // Struct to store the difference between two Dates in the form of Years, Months , Weeks public value struct DateDifference { int year; int month; int week; int day; }; const DateDifference DateDifferenceUnknown{ INT_MIN, INT_MIN, INT_MIN, INT_MIN }; public ref class DateCalculationEngine sealed { public: // Constructor DateCalculationEngine(_In_ Platform::String ^ calendarIdentifier); // Public Methods Platform::IBox ^ AddDuration(_In_ Windows::Foundation::DateTime startDate, _In_ DateDifference duration); Platform::IBox ^ SubtractDuration(_In_ Windows::Foundation::DateTime startDate, _In_ DateDifference duration); Platform::IBox< DateDifference> ^ TryGetDateDifference(_In_ Windows::Foundation::DateTime date1, _In_ Windows::Foundation::DateTime date2, _In_ DateUnit outputFormat); private: // Private Variables Windows::Globalization::Calendar ^ m_calendar; // Private Methods int GetDifferenceInDays(Windows::Foundation::DateTime date1, Windows::Foundation::DateTime date2); bool TryGetCalendarDaysInMonth(_In_ Windows::Foundation::DateTime date, _Out_ UINT& daysInMonth); bool TryGetCalendarDaysInYear(_In_ Windows::Foundation::DateTime date, _Out_ UINT& daysInYear); Windows::Foundation::DateTime AdjustCalendarDate(Windows::Foundation::DateTime date, DateUnit dateUnit, int difference); }; } } } bool operator==(const CalculatorApp::ViewModel::Common::DateCalculation::DateDifference& l, const CalculatorApp::ViewModel::Common::DateCalculation::DateDifference& r); ================================================ FILE: src/CalcViewModel/Common/DelegateCommand.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel { namespace Common { public delegate void DelegateCommandHandler(Platform::Object ^ parameter); public ref class DelegateCommand sealed : public Windows::UI::Xaml::Input::ICommand { public: DelegateCommand(DelegateCommandHandler ^ handler) : m_handler(handler) {} private: // Explicit, and private, implementation of ICommand, this way of programming makes it so // the ICommand methods will only be available if the ICommand interface is requested via a dynamic_cast // The ICommand interface is meant to be consumed by Xaml and not by the app, this is a defensive measure against // code in the app calling Execute. virtual void ExecuteImpl(Platform::Object ^ parameter) sealed = Windows::UI::Xaml::Input::ICommand::Execute { m_handler->Invoke(parameter); } virtual bool CanExecuteImpl(Platform::Object ^ parameter) sealed = Windows::UI::Xaml::Input::ICommand::CanExecute { return true; } virtual event Windows::Foundation::EventHandler ^ CanExecuteChangedImpl { virtual Windows::Foundation::EventRegistrationToken add(Windows::Foundation::EventHandler ^ handler) sealed = Windows::UI::Xaml::Input::ICommand::CanExecuteChanged::add { return m_canExecuteChanged += handler; } virtual void remove(Windows::Foundation::EventRegistrationToken token) sealed = Windows::UI::Xaml::Input::ICommand::CanExecuteChanged::remove { m_canExecuteChanged -= token; } } private: DelegateCommandHandler ^ m_handler; event Windows::Foundation::EventHandler ^ m_canExecuteChanged; }; template DelegateCommandHandler ^ MakeDelegateCommandHandler(TTarget ^ target, TFuncPtr&& function) { Platform::WeakReference weakTarget(target); return ref new DelegateCommandHandler([weakTarget, function=std::forward(function)](Platform::Object ^ param) { TTarget ^ thatTarget = weakTarget.Resolve(); if (nullptr != thatTarget) { (thatTarget->*function)(param); } } ); } } } ================================================ FILE: src/CalcViewModel/Common/DisplayExpressionToken.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Utils.h" namespace CalculatorApp::ViewModel::Common { public enum class TokenType { Operator, Operand, Separator }; [Windows::UI::Xaml::Data::Bindable] public ref class DisplayExpressionToken sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal : DisplayExpressionToken(Platform::String ^ token, int tokenPosition, bool fEditable, TokenType type) : m_Token(token) , m_TokenPosition(tokenPosition) , m_IsTokenEditable(fEditable) , m_Type(type) , m_OriginalToken(token) , m_InEditMode(false) { } public: OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Token); OBSERVABLE_PROPERTY_RW(int, TokenPosition); OBSERVABLE_PROPERTY_RW(bool, IsTokenEditable); OBSERVABLE_PROPERTY_RW(int, CommandIndex); OBSERVABLE_PROPERTY_RW(TokenType, Type); OBSERVABLE_PROPERTY_R(Platform::String ^, OriginalToken); property bool IsTokenInEditMode { bool get() { return m_InEditMode; } void set(bool val) { if (!val) { m_OriginalToken = ref new Platform::String(m_Token->Data()); } m_InEditMode = val; } } private: bool m_InEditMode; }; } ================================================ FILE: src/CalcViewModel/Common/EngineResourceProvider.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "EngineResourceProvider.h" #include "Common/LocalizationSettings.h" using namespace CalculatorApp::ViewModel::Common; using namespace Platform; using namespace Windows::ApplicationModel::Resources; using namespace std; namespace CalculatorApp { EngineResourceProvider::EngineResourceProvider() { m_resLoader = ResourceLoader::GetForViewIndependentUse("CEngineStrings"); } wstring EngineResourceProvider::GetCEngineString(wstring_view id) { LocalizationSettings^ localizationSettings = LocalizationSettings::GetInstance(); if (id.compare(L"sDecimal") == 0) { return localizationSettings->GetDecimalSeparatorStr(); } if (id.compare(L"sThousand") == 0) { return localizationSettings->GetNumberGroupingSeparatorStr(); } if (id.compare(L"sGrouping") == 0) { // The following groupings are the onces that CalcEngine supports. // 0;0 0x000 - no grouping // 3;0 0x003 - group every 3 digits // 3;2;0 0x023 - group 1st 3 and then every 2 digits // 4;0 0x004 - group every 4 digits // 5;3;2;0 0x235 - group 5, then 3, then every 2 wstring numberGroupingString = localizationSettings->GetNumberGroupingStr(); return numberGroupingString; } StringReference idRef(id.data(), id.length()); String ^ str = m_resLoader->GetString(idRef); return str->Begin(); } } ================================================ FILE: src/CalcViewModel/Common/EngineResourceProvider.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/CalculatorResource.h" namespace CalculatorApp::ViewModel::Common { class EngineResourceProvider : public CalculationManager::IResourceProvider { public: EngineResourceProvider(); virtual std::wstring GetCEngineString(std::wstring_view id) override; private: Windows::ApplicationModel::Resources::ResourceLoader ^ m_resLoader; }; } ================================================ FILE: src/CalcViewModel/Common/ExpressionCommandDeserializer.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "ExpressionCommandDeserializer.h" using namespace CalculatorApp::ViewModel::Common; using namespace Windows::Storage::Streams; CommandDeserializer::CommandDeserializer(_In_ DataReader ^ dataReader) : m_dataReader(dataReader) { } std::shared_ptr CommandDeserializer::Deserialize(_In_ CalculationManager::CommandType cmdType) { switch (cmdType) { case CalculationManager::CommandType::OperandCommand: return std::make_shared(DeserializeOperand()); case CalculationManager::CommandType::Parentheses: return std::make_shared(DeserializeParentheses()); case CalculationManager::CommandType::UnaryCommand: return std::make_shared(DeserializeUnary()); case CalculationManager::CommandType::BinaryCommand: return std::make_shared(DeserializeBinary()); default: throw ref new Platform::Exception(E_INVALIDARG, ref new Platform::String(L"Unknown command type")); } } COpndCommand CommandDeserializer::DeserializeOperand() { bool fNegative = m_dataReader->ReadBoolean(); bool fDecimal = m_dataReader->ReadBoolean(); bool fSciFmt = m_dataReader->ReadBoolean(); std::shared_ptr> cmdVector = std::make_shared>(); auto cmdVectorSize = m_dataReader->ReadUInt32(); for (unsigned int j = 0; j < cmdVectorSize; ++j) { int eachOpndcmd = m_dataReader->ReadInt32(); cmdVector->push_back(eachOpndcmd); } return COpndCommand(cmdVector, fNegative, fDecimal, fSciFmt); } CParentheses CommandDeserializer::DeserializeParentheses() { int parenthesisCmd = m_dataReader->ReadInt32(); return CParentheses(parenthesisCmd); } CUnaryCommand CommandDeserializer::DeserializeUnary() { auto cmdSize = m_dataReader->ReadUInt32(); if (cmdSize == 1) { int eachOpndcmd = m_dataReader->ReadInt32(); return CUnaryCommand(eachOpndcmd); } else { int eachOpndcmd1 = m_dataReader->ReadInt32(); int eachOpndcmd2 = m_dataReader->ReadInt32(); return CUnaryCommand(eachOpndcmd1, eachOpndcmd2); } } CBinaryCommand CommandDeserializer::DeserializeBinary() { int cmd = m_dataReader->ReadInt32(); return CBinaryCommand(cmd); } ================================================ FILE: src/CalcViewModel/Common/ExpressionCommandDeserializer.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/ExpressionCommand.h" namespace CalculatorApp::ViewModel { namespace Common { class CommandDeserializer { public: CommandDeserializer(_In_ Windows::Storage::Streams::DataReader ^ dataReader); std::shared_ptr Deserialize(_In_ CalculationManager::CommandType cmdType); private: Windows::Storage::Streams::DataReader ^ m_dataReader; COpndCommand DeserializeOperand(); CParentheses DeserializeParentheses(); CUnaryCommand DeserializeUnary(); CBinaryCommand DeserializeBinary(); }; } } ================================================ FILE: src/CalcViewModel/Common/ExpressionCommandSerializer.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "Common/ExpressionCommandSerializer.h" using namespace CalculatorApp::ViewModel::Common; using namespace Windows::Storage::Streams; SerializeCommandVisitor::SerializeCommandVisitor(_In_ DataWriter ^ dataWriter) : m_dataWriter(dataWriter) { } void SerializeCommandVisitor::Visit(_In_ COpndCommand& opndCmd) { m_dataWriter->WriteBoolean(opndCmd.IsNegative()); m_dataWriter->WriteBoolean(opndCmd.IsDecimalPresent()); m_dataWriter->WriteBoolean(opndCmd.IsSciFmt()); const auto& opndCmds = opndCmd.GetCommands(); unsigned int opndCmdSize = static_cast(opndCmds->size()); m_dataWriter->WriteUInt32(opndCmdSize); for (int eachOpndcmd : *opndCmds) { m_dataWriter->WriteInt32(eachOpndcmd); } } void SerializeCommandVisitor::Visit(_In_ CUnaryCommand& unaryCmd) { const auto& cmds = unaryCmd.GetCommands(); unsigned int cmdSize = static_cast(cmds->size()); m_dataWriter->WriteUInt32(cmdSize); for (int eachOpndcmd : *cmds) { m_dataWriter->WriteInt32(eachOpndcmd); } } void SerializeCommandVisitor::Visit(_In_ CBinaryCommand& binaryCmd) { int cmd = binaryCmd.GetCommand(); m_dataWriter->WriteInt32(cmd); } void SerializeCommandVisitor::Visit(_In_ CParentheses& paraCmd) { int parenthesisCmd = paraCmd.GetCommand(); m_dataWriter->WriteInt32(parenthesisCmd); } ================================================ FILE: src/CalcViewModel/Common/ExpressionCommandSerializer.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/ExpressionCommand.h" namespace CalculatorApp::ViewModel { namespace Common { class SerializeCommandVisitor : public ISerializeCommandVisitor { public: SerializeCommandVisitor(_In_ Windows::Storage::Streams::DataWriter ^ dataWriter); void Visit(_In_ COpndCommand& opndCmd); void Visit(_In_ CUnaryCommand& unaryCmd); void Visit(_In_ CBinaryCommand& binaryCmd); void Visit(_In_ CParentheses& paraCmd); private: Windows::Storage::Streams::DataWriter ^ m_dataWriter; }; } } ================================================ FILE: src/CalcViewModel/Common/LocalizationService.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "LocalizationService.h" #include "LocalizationSettings.h" #include "AppResourceProvider.h" using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::LocalizationServiceProperties; using namespace CalculatorApp::ViewModel; using namespace Concurrency; using namespace Platform; using namespace Platform::Collections; using namespace std; using namespace Windows::ApplicationModel::Resources; using namespace Windows::ApplicationModel::Resources::Core; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::Globalization; using namespace Windows::Globalization::DateTimeFormatting; using namespace Windows::Globalization::Fonts; using namespace Windows::Globalization::NumberFormatting; using namespace Windows::System::UserProfile; using namespace Windows::UI::Text; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Controls; using namespace Windows::UI::Xaml::Controls::Primitives; using namespace Windows::UI::Xaml::Documents; using namespace Windows::UI::Xaml::Media; DEPENDENCY_PROPERTY_INITIALIZATION(LocalizationService, FontType); DEPENDENCY_PROPERTY_INITIALIZATION(LocalizationService, FontSize); static reader_writer_lock s_locServiceInstanceLock; LocalizationService ^ LocalizationService::s_singletonInstance = nullptr; // Resources for the engine use numbers as keys. It's inconvenient, but also difficult to // change given that the engine heavily relies on perfect ordering of certain elements. // The key for open parenthesis, '(', is "48". static constexpr auto s_openParenResourceKey = L"48"; LocalizationService ^ LocalizationService::GetInstance() { if (s_singletonInstance == nullptr) { // Writer lock for the static maps reader_writer_lock::scoped_lock lock(s_locServiceInstanceLock); if (s_singletonInstance == nullptr) { s_singletonInstance = ref new LocalizationService(nullptr); } } return s_singletonInstance; } /// /// Replace (or create) the single instance of this singleton class by one with the language passed as parameter /// /// RFC-5646 identifier of the language to use /// /// Should only be used for test purpose /// void LocalizationService::OverrideWithLanguage(_In_ const wchar_t* const language) { s_singletonInstance = ref new LocalizationService(language); } /// /// Constructor /// /// RFC-5646 identifier of the language to use, if null, will use the current language of the system LocalizationService::LocalizationService(_In_ const wchar_t * const overridedLanguage) { m_isLanguageOverrided = overridedLanguage != nullptr; m_language = m_isLanguageOverrided ? ref new Platform::String(overridedLanguage) : ApplicationLanguages::Languages->GetAt(0); m_flowDirection = ResourceContext::GetForViewIndependentUse()->QualifierValues->Lookup(L"LayoutDirection") != L"LTR" ? FlowDirection::RightToLeft : FlowDirection::LeftToRight; wstring localeName = wstring(m_language->Data()); localeName += L".UTF8"; try { // Convert wstring to string for locale int size_needed = WideCharToMultiByte(CP_UTF8, 0, &localeName[0], (int)localeName.size(), NULL, 0, NULL, NULL); string localeNameStr(size_needed, 0); WideCharToMultiByte(CP_UTF8, 0, &localeName[0], (int)localeName.size(), &localeNameStr[0], size_needed, NULL, NULL); m_locale = locale(localeNameStr.data()); } catch (...) { m_locale = locale(""); } auto resourceLoader = AppResourceProvider::GetInstance(); m_fontFamilyOverride = resourceLoader->GetResourceString(L"LocalizedFontFamilyOverride"); String ^ reserved = L"RESERVED_FOR_FONTLOC"; m_overrideFontApiValues = ((m_fontFamilyOverride != nullptr) && (m_fontFamilyOverride != reserved)); if (m_overrideFontApiValues) { String ^ localizedUICaptionFontSizeFactorOverride = resourceLoader->GetResourceString(L"LocalizedUICaptionFontSizeFactorOverride"); String ^ localizedUITextFontSizeFactorOverride = resourceLoader->GetResourceString(L"LocalizedUITextFontSizeFactorOverride"); String ^ localizedFontWeightOverride = resourceLoader->GetResourceString(L"LocalizedFontWeightOverride"); // If any of the font overrides are modified then all of them need to be modified assert(localizedFontWeightOverride != reserved); assert(localizedUITextFontSizeFactorOverride != reserved); assert(localizedUICaptionFontSizeFactorOverride != reserved); m_fontWeightOverride = ParseFontWeight(localizedFontWeightOverride); m_uiTextFontScaleFactorOverride = _wtof(localizedUITextFontSizeFactorOverride->Data()); m_uiCaptionFontScaleFactorOverride = _wtof(localizedUICaptionFontSizeFactorOverride->Data()); } m_fontGroup = ref new LanguageFontGroup(m_language); } FontWeight LocalizationService::ParseFontWeight(String ^ fontWeight) { wstring weight = fontWeight->Data(); transform(weight.begin(), weight.end(), weight.begin(), towlower); fontWeight = ref new String(weight.c_str()); if (fontWeight == "black") { return FontWeights::Black; } else if (fontWeight == "bold") { return FontWeights::Bold; } else if (fontWeight == "extrablack") { return FontWeights::ExtraBlack; } else if (fontWeight == "extrabold") { return FontWeights::ExtraBold; } else if (fontWeight == "extralight") { return FontWeights::ExtraLight; } else if (fontWeight == "light") { return FontWeights::Light; } else if (fontWeight == "medium") { return FontWeights::Medium; } else if (fontWeight == "normal") { return FontWeights::Normal; } else if (fontWeight == "semibold") { return FontWeights::SemiBold; } else if (fontWeight == "semilight") { return FontWeights::SemiLight; } else if (fontWeight == "thin") { return FontWeights::Thin; } else { throw invalid_argument("Invalid argument: fontWeight"); } } FlowDirection LocalizationService::GetFlowDirection() { return m_flowDirection; } bool LocalizationService::IsRtlLayout() { return m_flowDirection == FlowDirection::RightToLeft; } String ^ LocalizationService::GetLanguage() { return m_language; } bool LocalizationService::GetOverrideFontApiValues() { return m_overrideFontApiValues; } FontFamily ^ LocalizationService::GetLanguageFontFamilyForType(LanguageFontType fontType) { if (m_overrideFontApiValues) { return ref new FontFamily(m_fontFamilyOverride); } else { return ref new FontFamily(GetLanguageFont(fontType)->FontFamily); } } LanguageFont ^ LocalizationService::GetLanguageFont(LanguageFontType fontType) { assert(!m_overrideFontApiValues); assert(m_fontGroup); switch (fontType) { case LanguageFontType::UIText: return m_fontGroup->UITextFont; case LanguageFontType::UICaption: return m_fontGroup->UICaptionFont; default: throw std::invalid_argument("fontType"); } } String ^ LocalizationService::GetFontFamilyOverride() { assert(m_overrideFontApiValues); return m_fontFamilyOverride; } FontWeight LocalizationService::GetFontWeightOverride() { assert(m_overrideFontApiValues); return m_fontWeightOverride; } double LocalizationService::GetFontScaleFactorOverride(LanguageFontType fontType) { assert(m_overrideFontApiValues); switch (fontType) { case LanguageFontType::UIText: return m_uiTextFontScaleFactorOverride; case LanguageFontType::UICaption: return m_uiCaptionFontScaleFactorOverride; default: throw invalid_argument("Invalid argument: fontType"); } } void LocalizationService::OnFontTypePropertyChanged(DependencyObject ^ target, LanguageFontType /*oldValue*/, LanguageFontType /*newValue*/) { UpdateFontFamilyAndSize(target); } void LocalizationService::OnFontWeightPropertyChanged(DependencyObject ^ target, FontWeight /*oldValue*/, FontWeight /*newValue*/) { UpdateFontFamilyAndSize(target); } void LocalizationService::OnFontSizePropertyChanged(DependencyObject ^ target, double /*oldValue*/, double /*newValue*/) { UpdateFontFamilyAndSize(target); } void LocalizationService::UpdateFontFamilyAndSize(DependencyObject ^ target) { FontFamily ^ fontFamily; FontWeight fontWeight; bool fOverrideFontWeight = false; double scaleFactor; auto service = LocalizationService::GetInstance(); auto fontType = LocalizationService::GetFontType(target); if (service->GetOverrideFontApiValues()) { fontFamily = ref new FontFamily(service->GetFontFamilyOverride()); scaleFactor = service->GetFontScaleFactorOverride(fontType) / 100.0; fontWeight = service->GetFontWeightOverride(); fOverrideFontWeight = true; } else { auto languageFont = service->GetLanguageFont(fontType); fontFamily = ref new FontFamily(languageFont->FontFamily); scaleFactor = languageFont->ScaleFactor / 100.0; } double sizeToUse = LocalizationService::GetFontSize(target) * scaleFactor; auto control = dynamic_cast(target); if (control) { control->FontFamily = fontFamily; if (fOverrideFontWeight) { control->FontWeight = fontWeight; } if (sizeToUse != 0.0) { control->FontSize = sizeToUse; } else { control->ClearValue(Control::FontSizeProperty); } } else { auto textBlock = dynamic_cast(target); if (textBlock) { textBlock->FontFamily = fontFamily; if (fOverrideFontWeight) { textBlock->FontWeight = fontWeight; } if (sizeToUse != 0.0) { textBlock->FontSize = sizeToUse; } else { textBlock->ClearValue(TextBlock::FontSizeProperty); } } else { RichTextBlock ^ richTextBlock = dynamic_cast(target); if (richTextBlock) { richTextBlock->FontFamily = fontFamily; if (fOverrideFontWeight) { richTextBlock->FontWeight = fontWeight; } if (sizeToUse != 0.0) { richTextBlock->FontSize = sizeToUse; } else { richTextBlock->ClearValue(RichTextBlock::FontSizeProperty); } } else { TextElement ^ textElement = dynamic_cast(target); if (textElement) { textElement->FontFamily = fontFamily; if (fOverrideFontWeight) { textElement->FontWeight = fontWeight; } if (sizeToUse != 0.0) { textElement->FontSize = sizeToUse; } else { textElement->ClearValue(TextElement::FontSizeProperty); } } } } } } // If successful, returns a formatter that respects the user's regional format settings, // as configured by running intl.cpl. DecimalFormatter ^ LocalizationService::GetRegionalSettingsAwareDecimalFormatter() { IIterable ^ languageIdentifiers = LocalizationService::GetLanguageIdentifiers(); if (languageIdentifiers != nullptr) { return ref new DecimalFormatter(languageIdentifiers, GlobalizationPreferences::HomeGeographicRegion); } return ref new DecimalFormatter(); } // If successful, returns a formatter that respects the user's regional format settings, // as configured by running intl.cpl. // // This helper function creates a DateTimeFormatter with a TwentyFour hour clock DateTimeFormatter ^ LocalizationService::GetRegionalSettingsAwareDateTimeFormatter(_In_ String ^ format) { IIterable ^ languageIdentifiers = LocalizationService::GetLanguageIdentifiers(); if (languageIdentifiers == nullptr) { languageIdentifiers = ApplicationLanguages::Languages; } return ref new DateTimeFormatter(format, languageIdentifiers); } // If successful, returns a formatter that respects the user's regional format settings, // as configured by running intl.cpl. DateTimeFormatter ^ LocalizationService::GetRegionalSettingsAwareDateTimeFormatter(_In_ String ^ format, _In_ String ^ calendarIdentifier, _In_ String ^ clockIdentifier) { IIterable ^ languageIdentifiers = LocalizationService::GetLanguageIdentifiers(); if (languageIdentifiers == nullptr) { languageIdentifiers = ApplicationLanguages::Languages; } return ref new DateTimeFormatter(format, languageIdentifiers, GlobalizationPreferences::HomeGeographicRegion, calendarIdentifier, clockIdentifier); } CurrencyFormatter ^ LocalizationService::GetRegionalSettingsAwareCurrencyFormatter() { String ^ userCurrency = (GlobalizationPreferences::Currencies->Size > 0) ? GlobalizationPreferences::Currencies->GetAt(0) : StringReference(DefaultCurrencyCode.data()); IIterable ^ languageIdentifiers = GetLanguageIdentifiers(); if (languageIdentifiers == nullptr) { languageIdentifiers = ApplicationLanguages::Languages; } auto currencyFormatter = ref new CurrencyFormatter(userCurrency, languageIdentifiers, GlobalizationPreferences::HomeGeographicRegion); int fractionDigits = LocalizationSettings::GetInstance()->GetCurrencyTrailingDigits(); currencyFormatter->FractionDigits = fractionDigits; return currencyFormatter; } IIterable ^ LocalizationService::GetLanguageIdentifiers() const { WCHAR currentLocale[LOCALE_NAME_MAX_LENGTH] = {}; int result = GetUserDefaultLocaleName(currentLocale, LOCALE_NAME_MAX_LENGTH); if (m_isLanguageOverrided) { auto overridedLanguageList = ref new Vector(); overridedLanguageList->Append(m_language); return overridedLanguageList; } if (result != 0) { // GetUserDefaultLocaleName may return an invalid bcp47 language tag with trailing non-BCP47 friendly characters, // which if present would start with an underscore, for example sort order // (see https://msdn.microsoft.com/en-us/library/windows/desktop/dd373814(v=vs.85).aspx). // Therefore, if there is an underscore in the locale name, trim all characters from the underscore onwards. WCHAR* underscore = wcschr(currentLocale, L'_'); if (underscore != nullptr) { *underscore = L'\0'; } String ^ localeString = ref new String(currentLocale); // validate if the locale we have is valid // otherwise we fallback to the default. if (Language::IsWellFormed(localeString)) { auto languageList = ref new Vector(); languageList->Append(localeString); return languageList; } } return nullptr; } unordered_map LocalizationService::GetTokenToReadableNameMap() { // Resources for the engine use numbers as keys. It's inconvenient, but also difficult to // change given that the engine heavily relies on perfect ordering of certain elements. // To compromise, we'll declare a map from engine resource key to automation name from the // standard project resources. static vector> s_parenEngineKeyResourceMap = { // Sine permutations make_pair(L"67", L"SineDegrees"), make_pair(L"73", L"SineRadians"), make_pair(L"79", L"SineGradians"), make_pair(L"70", L"InverseSineDegrees"), make_pair(L"76", L"InverseSineRadians"), make_pair(L"82", L"InverseSineGradians"), make_pair(L"25", L"HyperbolicSine"), make_pair(L"85", L"InverseHyperbolicSine"), // Cosine permutations make_pair(L"68", L"CosineDegrees"), make_pair(L"74", L"CosineRadians"), make_pair(L"80", L"CosineGradians"), make_pair(L"71", L"InverseCosineDegrees"), make_pair(L"77", L"InverseCosineRadians"), make_pair(L"83", L"InverseCosineGradians"), make_pair(L"26", L"HyperbolicCosine"), make_pair(L"86", L"InverseHyperbolicCosine"), // Tangent permutations make_pair(L"69", L"TangentDegrees"), make_pair(L"75", L"TangentRadians"), make_pair(L"81", L"TangentGradians"), make_pair(L"72", L"InverseTangentDegrees"), make_pair(L"78", L"InverseTangentRadians"), make_pair(L"84", L"InverseTangentGradians"), make_pair(L"27", L"HyperbolicTangent"), make_pair(L"87", L"InverseHyperbolicTangent"), // Secant permutations make_pair(L"SecDeg", L"SecantDegrees"), make_pair(L"SecRad", L"SecantRadians"), make_pair(L"SecGrad", L"SecantGradians"), make_pair(L"InverseSecDeg", L"InverseSecantDegrees"), make_pair(L"InverseSecRad", L"InverseSecantRadians"), make_pair(L"InverseSecGrad", L"InverseSecantGradians"), make_pair(L"Sech", L"HyperbolicSecant"), make_pair(L"InverseSech", L"InverseHyperbolicSecant"), // Cosecant permutations make_pair(L"CscDeg", L"CosecantDegrees"), make_pair(L"CscRad", L"CosecantRadians"), make_pair(L"CscGrad", L"CosecantGradians"), make_pair(L"InverseCscDeg", L"InverseCosecantDegrees"), make_pair(L"InverseCscRad", L"InverseCosecantRadians"), make_pair(L"InverseCscGrad", L"InverseCosecantGradians"), make_pair(L"Csch", L"HyperbolicCosecant"), make_pair(L"InverseCsch", L"InverseHyperbolicCosecant"), // Cotangent permutations make_pair(L"CotDeg", L"CotangentDegrees"), make_pair(L"CotRad", L"CotangentRadians"), make_pair(L"CotGrad", L"CotangentGradians"), make_pair(L"InverseCotDeg", L"InverseCotangentDegrees"), make_pair(L"InverseCotRad", L"InverseCotangentRadians"), make_pair(L"InverseCotGrad", L"InverseCotangentGradians"), make_pair(L"Coth", L"HyperbolicCotangent"), make_pair(L"InverseCoth", L"InverseHyperbolicCotangent"), // Miscellaneous Scientific functions make_pair(L"94", L"Factorial"), make_pair(L"35", L"DegreeMinuteSecond"), make_pair(L"28", L"NaturalLog"), make_pair(L"91", L"Square"), make_pair(L"CubeRoot", L"CubeRoot"), make_pair(L"Abs", L"AbsoluteValue") }; static vector> s_noParenEngineKeyResourceMap = { // Programmer mode functions make_pair(L"9", L"LeftShift"), make_pair(L"10", L"RightShift"), make_pair(L"LogBaseY", L"Logy"), // Y Root scientific function make_pair(L"16", L"YRoot") }; unordered_map tokenToReadableNameMap{}; auto resProvider = AppResourceProvider::GetInstance(); static const wstring openParen = resProvider->GetCEngineString(StringReference(s_openParenResourceKey))->Data(); for (const auto& keyPair : s_parenEngineKeyResourceMap) { wstring engineStr = resProvider->GetCEngineString(StringReference(keyPair.first.c_str()))->Data(); wstring automationName = resProvider->GetResourceString(StringReference(keyPair.second.c_str()))->Data(); tokenToReadableNameMap.emplace(engineStr + openParen, automationName); } s_parenEngineKeyResourceMap.clear(); for (const auto& keyPair : s_noParenEngineKeyResourceMap) { wstring engineStr = resProvider->GetCEngineString(StringReference(keyPair.first.c_str()))->Data(); wstring automationName = resProvider->GetResourceString(StringReference(keyPair.second.c_str()))->Data(); tokenToReadableNameMap.emplace(engineStr, automationName); } s_noParenEngineKeyResourceMap.clear(); // Also replace hyphens with "minus" wstring minusText = resProvider->GetResourceString(L"minus")->Data(); tokenToReadableNameMap.emplace(L"-", minusText); return tokenToReadableNameMap; } String ^ LocalizationService::GetNarratorReadableToken(String ^ rawToken) { static unordered_map s_tokenToReadableNameMap = GetTokenToReadableNameMap(); auto itr = s_tokenToReadableNameMap.find(rawToken->Data()); if (itr == s_tokenToReadableNameMap.end()) { return rawToken; } else { static const String ^ openParen = AppResourceProvider::GetInstance()->GetCEngineString(StringReference(s_openParenResourceKey)); return ref new String(itr->second.c_str()) + L" " + openParen; } } String ^ LocalizationService::GetNarratorReadableString(String ^ rawString) { wstring readableString{}; wstring asWstring = rawString->Data(); for (const auto& c : asWstring) { readableString += LocalizationService::GetNarratorReadableToken(ref new String(&c, 1))->Data(); } return ref new String(readableString.c_str()); } void LocalizationService::Sort(std::vector& source) { const collate& coll = use_facet>(m_locale); sort(source.begin(), source.end(), [&coll](Platform::String ^ str1, Platform::String ^ str2) { return coll.compare(str1->Begin(), str1->End(), str2->Begin(), str2->End()) < 0; }); } ================================================ FILE: src/CalcViewModel/Common/LocalizationService.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Utils.h" namespace CalculatorApp::ViewModel { namespace Common { namespace LocalizationServiceProperties { static constexpr std::wstring_view DefaultCurrencyCode{ L"USD" }; } public enum class LanguageFontType { UIText, UICaption, }; public ref class LocalizationService sealed { public: DEPENDENCY_PROPERTY_OWNER(LocalizationService); DEPENDENCY_PROPERTY_ATTACHED_WITH_DEFAULT_AND_CALLBACK(LanguageFontType, FontType, LanguageFontType::UIText); DEPENDENCY_PROPERTY_ATTACHED_WITH_CALLBACK(double, FontSize); static LocalizationService ^ GetInstance(); Windows::UI::Xaml::FlowDirection GetFlowDirection(); bool IsRtlLayout(); bool GetOverrideFontApiValues(); Platform::String ^ GetLanguage(); Windows::UI::Xaml::Media::FontFamily ^ GetLanguageFontFamilyForType(LanguageFontType fontType); Platform::String ^ GetFontFamilyOverride(); Windows::UI::Text::FontWeight GetFontWeightOverride(); double GetFontScaleFactorOverride(LanguageFontType fontType); Windows::Globalization::NumberFormatting::DecimalFormatter ^ GetRegionalSettingsAwareDecimalFormatter(); Windows::Globalization::DateTimeFormatting::DateTimeFormatter ^ GetRegionalSettingsAwareDateTimeFormatter(_In_ Platform::String ^ format); Windows::Globalization::DateTimeFormatting::DateTimeFormatter ^ GetRegionalSettingsAwareDateTimeFormatter( _In_ Platform::String ^ format, _In_ Platform::String ^ calendarIdentifier, _In_ Platform::String ^ clockIdentifier); Windows::Globalization::NumberFormatting::CurrencyFormatter ^ GetRegionalSettingsAwareCurrencyFormatter(); internal: static void OverrideWithLanguage(_In_ const wchar_t* const language); void Sort(std::vector& source); template void Sort(std::vector& source, std::function func) { const collate& coll = use_facet>(m_locale); sort(source.begin(), source.end(), [&coll, &func](T obj1, T obj2) { Platform::String ^ str1 = func(obj1); Platform::String ^ str2 = func(obj2); return coll.compare(str1->Begin(), str1->End(), str2->Begin(), str2->End()) < 0; }); } static Platform::String ^ GetNarratorReadableToken(Platform::String ^ rawToken); static Platform::String ^ GetNarratorReadableString(Platform::String ^ rawString); private: LocalizationService(_In_ const wchar_t* const overridedLanguage); Windows::Globalization::Fonts::LanguageFont ^ GetLanguageFont(LanguageFontType fontType); Windows::UI::Text::FontWeight ParseFontWeight(Platform::String ^ fontWeight); Windows::Foundation::Collections::IIterable ^ GetLanguageIdentifiers() const; // Attached property callbacks static void OnFontTypePropertyChanged(Windows::UI::Xaml::DependencyObject ^ target, LanguageFontType oldValue, LanguageFontType newValue); static void OnFontWeightPropertyChanged( Windows::UI::Xaml::DependencyObject ^ target, Windows::UI::Text::FontWeight oldValue, Windows::UI::Text::FontWeight newValue); static void OnFontSizePropertyChanged(Windows::UI::Xaml::DependencyObject ^ target, double oldValue, double newValue); static void UpdateFontFamilyAndSize(Windows::UI::Xaml::DependencyObject ^ target); static std::unordered_map GetTokenToReadableNameMap(); static LocalizationService ^ s_singletonInstance; Windows::Globalization::Fonts::LanguageFontGroup ^ m_fontGroup; Platform::String ^ m_language; Windows::UI::Xaml::FlowDirection m_flowDirection; bool m_overrideFontApiValues; Platform::String ^ m_fontFamilyOverride; bool m_isLanguageOverrided; Windows::UI::Text::FontWeight m_fontWeightOverride; double m_uiTextFontScaleFactorOverride; double m_uiCaptionFontScaleFactorOverride; std::locale m_locale; }; } } ================================================ FILE: src/CalcViewModel/Common/LocalizationSettings.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "LocalizationService.h" #include namespace CalculatorApp::ViewModel { namespace Common { public ref class LocalizationSettings sealed { private: LocalizationSettings() // Use DecimalFormatter as it respects the locale and the user setting { Initialize(LocalizationService::GetInstance()->GetRegionalSettingsAwareDecimalFormatter()); } public: // This is only public for unit testing purposes. LocalizationSettings(Windows::Globalization::NumberFormatting::DecimalFormatter ^ formatter) { Initialize(formatter); } // Provider of the singleton LocalizationSettings instance. static LocalizationSettings^ GetInstance() { static LocalizationSettings^ localizationSettings = ref new LocalizationSettings(); return localizationSettings; } Platform::String ^ GetLocaleName() { return m_resolvedName; } bool IsDigitEnUsSetting() { return (this->GetDigitSymbolFromEnUsDigit('0') == L'0'); } Platform::String ^ GetEnglishValueFromLocalizedDigits(Platform::String ^ localizedString) { if (m_resolvedName == L"en-US") { return localizedString; } std::wstring englishString; englishString.reserve(localizedString->Length()); for (wchar_t ch : localizedString) { if (!IsEnUsDigit(ch)) { auto it = std::find(m_digitSymbols.begin(), m_digitSymbols.end(), ch); if (it != m_digitSymbols.end()) { auto index = std::distance(m_digitSymbols.begin(), it); ch = index.ToString()->Data()[0]; } } if (ch == m_decimalSeparator) { ch = L'.'; } englishString += ch; } return ref new Platform::String(englishString.c_str()); } Platform::String ^ RemoveGroupSeparators(Platform::String ^ source) { std::wstring destination; std::copy_if( begin(source), end(source), std::back_inserter(destination), [this](auto const c) { return c != L' ' && c != m_numberGroupSeparator; }); return ref new Platform::String(destination.c_str()); } Platform::String ^ GetCalendarIdentifier() { return m_calendarIdentifier; } Windows::Globalization::DayOfWeek GetFirstDayOfWeek() { return m_firstDayOfWeek; } int GetCurrencyTrailingDigits() { return m_currencyTrailingDigits; } int GetCurrencySymbolPrecedence() { return m_currencySymbolPrecedence; } wchar_t GetDecimalSeparator() { return m_decimalSeparator; } wchar_t GetDigitSymbolFromEnUsDigit(wchar_t digitSymbol) { assert(digitSymbol >= L'0' && digitSymbol <= L'9'); int digit = digitSymbol - L'0'; return m_digitSymbols.at(digit); // throws on out of range } wchar_t GetNumberGroupSeparator() { return m_numberGroupSeparator; } bool IsEnUsDigit(wchar_t digit) { return (digit >= L'0' && digit <= L'9'); } bool IsLocalizedDigit(wchar_t digit) { return std::find(m_digitSymbols.begin(), m_digitSymbols.end(), digit) != m_digitSymbols.end(); } bool IsLocalizedHexDigit(wchar_t digit) { if (IsLocalizedDigit(digit)) { return true; } return std::find(s_hexSymbols.begin(), s_hexSymbols.end(), digit) != s_hexSymbols.end(); } Platform::String ^ GetListSeparatorWinRT() { return ref new Platform::String(GetListSeparator().c_str()); } Platform::String ^ GetDecimalSeparatorStrWinRT() { return ref new Platform::String(GetDecimalSeparatorStr().c_str()); } internal: void LocalizeDisplayValue(_Inout_ std::wstring* stringToLocalize) { if (IsDigitEnUsSetting()) { return; } for (wchar_t& ch : *stringToLocalize) { if (IsEnUsDigit(ch)) { ch = GetDigitSymbolFromEnUsDigit(ch); } } } std::wstring GetDecimalSeparatorStr() { return std::wstring(1, m_decimalSeparator); } std::wstring GetNumberGroupingSeparatorStr() { return std::wstring(1, m_numberGroupSeparator); } std::wstring GetNumberGroupingStr() { return m_numberGrouping; } std::wstring GetListSeparator() { return m_listSeparator; } private: void Initialize(Windows::Globalization::NumberFormatting::DecimalFormatter ^ formatter) { formatter->FractionDigits = 0; formatter->IsDecimalPointAlwaysDisplayed = false; for (unsigned int i = 0; i < m_digitSymbols.size(); i++) { m_digitSymbols[i] = formatter->FormatUInt(i)->Data()[0]; } wchar_t resolvedName[LOCALE_NAME_MAX_LENGTH]; int result = ResolveLocaleName(formatter->ResolvedLanguage->Data(), resolvedName, LOCALE_NAME_MAX_LENGTH); if (result == 0) { throw std::runtime_error("Unexpected error resolving locale name"); } else { m_resolvedName = ref new Platform::String(resolvedName); wchar_t decimalString[LocaleSettingBufferSize] = L""; result = GetLocaleInfoEx(m_resolvedName->Data(), LOCALE_SDECIMAL, decimalString, static_cast(std::size(decimalString))); if (result == 0) { throw std::runtime_error("Unexpected error while getting locale info"); } wchar_t groupingSymbolString[LocaleSettingBufferSize] = L""; result = GetLocaleInfoEx(m_resolvedName->Data(), LOCALE_STHOUSAND, groupingSymbolString, static_cast(std::size(groupingSymbolString))); if (result == 0) { throw std::runtime_error("Unexpected error while getting locale info"); } wchar_t numberGroupingString[LocaleSettingBufferSize] = L""; result = GetLocaleInfoEx(m_resolvedName->Data(), LOCALE_SGROUPING, numberGroupingString, static_cast(std::size(numberGroupingString))); if (result == 0) { throw std::runtime_error("Unexpected error while getting locale info"); } // Get locale info for List Separator, eg. comma is used in many locales wchar_t listSeparatorString[4] = L""; result = ::GetLocaleInfoEx( m_resolvedName->Data(), LOCALE_SLIST, listSeparatorString, static_cast(std::size(listSeparatorString))); // Max length of the expected return value is 4 if (result == 0) { throw std::runtime_error("Unexpected error while getting locale info"); } int currencyTrailingDigits = 0; result = GetLocaleInfoEx( m_resolvedName->Data(), LOCALE_ICURRDIGITS | LOCALE_RETURN_NUMBER, (LPWSTR)¤cyTrailingDigits, sizeof(currencyTrailingDigits) / sizeof(WCHAR)); if (result == 0) { throw std::runtime_error("Unexpected error while getting locale info"); } // Currency symbol precedence is either 0 or 1. // A value of 0 indicates the symbol follows the currency value. int currencySymbolPrecedence = 1; result = GetLocaleInfoEx( m_resolvedName->Data(), LOCALE_IPOSSYMPRECEDES | LOCALE_RETURN_NUMBER, (LPWSTR)¤cySymbolPrecedence, sizeof(currencySymbolPrecedence) / sizeof(WCHAR)); // As CalcEngine only supports the first character of the decimal separator, // Only first character of the decimal separator string is supported. m_decimalSeparator = decimalString[0]; m_numberGroupSeparator = groupingSymbolString[0]; m_numberGrouping = numberGroupingString; m_listSeparator = listSeparatorString; m_currencyTrailingDigits = currencyTrailingDigits; m_currencySymbolPrecedence = currencySymbolPrecedence; } // Get the system calendar type // Note: This function returns 0 on failure. // We'll ignore the failure in that case and the CalendarIdentifier would get set to GregorianCalendar. CALID calId; ::GetLocaleInfoEx(m_resolvedName->Data(), LOCALE_ICALENDARTYPE | LOCALE_RETURN_NUMBER, reinterpret_cast(&calId), sizeof(calId)); m_calendarIdentifier = GetCalendarIdentifierFromCalid(calId); // Get FirstDayOfWeek Date and Time setting wchar_t day[80] = L""; ::GetLocaleInfoEx( m_resolvedName->Data(), LOCALE_IFIRSTDAYOFWEEK, // The first day in a week reinterpret_cast(day), // Argument is of type PWSTR static_cast(std::size(day))); // Max return size are 80 characters // The LOCALE_IFIRSTDAYOFWEEK integer value varies from 0, 1, .. 6 for Monday, Tuesday, ... Sunday // DayOfWeek enum value varies from 0, 1, .. 6 for Sunday, Monday, ... Saturday // Hence, DayOfWeek = (valueof(LOCALE_IFIRSTDAYOFWEEK) + 1) % 7 m_firstDayOfWeek = static_cast((_wtoi(day) + 1) % 7); // static cast int to DayOfWeek enum } static Platform::String^ GetCalendarIdentifierFromCalid(CALID calId) { switch (calId) { case CAL_GREGORIAN: case CAL_GREGORIAN_ARABIC: case CAL_GREGORIAN_ME_FRENCH: case CAL_GREGORIAN_US: case CAL_GREGORIAN_XLIT_ENGLISH: case CAL_GREGORIAN_XLIT_FRENCH: return Windows::Globalization::CalendarIdentifiers::Gregorian; case CAL_HEBREW: return Windows::Globalization::CalendarIdentifiers::Hebrew; case CAL_HIJRI: case CAL_PERSIAN: return Windows::Globalization::CalendarIdentifiers::Hijri; case CAL_JAPAN: return Windows::Globalization::CalendarIdentifiers::Japanese; case CAL_KOREA: return Windows::Globalization::CalendarIdentifiers::Korean; case CAL_TAIWAN: return Windows::Globalization::CalendarIdentifiers::Taiwan; case CAL_THAI: return Windows::Globalization::CalendarIdentifiers::Thai; case CAL_UMALQURA: return Windows::Globalization::CalendarIdentifiers::UmAlQura; // Gregorian will be the default Calendar Type default: return Windows::Globalization::CalendarIdentifiers::Gregorian; } } wchar_t m_decimalSeparator; wchar_t m_numberGroupSeparator; std::wstring m_numberGrouping; std::array m_digitSymbols; // Hexadecimal characters are not currently localized static constexpr std::array s_hexSymbols{ L'A', L'B', L'C', L'D', L'E', L'F' }; std::wstring m_listSeparator; Platform::String ^ m_calendarIdentifier; Windows::Globalization::DayOfWeek m_firstDayOfWeek; int m_currencySymbolPrecedence; Platform::String ^ m_resolvedName; int m_currencyTrailingDigits; static const unsigned int LocaleSettingBufferSize = 16; }; } } ================================================ FILE: src/CalcViewModel/Common/LocalizationStringUtil.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "AppResourceProvider.h" namespace CalculatorApp::ViewModel { namespace Common { class LocalizationStringUtilInternal { public: static Platform::String ^ GetLocalizedString(Platform::String ^ pMessage, ...) { std::wstring returnString = L""; const UINT32 length = 1024; std::unique_ptr spBuffer = std::make_unique(length); va_list args = NULL; va_start(args, pMessage); DWORD fmtReturnVal = FormatMessage(FORMAT_MESSAGE_FROM_STRING, pMessage->Data(), 0, 0, spBuffer.get(), length, &args); va_end(args); if (fmtReturnVal != 0) { return ref new Platform::String(spBuffer.get()); } else { return ref new Platform::String(); } } }; public ref class LocalizationStringUtil sealed { public: static Platform::String ^ GetLocalizedString(Platform::String ^ pMessage) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage); } static Platform::String ^ GetLocalizedString( Platform::String ^ pMessage, Platform::String ^ param1) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage, param1->Data()); } static Platform::String ^ GetLocalizedString( Platform::String ^ pMessage, Platform::String ^ param1, Platform::String ^ param2) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage, param1->Data(), param2->Data()); } static Platform::String ^ GetLocalizedString( Platform::String ^ pMessage, Platform::String ^ param1, Platform::String ^ param2, Platform::String ^ param3) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage, param1->Data(), param2->Data(), param3->Data()); } static Platform::String ^ GetLocalizedString( Platform::String ^ pMessage, Platform::String ^ param1, Platform::String ^ param2, Platform::String ^ param3, Platform::String ^ param4) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage, param1->Data(), param2->Data(), param3->Data(), param4->Data()); } static Platform::String ^ GetLocalizedString( Platform::String ^ pMessage, Platform::String ^ param1, Platform::String ^ param2, Platform::String ^ param3, Platform::String ^ param4, Platform::String ^ param5) { return LocalizationStringUtilInternal::GetLocalizedString(pMessage, param1->Data(), param2->Data(), param3->Data(), param4->Data(), param5->Data()); } }; } } ================================================ FILE: src/CalcViewModel/Common/MyVirtualKey.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel { namespace Common { public enum class MyVirtualKey { None = 0, LeftButton = 1, RightButton = 2, Cancel = 3, MiddleButton = 4, XButton1 = 5, XButton2 = 6, Back = 8, Tab = 9, Clear = 12, Enter = 13, Shift = 16, Control = 17, Menu = 18, Pause = 19, CapitalLock = 20, Kana = 21, Hangul = 21, Junja = 23, Final = 24, Hanja = 25, Kanji = 25, Escape = 27, Convert = 28, NonConvert = 29, Accept = 30, ModeChange = 31, Space = 32, PageUp = 33, PageDown = 34, End = 35, Home = 36, Left = 37, Up = 38, Right = 39, Down = 40, Select = 41, Print = 42, Execute = 43, Snapshot = 44, Insert = 45, Delete = 46, Help = 47, Number0 = 48, Number1 = 49, Number2 = 50, Number3 = 51, Number4 = 52, Number5 = 53, Number6 = 54, Number7 = 55, Number8 = 56, Number9 = 57, A = 65, B = 66, C = 67, D = 68, E = 69, F = 70, G = 71, H = 72, I = 73, J = 74, K = 75, L = 76, M = 77, N = 78, O = 79, P = 80, Q = 81, R = 82, S = 83, T = 84, U = 85, V = 86, W = 87, X = 88, Y = 89, Z = 90, LeftWindows = 91, RightWindows = 92, Application = 93, Sleep = 95, NumberPad0 = 96, NumberPad1 = 97, NumberPad2 = 98, NumberPad3 = 99, NumberPad4 = 100, NumberPad5 = 101, NumberPad6 = 102, NumberPad7 = 103, NumberPad8 = 104, NumberPad9 = 105, Multiply = 106, Add = 107, Separator = 108, Subtract = 109, Decimal = 110, Divide = 111, F1 = 112, F2 = 113, F3 = 114, F4 = 115, F5 = 116, F6 = 117, F7 = 118, F8 = 119, F9 = 120, F10 = 121, F11 = 122, F12 = 123, F13 = 124, F14 = 125, F15 = 126, F16 = 127, F17 = 128, F18 = 129, F19 = 130, F20 = 131, F21 = 132, F22 = 133, F23 = 134, F24 = 135, NumberKeyLock = 144, Scroll = 145, LeftShift = 160, RightShift = 161, LeftControl = 162, RightControl = 163, LeftMenu = 164, RightMenu = 165 }; } } ================================================ FILE: src/CalcViewModel/Common/NavCategory.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "NavCategory.h" #include "AppResourceProvider.h" #include "Common/LocalizationStringUtil.h" #include using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel; using namespace Concurrency; using namespace Platform; using namespace Platform::Collections; using namespace Windows::Foundation::Collections; using namespace Windows::Management::Policies; using namespace Windows::System; namespace UCM = UnitConversionManager; // Calculator categories always support negative and positive. static constexpr bool SUPPORTS_ALL = true; // Converter categories usually only support positive. static constexpr bool SUPPORTS_NEGATIVE = true; static constexpr bool POSITIVE_ONLY = false; // vvv THESE CONSTANTS SHOULD NEVER CHANGE vvv static constexpr int STANDARD_ID = 0; static constexpr int SCIENTIFIC_ID = 1; static constexpr int PROGRAMMER_ID = 2; static constexpr int DATE_ID = 3; static constexpr int VOLUME_ID = 4; static constexpr int LENGTH_ID = 5; static constexpr int WEIGHT_ID = 6; static constexpr int TEMPERATURE_ID = 7; static constexpr int ENERGY_ID = 8; static constexpr int AREA_ID = 9; static constexpr int SPEED_ID = 10; static constexpr int TIME_ID = 11; static constexpr int POWER_ID = 12; static constexpr int DATA_ID = 13; static constexpr int PRESSURE_ID = 14; static constexpr int ANGLE_ID = 15; static constexpr int CURRENCY_ID = 16; static constexpr int GRAPHING_ID = 17; // ^^^ THESE CONSTANTS SHOULD NEVER CHANGE ^^^ namespace // put the utils within this TU { Platform::String^ CurrentUserId; bool IsGraphingModeEnabled() { static auto enabled = [] { auto user = User::GetFromId(CurrentUserId); if (user == nullptr) { return true; } return NamedPolicy::GetPolicyFromPathForUser(user, L"Education", L"AllowGraphingCalculator")->GetBoolean(); }(); return enabled; } // The order of items in this list determines the order of items in the menu. const std::vector s_categoryManifest { NavCategoryInitializer{ ViewMode::Standard, STANDARD_ID, L"Standard", L"StandardMode", L"\uE8EF", CategoryGroupType::Calculator, MyVirtualKey::Number1, L"1", SUPPORTS_ALL }, NavCategoryInitializer{ ViewMode::Scientific, SCIENTIFIC_ID, L"Scientific", L"ScientificMode", L"\uF196", CategoryGroupType::Calculator, MyVirtualKey::Number2, L"2", SUPPORTS_ALL }, NavCategoryInitializer{ ViewMode::Graphing, GRAPHING_ID, L"Graphing", L"GraphingCalculatorMode", L"\uF770", CategoryGroupType::Calculator, MyVirtualKey::Number3, L"3", SUPPORTS_ALL }, NavCategoryInitializer{ ViewMode::Programmer, PROGRAMMER_ID, L"Programmer", L"ProgrammerMode", L"\uECCE", CategoryGroupType::Calculator, MyVirtualKey::Number4, L"4", SUPPORTS_ALL }, NavCategoryInitializer{ ViewMode::Date, DATE_ID, L"Date", L"DateCalculationMode", L"\uE787", CategoryGroupType::Calculator, MyVirtualKey::Number5, L"5", SUPPORTS_ALL }, NavCategoryInitializer{ ViewMode::Currency, CURRENCY_ID, L"Currency", L"CategoryName_Currency", L"\uEB0D", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Volume, VOLUME_ID, L"Volume", L"CategoryName_Volume", L"\uF1AA", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Length, LENGTH_ID, L"Length", L"CategoryName_Length", L"\uECC6", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Weight, WEIGHT_ID, L"Weight and Mass", L"CategoryName_Weight", L"\uF4C1", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Temperature, TEMPERATURE_ID, L"Temperature", L"CategoryName_Temperature", L"\uE7A3", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, SUPPORTS_NEGATIVE }, NavCategoryInitializer{ ViewMode::Energy, ENERGY_ID, L"Energy", L"CategoryName_Energy", L"\uECAD", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Area, AREA_ID, L"Area", L"CategoryName_Area", L"\uE809", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Speed, SPEED_ID, L"Speed", L"CategoryName_Speed", L"\uEADA", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Time, TIME_ID, L"Time", L"CategoryName_Time", L"\uE917", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Power, POWER_ID, L"Power", L"CategoryName_Power", L"\uE945", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, SUPPORTS_NEGATIVE }, NavCategoryInitializer{ ViewMode::Data, DATA_ID, L"Data", L"CategoryName_Data", L"\uF20F", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Pressure, PRESSURE_ID, L"Pressure", L"CategoryName_Pressure", L"\uEC4A", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, POSITIVE_ONLY }, NavCategoryInitializer{ ViewMode::Angle, ANGLE_ID, L"Angle", L"CategoryName_Angle", L"\uF515", CategoryGroupType::Converter, MyVirtualKey::None, std::nullopt, SUPPORTS_NEGATIVE }, }; } // namespace unnamed bool NavCategory::IsCalculatorViewMode(ViewModeType mode) { // Historically, Calculator modes are Standard, Scientific, and Programmer. return !IsDateCalculatorViewMode(mode) && !IsGraphingCalculatorViewMode(mode) && IsModeInCategoryGroup(mode, CategoryGroupType::Calculator); } bool NavCategory::IsGraphingCalculatorViewMode(ViewModeType mode) { return mode == ViewModeType::Graphing; } bool NavCategory::IsDateCalculatorViewMode(ViewModeType mode) { return mode == ViewModeType::Date; } bool NavCategory::IsConverterViewMode(ViewModeType mode) { return IsModeInCategoryGroup(mode, CategoryGroupType::Converter); } bool NavCategory::IsModeInCategoryGroup(ViewModeType mode, CategoryGroupType type) { return std::any_of( s_categoryManifest.cbegin(), s_categoryManifest.cend(), [mode, type](const auto& initializer) { return initializer.viewMode == mode && initializer.groupType == type; }); } NavCategoryGroup::NavCategoryGroup(const NavCategoryGroupInitializer& groupInitializer) : m_Categories(ref new Vector()) { m_GroupType = groupInitializer.type; auto resProvider = AppResourceProvider::GetInstance(); m_Name = resProvider->GetResourceString(StringReference(groupInitializer.headerResourceKey)); String ^ groupMode = resProvider->GetResourceString(StringReference(groupInitializer.modeResourceKey)); String ^ automationName = resProvider->GetResourceString(StringReference(groupInitializer.automationResourceKey)); String ^ navCategoryHeaderAutomationNameFormat = resProvider->GetResourceString(L"NavCategoryHeader_AutomationNameFormat"); m_AutomationName = LocalizationStringUtil::GetLocalizedString(navCategoryHeaderAutomationNameFormat, automationName); String ^ navCategoryItemAutomationNameFormat = resProvider->GetResourceString(L"NavCategoryItem_AutomationNameFormat"); for (const NavCategoryInitializer& categoryInitializer : s_categoryManifest) { if (categoryInitializer.groupType == groupInitializer.type) { String ^ nameResourceKey = StringReference(categoryInitializer.nameResourceKey); String ^ categoryName = resProvider->GetResourceString(nameResourceKey + "Text"); String ^ categoryAutomationName = LocalizationStringUtil::GetLocalizedString(navCategoryItemAutomationNameFormat, categoryName, m_Name); m_Categories->Append(ref new NavCategory( categoryName, categoryAutomationName, StringReference(categoryInitializer.glyph), categoryInitializer.accessKey.has_value() ? ref new String(categoryInitializer.accessKey->c_str()) : resProvider->GetResourceString(nameResourceKey + "AccessKey"), groupMode, categoryInitializer.viewMode, categoryInitializer.supportsNegative, categoryInitializer.viewMode != ViewMode::Graphing)); } } } void NavCategoryStates::SetCurrentUser(Platform::String^ userId) { CurrentUserId = userId; } IVector ^ NavCategoryStates::CreateMenuOptions() { auto menuOptions = ref new Vector(); menuOptions->Append(CreateCalculatorCategoryGroup()); menuOptions->Append(CreateConverterCategoryGroup()); return menuOptions; } NavCategoryGroup ^ NavCategoryStates::CreateCalculatorCategoryGroup() { return ref new NavCategoryGroup( NavCategoryGroupInitializer{ CategoryGroupType::Calculator, L"CalculatorModeTextCaps", L"CalculatorModeText", L"CalculatorModePluralText" }); } NavCategoryGroup ^ NavCategoryStates::CreateConverterCategoryGroup() { return ref new NavCategoryGroup( NavCategoryGroupInitializer{ CategoryGroupType::Converter, L"ConverterModeTextCaps", L"ConverterModeText", L"ConverterModePluralText" }); } // This function should only be used when storing the mode to app data. int NavCategoryStates::Serialize(ViewMode mode) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode](const auto& initializer) { return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? citer->serializationId : -1; } // This function should only be used when restoring the mode from app data. ViewMode NavCategoryStates::Deserialize(Platform::Object ^ obj) { // If we cast directly to ViewMode we will fail // because we technically store an int. // Need to cast to int, then ViewMode. auto boxed = dynamic_cast ^>(obj); if (boxed != nullptr) { int serializationId = boxed->Value; const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [serializationId](const auto& initializer) { return initializer.serializationId == serializationId; }); return citer != s_categoryManifest.cend() ? (citer->viewMode == ViewMode::Graphing ? (IsGraphingModeEnabled() ? citer->viewMode : ViewMode::None) : citer->viewMode) : ViewMode::None; } else { return ViewMode::None; } } ViewMode NavCategoryStates::GetViewModeForFriendlyName(String ^ name) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [name](const auto& initializer) { return wcscmp(initializer.friendlyName, name->Data()) == 0; }); return (citer != s_categoryManifest.cend()) ? citer->viewMode : ViewMode::None; } String ^ NavCategoryStates::GetFriendlyName(ViewMode mode) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode](const auto& initializer) { return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? StringReference(citer->friendlyName) : L"None"; } String ^ NavCategoryStates::GetNameResourceKey(ViewMode mode) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode](const auto& initializer) { return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? StringReference(citer->nameResourceKey) + "Text" : nullptr; } CategoryGroupType NavCategoryStates::GetGroupType(ViewMode mode) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode](const auto& initializer) { return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? citer->groupType : CategoryGroupType::None; } // GetIndex is 0-based, GetPosition is 1-based int NavCategoryStates::GetIndex(ViewMode mode) { int position = GetPosition(mode); return std::max(-1, position - 1); } int NavCategoryStates::GetFlatIndex(ViewMode mode) { int index = -1; CategoryGroupType type = CategoryGroupType::None; const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode, &type, &index](const auto& initializer) { ++index; if (initializer.groupType != type) { type = initializer.groupType; ++index; } return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? index : -1; } // GetIndex is 0-based, GetPosition is 1-based int NavCategoryStates::GetIndexInGroup(ViewMode mode, CategoryGroupType type) { int index = -1; const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode, type, &index](const auto& initializer) { if (initializer.groupType == type) { ++index; return initializer.viewMode == mode; } return false; }); return (citer != s_categoryManifest.cend()) ? index : -1; } // GetIndex is 0-based, GetPosition is 1-based int NavCategoryStates::GetPosition(ViewMode mode) { int position = 0; const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode, &position](const auto& initializer) { ++position; return initializer.viewMode == mode; }); return (citer != s_categoryManifest.cend()) ? position : -1; } ViewMode NavCategoryStates::GetViewModeForVirtualKey(MyVirtualKey virtualKey) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [virtualKey](const auto& initializer) { return initializer.virtualKey == virtualKey; }); return (citer != s_categoryManifest.end()) ? citer->viewMode : ViewMode::None; } void NavCategoryStates::GetCategoryAcceleratorKeys(IVector ^ accelerators) { if (accelerators != nullptr) { accelerators->Clear(); for (const auto& category : s_categoryManifest) { if (category.virtualKey != MyVirtualKey::None) { accelerators->Append(category.virtualKey); } } } } bool NavCategoryStates::IsValidViewMode(ViewMode mode) { const auto& citer = find_if( cbegin(s_categoryManifest), cend(s_categoryManifest), [mode](const auto& initializer) { return initializer.viewMode == mode; }); return citer != s_categoryManifest.cend(); } bool NavCategoryStates::IsViewModeEnabled(ViewMode mode) { return mode != ViewMode::Graphing ? true : IsGraphingModeEnabled(); } ================================================ FILE: src/CalcViewModel/Common/NavCategory.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. /* The NavCategory group of classes and enumerations is intended to serve * as a single location for storing metadata about a navigation mode. * * These .h and .cpp files: * - Define the ViewMode enumeration which is used for setting the mode of the app. * - Define a list of metadata associated with each ViewMode. * - Define the order of groups and items in the navigation menu. * - Provide a static helper function for creating the navigation menu options. * - Provide static helper functions for querying information about a given ViewMode. */ #pragma once #include "Utils.h" #include "MyVirtualKey.h" namespace CalculatorApp::ViewModel { namespace Common { // Don't change the order of these enums // and definitely don't use int arithmetic // to change modes. public enum class ViewMode { None = -1, Standard = 0, Scientific = 1, Programmer = 2, Date = 3, Volume = 4, Length = 5, Weight = 6, Temperature = 7, Energy = 8, Area = 9, Speed = 10, Time = 11, Power = 12, Data = 13, Pressure = 14, Angle = 15, Currency = 16, Graphing = 17 }; public enum class CategoryGroupType { None = -1, Calculator = 0, Converter = 1 }; private struct NavCategoryInitializer { ViewMode viewMode; int serializationId; const wchar_t* friendlyName; const wchar_t* nameResourceKey; const wchar_t* glyph; CategoryGroupType groupType; MyVirtualKey virtualKey; std::optional accessKey; bool supportsNegative; }; private struct NavCategoryGroupInitializer { NavCategoryGroupInitializer(CategoryGroupType t, wchar_t const* h, wchar_t const* n, wchar_t const* a) : type(t) , headerResourceKey(h) , modeResourceKey(n) , automationResourceKey(a) { } const CategoryGroupType type; const wchar_t* headerResourceKey; const wchar_t* modeResourceKey; const wchar_t* automationResourceKey; }; [Windows::UI::Xaml::Data::Bindable] public ref class NavCategory sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { private: using ViewModeType = ::CalculatorApp::ViewModel::Common::ViewMode; public: OBSERVABLE_OBJECT(); PROPERTY_R(Platform::String ^, Name); PROPERTY_R(Platform::String ^, AutomationName); PROPERTY_R(Platform::String ^, Glyph); PROPERTY_R(ViewModeType, ViewMode); PROPERTY_R(Platform::String ^, AccessKey); PROPERTY_R(bool, SupportsNegative); PROPERTY_RW(bool, IsEnabled); property Platform::String ^ AutomationId { Platform::String ^ get() { return m_ViewMode.ToString(); } } static bool IsCalculatorViewMode(ViewModeType mode); static bool IsGraphingCalculatorViewMode(ViewModeType mode); static bool IsDateCalculatorViewMode(ViewModeType mode); static bool IsConverterViewMode(ViewModeType mode); internal : NavCategory( Platform::String ^ name, Platform::String ^ automationName, Platform::String ^ glyph, Platform::String ^ accessKey, Platform::String ^ mode, ViewModeType viewMode, bool supportsNegative, bool isEnabled) : m_Name(name) , m_AutomationName(automationName) , m_Glyph(glyph) , m_AccessKey(accessKey) , m_modeString(mode) , m_ViewMode(viewMode) , m_SupportsNegative(supportsNegative) , m_IsEnabled(isEnabled) { } private: static bool IsModeInCategoryGroup(ViewModeType mode, CategoryGroupType groupType); Platform::String ^ m_modeString; }; [Windows::UI::Xaml::Data::Bindable] public ref class NavCategoryGroup sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal: NavCategoryGroup(const NavCategoryGroupInitializer& groupInitializer); public: OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(Platform::String ^, Name); OBSERVABLE_PROPERTY_R(Platform::String ^, AutomationName); OBSERVABLE_PROPERTY_R(CategoryGroupType, GroupType); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IVector ^, Categories); }; public ref class NavCategoryStates sealed { public: static void SetCurrentUser(Platform::String^ user); static Windows::Foundation::Collections::IVector ^ CreateMenuOptions(); static NavCategoryGroup ^ CreateCalculatorCategoryGroup(); static NavCategoryGroup ^ CreateConverterCategoryGroup(); static bool IsValidViewMode(ViewMode mode); static bool IsViewModeEnabled(ViewMode mode); // For saving/restoring last mode used. static int Serialize(ViewMode mode); static ViewMode Deserialize(Platform::Object ^ obj); // Query properties from states static ViewMode GetViewModeForFriendlyName(Platform::String ^ name); static Platform::String ^ GetFriendlyName(ViewMode mode); static Platform::String ^ GetNameResourceKey(ViewMode mode); static CategoryGroupType GetGroupType(ViewMode mode); // GetIndex is 0-based, GetPosition is 1-based static int GetIndex(ViewMode mode); static int GetFlatIndex(ViewMode mode); static int GetIndexInGroup(ViewMode mode, CategoryGroupType type); static int GetPosition(ViewMode mode); // Virtual key related static ViewMode GetViewModeForVirtualKey(MyVirtualKey virtualKey); static void GetCategoryAcceleratorKeys(Windows::Foundation::Collections::IVector ^ resutls); }; } } ================================================ FILE: src/CalcViewModel/Common/NetworkManager.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "NetworkManager.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::Common; using namespace Platform; using namespace Windows::Networking::Connectivity; NetworkManager::NetworkManager() { m_NetworkStatusChangedToken = NetworkInformation::NetworkStatusChanged += ref new NetworkStatusChangedEventHandler(this, &NetworkManager::OnNetworkStatusChange, CallbackContext::Same); } NetworkManager::~NetworkManager() { NetworkInformation::NetworkStatusChanged -= m_NetworkStatusChangedToken; } NetworkAccessBehavior NetworkManager::GetNetworkAccessBehavior() { NetworkAccessBehavior behavior = NetworkAccessBehavior::Offline; ConnectionProfile ^ connectionProfile = NetworkInformation::GetInternetConnectionProfile(); if (connectionProfile != nullptr) { NetworkConnectivityLevel connectivityLevel = connectionProfile->GetNetworkConnectivityLevel(); if (connectivityLevel == NetworkConnectivityLevel::InternetAccess || connectivityLevel == NetworkConnectivityLevel::ConstrainedInternetAccess) { ConnectionCost ^ connectionCost = connectionProfile->GetConnectionCost(); behavior = ConvertCostInfoToBehavior(connectionCost); } } return behavior; } void NetworkManager::OnNetworkStatusChange(_In_ Object ^ /*sender*/) { NetworkBehaviorChanged(GetNetworkAccessBehavior()); } // See app behavior guidelines at https://msdn.microsoft.com/en-us/library/windows/apps/xaml/jj835821(v=win.10).aspx NetworkAccessBehavior NetworkManager::ConvertCostInfoToBehavior(_In_ ConnectionCost ^ connectionCost) { if (connectionCost->Roaming || connectionCost->OverDataLimit || connectionCost->NetworkCostType == NetworkCostType::Variable || connectionCost->NetworkCostType == NetworkCostType::Fixed) { return NetworkAccessBehavior::OptIn; } return NetworkAccessBehavior::Normal; } ================================================ FILE: src/CalcViewModel/Common/NetworkManager.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel::Common { public enum class NetworkAccessBehavior { Normal = 0, OptIn = 1, Offline = 2 }; public delegate void NetworkBehaviorChangedHandler(NetworkAccessBehavior behavior); public ref class NetworkManager sealed { public: NetworkManager(); static NetworkAccessBehavior GetNetworkAccessBehavior(); event NetworkBehaviorChangedHandler ^ NetworkBehaviorChanged; private: ~NetworkManager(); void OnNetworkStatusChange(_In_ Platform::Object ^ sender); static NetworkAccessBehavior ConvertCostInfoToBehavior(_In_ Windows::Networking::Connectivity::ConnectionCost ^ connectionCost); private: Windows::Foundation::EventRegistrationToken m_NetworkStatusChangedToken; }; } ================================================ FILE: src/CalcViewModel/Common/NumberBase.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel::Common { public enum class NumberBase { Unknown = -1, HexBase = 5, DecBase = 6, OctBase = 7, BinBase = 8 }; }; ================================================ FILE: src/CalcViewModel/Common/RadixType.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "RadixType.h" // export enum RadixType ================================================ FILE: src/CalcViewModel/Common/RadixType.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace CalculatorApp::ViewModel { namespace Common { // This is expected to be in same order as IDM_HEX, IDM_DEC, IDM_OCT, IDM_BIN public enum class RadixType { Hex, Decimal, Octal, Binary }; } } ================================================ FILE: src/CalcViewModel/Common/TraceLogger.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "TraceLogger.h" #include "NetworkManager.h" #include "CalculatorButtonUser.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel; using namespace TraceLogging; using namespace Concurrency; using namespace std; using namespace Platform; using namespace Windows::Foundation; using namespace Windows::Foundation::Diagnostics; using namespace Windows::Globalization; using namespace Windows::Globalization::DateTimeFormatting; using namespace Windows::System::UserProfile; namespace CalculatorApp { static constexpr array s_programmerType{ L"N/A", L"QwordType", L"DwordType", L"WordType", L"ByteType", L"HexBase", L"DecBase", L"OctBase", L"BinBase" }; static reader_writer_lock s_traceLoggerLock; // Diagnostics events. Uploaded to asimov. constexpr auto EVENT_NAME_WINDOW_ON_CREATED = L"WindowCreated"; constexpr auto EVENT_NAME_BUTTON_USAGE = L"ButtonUsageInSession"; constexpr auto EVENT_NAME_NAV_BAR_OPENED = L"NavigationViewOpened"; constexpr auto EVENT_NAME_MODE_CHANGED = L"ModeChanged"; constexpr auto EVENT_NAME_DATE_CALCULATION_MODE_USED = L"DateCalculationModeUsed"; constexpr auto EVENT_NAME_HISTORY_ITEM_LOAD = L"HistoryItemLoad"; constexpr auto EVENT_NAME_MEMORY_ITEM_LOAD = L"MemoryItemLoad"; constexpr auto EVENT_NAME_VISUAL_STATE_CHANGED = L"VisualStateChanged"; constexpr auto EVENT_NAME_CONVERTER_INPUT_RECEIVED = L"ConverterInputReceived"; constexpr auto EVENT_NAME_INPUT_PASTED = L"InputPasted"; constexpr auto EVENT_NAME_SHOW_HIDE_BUTTON_CLICKED = L"ShowHideButtonClicked"; constexpr auto EVENT_NAME_GRAPH_BUTTON_CLICKED = L"GraphButtonClicked"; constexpr auto EVENT_NAME_GRAPH_LINE_STYLE_CHANGED = L"GraphLineStyleChanged"; constexpr auto EVENT_NAME_VARIABLE_CHANGED = L"VariableChanged"; constexpr auto EVENT_NAME_VARIABLE_SETTING_CHANGED = L"VariableSettingChanged"; constexpr auto EVENT_NAME_GRAPH_SETTINGS_CHANGED = L"GraphSettingsChanged"; constexpr auto EVENT_NAME_GRAPH_THEME = L"GraphTheme"; constexpr auto EVENT_NAME_RECALL_SNAPSHOT = L"RecallSnapshot"; constexpr auto EVENT_NAME_RECALL_RESTORE = L"RecallRestore"; constexpr auto EVENT_NAME_EXCEPTION = L"Exception"; constexpr auto CALC_MODE = L"CalcMode"; constexpr auto GRAPHING_MODE = L"Graphing"; #pragma region TraceLogger setup and cleanup TraceLogger::TraceLogger() { } TraceLogger ^ TraceLogger::GetInstance() { static TraceLogger ^ s_selfInstance = ref new TraceLogger(); return s_selfInstance; } // return true if windowId is logged once else return false bool TraceLogger::IsWindowIdInLog(int windowId) { // Writer lock for the windowIdLog resource reader_writer_lock::scoped_lock lock(s_traceLoggerLock); if (find(windowIdLog.begin(), windowIdLog.end(), windowId) == windowIdLog.end()) { return false; } return true; } void TraceLogger::LogVisualStateChanged(ViewMode mode, String ^ state, bool isAlwaysOnTop) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddString(StringReference(L"VisualState"), state); fields->AddBoolean(StringReference(L"IsAlwaysOnTop"), isAlwaysOnTop); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_VISUAL_STATE_CHANGED), fields); } void TraceLogger::LogWindowCreated(ViewMode mode, int windowId) { // store windowId in windowIdLog which says we have logged mode for the present windowId. if (!IsWindowIdInLog(windowId)) { windowIdLog.push_back(windowId); } auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddUInt64(StringReference(L"NumOfOpenWindows"), currentWindowCount); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_WINDOW_ON_CREATED), fields); } void TraceLogger::LogModeChange(ViewMode mode) { if (NavCategoryStates::IsValidViewMode(mode)) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_MODE_CHANGED), fields); } } void TraceLogger::LogHistoryItemLoad(ViewMode mode, int historyListSize, int loadedIndex) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddInt32(StringReference(L"HistoryListSize"), historyListSize); fields->AddInt32(StringReference(L"HistoryItemIndex"), loadedIndex); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_HISTORY_ITEM_LOAD), fields); } void TraceLogger::LogMemoryItemLoad(ViewMode mode, int memoryListSize, int loadedIndex) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddInt32(StringReference(L"MemoryListSize"), memoryListSize); fields->AddInt32(StringReference(L"MemoryItemIndex"), loadedIndex); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_MEMORY_ITEM_LOAD), fields); } void TraceLogger::LogError(ViewMode mode, Platform::String ^ functionName, Platform::String ^ errorString) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddString(StringReference(L"FunctionName"), functionName); fields->AddString(StringReference(L"Message"), errorString); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_EXCEPTION), fields); } void TraceLogger::LogStandardException(ViewMode mode, wstring_view functionName, const exception& e) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddString(StringReference(L"FunctionName"), StringReference(functionName.data())); wstringstream exceptionMessage; exceptionMessage << e.what(); fields->AddString(StringReference(L"Message"), StringReference(exceptionMessage.str().data())); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_EXCEPTION), fields); } void TraceLogger::LogPlatformExceptionInfo(CalculatorApp::ViewModel::Common::ViewMode mode, Platform::String ^ functionName, Platform::String^ message, int hresult) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); fields->AddString(StringReference(L"FunctionName"), functionName); fields->AddString(StringReference(L"Message"), message); fields->AddInt32(StringReference(L"HRESULT"), hresult); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_EXCEPTION), fields); } void TraceLogger::LogPlatformException(ViewMode mode, Platform::String ^ functionName, Platform::Exception ^ e) { LogPlatformExceptionInfo(mode, functionName, e->Message, e->HResult); } void TraceLogger::UpdateButtonUsage(NumbersAndOperatorsEnum button, ViewMode mode) { // IsProgrammerMode, IsScientificMode, IsStandardMode and None are not actual buttons, so ignore them if (button == NumbersAndOperatorsEnum::IsProgrammerMode || button == NumbersAndOperatorsEnum::IsScientificMode || button == NumbersAndOperatorsEnum::IsStandardMode || button == NumbersAndOperatorsEnum::None) { return; } { // Writer lock for the buttonLog resource reader_writer_lock::scoped_lock lock(s_traceLoggerLock); vector::iterator it = std::find_if( buttonLog.begin(), buttonLog.end(), [button, mode](const ButtonLog& bLog) -> bool { return bLog.button == button && bLog.mode == mode; }); if (it != buttonLog.end()) { it->count++; } else { buttonLog.push_back(ButtonLog(button, mode)); } } // Periodically log the button usage so that we do not lose all button data if the app is foricibly closed or crashes if (buttonLog.size() >= 10) { LogButtonUsage(); } } void TraceLogger::UpdateWindowCount(uint64 windowCount) { if (windowCount == 0) { currentWindowCount--; return; } currentWindowCount = windowCount; } void TraceLogger::DecreaseWindowCount() { currentWindowCount = 0; } void TraceLogger::LogButtonUsage() { // Writer lock for the buttonLog resource reader_writer_lock::scoped_lock lock(s_traceLoggerLock); if (buttonLog.size() == 0) { return; } Platform::String ^ buttonUsageString; for (size_t i = 0; i < buttonLog.size(); i++) { buttonUsageString += NavCategoryStates::GetFriendlyName(buttonLog[i].mode); buttonUsageString += "|"; buttonUsageString += buttonLog[i].button.ToString(); buttonUsageString += "|"; buttonUsageString += buttonLog[i].count; if (i != buttonLog.size() - 1) { buttonUsageString += ","; } } auto fields = ref new LoggingFields(); fields->AddString(StringReference(L"ButtonUsage"), buttonUsageString); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_BUTTON_USAGE), fields); buttonLog.clear(); } void TraceLogger::LogDateCalculationModeUsed(bool AddSubtractMode) { const wchar_t* calculationType = AddSubtractMode ? L"AddSubtractMode" : L"DateDifferenceMode"; auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(ViewMode::Date)); fields->AddString(StringReference(L"CalculationType"), StringReference(calculationType)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_DATE_CALCULATION_MODE_USED), fields); } void TraceLogger::LogConverterInputReceived(ViewMode mode) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_CONVERTER_INPUT_RECEIVED), fields); } void TraceLogger::LogNavBarOpened() { auto fields = ref new LoggingFields(); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_NAV_BAR_OPENED), fields); } void TraceLogger::LogInputPasted(ViewMode mode) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_INPUT_PASTED), fields); } void TraceLogger::LogShowHideButtonClicked(bool isHideButton) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddBoolean(StringReference(L"IsHideButton"), isHideButton); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_SHOW_HIDE_BUTTON_CLICKED), fields); } void TraceLogger::LogGraphButtonClicked(GraphButton buttonName, GraphButtonValue buttonValue) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddInt16(StringReference(L"ButtonName"), static_cast(buttonName)); fields->AddInt16(StringReference(L"ButtonValue"), static_cast(buttonValue)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_GRAPH_BUTTON_CLICKED), fields); } void TraceLogger::LogGraphLineStyleChanged(LineStyleType style) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddInt16(StringReference(L"StyleType"), static_cast(style)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_GRAPH_LINE_STYLE_CHANGED), fields); } void TraceLogger::LogVariableChanged(String ^ inputChangedType, String ^ variableName) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddString(StringReference(L"InputChangedType"), inputChangedType); fields->AddString(StringReference(L"VariableName"), variableName); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_VARIABLE_CHANGED), fields); } void TraceLogger::LogVariableSettingsChanged(String ^ setting) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddString(StringReference(L"SettingChanged"), setting); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_VARIABLE_SETTING_CHANGED), fields); } void TraceLogger::LogGraphSettingsChanged(GraphSettingsType settingType, String ^ settingValue) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddInt16(L"SettingType", static_cast(settingType)); fields->AddString(L"SettingValue", settingValue); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_GRAPH_SETTINGS_CHANGED), fields); } void TraceLogger::LogGraphTheme(String ^ graphTheme) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), StringReference(GRAPHING_MODE)); fields->AddString(L"GraphTheme", graphTheme); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_GRAPH_THEME), fields); } void TraceLogger::LogRecallSnapshot(ViewMode mode) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_RECALL_SNAPSHOT), fields); } void TraceLogger::LogRecallRestore(ViewMode mode) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(CALC_MODE), NavCategoryStates::GetFriendlyName(mode)); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_RECALL_RESTORE), fields); } void TraceLogger::LogRecallError(Platform::String^ message) { auto fields = ref new LoggingFields(); fields->AddString(StringReference(L"FunctionName"), L"Recall"); fields->AddString(StringReference(L"Message"), message); TraceLoggingCommon::GetInstance()->LogLevel2Event(StringReference(EVENT_NAME_EXCEPTION), fields); } } ================================================ FILE: src/CalcViewModel/Common/TraceLogger.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "NavCategory.h" #include "CalculatorButtonUser.h" // A trace logging provider can only be instantiated and registered once per module. // This class implements a singleton model ensure that only one instance is created. namespace CalculatorApp::ViewModel::Common { struct ButtonLog { public: int count; CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum button; CalculatorApp::ViewModel::Common::ViewMode mode; ButtonLog(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum btn, CalculatorApp::ViewModel::Common::ViewMode vMode) { button = btn; mode = vMode; count = 1; } }; public enum class GraphSettingsType { Grid, TrigUnits, Theme }; public enum class GraphButton { StylePicker, RemoveFunction, ActiveTracingChecked, ActiveTracingUnchecked, GraphSettings, Share, ZoomIn, ZoomOut, GraphView }; public enum class GraphButtonValue { None, AutomaticBestFit, ManualAdjustment }; public enum class LineStyleType { Color, Pattern }; public ref class TraceLogger sealed { public: static TraceLogger ^ GetInstance(); void LogModeChange(CalculatorApp::ViewModel::Common::ViewMode mode); void LogHistoryItemLoad(CalculatorApp::ViewModel::Common::ViewMode mode, int historyListSize, int loadedIndex); void LogMemoryItemLoad(CalculatorApp::ViewModel::Common::ViewMode mode, int memoryListSize, int loadedIndex); void UpdateButtonUsage(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum button, CalculatorApp::ViewModel::Common::ViewMode mode); void LogButtonUsage(); void LogDateCalculationModeUsed(bool AddSubtractMode); void UpdateWindowCount(uint64 windowCount); void DecreaseWindowCount(); bool IsWindowIdInLog(int windowId); void LogVisualStateChanged(CalculatorApp::ViewModel::Common::ViewMode mode, Platform::String ^ state, bool isAlwaysOnTop); void LogWindowCreated(CalculatorApp::ViewModel::Common::ViewMode mode, int windowId); void LogConverterInputReceived(CalculatorApp::ViewModel::Common::ViewMode mode); void LogNavBarOpened(); void LogError(CalculatorApp::ViewModel::Common::ViewMode mode, Platform::String ^ functionName, Platform::String ^ errorString); void LogShowHideButtonClicked(bool isHideButton); void LogGraphButtonClicked(GraphButton buttonName, GraphButtonValue buttonValue); void LogGraphLineStyleChanged(LineStyleType style); void LogVariableChanged(Platform::String ^ inputChangedType, Platform::String ^ variableName); void LogVariableSettingsChanged(Platform::String ^ setting); void LogGraphSettingsChanged(GraphSettingsType settingsType, Platform::String ^ settingValue); void LogGraphTheme(Platform::String ^ graphTheme); void LogInputPasted(CalculatorApp::ViewModel::Common::ViewMode mode); void LogPlatformExceptionInfo(CalculatorApp::ViewModel::Common::ViewMode mode, Platform::String ^ functionName, Platform::String ^ message, int hresult); void LogRecallSnapshot(CalculatorApp::ViewModel::Common::ViewMode mode); void LogRecallRestore(CalculatorApp::ViewModel::Common::ViewMode mode); void LogRecallError(Platform::String ^ message); internal: void LogPlatformException(CalculatorApp::ViewModel::Common::ViewMode mode, Platform::String ^ functionName, Platform::Exception ^ e); void LogStandardException(CalculatorApp::ViewModel::Common::ViewMode mode, std::wstring_view functionName, _In_ const std::exception& e); private: // Create an instance of TraceLogger TraceLogger(); std::vector buttonLog; std::vector windowIdLog; uint64 currentWindowCount = 0; }; } ================================================ FILE: src/CalcViewModel/Common/Utils.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // // Utils.cpp // #include "pch.h" #include #include "Utils.h" #include "Common/AppResourceProvider.h" #include "Common/ExpressionCommandSerializer.h" #include "Common/ExpressionCommandDeserializer.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace concurrency; using namespace Graphing::Renderer; using namespace Platform; using namespace std; using namespace Utils; using namespace Windows::ApplicationModel::Resources; using namespace Windows::Storage::Streams; using namespace Windows::UI; using namespace Windows::UI::Core; using namespace Windows::UI::ViewManagement; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Media; using namespace Windows::Foundation; using namespace Windows::Storage; void Utils::IFTPlatformException(HRESULT hr) { if (FAILED(hr)) { Platform::Exception ^ exception = ref new Platform::Exception(hr); throw(exception); } } double Utils::GetDoubleFromWstring(wstring input) { constexpr wchar_t unWantedChars[] = { L' ', L',', 8234, 8235, 8236, 8237 }; wstring ws = RemoveUnwantedCharsFromString(input, unWantedChars); return stod(ws); } // Returns windowId for the current view int Utils::GetWindowId() { int windowId = -1; auto window = CoreWindow::GetForCurrentThread(); if (window != nullptr) { windowId = ApplicationView::GetApplicationViewIdForWindow(window); } return windowId; } void Utils::RunOnUIThreadNonblocking(std::function&& function, _In_ CoreDispatcher ^ currentDispatcher) { if (currentDispatcher != nullptr) { auto task = create_task(currentDispatcher->RunAsync(CoreDispatcherPriority::Normal, ref new DispatchedHandler([function]() { function(); }))); } } // Returns if the last character of a wstring is the target wchar_t bool Utils::IsLastCharacterTarget(_In_ wstring const& input, _In_ wchar_t target) { return !input.empty() && input.back() == target; } DateTime Utils::GetUniversalSystemTime() { SYSTEMTIME sysTime = {}; GetSystemTime(&sysTime); FILETIME sysTimeAsFileTime = {}; SystemTimeToFileTime(&sysTime, &sysTimeAsFileTime); ULARGE_INTEGER ularge; ularge.HighPart = sysTimeAsFileTime.dwHighDateTime; ularge.LowPart = sysTimeAsFileTime.dwLowDateTime; DateTime result; result.UniversalTime = ularge.QuadPart; return result; } bool Utils::IsDateTimeOlderThan(DateTime dateTime, const long long duration) { DateTime now = Utils::GetUniversalSystemTime(); return dateTime.UniversalTime + duration < now.UniversalTime; } task Utils::WriteFileToFolder(IStorageFolder ^ folder, String ^ fileName, String ^ contents, CreationCollisionOption collisionOption) { if (folder == nullptr) { co_return; } StorageFile ^ file = co_await folder->CreateFileAsync(fileName, collisionOption); if (file == nullptr) { co_return; } co_await FileIO::WriteTextAsync(file, contents); } task Utils::ReadFileFromFolder(IStorageFolder ^ folder, String ^ fileName) { if (folder == nullptr) { co_return nullptr; } StorageFile ^ file = co_await folder->GetFileAsync(fileName); if (file == nullptr) { co_return nullptr; } String ^ contents = co_await FileIO::ReadTextAsync(file); co_return contents; } bool Utils::AreColorsEqual(const Color& color1, const Color& color2) { return ((color1.A == color2.A) && (color1.R == color2.R) && (color1.G == color2.G) && (color1.B == color2.B)); } String^ Utils::Trim(String^ value) { if (!value) { return nullptr; } wstring trimmed = value->Data(); Trim(trimmed); return ref new String(trimmed.c_str()); } void Utils::Trim(wstring& value) { TrimFront(value); TrimBack(value); } void Utils::TrimFront(wstring& value) { value.erase(value.begin(), find_if(value.cbegin(), value.cend(), [](int ch){ return !isspace(ch); })); } void Utils::TrimBack(wstring& value) { value.erase(find_if(value.crbegin(), value.crend(), [](int ch) { return !isspace(ch); }).base(), value.end()); } bool operator==(const Color& color1, const Color& color2) { return equal_to()(color1, color2); } bool operator!=(const Color& color1, const Color& color2) { return !(color1 == color2); } String^ CalculatorApp::ViewModel::Common::Utilities::EscapeHtmlSpecialCharacters(String^ originalString) { // Construct a default special characters if not provided. const std::vector specialCharacters {L'&', L'\"', L'\'', L'<', L'>'}; bool replaceCharacters = false; const wchar_t* pCh; String^ replacementString = nullptr; // First step is scanning the string for special characters. // If there isn't any special character, we simply return the original string for (pCh = originalString->Data(); *pCh; pCh++) { if (std::find(specialCharacters.begin(), specialCharacters.end(), *pCh) != specialCharacters.end()) { replaceCharacters = true; break; } } if (replaceCharacters) { // If we indeed find a special character, we step back one character (the special // character), and we create a new string where we replace those characters one by one pCh--; wstringstream buffer; buffer << wstring(originalString->Data(), pCh); for (; *pCh; pCh++) { switch (*pCh) { case L'&': buffer << L"&"; break; case L'\"': buffer << L"""; break; case L'\'': buffer << L"'"; break; case L'<': buffer << L"<"; break; case L'>': buffer << L">"; break; default: buffer << *pCh; } } replacementString = ref new String(buffer.str().c_str()); } return replaceCharacters ? replacementString : originalString; } bool CalculatorApp::ViewModel::Common::Utilities::AreColorsEqual(Windows::UI::Color color1, Windows::UI::Color color2) { return Utils::AreColorsEqual(color1, color2); } // This method calculates the luminance ratio between White and the given background color. // The luminance is calculate using the RGB values and does not use the A value. // White or Black is returned SolidColorBrush ^ CalculatorApp::ViewModel::Common::Utilities::GetContrastColor(Color backgroundColor) { auto luminance = 0.2126 * backgroundColor.R + 0.7152 * backgroundColor.G + 0.0722 * backgroundColor.B; if ((255 + 0.05) / (luminance + 0.05) >= 2.5) { return static_cast(Application::Current->Resources->Lookup(L"WhiteBrush")); } return static_cast(Application::Current->Resources->Lookup(L"BlackBrush")); } int CalculatorApp::ViewModel::Common::Utilities::GetWindowId() { return Utils::GetWindowId(); } long long CalculatorApp::ViewModel::Common::Utilities::GetConst_WINEVENT_KEYWORD_RESPONSE_TIME() { return WINEVENT_KEYWORD_RESPONSE_TIME; } bool CalculatorApp::ViewModel::Common::Utilities::GetIntegratedDisplaySize(double* size) { if (SUCCEEDED(::GetIntegratedDisplaySize(size))) return true; return false; } ================================================ FILE: src/CalcViewModel/Common/Utils.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/ExpressionCommandInterface.h" #include "DelegateCommand.h" #include "GraphingInterfaces/GraphingEnums.h" // Utility macros to make Models easier to write // generates a member variable called m_ #define SINGLE_ARG(...) __VA_ARGS__ #define PROPERTY_R(t, n) \ property t n \ { \ t get() \ { \ return m_##n; \ } \ \ private: \ void set(t value) \ { \ m_##n = value; \ } \ } \ \ private: \ t m_##n; \ \ public: #define PROPERTY_RW(t, n) \ property t n \ { \ t get() \ { \ return m_##n; \ } \ void set(t value) \ { \ m_##n = value; \ } \ } \ \ private: \ t m_##n; \ \ public: #define OBSERVABLE_PROPERTY_R(t, n) \ property t n \ { \ t get() \ { \ return m_##n; \ } \ \ private: \ void set(t value) \ { \ if (m_##n != value) \ { \ m_##n = value; \ RaisePropertyChanged(L#n); \ } \ } \ } \ \ private: \ t m_##n; \ \ public: #define OBSERVABLE_PROPERTY_RW(t, n) \ property t n \ { \ t get() \ { \ return m_##n; \ } \ void set(t value) \ { \ if (m_##n != value) \ { \ m_##n = value; \ RaisePropertyChanged(L#n); \ } \ } \ } \ \ private: \ t m_##n; \ \ public: #define OBSERVABLE_NAMED_PROPERTY_R(t, n) \ OBSERVABLE_PROPERTY_R(t, n) \ public: \ static property Platform::String ^ n##PropertyName \ { \ Platform::String ^ get() { return Platform::StringReference(L#n); } \ } \ \ public: #define OBSERVABLE_NAMED_PROPERTY_RW(t, n) \ OBSERVABLE_PROPERTY_RW(t, n) \ public: \ static property Platform::String ^ n##PropertyName \ { \ Platform::String ^ get() { return Platform::StringReference(L#n); } \ } \ \ public: #define OBSERVABLE_PROPERTY_FIELD(n) m_##n // This variant of the observable object is for objects that don't want to react to property changes #ifndef UNIT_TESTS #define OBSERVABLE_OBJECT() \ virtual event Windows::UI::Xaml::Data::PropertyChangedEventHandler ^ PropertyChanged; \ internal: \ void RaisePropertyChanged(Platform::String ^ p) \ { \ PropertyChanged(this, ref new Windows::UI::Xaml::Data::PropertyChangedEventArgs(p)); \ } \ \ public: #else #define OBSERVABLE_OBJECT() \ virtual event Windows::UI::Xaml::Data::PropertyChangedEventHandler ^ PropertyChanged; \ internal: \ void RaisePropertyChanged(Platform::String ^ p) \ { \ } \ \ public: #endif // The callback specified in the macro is a method in the class that will be called every time the object changes // the callback is supposed to be have a single parameter of type Platform::String^ #ifndef UNIT_TESTS #define OBSERVABLE_OBJECT_CALLBACK(c) \ virtual event Windows::UI::Xaml::Data::PropertyChangedEventHandler ^ PropertyChanged; \ internal: \ void RaisePropertyChanged(Platform::String ^ p) \ { \ PropertyChanged(this, ref new Windows::UI::Xaml::Data::PropertyChangedEventArgs(p)); \ c(p); \ } \ \ public: #else #define OBSERVABLE_OBJECT_CALLBACK(c) \ virtual event Windows::UI::Xaml::Data::PropertyChangedEventHandler ^ PropertyChanged; \ internal: \ void RaisePropertyChanged(Platform::String ^ p) \ { \ c(p); \ } \ \ public: #endif // The variable member generated by this macro should not be used in the class code, use the // property getter instead. #define COMMAND_FOR_METHOD(p, m) \ property Windows::UI::Xaml::Input::ICommand ^ p \ { \ Windows::UI::Xaml::Input::ICommand ^ get() \ { \ if (!donotuse_##p) \ { \ donotuse_##p = ref new CalculatorApp::ViewModel::Common::DelegateCommand( \ CalculatorApp::ViewModel::Common::MakeDelegateCommandHandler(this, &m) \ ); \ } \ return donotuse_##p; \ } \ } \ \ private: \ Windows::UI::Xaml::Input::ICommand ^ donotuse_##p; \ \ public: #define DEPENDENCY_PROPERTY_DECLARATION(t, n) \ property t n \ { \ t get() \ { \ return safe_cast(GetValue(s_##n##Property)); \ } \ void set(t value) \ { \ SetValue(s_##n##Property, value); \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##n##Property; \ \ private: // Utilities for DependencyProperties namespace Utils { namespace Details { template struct IsRefClass { static const bool value = __is_ref_class(T); }; template struct RemoveHat { typedef T type; }; template struct RemoveHat { typedef T type; }; template typename std::enable_if::value, T ^>::type MakeDefault() { return nullptr; } template typename std::enable_if::value, T>::type MakeDefault() { return T(); } // There's a bug in Xaml in which custom enums are not recognized by the property system/binding // therefore this template will determine that for enums the type to use to register the // DependencyProperty is to be Object, for everything else it will use the type // NOTE: If we are to find more types in which this is broken this template // will be specialized for those types to return Object template struct TypeToUseForDependencyProperty { typedef typename std::conditional::value, Platform::Object, T>::type type; }; } // Regular DependencyProperty template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyProperty( _In_ const wchar_t* const name, _In_ Windows::UI::Xaml::PropertyMetadata^ metadata) { typedef typename Details::RemoveHat::type OwnerType; typedef typename Details::RemoveHat::type ThisPropertyType; typedef typename Details::TypeToUseForDependencyProperty::type ThisDependencyPropertyType; static_assert(Details::IsRefClass::value, "The owner of a DependencyProperty must be a ref class"); return Windows::UI::Xaml::DependencyProperty::Register( Platform::StringReference(name), ThisDependencyPropertyType::typeid, // Work around bugs in Xaml by using the filtered type OwnerType::typeid, metadata); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyProperty(_In_ const wchar_t* const name) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyProperty( name, ref new Windows::UI::Xaml::PropertyMetadata(Details::MakeDefault())); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyProperty(_In_ const wchar_t* const name, TType defaultValue) { return RegisterDependencyProperty( name, ref new Windows::UI::Xaml::PropertyMetadata(defaultValue)); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyWithCallback( _In_ wchar_t const * const name, TCallback callback) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyProperty( name, ref new Windows::UI::Xaml::PropertyMetadata( Details::MakeDefault(), ref new Windows::UI::Xaml::PropertyChangedCallback(callback))); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyWithCallback( _In_ wchar_t const * const name, TType defaultValue, TCallback callback) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyProperty( name, ref new Windows::UI::Xaml::PropertyMetadata( defaultValue, ref new Windows::UI::Xaml::PropertyChangedCallback(callback))); } // Attached DependencyProperty template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyAttached( _In_ const wchar_t* const name, _In_ Windows::UI::Xaml::PropertyMetadata^ metadata) { typedef typename Details::RemoveHat::type OwnerType; typedef typename Details::RemoveHat::type ThisPropertyType; typedef typename Details::TypeToUseForDependencyProperty::type ThisDependencyPropertyType; static_assert(Details::IsRefClass::value, "The owner of a DependencyProperty must be a ref class"); return Windows::UI::Xaml::DependencyProperty::RegisterAttached( Platform::StringReference(name), ThisDependencyPropertyType::typeid, // Work around bugs in Xaml by using the filtered type OwnerType::typeid, metadata); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyAttached(_In_ const wchar_t* const name) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyPropertyAttached( name, ref new Windows::UI::Xaml::PropertyMetadata(Details::MakeDefault())); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyAttached(_In_ const wchar_t* const name, TType defaultValue) { return RegisterDependencyPropertyAttached( name, ref new Windows::UI::Xaml::PropertyMetadata(defaultValue)); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyAttachedWithCallback( _In_ wchar_t const * const name, TCallback callback) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyPropertyAttached( name, ref new Windows::UI::Xaml::PropertyMetadata( Details::MakeDefault(), ref new Windows::UI::Xaml::PropertyChangedCallback(callback))); } template Windows::UI::Xaml::DependencyProperty^ RegisterDependencyPropertyAttachedWithCallback( _In_ wchar_t const * const name, TType defaultValue, TCallback callback) { typedef typename Details::RemoveHat::type ThisPropertyType; return RegisterDependencyPropertyAttached( name, ref new Windows::UI::Xaml::PropertyMetadata( defaultValue, ref new Windows::UI::Xaml::PropertyChangedCallback(callback))); } void IFTPlatformException(HRESULT hr); bool IsLastCharacterTarget(std::wstring const& input, wchar_t target); // Return wstring after removing characters specified by unwantedChars array template std::wstring RemoveUnwantedCharsFromString(std::wstring inputString, const wchar_t (&unwantedChars)[N]) { for (const wchar_t unwantedChar : unwantedChars) { inputString.erase(std::remove(inputString.begin(), inputString.end(), unwantedChar), inputString.end()); } return inputString; } double GetDoubleFromWstring(std::wstring input); int GetWindowId(); void RunOnUIThreadNonblocking(std::function&& function, _In_ Windows::UI::Core::CoreDispatcher ^ currentDispatcher); Windows::Foundation::DateTime GetUniversalSystemTime(); bool IsDateTimeOlderThan(Windows::Foundation::DateTime dateTime, const long long duration); concurrency::task WriteFileToFolder(Windows::Storage::IStorageFolder^ folder, Platform::String^ fileName, Platform::String^ contents, Windows::Storage::CreationCollisionOption collisionOption); concurrency::task ReadFileFromFolder(Windows::Storage::IStorageFolder^ folder, Platform::String^ fileName); bool AreColorsEqual(const Windows::UI::Color& color1, const Windows::UI::Color& color2); Platform::String^ Trim(Platform::String^ value); void Trim(std::wstring& value); void TrimFront(std::wstring& value); void TrimBack(std::wstring& value); } // This goes into the header to define the property, in the public: section of the class #define DEPENDENCY_PROPERTY_OWNER(owner) \ private: \ typedef owner DependencyPropertiesOwner; \ \ public: // Normal DependencyProperty #define DEPENDENCY_PROPERTY(type, name) \ property type name \ { \ type get() \ { \ return safe_cast(GetValue(s_##name##Property)); \ } \ void set(type value) \ { \ SetValue(s_##name##Property, value); \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyProperty(L#name); \ } \ \ public: #define DEPENDENCY_PROPERTY_WITH_DEFAULT(type, name, defaultValue) \ property type name \ { \ type get() \ { \ return safe_cast(GetValue(s_##name##Property)); \ } \ void set(type value) \ { \ SetValue(s_##name##Property, value); \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyProperty(L#name, defaultValue); \ } \ \ public: #define DEPENDENCY_PROPERTY_WITH_CALLBACK(type, name) \ property type name \ { \ type get() \ { \ return safe_cast(GetValue(s_##name##Property)); \ } \ void set(type value) \ { \ SetValue(s_##name##Property, value); \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyWithCallback(L#name, &On##name##PropertyChangedImpl); \ } \ static void On##name##PropertyChangedImpl(Windows::UI::Xaml::DependencyObject ^ sender, Windows::UI::Xaml::DependencyPropertyChangedEventArgs ^ args) \ { \ auto self = safe_cast(sender); \ self->On##name##PropertyChanged(safe_cast(args->OldValue), safe_cast(args->NewValue)); \ } \ \ public: #define DEPENDENCY_PROPERTY_WITH_DEFAULT_AND_CALLBACK(type, name, defaultValue) \ property type name \ { \ type get() \ { \ return safe_cast(GetValue(s_##name##Property)); \ } \ void set(type value) \ { \ SetValue(s_##name##Property, value); \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyWithCallback(L#name, defaultValue, &On##name##PropertyChangedImpl); \ } \ static void On##name##PropertyChangedImpl(Windows::UI::Xaml::DependencyObject ^ sender, Windows::UI::Xaml::DependencyPropertyChangedEventArgs ^ args) \ { \ auto self = safe_cast(sender); \ self->On##name##PropertyChanged(safe_cast(args->OldValue), safe_cast(args->NewValue)); \ } \ \ public: // Attached DependencyProperty #define DEPENDENCY_PROPERTY_ATTACHED(type, name) \ static type Get##name(Windows::UI::Xaml::DependencyObject ^ target) \ { \ return safe_cast(target->GetValue(s_##name##Property)); \ } \ static void Set##name(Windows::UI::Xaml::DependencyObject ^ target, type value) \ { \ target->SetValue(s_##name##Property, value); \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyAttached(L#name); \ } \ \ public: #define DEPENDENCY_PROPERTY_ATTACHED_WITH_DEFAULT(type, name, defaultValue) \ static type Get##name(Windows::UI::Xaml::DependencyObject ^ target) \ { \ return safe_cast(target->GetValue(s_##name##Property)); \ } \ static void Set##name(Windows::UI::Xaml::DependencyObject ^ target, type value) \ { \ target->SetValue(s_##name##Property, value); \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyAttached(L#name, defaultValue); \ } \ \ public: #define DEPENDENCY_PROPERTY_ATTACHED_WITH_CALLBACK(type, name) \ static type Get##name(Windows::UI::Xaml::DependencyObject ^ target) \ { \ return safe_cast(target->GetValue(s_##name##Property)); \ } \ static void Set##name(Windows::UI::Xaml::DependencyObject ^ target, type value) \ { \ target->SetValue(s_##name##Property, value); \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyAttachedWithCallback(L#name, &On##name##PropertyChangedImpl); \ } \ static void On##name##PropertyChangedImpl(Windows::UI::Xaml::DependencyObject ^ sender, Windows::UI::Xaml::DependencyPropertyChangedEventArgs ^ args) \ { \ On##name##PropertyChanged(sender, safe_cast(args->OldValue), safe_cast(args->NewValue)); \ } \ \ public: #define DEPENDENCY_PROPERTY_ATTACHED_WITH_DEFAULT_AND_CALLBACK(type, name, defaultValue) \ static type Get##name(Windows::UI::Xaml::DependencyObject ^ target) \ { \ return safe_cast(target->GetValue(s_##name##Property)); \ } \ static void Set##name(Windows::UI::Xaml::DependencyObject ^ target, type value) \ { \ target->SetValue(s_##name##Property, value); \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ s_##name##Property; \ \ public: \ static property Windows::UI::Xaml::DependencyProperty ^ name##Property \ { \ Windows::UI::Xaml::DependencyProperty ^ get() { \ assert(s_##name##Property); \ return s_##name##Property; \ } \ } \ \ private: \ static Windows::UI::Xaml::DependencyProperty ^ Initialize##name##Property() \ { \ return Utils::RegisterDependencyPropertyAttachedWithCallback(L#name, defaultValue, &On##name##PropertyChangedImpl); \ } \ static void On##name##PropertyChangedImpl(Windows::UI::Xaml::DependencyObject ^ sender, Windows::UI::Xaml::DependencyPropertyChangedEventArgs ^ args) \ { \ On##name##PropertyChanged(sender, safe_cast(args->OldValue), safe_cast(args->NewValue)); \ } \ \ public: // This goes into the cpp to initialize the static variable #define DEPENDENCY_PROPERTY_INITIALIZATION(owner, name) Windows::UI::Xaml::DependencyProperty ^ owner::s_##name##Property = owner::Initialize##name##Property(); namespace CalculatorApp { template T from_cx(Platform::Object ^ from) { T to{ nullptr }; winrt::check_hresult(reinterpret_cast<::IUnknown*>(from)->QueryInterface(winrt::guid_of(), reinterpret_cast(winrt::put_abi(to)))); return to; } namespace ViewModel::Common { // below utilities are intended to support interops between C# and C++/CX // they can be removed if the entire codebase has been migrated to C# public ref class Utilities sealed { public: static Platform::String ^ EscapeHtmlSpecialCharacters(Platform::String ^ originalString); static bool AreColorsEqual(Windows::UI::Color color1, Windows::UI::Color color2); static Windows::UI::Xaml::Media::SolidColorBrush ^ GetContrastColor(Windows::UI::Color backgroundColor); static int GetWindowId(); static long long GetConst_WINEVENT_KEYWORD_RESPONSE_TIME(); static bool GetIntegratedDisplaySize(double* size); }; } } // There's no standard definition of equality for Windows::UI::Color structs. // Define a template specialization for std::equal_to. template<> class std::equal_to { public: bool operator()(const Windows::UI::Color& color1, const Windows::UI::Color& color2) { return Utils::AreColorsEqual(color1, color2); } }; bool operator==(const Windows::UI::Color& color1, const Windows::UI::Color& color2); bool operator!=(const Windows::UI::Color& color1, const Windows::UI::Color& color2); ================================================ FILE: src/CalcViewModel/DataLoaders/CurrencyDataLoader.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include #include "CurrencyDataLoader.h" #include "Common/AppResourceProvider.h" #include "Common/LocalizationStringUtil.h" #include "Common/LocalizationService.h" #include "Common/LocalizationSettings.h" #include "Common/TraceLogger.h" #include "UnitConverterDataConstants.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::LocalizationServiceProperties; using namespace CalculatorApp::ViewModel::DataLoaders; using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::DataLoaders::CurrencyDataLoaderConstants; using namespace concurrency; using namespace Platform; using namespace std; using namespace UnitConversionManager; using namespace Windows::ApplicationModel::Resources::Core; using namespace Windows::Data::Json; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::Globalization::DateTimeFormatting; using namespace Windows::Globalization::NumberFormatting; using namespace Windows::Storage; using namespace Windows::System::UserProfile; using namespace Windows::UI::Core; using namespace Windows::Web::Http; namespace { constexpr auto CURRENCY_UNIT_FROM_KEY = L"CURRENCY_UNIT_FROM_KEY"; constexpr auto CURRENCY_UNIT_TO_KEY = L"CURRENCY_UNIT_TO_KEY"; // Calculate number of 100-nanosecond intervals-per-day // (1 interval/100 nanosecond)(100 nanosecond/1e-7 s)(60 s/1 min)(60 min/1 hr)(24 hr/1 day) = (interval/day) constexpr long long DAY_DURATION = 1LL * 60 * 60 * 24 * 10000000; constexpr long long WEEK_DURATION = DAY_DURATION * 7; constexpr int FORMATTER_RATE_FRACTION_PADDING = 2; constexpr int FORMATTER_RATE_MIN_DECIMALS = 4; constexpr int FORMATTER_RATE_MIN_SIGNIFICANT_DECIMALS = 4; constexpr auto CACHE_TIMESTAMP_KEY = L"CURRENCY_CONVERTER_TIMESTAMP"; constexpr auto CACHE_LANGCODE_KEY = L"CURRENCY_CONVERTER_LANGCODE"; constexpr auto CACHE_DELIMITER = L"%"; constexpr auto STATIC_DATA_FILENAME = L"CURRENCY_CONVERTER_STATIC_DATA.txt"; constexpr array STATIC_DATA_PROPERTIES = { wstring_view{ L"CountryCode", 11 }, wstring_view{ L"CountryName", 11 }, wstring_view{ L"CurrencyCode", 12 }, wstring_view{ L"CurrencyName", 12 }, wstring_view{ L"CurrencySymbol", 14 } }; constexpr auto ALL_RATIOS_DATA_FILENAME = L"CURRENCY_CONVERTER_ALL_RATIOS_DATA.txt"; constexpr auto RATIO_KEY = L"Rt"; constexpr auto CURRENCY_CODE_KEY = L"An"; constexpr array ALL_RATIOS_DATA_PROPERTIES = { wstring_view{ RATIO_KEY, 2 }, wstring_view{ CURRENCY_CODE_KEY, 2 } }; constexpr auto DEFAULT_FROM_TO_CURRENCY_FILE_URI = L"ms-appx:///DataLoaders/DefaultFromToCurrency.json"; constexpr auto FROM_KEY = L"from"; constexpr auto TO_KEY = L"to"; // Fallback default values. constexpr auto DEFAULT_FROM_CURRENCY = DefaultCurrencyCode.data(); constexpr auto DEFAULT_TO_CURRENCY = L"EUR"; // ParseLanguageCode returns language code in form of `lang-region` // TODO: unit testing. std::optional ParseLanguageCode(const wchar_t* bcp47) { // the IETF BCP 47 language tag syntax is: language[-script][-region]... std::vector segments; std::wstring cur; // TODO: use C++20 - ranges::views::split_view in the future. for (; *bcp47 != L'\0' && segments.size() < 3; ++bcp47) { auto ch = *bcp47; if (std::isalpha(static_cast(ch))) { cur += ch; } else if (ch == L'-') { segments.push_back(std::exchange(cur, {})); } else { return std::nullopt; } } if (!cur.empty()) { segments.push_back(std::move(cur)); } switch (segments.size()) { case 1: return segments[0]; case 2: if (segments[1].size() == 2) { // segments[1] is a region subtag. return segments[0] + L"-" + segments[1]; } else { return segments[0]; } case 3: if (segments[1].size() == 2) { // segments[1] is a region subtag. return segments[0] + L"-" + segments[1]; } else if (segments[1].size() != 2 && segments[2].size() == 2) { // segments[2] is a region subtag. return segments[0] + L"-" + segments[2]; } else { return segments[0]; } default: return std::nullopt; } } } // namespace namespace CalculatorApp { namespace ViewModel::DataLoaders { namespace UnitConverterResourceKeys { StringReference CurrencyUnitFromKey(CURRENCY_UNIT_FROM_KEY); StringReference CurrencyUnitToKey(CURRENCY_UNIT_TO_KEY); } namespace CurrencyDataLoaderConstants { StringReference CacheTimestampKey(CACHE_TIMESTAMP_KEY); StringReference CacheLangcodeKey(CACHE_LANGCODE_KEY); StringReference CacheDelimiter(CACHE_DELIMITER); StringReference StaticDataFilename(STATIC_DATA_FILENAME); StringReference AllRatiosDataFilename(ALL_RATIOS_DATA_FILENAME); long long DayDuration = DAY_DURATION; } } } CurrencyDataLoader::CurrencyDataLoader(const wchar_t* forcedResponseLanguage) : m_loadStatus(CurrencyLoadStatus::NotLoaded) , m_responseLanguage(L"en-US") , m_ratioFormat(L"") , m_timestampFormat(L"") , m_networkManager(ref new NetworkManager()) , m_meteredOverrideSet(false) { if (forcedResponseLanguage != nullptr) { assert(wcslen(forcedResponseLanguage) > 0 && "forcedResponseLanguage shall not be empty."); m_responseLanguage = ref new Platform::String(forcedResponseLanguage); } else if (GlobalizationPreferences::Languages->Size > 0) { if (auto lang = ParseLanguageCode(GlobalizationPreferences::Languages->GetAt(0)->Data()); lang.has_value()) { m_responseLanguage = ref new Platform::String{ lang->c_str() }; } } m_client.Initialize(StringReference{ DefaultCurrencyCode.data() }, m_responseLanguage); auto localizationService = LocalizationService::GetInstance(); if (CoreWindow::GetForCurrentThread() != nullptr) { // Must have a CoreWindow to access the resource context. m_isRtlLanguage = localizationService->IsRtlLayout(); } m_ratioFormatter = localizationService->GetRegionalSettingsAwareDecimalFormatter(); m_ratioFormatter->IsGrouped = true; m_ratioFormatter->IsDecimalPointAlwaysDisplayed = true; m_ratioFormatter->FractionDigits = FORMATTER_RATE_FRACTION_PADDING; m_ratioFormat = AppResourceProvider::GetInstance()->GetResourceString(L"CurrencyFromToRatioFormat"); m_timestampFormat = AppResourceProvider::GetInstance()->GetResourceString(L"CurrencyTimestampFormat"); } CurrencyDataLoader::~CurrencyDataLoader() { UnregisterForNetworkBehaviorChanges(); } void CurrencyDataLoader::UnregisterForNetworkBehaviorChanges() { m_networkManager->NetworkBehaviorChanged -= m_networkBehaviorToken; } void CurrencyDataLoader::RegisterForNetworkBehaviorChanges() { UnregisterForNetworkBehaviorChanges(); m_networkBehaviorToken = m_networkManager->NetworkBehaviorChanged += ref new NetworkBehaviorChangedHandler([this](NetworkAccessBehavior newBehavior) { this->OnNetworkBehaviorChanged(newBehavior); }); OnNetworkBehaviorChanged(NetworkManager::GetNetworkAccessBehavior()); } void CurrencyDataLoader::OnNetworkBehaviorChanged(NetworkAccessBehavior newBehavior) { m_networkAccessBehavior = newBehavior; if (m_vmCallback != nullptr) { m_vmCallback->NetworkBehaviorChanged(static_cast(m_networkAccessBehavior)); } } bool CurrencyDataLoader::LoadFinished() { return m_loadStatus != CurrencyLoadStatus::NotLoaded; } bool CurrencyDataLoader::LoadedFromCache() { return m_loadStatus == CurrencyLoadStatus::LoadedFromCache; } bool CurrencyDataLoader::LoadedFromWeb() { return m_loadStatus == CurrencyLoadStatus::LoadedFromWeb; } void CurrencyDataLoader::ResetLoadStatus() { m_loadStatus = CurrencyLoadStatus::NotLoaded; } #pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321 void CurrencyDataLoader::LoadData() { if (!LoadFinished()) { RegisterForNetworkBehaviorChanges(); create_task( [this]() -> task { vector()>> loadFunctions = { [this]() { return TryLoadDataFromCacheAsync(); }, [this]() { return TryLoadDataFromWebAsync(); }, }; bool didLoad = false; for (auto& f : loadFunctions) { didLoad = co_await f(); if (didLoad) { break; } } co_return didLoad; }) .then( [this](bool didLoad) { UpdateDisplayedTimestamp(); NotifyDataLoadFinished(didLoad); }, task_continuation_context::use_current()); } }; #pragma optimize("", on) vector CurrencyDataLoader::GetOrderedCategories() { // This function should not be called // The model will use the categories from UnitConverterDataLoader return vector(); } vector CurrencyDataLoader::GetOrderedUnits(const UCM::Category& /*category*/) { lock_guard lock(m_currencyUnitsMutex); return m_currencyUnits; } unordered_map CurrencyDataLoader::LoadOrderedRatios(const UCM::Unit& unit) { lock_guard lock(m_currencyUnitsMutex); return m_currencyRatioMap.at(unit); } bool CurrencyDataLoader::SupportsCategory(const UCM::Category& target) { static int currencyId = NavCategoryStates::Serialize(ViewMode::Currency); return target.id == currencyId; } void CurrencyDataLoader::SetViewModelCallback(const shared_ptr& callback) { m_vmCallback = callback; OnNetworkBehaviorChanged(m_networkAccessBehavior); } pair CurrencyDataLoader::GetCurrencySymbols(const UCM::Unit& unit1, const UCM::Unit& unit2) { lock_guard lock(m_currencyUnitsMutex); wstring symbol1 = L""; wstring symbol2 = L""; auto itr1 = m_currencyMetadata.find(unit1); auto itr2 = m_currencyMetadata.find(unit2); if (itr1 != m_currencyMetadata.end() && itr2 != m_currencyMetadata.end()) { symbol1 = (itr1->second).symbol; symbol2 = (itr2->second).symbol; } return make_pair(symbol1, symbol2); } double CurrencyDataLoader::RoundCurrencyRatio(double ratio) { // Compute how many decimals we need to display two meaningful digits at minimum // For example: 0.00000000342334 -> 0.000000003423, 0.000212 -> 0.000212 int numberDecimals = FORMATTER_RATE_MIN_DECIMALS; if (ratio < 1) { numberDecimals = max(FORMATTER_RATE_MIN_DECIMALS, (int)(-log10(ratio)) + FORMATTER_RATE_MIN_SIGNIFICANT_DECIMALS); } unsigned long long scale = (unsigned long long)powl(10l, numberDecimals); return (double)(round(ratio * scale) / scale); } pair CurrencyDataLoader::GetCurrencyRatioEquality(_In_ const UCM::Unit& unit1, _In_ const UCM::Unit& unit2) { try { auto iter = m_currencyRatioMap.find(unit1); if (iter != m_currencyRatioMap.end()) { unordered_map ratioMap = iter->second; auto iter2 = ratioMap.find(unit2); if (iter2 != ratioMap.end()) { double ratio = (iter2->second).ratio; double rounded = RoundCurrencyRatio(ratio); auto digit = LocalizationSettings::GetInstance()->GetDigitSymbolFromEnUsDigit(L'1'); auto digitSymbol = ref new String(&digit, 1); auto roundedFormat = m_ratioFormatter->Format(rounded); auto ratioString = LocalizationStringUtil::GetLocalizedString( m_ratioFormat, digitSymbol, StringReference(unit1.abbreviation.c_str()), roundedFormat, StringReference(unit2.abbreviation.c_str())); auto accessibleRatioString = LocalizationStringUtil::GetLocalizedString( m_ratioFormat, digitSymbol, StringReference(unit1.accessibleName.c_str()), roundedFormat, StringReference(unit2.accessibleName.c_str())); return make_pair(ratioString->Data(), accessibleRatioString->Data()); } } } catch (...) { } return make_pair(L"", L""); } #pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321 future CurrencyDataLoader::TryLoadDataFromCacheAsync() { try { ResetLoadStatus(); auto localSettings = ApplicationData::Current->LocalSettings; if (localSettings == nullptr || !localSettings->Values->HasKey(CacheTimestampKey)) { co_return false; } bool loadComplete = false; m_cacheTimestamp = static_cast(localSettings->Values->Lookup(CacheTimestampKey)); if (Utils::IsDateTimeOlderThan(m_cacheTimestamp, DAY_DURATION) && m_networkAccessBehavior == NetworkAccessBehavior::Normal) { loadComplete = co_await TryLoadDataFromWebAsync(); } if (!loadComplete) { loadComplete = co_await TryFinishLoadFromCacheAsync(); } co_return loadComplete; } catch (Exception ^ ex) { TraceLogger::GetInstance()->LogPlatformException(ViewMode::Currency, __FUNCTIONW__, ex); co_return false; } catch (const exception& e) { TraceLogger::GetInstance()->LogStandardException(ViewMode::Currency, __FUNCTIONW__, e); co_return false; } catch (...) { co_return false; } } future CurrencyDataLoader::TryFinishLoadFromCacheAsync() { auto localSettings = ApplicationData::Current->LocalSettings; if (localSettings == nullptr) { co_return false; } if (!localSettings->Values->HasKey(CacheLangcodeKey) || !static_cast(localSettings->Values->Lookup(CacheLangcodeKey))->Equals(m_responseLanguage)) { co_return false; } StorageFolder ^ localCacheFolder = ApplicationData::Current->LocalCacheFolder; if (localCacheFolder == nullptr) { co_return false; } String ^ staticDataResponse = co_await Utils::ReadFileFromFolder(localCacheFolder, StaticDataFilename); String ^ allRatiosResponse = co_await Utils::ReadFileFromFolder(localCacheFolder, AllRatiosDataFilename); vector staticData{}; CurrencyRatioMap ratioMap{}; bool didParse = TryParseWebResponses(staticDataResponse, allRatiosResponse, staticData, ratioMap); if (!didParse) { co_return false; } m_loadStatus = CurrencyLoadStatus::LoadedFromCache; co_await FinalizeUnits(staticData, ratioMap); co_return true; } future CurrencyDataLoader::TryLoadDataFromWebAsync() { try { ResetLoadStatus(); if (m_networkAccessBehavior == NetworkAccessBehavior::Offline || (m_networkAccessBehavior == NetworkAccessBehavior::OptIn && !m_meteredOverrideSet)) { co_return false; } String ^ staticDataResponse = co_await m_client.GetCurrencyMetadataAsync(); String ^ allRatiosResponse = co_await m_client.GetCurrencyRatiosAsync(); if (staticDataResponse == nullptr || allRatiosResponse == nullptr) { co_return false; } vector staticData{}; CurrencyRatioMap ratioMap{}; bool didParse = TryParseWebResponses(staticDataResponse, allRatiosResponse, staticData, ratioMap); if (!didParse) { co_return false; } // Set the timestamp before saving it below. m_cacheTimestamp = Utils::GetUniversalSystemTime(); try { const vector> cachedFiles = { { StaticDataFilename, staticDataResponse }, { AllRatiosDataFilename, allRatiosResponse } }; StorageFolder ^ localCacheFolder = ApplicationData::Current->LocalCacheFolder; for (const auto& fileInfo : cachedFiles) { co_await Utils::WriteFileToFolder(localCacheFolder, fileInfo.first, fileInfo.second, CreationCollisionOption::ReplaceExisting); } SaveLangCodeAndTimestamp(); } catch (...) { // If we fail to save to cache it's okay, we should still continue. } m_loadStatus = CurrencyLoadStatus::LoadedFromWeb; co_await FinalizeUnits(staticData, ratioMap); co_return true; } catch (Exception ^ ex) { TraceLogger::GetInstance()->LogPlatformException(ViewMode::Currency, __FUNCTIONW__, ex); co_return false; } catch (const exception& e) { TraceLogger::GetInstance()->LogStandardException(ViewMode::Currency, __FUNCTIONW__, e); co_return false; } catch (...) { co_return false; } } future CurrencyDataLoader::TryLoadDataFromWebOverrideAsync() { m_meteredOverrideSet = true; bool didLoad = co_await TryLoadDataFromWebAsync(); if (!didLoad) { m_loadStatus = CurrencyLoadStatus::FailedToLoad; TraceLogger::GetInstance()->LogError(ViewMode::Currency, L"CurrencyDataLoader::TryLoadDataFromWebOverrideAsync", L"UserRequestedRefreshFailed"); } co_return didLoad; }; #pragma optimize("", on) bool CurrencyDataLoader::TryParseWebResponses( _In_ String ^ staticDataJson, _In_ String ^ allRatiosJson, _Inout_ vector& staticData, _Inout_ CurrencyRatioMap& allRatiosData) { return TryParseStaticData(staticDataJson, staticData) && TryParseAllRatiosData(allRatiosJson, allRatiosData); } bool CurrencyDataLoader::TryParseStaticData(_In_ String ^ rawJson, _Inout_ vector& staticData) { JsonArray ^ data = nullptr; if (!JsonArray::TryParse(rawJson, &data)) { return false; } wstring countryCode{ L"" }; wstring countryName{ L"" }; wstring currencyCode{ L"" }; wstring currencyName{ L"" }; wstring currencySymbol{ L"" }; vector values = { &countryCode, &countryName, ¤cyCode, ¤cyName, ¤cySymbol }; assert(values.size() == STATIC_DATA_PROPERTIES.size()); staticData.resize(size_t{ data->Size }); for (unsigned int i = 0; i < data->Size; i++) { JsonObject ^ obj; try { obj = data->GetAt(i)->GetObject(); } catch (COMException ^ e) { if (e->HResult == E_ILLEGAL_METHOD_CALL) { continue; } else { throw; } } for (size_t j = 0; j < values.size(); j++) { (*values[j]) = obj->GetNamedString(StringReference(STATIC_DATA_PROPERTIES[j].data()))->Data(); } staticData[i] = CurrencyStaticData{ countryCode, countryName, currencyCode, currencyName, currencySymbol }; } auto sortCountryNames = [](const UCM::CurrencyStaticData& s) { return ref new String(s.countryName.c_str()); }; LocalizationService::GetInstance()->Sort(staticData, sortCountryNames); return true; } bool CurrencyDataLoader::TryParseAllRatiosData(_In_ String ^ rawJson, _Inout_ CurrencyRatioMap& allRatios) { JsonArray ^ data = nullptr; if (!JsonArray::TryParse(rawJson, &data)) { return false; } wstring sourceCurrencyCode{ DefaultCurrencyCode }; allRatios.clear(); for (unsigned int i = 0; i < data->Size; i++) { JsonObject ^ obj; try { obj = data->GetAt(i)->GetObject(); } catch (COMException ^ e) { if (e->HResult == E_ILLEGAL_METHOD_CALL) { continue; } else { throw; } } // Rt is ratio, An is target currency ISO code. double relativeRatio = obj->GetNamedNumber(StringReference(RATIO_KEY)); wstring targetCurrencyCode = obj->GetNamedString(StringReference(CURRENCY_CODE_KEY))->Data(); allRatios.emplace(targetCurrencyCode, CurrencyRatio{ relativeRatio, sourceCurrencyCode, targetCurrencyCode }); } return true; } // FinalizeUnits // // There are a few ways we can get the data needed for Currency Converter, including from cache or from web. // This function accepts the data from any source, and acts as a 'last-steps' for the converter to be ready. // This includes identifying which units will be selected and building the map of currency ratios. #pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321 task CurrencyDataLoader::FinalizeUnits(_In_ const vector& staticData, _In_ const CurrencyRatioMap& ratioMap) { unordered_map> idToUnit{}; SelectedUnits defaultCurrencies = co_await GetDefaultFromToCurrency(); wstring fromCurrency = defaultCurrencies.first; wstring toCurrency = defaultCurrencies.second; { lock_guard lock(m_currencyUnitsMutex); int i = 1; m_currencyUnits.clear(); m_currencyMetadata.clear(); bool isConversionSourceSet = false; bool isConversionTargetSet = false; for (const UCM::CurrencyStaticData& currencyUnit : staticData) { auto itr = ratioMap.find(currencyUnit.currencyCode); if (itr != ratioMap.end() && (itr->second).ratio > 0) { int id = static_cast(UnitConverterUnits::UnitEnd + i); bool isConversionSource = (fromCurrency == currencyUnit.currencyCode); isConversionSourceSet = isConversionSourceSet || isConversionSource; bool isConversionTarget = (toCurrency == currencyUnit.currencyCode); isConversionTargetSet = isConversionTargetSet || isConversionTarget; UCM::Unit unit = UCM::Unit{ id, // id currencyUnit.currencyName, // currencyName currencyUnit.countryName, // countryName currencyUnit.currencyCode, // abbreviation m_isRtlLanguage, // isRtlLanguage isConversionSource, // isConversionSource isConversionTarget // isConversionTarget }; m_currencyUnits.push_back(unit); m_currencyMetadata.emplace(unit, CurrencyUnitMetadata{ currencyUnit.currencySymbol }); idToUnit.insert(pair>(unit.id, pair(unit, (itr->second).ratio))); i++; } } if (!isConversionSourceSet || !isConversionTargetSet) { GuaranteeSelectedUnits(); defaultCurrencies = { DEFAULT_FROM_CURRENCY, DEFAULT_TO_CURRENCY }; } m_currencyRatioMap.clear(); for (const auto& unit : m_currencyUnits) { unordered_map conversions; double unitFactor = idToUnit[unit.id].second; for (auto itr = idToUnit.begin(); itr != idToUnit.end(); itr++) { UCM::Unit targetUnit = (itr->second).first; double conversionRatio = (itr->second).second; UCM::ConversionData parsedData = { 1.0, 0.0, false }; assert(unitFactor > 0); // divide by zero assert parsedData.ratio = conversionRatio / unitFactor; conversions.insert(make_pair(targetUnit, parsedData)); } m_currencyRatioMap.insert(make_pair(unit, conversions)); } } // unlocked m_currencyUnitsMutex SaveSelectedUnitsToLocalSettings(defaultCurrencies); }; #pragma optimize("", on) void CurrencyDataLoader::GuaranteeSelectedUnits() { bool isConversionSourceSet = false; bool isConversionTargetSet = false; for (UCM::Unit& unit : m_currencyUnits) { unit.isConversionSource = false; unit.isConversionTarget = false; if (!isConversionSourceSet && unit.abbreviation == DEFAULT_FROM_CURRENCY) { unit.isConversionSource = true; isConversionSourceSet = true; } if (!isConversionTargetSet && unit.abbreviation == DEFAULT_TO_CURRENCY) { unit.isConversionTarget = true; isConversionTargetSet = true; } } // If still not set for either source or target, just select the first currency in the list if (!m_currencyUnits.empty()) { if (!isConversionSourceSet) { m_currencyUnits[0].isConversionSource = true; isConversionSourceSet = true; } if (!isConversionTargetSet) { m_currencyUnits[0].isConversionTarget = true; isConversionTargetSet = true; } } } void CurrencyDataLoader::NotifyDataLoadFinished(bool didLoad) { if (!didLoad) { m_loadStatus = CurrencyLoadStatus::FailedToLoad; } if (m_vmCallback != nullptr) { m_vmCallback->CurrencyDataLoadFinished(didLoad); } } void CurrencyDataLoader::SaveLangCodeAndTimestamp() { ApplicationDataContainer ^ localSettings = ApplicationData::Current->LocalSettings; if (localSettings == nullptr) { return; } localSettings->Values->Insert(CacheTimestampKey, m_cacheTimestamp); localSettings->Values->Insert(CacheLangcodeKey, m_responseLanguage); } void CurrencyDataLoader::UpdateDisplayedTimestamp() { if (m_vmCallback != nullptr) { wstring timestamp = GetCurrencyTimestamp(); bool isWeekOld = Utils::IsDateTimeOlderThan(m_cacheTimestamp, WEEK_DURATION); m_vmCallback->CurrencyTimestampCallback(timestamp, isWeekOld); } } wstring CurrencyDataLoader::GetCurrencyTimestamp() { DateTime epoch{}; if (m_cacheTimestamp.UniversalTime != epoch.UniversalTime) { DateTimeFormatter ^ dateFormatter = ref new DateTimeFormatter(L"shortdate"); auto date = dateFormatter->Format(m_cacheTimestamp); DateTimeFormatter ^ timeFormatter = ref new DateTimeFormatter(L"shorttime"); auto time = timeFormatter->Format(m_cacheTimestamp); return LocalizationStringUtil::GetLocalizedString(m_timestampFormat, date, time)->Data(); } return L""; } #pragma optimize("", off) // Turn off optimizations to work around DevDiv 393321 task CurrencyDataLoader::GetDefaultFromToCurrency() { wstring fromCurrency{ DEFAULT_FROM_CURRENCY }; wstring toCurrency{ DEFAULT_TO_CURRENCY }; // First, check if we previously stored the last used currencies. bool foundInLocalSettings = TryGetLastUsedCurrenciesFromLocalSettings(&fromCurrency, &toCurrency); if (!foundInLocalSettings) { try { // Second, see if the current locale has preset defaults in DefaultFromToCurrency.json. Uri ^ fileUri = ref new Uri(StringReference(DEFAULT_FROM_TO_CURRENCY_FILE_URI)); StorageFile ^ defaultFromToCurrencyFile = co_await StorageFile::GetFileFromApplicationUriAsync(fileUri); if (defaultFromToCurrencyFile != nullptr) { String ^ fileContents = co_await FileIO::ReadTextAsync(defaultFromToCurrencyFile); JsonObject ^ fromToObject = JsonObject::Parse(fileContents); JsonObject ^ regionalDefaults = fromToObject->GetNamedObject(m_responseLanguage); // Get both values before assignment in-case either fails. String ^ selectedFrom = regionalDefaults->GetNamedString(StringReference(FROM_KEY)); String ^ selectedTo = regionalDefaults->GetNamedString(StringReference(TO_KEY)); fromCurrency = selectedFrom->Data(); toCurrency = selectedTo->Data(); } } catch (...) { } } co_return make_pair(fromCurrency, toCurrency); }; #pragma optimize("", on) bool CurrencyDataLoader::TryGetLastUsedCurrenciesFromLocalSettings(_Out_ wstring* const fromCurrency, _Out_ wstring* const toCurrency) { String ^ fromKey = UnitConverterResourceKeys::CurrencyUnitFromKey; String ^ toKey = UnitConverterResourceKeys::CurrencyUnitToKey; ApplicationDataContainer ^ localSettings = ApplicationData::Current->LocalSettings; if (localSettings != nullptr && localSettings->Values != nullptr) { IPropertySet ^ values = localSettings->Values; if (values->HasKey(fromKey) && values->HasKey(toKey)) { *fromCurrency = static_cast(values->Lookup(fromKey))->Data(); *toCurrency = static_cast(values->Lookup(toKey))->Data(); return true; } } return false; } void CurrencyDataLoader::SaveSelectedUnitsToLocalSettings(_In_ const SelectedUnits& selectedUnits) { String ^ fromKey = UnitConverterResourceKeys::CurrencyUnitFromKey; String ^ toKey = UnitConverterResourceKeys::CurrencyUnitToKey; ApplicationDataContainer ^ localSettings = ApplicationData::Current->LocalSettings; if (localSettings != nullptr && localSettings->Values != nullptr) { IPropertySet ^ values = localSettings->Values; values->Insert(fromKey, StringReference(selectedUnits.first.c_str())); values->Insert(toKey, StringReference(selectedUnits.second.c_str())); } } ================================================ FILE: src/CalcViewModel/DataLoaders/CurrencyDataLoader.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/UnitConverter.h" #include "Common/NetworkManager.h" #include "CurrencyHttpClient.h" namespace CalculatorApp { namespace ViewModel::DataLoaders { public enum class CurrencyLoadStatus { NotLoaded = 0, FailedToLoad = 1, LoadedFromCache = 2, LoadedFromWeb = 3 }; namespace UnitConverterResourceKeys { extern Platform::StringReference CurrencyUnitFromKey; extern Platform::StringReference CurrencyUnitToKey; } namespace CurrencyDataLoaderConstants { extern Platform::StringReference CacheTimestampKey; extern Platform::StringReference CacheLangcodeKey; extern Platform::StringReference CacheDelimiter; extern Platform::StringReference StaticDataFilename; extern Platform::StringReference AllRatiosDataFilename; extern long long DayDuration; } namespace UCM = UnitConversionManager; typedef std::unordered_map CurrencyRatioMap; typedef std::pair SelectedUnits; struct CurrencyUnitMetadata { CurrencyUnitMetadata(const std::wstring& s) : symbol(s) { } const std::wstring symbol; }; class CurrencyDataLoader : public UCM::IConverterDataLoader, public UCM::ICurrencyConverterDataLoader { public: CurrencyDataLoader(const wchar_t* overrideLanguage = nullptr); ~CurrencyDataLoader(); bool LoadFinished(); bool LoadedFromCache(); bool LoadedFromWeb(); // IConverterDataLoader void LoadData() override; std::vector GetOrderedCategories() override; std::vector GetOrderedUnits(const UCM::Category& category) override; std::unordered_map LoadOrderedRatios(const UCM::Unit& unit) override; bool SupportsCategory(const UnitConversionManager::Category& target) override; // IConverterDataLoader // ICurrencyConverterDataLoader void SetViewModelCallback(const std::shared_ptr& callback) override; std::pair GetCurrencySymbols(const UCM::Unit& unit1, const UCM::Unit& unit2) override; std::pair GetCurrencyRatioEquality(_In_ const UnitConversionManager::Unit& unit1, _In_ const UnitConversionManager::Unit& unit2) override; std::wstring GetCurrencyTimestamp() override; static double RoundCurrencyRatio(double ratio); std::future TryLoadDataFromCacheAsync() override; std::future TryLoadDataFromWebAsync() override; std::future TryLoadDataFromWebOverrideAsync() override; // ICurrencyConverterDataLoader void OnNetworkBehaviorChanged(CalculatorApp::ViewModel::Common::NetworkAccessBehavior newBehavior); private: void ResetLoadStatus(); void NotifyDataLoadFinished(bool didLoad); std::future TryFinishLoadFromCacheAsync(); bool TryParseWebResponses( _In_ Platform::String ^ staticDataJson, _In_ Platform::String ^ allRatiosJson, _Inout_ std::vector& staticData, _Inout_ CurrencyRatioMap& allRatiosData); bool TryParseStaticData(_In_ Platform::String ^ rawJson, _Inout_ std::vector& staticData); bool TryParseAllRatiosData(_In_ Platform::String ^ rawJson, _Inout_ CurrencyRatioMap& allRatiosData); concurrency::task FinalizeUnits(_In_ const std::vector& staticData, _In_ const CurrencyRatioMap& ratioMap); void GuaranteeSelectedUnits(); void SaveLangCodeAndTimestamp(); void UpdateDisplayedTimestamp(); void RegisterForNetworkBehaviorChanges(); void UnregisterForNetworkBehaviorChanges(); concurrency::task GetDefaultFromToCurrency(); bool TryGetLastUsedCurrenciesFromLocalSettings(_Out_ std::wstring* const fromCurrency, _Out_ std::wstring* const toCurrency); void SaveSelectedUnitsToLocalSettings(_In_ const SelectedUnits& selectedUnits); private: Platform::String ^ m_responseLanguage; CurrencyHttpClient m_client; bool m_isRtlLanguage; std::mutex m_currencyUnitsMutex; std::vector m_currencyUnits; UCM::UnitToUnitToConversionDataMap m_currencyRatioMap; std::unordered_map m_currencyMetadata; std::shared_ptr m_vmCallback; Windows::Globalization::NumberFormatting::DecimalFormatter ^ m_ratioFormatter; Platform::String ^ m_ratioFormat; Windows::Foundation::DateTime m_cacheTimestamp; Platform::String ^ m_timestampFormat; CurrencyLoadStatus m_loadStatus; CalculatorApp::ViewModel::Common::NetworkManager ^ m_networkManager; CalculatorApp::ViewModel::Common::NetworkAccessBehavior m_networkAccessBehavior; Windows::Foundation::EventRegistrationToken m_networkBehaviorToken; bool m_meteredOverrideSet; }; } } ================================================ FILE: src/CalcViewModel/DataLoaders/CurrencyHttpClient.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "CurrencyHttpClient.h" namespace { constexpr auto MockCurrencyConverterData = LR"( [ { "An": "MAR", "Rt": 1.00 }, { "An": "MON", "Rt": 0.50 }, { "An": "NEP", "Rt": 0.00125 }, { "An": "SAT", "Rt": 0.25 }, { "An": "URA", "Rt": 2.75 }, { "An": "VEN", "Rt": 900.00 }, { "An": "JUP", "Rt": 1.23456789123456789 }, { "An": "MER", "Rt": 2.00 }, { "An": "JPY", "Rt": 0.00125 }, { "An": "JOD", "Rt": 0.25 } ])"; constexpr auto MockCurrencyStaticData = LR"( [ { "CountryCode": "MAR", "CountryName": "Mars", "CurrencyCode": "MAR", "CurrencyName": "The Martian Dollar", "CurrencySymbol": "¤" }, { "CountryCode": "MON", "CountryName": "Moon", "CurrencyCode": "MON", "CurrencyName": "Moon Bucks", "CurrencySymbol": "¤" }, { "CountryCode": "NEP", "CountryName": "Neptune", "CurrencyCode": "NEP", "CurrencyName": "Space Coins", "CurrencySymbol": "¤" }, { "CountryCode": "SAT", "CountryName": "Saturn", "CurrencyCode": "SAT", "CurrencyName": "Rings", "CurrencySymbol": "¤" }, { "CountryCode": "URA", "CountryName": "Uranus", "CurrencyCode": "URA", "CurrencyName": "Galaxy Credits", "CurrencySymbol": "¤" }, { "CountryCode": "VEN", "CountryName": "Venus", "CurrencyCode": "VEN", "CurrencyName": "Venusian Seashells", "CurrencySymbol": "¤" }, { "CountryCode": "JUP", "CountryName": "Jupiter", "CurrencyCode": "JUP", "CurrencyName": "Gas Money", "CurrencySymbol": "¤" }, { "CountryCode": "MER", "CountryName": "Mercury", "CurrencyCode": "MER", "CurrencyName": "Sun Notes", "CurrencySymbol": "¤" }, { "CountryCode": "TEST1", "CountryName": "Test No Fractional Digits", "CurrencyCode": "JPY", "CurrencyName": "Test No Fractional Digits", "CurrencySymbol": "¤" }, { "CountryCode": "TEST2", "CountryName": "Test Fractional Digits", "CurrencyCode": "JOD", "CurrencyName": "Test Fractional Digits", "CurrencySymbol": "¤" } ])"; } // namespace namespace CalculatorApp::ViewModel::DataLoaders { void CurrencyHttpClient::Initialize(Platform::String ^ sourceCurrencyCode, Platform::String ^ responseLanguage) { m_sourceCurrencyCode = sourceCurrencyCode; m_responseLanguage = responseLanguage; } std::future CurrencyHttpClient::GetCurrencyMetadataAsync() const { (void)m_responseLanguage; // to be used in production. std::promise mockedTask; mockedTask.set_value(ref new Platform::String(MockCurrencyStaticData)); return mockedTask.get_future(); } std::future CurrencyHttpClient::GetCurrencyRatiosAsync() const { (void)m_sourceCurrencyCode; // to be used in production. std::promise mockedTask; mockedTask.set_value(ref new Platform::String(MockCurrencyConverterData)); return mockedTask.get_future(); } } // namespace CalculatorApp::ViewModel::DataLoaders ================================================ FILE: src/CalcViewModel/DataLoaders/CurrencyHttpClient.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include #include namespace CalculatorApp::ViewModel::DataLoaders { class CurrencyHttpClient { public: #ifdef VIEWMODEL_FOR_UT static bool ForceWebFailure; #endif void Initialize(Platform::String ^ sourceCurrencyCode, Platform::String ^ responseLanguage); std::future GetCurrencyMetadataAsync() const; std::future GetCurrencyRatiosAsync() const; private: Platform::String ^ m_sourceCurrencyCode; Platform::String ^ m_responseLanguage; }; } ================================================ FILE: src/CalcViewModel/DataLoaders/DefaultFromToCurrency.json ================================================ { "default": { "from": "USD", "to": "EUR" }, "ar-AE": { "from": "USD", "to": "AED" }, "ar-EG": { "from": "USD", "to": "EGP" }, "ar-SA": { "from": "USD", "to": "SAR" }, "da-DK": { "from": "DKK", "to": "USD" }, "de-CH": { "from": "EUR", "to": "CHF" }, "de-DE": { "from": "EUR", "to": "USD" }, "en-AU": { "from": "AUD", "to": "USD" }, "en-CA": { "from": "CAD", "to": "USD" }, "en-ES": { "from": "EUR", "to": "USD" }, "en-GB": { "from": "GBP", "to": "USD" }, "en-IN": { "from": "USD", "to": "INR" }, "en-US": { "from": "USD", "to": "EUR" }, "es-AR": { "from": "USD", "to": "ARS" }, "es-CL": { "from": "USD", "to": "CLP" }, "es-CO": { "from": "USD", "to": "COP" }, "es-ES": { "from": "EUR", "to": "USD" }, "es-MX": { "from": "USD", "to": "MXN" }, "es-PE": { "from": "USD", "to": "PEN" }, "es-VE": { "from": "USD", "to": "VEF" }, "es-XL": { "from": "USD", "to": "EUR" }, "es-US": { "from": "USD", "to": "EUR" }, "fr-CH": { "from": "EUR", "to": "CHF" }, "fr-FR": { "from": "EUR", "to": "USD" }, "it-IT": { "from": "EUR", "to": "USD" }, "it-SM": { "from": "EUR", "to": "USD" }, "ja-JP": { "from": "USD", "to": "JPY" }, "nb-NO": { "from": "NOK", "to": "USD" }, "pt-BR": { "from": "USD", "to": "BRL" }, "sv-SE": { "from": "SEK", "to": "USD" }, "th-TH": { "from": "USD", "to": "THB" }, "zh-CN": { "from": "USD", "to": "CNY" }, "zh-HK": { "from": "USD", "to": "HKD" } } ================================================ FILE: src/CalcViewModel/DataLoaders/UnitConverterDataConstants.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. namespace CalculatorApp { namespace ViewModel::Common { private enum UnitConverterUnits { UnitStart = 0, Area_Acre = UnitStart + 1, Area_Hectare = UnitStart + 2, Area_SquareCentimeter = UnitStart + 3, Area_SquareFoot = UnitStart + 4, Area_SquareInch = UnitStart + 5, Area_SquareKilometer = UnitStart + 6, Area_SquareMeter = UnitStart + 7, Area_SquareMile = UnitStart + 8, Area_SquareMillimeter = UnitStart + 9, Area_SquareYard = UnitStart + 10, Data_Bit = UnitStart + 11, Data_Byte = UnitStart + 12, Data_Gigabit = UnitStart + 13, Data_Gigabyte = UnitStart + 14, Data_Kilobit = UnitStart + 15, Data_Kilobyte = UnitStart + 16, Data_Megabit = UnitStart + 17, Data_Megabyte = UnitStart + 18, Data_Petabit = UnitStart + 19, Data_Petabyte = UnitStart + 20, Data_Terabit = UnitStart + 21, Data_Terabyte = UnitStart + 22, Energy_BritishThermalUnit = UnitStart + 23, Energy_Calorie = UnitStart + 24, Energy_ElectronVolt = UnitStart + 25, Energy_FootPound = UnitStart + 26, Energy_Joule = UnitStart + 27, Energy_Kilocalorie = UnitStart + 28, Energy_Kilojoule = UnitStart + 29, Length_Centimeter = UnitStart + 30, Length_Foot = UnitStart + 31, Length_Inch = UnitStart + 32, Length_Kilometer = UnitStart + 33, Length_Meter = UnitStart + 34, Length_Micron = UnitStart + 35, Length_Mile = UnitStart + 36, Length_Millimeter = UnitStart + 37, Length_Nanometer = UnitStart + 38, Length_NauticalMile = UnitStart + 39, Length_Yard = UnitStart + 40, Power_BritishThermalUnitPerMinute = UnitStart + 41, Power_FootPoundPerMinute = UnitStart + 42, Power_Horsepower = UnitStart + 43, Power_Kilowatt = UnitStart + 44, Power_Watt = UnitStart + 45, Temperature_DegreesCelsius = UnitStart + 46, Temperature_DegreesFahrenheit = UnitStart + 47, Temperature_Kelvin = UnitStart + 48, Time_Day = UnitStart + 49, Time_Hour = UnitStart + 50, Time_Microsecond = UnitStart + 51, Time_Millisecond = UnitStart + 52, Time_Minute = UnitStart + 53, Time_Second = UnitStart + 54, Time_Week = UnitStart + 55, Time_Year = UnitStart + 56, Speed_CentimetersPerSecond = UnitStart + 57, Speed_FeetPerSecond = UnitStart + 58, Speed_KilometersPerHour = UnitStart + 59, Speed_Knot = UnitStart + 60, Speed_Mach = UnitStart + 61, Speed_MetersPerSecond = UnitStart + 62, Speed_MilesPerHour = UnitStart + 63, Volume_CubicCentimeter = UnitStart + 64, Volume_CubicFoot = UnitStart + 65, Volume_CubicInch = UnitStart + 66, Volume_CubicMeter = UnitStart + 67, Volume_CubicYard = UnitStart + 68, Volume_CupUS = UnitStart + 69, Volume_FluidOunceUK = UnitStart + 70, Volume_FluidOunceUS = UnitStart + 71, Volume_GallonUK = UnitStart + 72, Volume_GallonUS = UnitStart + 73, Volume_Liter = UnitStart + 74, Volume_Milliliter = UnitStart + 75, Volume_PintUK = UnitStart + 76, Volume_PintUS = UnitStart + 77, Volume_TablespoonUS = UnitStart + 78, Volume_TeaspoonUS = UnitStart + 79, Volume_QuartUK = UnitStart + 80, Volume_QuartUS = UnitStart + 81, Weight_Carat = UnitStart + 82, Weight_Centigram = UnitStart + 83, Weight_Decigram = UnitStart + 84, Weight_Decagram = UnitStart + 85, Weight_Gram = UnitStart + 86, Weight_Hectogram = UnitStart + 87, Weight_Kilogram = UnitStart + 88, Weight_LongTon = UnitStart + 89, Weight_Milligram = UnitStart + 90, Weight_Ounce = UnitStart + 91, Weight_Pound = UnitStart + 92, Weight_ShortTon = UnitStart + 93, Weight_Stone = UnitStart + 94, Weight_Tonne = UnitStart + 95, Area_SoccerField = UnitStart + 99, Data_FloppyDisk = UnitStart + 100, Data_CD = UnitStart + 101, Data_DVD = UnitStart + 102, Energy_Battery = UnitStart + 103, Length_Paperclip = UnitStart + 105, Length_JumboJet = UnitStart + 107, Power_LightBulb = UnitStart + 108, Power_Horse = UnitStart + 109, Volume_Bathtub = UnitStart + 111, Weight_Snowflake = UnitStart + 113, Weight_Elephant = UnitStart + 114, Volume_TeaspoonUK = UnitStart + 115, Volume_TablespoonUK = UnitStart + 116, Area_Hand = UnitStart + 118, Speed_Turtle = UnitStart + 121, Speed_Jet = UnitStart + 122, Volume_CoffeeCup = UnitStart + 124, Weight_Whale = UnitStart + 123, Volume_SwimmingPool = UnitStart + 125, Speed_Horse = UnitStart + 126, Area_Paper = UnitStart + 127, Area_Castle = UnitStart + 128, Energy_Banana = UnitStart + 129, Energy_SliceOfCake = UnitStart + 130, Length_Hand = UnitStart + 131, Power_TrainEngine = UnitStart + 132, Weight_SoccerBall = UnitStart + 133, Angle_Degree = UnitStart + 134, Angle_Radian = UnitStart + 135, Angle_Gradian = UnitStart + 136, Pressure_Atmosphere = UnitStart + 137, Pressure_Bar = UnitStart + 138, Pressure_KiloPascal = UnitStart + 139, Pressure_MillimeterOfMercury = UnitStart + 140, Pressure_Pascal = UnitStart + 141, Pressure_PSI = UnitStart + 142, Data_Exabits = UnitStart + 143, Data_Exabytes = UnitStart + 144, Data_Exbibits = UnitStart + 145, Data_Exbibytes = UnitStart + 146, Data_Gibibits = UnitStart + 147, Data_Gibibytes = UnitStart + 148, Data_Kibibits = UnitStart + 149, Data_Kibibytes = UnitStart + 150, Data_Mebibits = UnitStart + 151, Data_Mebibytes = UnitStart + 152, Data_Pebibits = UnitStart + 153, Data_Pebibytes = UnitStart + 154, Data_Tebibits = UnitStart + 155, Data_Tebibytes = UnitStart + 156, Data_Yobibits = UnitStart + 157, Data_Yobibytes = UnitStart + 158, Data_Yottabit = UnitStart + 159, Data_Yottabyte = UnitStart + 160, Data_Zebibits = UnitStart + 161, Data_Zebibytes = UnitStart + 162, Data_Zetabits = UnitStart + 163, Data_Zetabytes = UnitStart + 164, Area_Pyeong = UnitStart + 165, Energy_Kilowatthour = UnitStart + 166, Data_Nibble = UnitStart + 167, Length_Angstrom = UnitStart + 168, UnitEnd = Length_Angstrom }; } } ================================================ FILE: src/CalcViewModel/DataLoaders/UnitConverterDataLoader.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "Common/AppResourceProvider.h" #include "UnitConverterDataLoader.h" #include "UnitConverterDataConstants.h" #include "CurrencyDataLoader.h" using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::DataLoaders; using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace std; using namespace Windows::ApplicationModel::Resources; using namespace Windows::ApplicationModel::Resources::Core; using namespace Windows::Globalization; static constexpr bool CONVERT_WITH_OFFSET_FIRST = true; UnitConverterDataLoader::UnitConverterDataLoader(GeographicRegion ^ region) : m_currentRegionCode(region->CodeTwoLetter) { m_categoryList = make_shared>(); m_categoryIDToUnitsMap = make_shared(); m_ratioMap = make_shared(); } vector UnitConverterDataLoader::GetOrderedCategories() { return *m_categoryList; } vector UnitConverterDataLoader::GetOrderedUnits(const UCM::Category& category) { return this->m_categoryIDToUnitsMap->at(category.id); } unordered_map UnitConverterDataLoader::LoadOrderedRatios(const UCM::Unit& unit) { return m_ratioMap->at(unit); } bool UnitConverterDataLoader::SupportsCategory(const UCM::Category& target) { shared_ptr> supportedCategories = nullptr; if (!m_categoryList->empty()) { supportedCategories = m_categoryList; } else { GetCategories(supportedCategories); } static int currencyId = NavCategoryStates::Serialize(ViewMode::Currency); auto itr = find_if(supportedCategories->begin(), supportedCategories->end(), [&](const UCM::Category& category) { return currencyId != category.id && target.id == category.id; }); return itr != supportedCategories->end(); } void UnitConverterDataLoader::LoadData() { unordered_map idToUnit; unordered_map> orderedUnitMap{}; unordered_map> categoryToUnitConversionDataMap{}; unordered_map> explicitConversionData{}; // Load categories, units and conversion data into data structures. This will be then used to populate hashmaps used by CalcEngine and UI layer GetCategories(m_categoryList); GetUnits(orderedUnitMap); GetConversionData(categoryToUnitConversionDataMap); GetExplicitConversionData(explicitConversionData); // This is needed for temperature conversions this->m_categoryIDToUnitsMap->clear(); this->m_ratioMap->clear(); for (UCM::Category objectCategory : *m_categoryList) { ViewMode categoryViewMode = NavCategoryStates::Deserialize(objectCategory.id); assert(NavCategory::IsConverterViewMode(categoryViewMode)); if (categoryViewMode == ViewMode::Currency) { // Currency is an ordered category but we do not want to process it here // because this function is not thread-safe and currency data is asynchronously // loaded. this->m_categoryIDToUnitsMap->insert(pair>(objectCategory.id, {})); continue; } vector orderedUnits = orderedUnitMap[categoryViewMode]; vector unitList; // Sort the units by order sort(orderedUnits.begin(), orderedUnits.end(), [](const OrderedUnit& first, const OrderedUnit& second) { return first.order < second.order; }); for (OrderedUnit u : orderedUnits) { unitList.push_back(static_cast(u)); idToUnit.insert(pair(u.id, u)); } // Save units per category this->m_categoryIDToUnitsMap->insert(pair>(objectCategory.id, unitList)); // For each unit, populate the conversion data for (UCM::Unit unit : unitList) { unordered_map conversions; if (explicitConversionData.find(unit.id) == explicitConversionData.end()) { // Get the associated units for a category id unordered_map unitConversions = categoryToUnitConversionDataMap.at(categoryViewMode); double unitFactor = unitConversions[unit.id]; for (const auto& [id, conversionFactor] : unitConversions) { if (idToUnit.find(id) == idToUnit.end()) { // Optional units will not be in idToUnit but can be in unitConversions. // For optional units that did not make it to the current set of units, just continue. continue; } UCM::ConversionData parsedData = { 1.0, 0.0, false }; assert(conversionFactor > 0); // divide by zero assert parsedData.ratio = unitFactor / conversionFactor; conversions.insert(pair(idToUnit.at(id), parsedData)); } } else { unordered_map unitConversions = explicitConversionData.at(unit.id); for (auto itr = unitConversions.begin(); itr != unitConversions.end(); ++itr) { conversions.insert(pair(idToUnit.at(itr->first), itr->second)); } } m_ratioMap->insert(pair>(unit, conversions)); } } } void UnitConverterDataLoader::GetCategories(_In_ shared_ptr> categoriesList) { categoriesList->clear(); auto converterCategory = NavCategoryStates::CreateConverterCategoryGroup(); for (auto const& category : converterCategory->Categories) { /* Id, CategoryName, SupportsNegative */ categoriesList->emplace_back(NavCategoryStates::Serialize(category->ViewMode), category->Name->Data(), category->SupportsNegative); } } void UnitConverterDataLoader::GetUnits(_In_ unordered_map>& unitMap) { // US + Federated States of Micronesia, Marshall Islands, Palau bool useUSCustomaryAndFahrenheit = m_currentRegionCode == L"US" || m_currentRegionCode == L"FM" || m_currentRegionCode == L"MH" || m_currentRegionCode == L"PW"; // useUSCustomaryAndFahrenheit + Liberia // Source: https://en.wikipedia.org/wiki/Metrication bool useUSCustomary = useUSCustomaryAndFahrenheit || m_currentRegionCode == L"LR"; // Use 'Système International' (International System of Units - Metrics) bool useSI = !useUSCustomary; // useUSCustomaryAndFahrenheit + the Bahamas, the Cayman Islands and Liberia // Source: http://en.wikipedia.org/wiki/Fahrenheit bool useFahrenheit = useUSCustomaryAndFahrenheit || m_currentRegionCode == "BS" || m_currentRegionCode == "KY" || m_currentRegionCode == "LR"; bool useWattInsteadOfKilowatt = m_currentRegionCode == "GB"; // Use 坪(Tsubo), or Pyeong in Korean, a Japanese unit of floorspace. // https://en.wikipedia.org/wiki/Japanese_units_of_measurement#Area bool usePyeong = m_currentRegionCode == L"JP" || m_currentRegionCode == L"TW" || m_currentRegionCode == L"KP" || m_currentRegionCode == L"KR"; vector areaUnits; areaUnits.push_back( OrderedUnit{ UnitConverterUnits::Area_Acre, GetLocalizedStringName(L"UnitName_Acre"), GetLocalizedStringName(L"UnitAbbreviation_Acre"), 9 }); areaUnits.push_back( OrderedUnit{ UnitConverterUnits::Area_Hectare, GetLocalizedStringName(L"UnitName_Hectare"), GetLocalizedStringName(L"UnitAbbreviation_Hectare"), 4 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareCentimeter, GetLocalizedStringName(L"UnitName_SquareCentimeter"), GetLocalizedStringName(L"UnitAbbreviation_SquareCentimeter"), 2 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareFoot, GetLocalizedStringName(L"UnitName_SquareFoot"), GetLocalizedStringName(L"UnitAbbreviation_SquareFoot"), 7, useSI, useUSCustomary, false }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareInch, GetLocalizedStringName(L"UnitName_SquareInch"), GetLocalizedStringName(L"UnitAbbreviation_SquareInch"), 6 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareKilometer, GetLocalizedStringName(L"UnitName_SquareKilometer"), GetLocalizedStringName(L"UnitAbbreviation_SquareKilometer"), 5 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareMeter, GetLocalizedStringName(L"UnitName_SquareMeter"), GetLocalizedStringName(L"UnitAbbreviation_SquareMeter"), 3, useUSCustomary, useSI, false }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareMile, GetLocalizedStringName(L"UnitName_SquareMile"), GetLocalizedStringName(L"UnitAbbreviation_SquareMile"), 10 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareMillimeter, GetLocalizedStringName(L"UnitName_SquareMillimeter"), GetLocalizedStringName(L"UnitAbbreviation_SquareMillimeter"), 1 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SquareYard, GetLocalizedStringName(L"UnitName_SquareYard"), GetLocalizedStringName(L"UnitAbbreviation_SquareYard"), 8 }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_Hand, GetLocalizedStringName(L"UnitName_Hand"), GetLocalizedStringName(L"UnitAbbreviation_Hand"), 11, false, false, true }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_Paper, GetLocalizedStringName(L"UnitName_Paper"), GetLocalizedStringName(L"UnitAbbreviation_Paper"), 12, false, false, true }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_SoccerField, GetLocalizedStringName(L"UnitName_SoccerField"), GetLocalizedStringName(L"UnitAbbreviation_SoccerField"), 13, false, false, true }); areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_Castle, GetLocalizedStringName(L"UnitName_Castle"), GetLocalizedStringName(L"UnitAbbreviation_Castle"), 14, false, false, true }); if (usePyeong) { areaUnits.push_back(OrderedUnit{ UnitConverterUnits::Area_Pyeong, GetLocalizedStringName(L"UnitName_Pyeong"), GetLocalizedStringName(L"UnitAbbreviation_Pyeong"), 15, false, false, false }); } unitMap.emplace(ViewMode::Area, areaUnits); vector dataUnits; dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Bit, GetLocalizedStringName(L"UnitName_Bit"), GetLocalizedStringName(L"UnitAbbreviation_Bit"), 1 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Byte, GetLocalizedStringName(L"UnitName_Byte"), GetLocalizedStringName(L"UnitAbbreviation_Byte"), 3 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Exabits, GetLocalizedStringName(L"UnitName_Exabits"), GetLocalizedStringName(L"UnitAbbreviation_Exabits"), 24 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Exabytes, GetLocalizedStringName(L"UnitName_Exabytes"), GetLocalizedStringName(L"UnitAbbreviation_Exabytes"), 26 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Exbibits, GetLocalizedStringName(L"UnitName_Exbibits"), GetLocalizedStringName(L"UnitAbbreviation_Exbibits"), 25 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Exbibytes, GetLocalizedStringName(L"UnitName_Exbibytes"), GetLocalizedStringName(L"UnitAbbreviation_Exbibytes"), 27 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Gibibits, GetLocalizedStringName(L"UnitName_Gibibits"), GetLocalizedStringName(L"UnitAbbreviation_Gibibits"), 13 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Gibibytes, GetLocalizedStringName(L"UnitName_Gibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Gibibytes"), 15 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Gigabit, GetLocalizedStringName(L"UnitName_Gigabit"), GetLocalizedStringName(L"UnitAbbreviation_Gigabit"), 12 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Gigabyte, GetLocalizedStringName(L"UnitName_Gigabyte"), GetLocalizedStringName(L"UnitAbbreviation_Gigabyte"), 14, true, false, false }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Kibibits, GetLocalizedStringName(L"UnitName_Kibibits"), GetLocalizedStringName(L"UnitAbbreviation_Kibibits"), 5 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Kibibytes, GetLocalizedStringName(L"UnitName_Kibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Kibibytes"), 7 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Kilobit, GetLocalizedStringName(L"UnitName_Kilobit"), GetLocalizedStringName(L"UnitAbbreviation_Kilobit"), 4 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Kilobyte, GetLocalizedStringName(L"UnitName_Kilobyte"), GetLocalizedStringName(L"UnitAbbreviation_Kilobyte"), 6 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Mebibits, GetLocalizedStringName(L"UnitName_Mebibits"), GetLocalizedStringName(L"UnitAbbreviation_Mebibits"), 9 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Mebibytes, GetLocalizedStringName(L"UnitName_Mebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Mebibytes"), 11 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Megabit, GetLocalizedStringName(L"UnitName_Megabit"), GetLocalizedStringName(L"UnitAbbreviation_Megabit"), 8 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Megabyte, GetLocalizedStringName(L"UnitName_Megabyte"), GetLocalizedStringName(L"UnitAbbreviation_Megabyte"), 10, false, true, false }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Nibble, GetLocalizedStringName(L"UnitName_Nibble"), GetLocalizedStringName(L"UnitAbbreviation_Nibble"), 2 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Pebibits, GetLocalizedStringName(L"UnitName_Pebibits"), GetLocalizedStringName(L"UnitAbbreviation_Pebibits"), 21 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Pebibytes, GetLocalizedStringName(L"UnitName_Pebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Pebibytes"), 23 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Petabit, GetLocalizedStringName(L"UnitName_Petabit"), GetLocalizedStringName(L"UnitAbbreviation_Petabit"), 20 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Petabyte, GetLocalizedStringName(L"UnitName_Petabyte"), GetLocalizedStringName(L"UnitAbbreviation_Petabyte"), 22 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Tebibits, GetLocalizedStringName(L"UnitName_Tebibits"), GetLocalizedStringName(L"UnitAbbreviation_Tebibits"), 17 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Tebibytes, GetLocalizedStringName(L"UnitName_Tebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Tebibytes"), 19 }); dataUnits.push_back( OrderedUnit{ UnitConverterUnits::Data_Terabit, GetLocalizedStringName(L"UnitName_Terabit"), GetLocalizedStringName(L"UnitAbbreviation_Terabit"), 16 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Terabyte, GetLocalizedStringName(L"UnitName_Terabyte"), GetLocalizedStringName(L"UnitAbbreviation_Terabyte"), 18 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Yobibits, GetLocalizedStringName(L"UnitName_Yobibits"), GetLocalizedStringName(L"UnitAbbreviation_Yobibits"), 33 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Yobibytes, GetLocalizedStringName(L"UnitName_Yobibytes"), GetLocalizedStringName(L"UnitAbbreviation_Yobibytes"), 35 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Yottabit, GetLocalizedStringName(L"UnitName_Yottabit"), GetLocalizedStringName(L"UnitAbbreviation_Yottabit"), 32 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Yottabyte, GetLocalizedStringName(L"UnitName_Yottabyte"), GetLocalizedStringName(L"UnitAbbreviation_Yottabyte"), 34 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Zebibits, GetLocalizedStringName(L"UnitName_Zebibits"), GetLocalizedStringName(L"UnitAbbreviation_Zebibits"), 29 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Zebibytes, GetLocalizedStringName(L"UnitName_Zebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Zebibytes"), 31 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Zetabits, GetLocalizedStringName(L"UnitName_Zetabits"), GetLocalizedStringName(L"UnitAbbreviation_Zetabits"), 28 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Zetabytes, GetLocalizedStringName(L"UnitName_Zetabytes"), GetLocalizedStringName(L"UnitAbbreviation_Zetabytes"), 30 }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_FloppyDisk, GetLocalizedStringName(L"UnitName_FloppyDisk"), GetLocalizedStringName(L"UnitAbbreviation_FloppyDisk"), 13, false, false, true }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_CD, GetLocalizedStringName(L"UnitName_CD"), GetLocalizedStringName(L"UnitAbbreviation_CD"), 14, false, false, true }); dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_DVD, GetLocalizedStringName(L"UnitName_DVD"), GetLocalizedStringName(L"UnitAbbreviation_DVD"), 15, false, false, true }); unitMap.emplace(ViewMode::Data, dataUnits); vector energyUnits; energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_BritishThermalUnit, GetLocalizedStringName(L"UnitName_BritishThermalUnit"), GetLocalizedStringName(L"UnitAbbreviation_BritishThermalUnit"), 7 }); energyUnits.push_back( OrderedUnit{ UnitConverterUnits::Energy_Calorie, GetLocalizedStringName(L"UnitName_Calorie"), GetLocalizedStringName(L"UnitAbbreviation_Calorie"), 4 }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_ElectronVolt, GetLocalizedStringName(L"UnitName_Electron-Volt"), GetLocalizedStringName(L"UnitAbbreviation_Electron-Volt"), 1 }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_FootPound, GetLocalizedStringName(L"UnitName_Foot-Pound"), GetLocalizedStringName(L"UnitAbbreviation_Foot-Pound"), 6 }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Joule, GetLocalizedStringName(L"UnitName_Joule"), GetLocalizedStringName(L"UnitAbbreviation_Joule"), 2, true, false, false }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Kilowatthour, GetLocalizedStringName(L"UnitName_Kilowatthour"), GetLocalizedStringName(L"UnitAbbreviation_Kilowatthour"), 166, true, false, false }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Kilocalorie, GetLocalizedStringName(L"UnitName_Kilocalorie"), GetLocalizedStringName(L"UnitAbbreviation_Kilocalorie"), 5, false, true, false }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Kilojoule, GetLocalizedStringName(L"UnitName_Kilojoule"), GetLocalizedStringName(L"UnitAbbreviation_Kilojoule"), 3 }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Battery, GetLocalizedStringName(L"UnitName_Battery"), GetLocalizedStringName(L"UnitAbbreviation_Battery"), 8, false, false, true }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_Banana, GetLocalizedStringName(L"UnitName_Banana"), GetLocalizedStringName(L"UnitAbbreviation_Banana"), 9, false, false, true }); energyUnits.push_back(OrderedUnit{ UnitConverterUnits::Energy_SliceOfCake, GetLocalizedStringName(L"UnitName_SliceOfCake"), GetLocalizedStringName(L"UnitAbbreviation_SliceOfCake"), 10, false, false, true }); unitMap.emplace(ViewMode::Energy, energyUnits); vector lengthUnits; lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Angstrom, GetLocalizedStringName(L"UnitName_Angstrom"), GetLocalizedStringName(L"UnitAbbreviation_Angstrom"), 1 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Centimeter, GetLocalizedStringName(L"UnitName_Centimeter"), GetLocalizedStringName(L"UnitAbbreviation_Centimeter"), 5, useUSCustomary, useSI, false }); lengthUnits.push_back( OrderedUnit{ UnitConverterUnits::Length_Foot, GetLocalizedStringName(L"UnitName_Foot"), GetLocalizedStringName(L"UnitAbbreviation_Foot"), 9 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Inch, GetLocalizedStringName(L"UnitName_Inch"), GetLocalizedStringName(L"UnitAbbreviation_Inch"), 8, useSI, useUSCustomary, false }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Kilometer, GetLocalizedStringName(L"UnitName_Kilometer"), GetLocalizedStringName(L"UnitAbbreviation_Kilometer"), 7 }); lengthUnits.push_back( OrderedUnit{ UnitConverterUnits::Length_Meter, GetLocalizedStringName(L"UnitName_Meter"), GetLocalizedStringName(L"UnitAbbreviation_Meter"), 6 }); lengthUnits.push_back( OrderedUnit{ UnitConverterUnits::Length_Micron, GetLocalizedStringName(L"UnitName_Micron"), GetLocalizedStringName(L"UnitAbbreviation_Micron"), 3 }); lengthUnits.push_back( OrderedUnit{ UnitConverterUnits::Length_Mile, GetLocalizedStringName(L"UnitName_Mile"), GetLocalizedStringName(L"UnitAbbreviation_Mile"), 11 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Millimeter, GetLocalizedStringName(L"UnitName_Millimeter"), GetLocalizedStringName(L"UnitAbbreviation_Millimeter"), 4 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Nanometer, GetLocalizedStringName(L"UnitName_Nanometer"), GetLocalizedStringName(L"UnitAbbreviation_Nanometer"), 2 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_NauticalMile, GetLocalizedStringName(L"UnitName_NauticalMile"), GetLocalizedStringName(L"UnitAbbreviation_NauticalMile"), 12 }); lengthUnits.push_back( OrderedUnit{ UnitConverterUnits::Length_Yard, GetLocalizedStringName(L"UnitName_Yard"), GetLocalizedStringName(L"UnitAbbreviation_Yard"), 10 }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Paperclip, GetLocalizedStringName(L"UnitName_Paperclip"), GetLocalizedStringName(L"UnitAbbreviation_Paperclip"), 13, false, false, true }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_Hand, GetLocalizedStringName(L"UnitName_Hand"), GetLocalizedStringName(L"UnitAbbreviation_Hand"), 14, false, false, true }); lengthUnits.push_back(OrderedUnit{ UnitConverterUnits::Length_JumboJet, GetLocalizedStringName(L"UnitName_JumboJet"), GetLocalizedStringName(L"UnitAbbreviation_JumboJet"), 15, false, false, true }); unitMap.emplace(ViewMode::Length, lengthUnits); vector powerUnits; powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_BritishThermalUnitPerMinute, GetLocalizedStringName(L"UnitName_BTUPerMinute"), GetLocalizedStringName(L"UnitAbbreviation_BTUPerMinute"), 5 }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_FootPoundPerMinute, GetLocalizedStringName(L"UnitName_Foot-PoundPerMinute"), GetLocalizedStringName(L"UnitAbbreviation_Foot-PoundPerMinute"), 4 }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_Horsepower, GetLocalizedStringName(L"UnitName_Horsepower"), GetLocalizedStringName(L"UnitAbbreviation_Horsepower"), 3, false, true, false }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_Kilowatt, GetLocalizedStringName(L"UnitName_Kilowatt"), GetLocalizedStringName(L"UnitAbbreviation_Kilowatt"), 2, !useWattInsteadOfKilowatt }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_Watt, GetLocalizedStringName(L"UnitName_Watt"), GetLocalizedStringName(L"UnitAbbreviation_Watt"), 1, useWattInsteadOfKilowatt }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_LightBulb, GetLocalizedStringName(L"UnitName_LightBulb"), GetLocalizedStringName(L"UnitAbbreviation_LightBulb"), 6, false, false, true }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_Horse, GetLocalizedStringName(L"UnitName_Horse"), GetLocalizedStringName(L"UnitAbbreviation_Horse"), 7, false, false, true }); powerUnits.push_back(OrderedUnit{ UnitConverterUnits::Power_TrainEngine, GetLocalizedStringName(L"UnitName_TrainEngine"), GetLocalizedStringName(L"UnitAbbreviation_TrainEngine"), 8, false, false, true }); unitMap.emplace(ViewMode::Power, powerUnits); vector tempUnits; tempUnits.push_back(OrderedUnit{ UnitConverterUnits::Temperature_DegreesCelsius, GetLocalizedStringName(L"UnitName_DegreesCelsius"), GetLocalizedStringName(L"UnitAbbreviation_DegreesCelsius"), 1, useFahrenheit, !useFahrenheit, false }); tempUnits.push_back(OrderedUnit{ UnitConverterUnits::Temperature_DegreesFahrenheit, GetLocalizedStringName(L"UnitName_DegreesFahrenheit"), GetLocalizedStringName(L"UnitAbbreviation_DegreesFahrenheit"), 2, !useFahrenheit, useFahrenheit, false }); tempUnits.push_back(OrderedUnit{ UnitConverterUnits::Temperature_Kelvin, GetLocalizedStringName(L"UnitName_Kelvin"), GetLocalizedStringName(L"UnitAbbreviation_Kelvin"), 3 }); unitMap.emplace(ViewMode::Temperature, tempUnits); vector timeUnits; timeUnits.push_back( OrderedUnit{ UnitConverterUnits::Time_Day, GetLocalizedStringName(L"UnitName_Day"), GetLocalizedStringName(L"UnitAbbreviation_Day"), 6 }); timeUnits.push_back(OrderedUnit{ UnitConverterUnits::Time_Hour, GetLocalizedStringName(L"UnitName_Hour"), GetLocalizedStringName(L"UnitAbbreviation_Hour"), 5, true, false, false }); timeUnits.push_back(OrderedUnit{ UnitConverterUnits::Time_Microsecond, GetLocalizedStringName(L"UnitName_Microsecond"), GetLocalizedStringName(L"UnitAbbreviation_Microsecond"), 1 }); timeUnits.push_back(OrderedUnit{ UnitConverterUnits::Time_Millisecond, GetLocalizedStringName(L"UnitName_Millisecond"), GetLocalizedStringName(L"UnitAbbreviation_Millisecond"), 2 }); timeUnits.push_back(OrderedUnit{ UnitConverterUnits::Time_Minute, GetLocalizedStringName(L"UnitName_Minute"), GetLocalizedStringName(L"UnitAbbreviation_Minute"), 4, false, true, false }); timeUnits.push_back( OrderedUnit{ UnitConverterUnits::Time_Second, GetLocalizedStringName(L"UnitName_Second"), GetLocalizedStringName(L"UnitAbbreviation_Second"), 3 }); timeUnits.push_back( OrderedUnit{ UnitConverterUnits::Time_Week, GetLocalizedStringName(L"UnitName_Week"), GetLocalizedStringName(L"UnitAbbreviation_Week"), 7 }); timeUnits.push_back( OrderedUnit{ UnitConverterUnits::Time_Year, GetLocalizedStringName(L"UnitName_Year"), GetLocalizedStringName(L"UnitAbbreviation_Year"), 8 }); unitMap.emplace(ViewMode::Time, timeUnits); vector speedUnits; speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_CentimetersPerSecond, GetLocalizedStringName(L"UnitName_CentimetersPerSecond"), GetLocalizedStringName(L"UnitAbbreviation_CentimetersPerSecond"), 1 }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_FeetPerSecond, GetLocalizedStringName(L"UnitName_FeetPerSecond"), GetLocalizedStringName(L"UnitAbbreviation_FeetPerSecond"), 4 }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_KilometersPerHour, GetLocalizedStringName(L"UnitName_KilometersPerHour"), GetLocalizedStringName(L"UnitAbbreviation_KilometersPerHour"), 3, useUSCustomary, useSI, false }); speedUnits.push_back( OrderedUnit{ UnitConverterUnits::Speed_Knot, GetLocalizedStringName(L"UnitName_Knot"), GetLocalizedStringName(L"UnitAbbreviation_Knot"), 6 }); speedUnits.push_back( OrderedUnit{ UnitConverterUnits::Speed_Mach, GetLocalizedStringName(L"UnitName_Mach"), GetLocalizedStringName(L"UnitAbbreviation_Mach"), 7 }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_MetersPerSecond, GetLocalizedStringName(L"UnitName_MetersPerSecond"), GetLocalizedStringName(L"UnitAbbreviation_MetersPerSecond"), 2 }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_MilesPerHour, GetLocalizedStringName(L"UnitName_MilesPerHour"), GetLocalizedStringName(L"UnitAbbreviation_MilesPerHour"), 5, useSI, useUSCustomary, false }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_Turtle, GetLocalizedStringName(L"UnitName_Turtle"), GetLocalizedStringName(L"UnitAbbreviation_Turtle"), 8, false, false, true }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_Horse, GetLocalizedStringName(L"UnitName_Horse"), GetLocalizedStringName(L"UnitAbbreviation_Horse"), 9, false, false, true }); speedUnits.push_back(OrderedUnit{ UnitConverterUnits::Speed_Jet, GetLocalizedStringName(L"UnitName_Jet"), GetLocalizedStringName(L"UnitAbbreviation_Jet"), 10, false, false, true }); unitMap.emplace(ViewMode::Speed, speedUnits); vector volumeUnits; volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CubicCentimeter, GetLocalizedStringName(L"UnitName_CubicCentimeter"), GetLocalizedStringName(L"UnitAbbreviation_CubicCentimeter"), 2 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CubicFoot, GetLocalizedStringName(L"UnitName_CubicFoot"), GetLocalizedStringName(L"UnitAbbreviation_CubicFoot"), 13 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CubicInch, GetLocalizedStringName(L"UnitName_CubicInch"), GetLocalizedStringName(L"UnitAbbreviation_CubicInch"), 12 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CubicMeter, GetLocalizedStringName(L"UnitName_CubicMeter"), GetLocalizedStringName(L"UnitAbbreviation_CubicMeter"), 4 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CubicYard, GetLocalizedStringName(L"UnitName_CubicYard"), GetLocalizedStringName(L"UnitAbbreviation_CubicYard"), 14 }); volumeUnits.push_back( OrderedUnit{ UnitConverterUnits::Volume_CupUS, GetLocalizedStringName(L"UnitName_CupUS"), GetLocalizedStringName(L"UnitAbbreviation_CupUS"), 8 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_FluidOunceUK, GetLocalizedStringName(L"UnitName_FluidOunceUK"), GetLocalizedStringName(L"UnitAbbreviation_FluidOunceUK"), 17 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_FluidOunceUS, GetLocalizedStringName(L"UnitName_FluidOunceUS"), GetLocalizedStringName(L"UnitAbbreviation_FluidOunceUS"), 7 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_GallonUK, GetLocalizedStringName(L"UnitName_GallonUK"), GetLocalizedStringName(L"UnitAbbreviation_GallonUK"), 20 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_GallonUS, GetLocalizedStringName(L"UnitName_GallonUS"), GetLocalizedStringName(L"UnitAbbreviation_GallonUS"), 11 }); volumeUnits.push_back( OrderedUnit{ UnitConverterUnits::Volume_Liter, GetLocalizedStringName(L"UnitName_Liter"), GetLocalizedStringName(L"UnitAbbreviation_Liter"), 3 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_Milliliter, GetLocalizedStringName(L"UnitName_Milliliter"), GetLocalizedStringName(L"UnitAbbreviation_Milliliter"), 1, useUSCustomary, useSI }); volumeUnits.push_back( OrderedUnit{ UnitConverterUnits::Volume_PintUK, GetLocalizedStringName(L"UnitName_PintUK"), GetLocalizedStringName(L"UnitAbbreviation_PintUK"), 18 }); volumeUnits.push_back( OrderedUnit{ UnitConverterUnits::Volume_PintUS, GetLocalizedStringName(L"UnitName_PintUS"), GetLocalizedStringName(L"UnitAbbreviation_PintUS"), 9 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_TablespoonUS, GetLocalizedStringName(L"UnitName_TablespoonUS"), GetLocalizedStringName(L"UnitAbbreviation_TablespoonUS"), 6 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_TeaspoonUS, GetLocalizedStringName(L"UnitName_TeaspoonUS"), GetLocalizedStringName(L"UnitAbbreviation_TeaspoonUS"), 5, useSI, useUSCustomary && m_currentRegionCode != "GB" }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_QuartUK, GetLocalizedStringName(L"UnitName_QuartUK"), GetLocalizedStringName(L"UnitAbbreviation_QuartUK"), 19 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_QuartUS, GetLocalizedStringName(L"UnitName_QuartUS"), GetLocalizedStringName(L"UnitAbbreviation_QuartUS"), 10 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_TeaspoonUK, GetLocalizedStringName(L"UnitName_TeaspoonUK"), GetLocalizedStringName(L"UnitAbbreviation_TeaspoonUK"), 15, false, useUSCustomary && m_currentRegionCode == "GB" }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_TablespoonUK, GetLocalizedStringName(L"UnitName_TablespoonUK"), GetLocalizedStringName(L"UnitAbbreviation_TablespoonUK"), 16 }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_CoffeeCup, GetLocalizedStringName(L"UnitName_CoffeeCup"), GetLocalizedStringName(L"UnitAbbreviation_CoffeeCup"), 22, false, false, true }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_Bathtub, GetLocalizedStringName(L"UnitName_Bathtub"), GetLocalizedStringName(L"UnitAbbreviation_Bathtub"), 23, false, false, true }); volumeUnits.push_back(OrderedUnit{ UnitConverterUnits::Volume_SwimmingPool, GetLocalizedStringName(L"UnitName_SwimmingPool"), GetLocalizedStringName(L"UnitAbbreviation_SwimmingPool"), 24, false, false, true }); unitMap.emplace(ViewMode::Volume, volumeUnits); vector weightUnits; weightUnits.push_back( OrderedUnit{ UnitConverterUnits::Weight_Carat, GetLocalizedStringName(L"UnitName_Carat"), GetLocalizedStringName(L"UnitAbbreviation_Carat"), 1 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Centigram, GetLocalizedStringName(L"UnitName_Centigram"), GetLocalizedStringName(L"UnitAbbreviation_Centigram"), 3 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Decigram, GetLocalizedStringName(L"UnitName_Decigram"), GetLocalizedStringName(L"UnitAbbreviation_Decigram"), 4 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Decagram, GetLocalizedStringName(L"UnitName_Decagram"), GetLocalizedStringName(L"UnitAbbreviation_Decagram"), 6 }); weightUnits.push_back( OrderedUnit{ UnitConverterUnits::Weight_Gram, GetLocalizedStringName(L"UnitName_Gram"), GetLocalizedStringName(L"UnitAbbreviation_Gram"), 5 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Hectogram, GetLocalizedStringName(L"UnitName_Hectogram"), GetLocalizedStringName(L"UnitAbbreviation_Hectogram"), 7 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Kilogram, GetLocalizedStringName(L"UnitName_Kilogram"), GetLocalizedStringName(L"UnitAbbreviation_Kilogram"), 8, useUSCustomary, useSI }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_LongTon, GetLocalizedStringName(L"UnitName_LongTon"), GetLocalizedStringName(L"UnitAbbreviation_LongTon"), 14 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Milligram, GetLocalizedStringName(L"UnitName_Milligram"), GetLocalizedStringName(L"UnitAbbreviation_Milligram"), 2 }); weightUnits.push_back( OrderedUnit{ UnitConverterUnits::Weight_Ounce, GetLocalizedStringName(L"UnitName_Ounce"), GetLocalizedStringName(L"UnitAbbreviation_Ounce"), 10 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Pound, GetLocalizedStringName(L"UnitName_Pound"), GetLocalizedStringName(L"UnitAbbreviation_Pound"), 11, useSI, useUSCustomary }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_ShortTon, GetLocalizedStringName(L"UnitName_ShortTon"), GetLocalizedStringName(L"UnitAbbreviation_ShortTon"), 13 }); weightUnits.push_back( OrderedUnit{ UnitConverterUnits::Weight_Stone, GetLocalizedStringName(L"UnitName_Stone"), GetLocalizedStringName(L"UnitAbbreviation_Stone"), 12 }); weightUnits.push_back( OrderedUnit{ UnitConverterUnits::Weight_Tonne, GetLocalizedStringName(L"UnitName_Tonne"), GetLocalizedStringName(L"UnitAbbreviation_Tonne"), 9 }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Snowflake, GetLocalizedStringName(L"UnitName_Snowflake"), GetLocalizedStringName(L"UnitAbbreviation_Snowflake"), 15, false, false, true }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_SoccerBall, GetLocalizedStringName(L"UnitName_SoccerBall"), GetLocalizedStringName(L"UnitAbbreviation_SoccerBall"), 16, false, false, true }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Elephant, GetLocalizedStringName(L"UnitName_Elephant"), GetLocalizedStringName(L"UnitAbbreviation_Elephant"), 17, false, false, true }); weightUnits.push_back(OrderedUnit{ UnitConverterUnits::Weight_Whale, GetLocalizedStringName(L"UnitName_Whale"), GetLocalizedStringName(L"UnitAbbreviation_Whale"), 18, false, false, true }); unitMap.emplace(ViewMode::Weight, weightUnits); vector pressureUnits; pressureUnits.push_back(OrderedUnit{ UnitConverterUnits::Pressure_Atmosphere, GetLocalizedStringName(L"UnitName_Atmosphere"), GetLocalizedStringName(L"UnitAbbreviation_Atmosphere"), 1, true, false, false }); pressureUnits.push_back(OrderedUnit{ UnitConverterUnits::Pressure_Bar, GetLocalizedStringName(L"UnitName_Bar"), GetLocalizedStringName(L"UnitAbbreviation_Bar"), 2, false, true, false }); pressureUnits.push_back(OrderedUnit{ UnitConverterUnits::Pressure_KiloPascal, GetLocalizedStringName(L"UnitName_KiloPascal"), GetLocalizedStringName(L"UnitAbbreviation_KiloPascal"), 3 }); pressureUnits.push_back(OrderedUnit{ UnitConverterUnits::Pressure_MillimeterOfMercury, GetLocalizedStringName(L"UnitName_MillimeterOfMercury "), GetLocalizedStringName(L"UnitAbbreviation_MillimeterOfMercury "), 4 }); pressureUnits.push_back( OrderedUnit{ UnitConverterUnits::Pressure_Pascal, GetLocalizedStringName(L"UnitName_Pascal"), GetLocalizedStringName(L"UnitAbbreviation_Pascal"), 5 }); pressureUnits.push_back(OrderedUnit{ UnitConverterUnits::Pressure_PSI, GetLocalizedStringName(L"UnitName_PSI"), GetLocalizedStringName(L"UnitAbbreviation_PSI"), 6, false, false, false }); unitMap.emplace(ViewMode::Pressure, pressureUnits); vector angleUnits; angleUnits.push_back(OrderedUnit{ UnitConverterUnits::Angle_Degree, GetLocalizedStringName(L"UnitName_Degree"), GetLocalizedStringName(L"UnitAbbreviation_Degree"), 1, true, false, false }); angleUnits.push_back(OrderedUnit{ UnitConverterUnits::Angle_Radian, GetLocalizedStringName(L"UnitName_Radian"), GetLocalizedStringName(L"UnitAbbreviation_Radian"), 2, false, true, false }); angleUnits.push_back( OrderedUnit{ UnitConverterUnits::Angle_Gradian, GetLocalizedStringName(L"UnitName_Gradian"), GetLocalizedStringName(L"UnitAbbreviation_Gradian"), 3 }); unitMap.emplace(ViewMode::Angle, angleUnits); } void UnitConverterDataLoader::GetConversionData(_In_ unordered_map>& categoryToUnitConversionMap) { /*categoryId, UnitId, factor*/ static const vector unitDataList = { { ViewMode::Area, UnitConverterUnits::Area_Acre, 4046.8564224 }, { ViewMode::Area, UnitConverterUnits::Area_SquareMeter, 1 }, { ViewMode::Area, UnitConverterUnits::Area_SquareFoot, 0.09290304 }, { ViewMode::Area, UnitConverterUnits::Area_SquareYard, 0.83612736 }, { ViewMode::Area, UnitConverterUnits::Area_SquareMillimeter, 0.000001 }, { ViewMode::Area, UnitConverterUnits::Area_SquareCentimeter, 0.0001 }, { ViewMode::Area, UnitConverterUnits::Area_SquareInch, 0.00064516 }, { ViewMode::Area, UnitConverterUnits::Area_SquareMile, 2589988.110336 }, { ViewMode::Area, UnitConverterUnits::Area_SquareKilometer, 1000000 }, { ViewMode::Area, UnitConverterUnits::Area_Hectare, 10000 }, { ViewMode::Area, UnitConverterUnits::Area_Hand, 0.012516104 }, { ViewMode::Area, UnitConverterUnits::Area_Paper, 0.06032246 }, { ViewMode::Area, UnitConverterUnits::Area_SoccerField, 10869.66 }, { ViewMode::Area, UnitConverterUnits::Area_Castle, 100000 }, { ViewMode::Area, UnitConverterUnits::Area_Pyeong, 400.0 / 121.0 }, { ViewMode::Data, UnitConverterUnits::Data_Bit, 0.000000125 }, { ViewMode::Data, UnitConverterUnits::Data_Nibble, 0.0000005 }, { ViewMode::Data, UnitConverterUnits::Data_Byte, 0.000001 }, { ViewMode::Data, UnitConverterUnits::Data_Kilobyte, 0.001 }, { ViewMode::Data, UnitConverterUnits::Data_Megabyte, 1 }, { ViewMode::Data, UnitConverterUnits::Data_Gigabyte, 1000 }, { ViewMode::Data, UnitConverterUnits::Data_Terabyte, 1000000 }, { ViewMode::Data, UnitConverterUnits::Data_Petabyte, 1000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Exabytes, 1000000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Zetabytes, 1000000000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Yottabyte, 1000000000000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Kilobit, 0.000125 }, { ViewMode::Data, UnitConverterUnits::Data_Megabit, 0.125 }, { ViewMode::Data, UnitConverterUnits::Data_Gigabit, 125 }, { ViewMode::Data, UnitConverterUnits::Data_Terabit, 125000 }, { ViewMode::Data, UnitConverterUnits::Data_Petabit, 125000000 }, { ViewMode::Data, UnitConverterUnits::Data_Exabits, 125000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Zetabits, 125000000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Yottabit, 125000000000000000 }, { ViewMode::Data, UnitConverterUnits::Data_Gibibits, 134.217728 }, { ViewMode::Data, UnitConverterUnits::Data_Gibibytes, 1073.741824 }, { ViewMode::Data, UnitConverterUnits::Data_Kibibits, 0.000128 }, { ViewMode::Data, UnitConverterUnits::Data_Kibibytes, 0.001024 }, { ViewMode::Data, UnitConverterUnits::Data_Mebibits, 0.131072 }, { ViewMode::Data, UnitConverterUnits::Data_Mebibytes, 1.048576 }, { ViewMode::Data, UnitConverterUnits::Data_Pebibits, 140737488.355328 }, { ViewMode::Data, UnitConverterUnits::Data_Pebibytes, 1125899906.842624 }, { ViewMode::Data, UnitConverterUnits::Data_Tebibits, 137438.953472 }, { ViewMode::Data, UnitConverterUnits::Data_Tebibytes, 1099511.627776 }, { ViewMode::Data, UnitConverterUnits::Data_Exbibits, 144115188075.855872 }, { ViewMode::Data, UnitConverterUnits::Data_Exbibytes, 1152921504606.846976 }, { ViewMode::Data, UnitConverterUnits::Data_Zebibits, 147573952589676.412928 }, { ViewMode::Data, UnitConverterUnits::Data_Zebibytes, 1180591620717411.303424 }, { ViewMode::Data, UnitConverterUnits::Data_Yobibits, 151115727451828646.838272 }, { ViewMode::Data, UnitConverterUnits::Data_Yobibytes, 1208925819614629174.706176 }, { ViewMode::Data, UnitConverterUnits::Data_FloppyDisk, 1.474560 }, { ViewMode::Data, UnitConverterUnits::Data_CD, 700 }, { ViewMode::Data, UnitConverterUnits::Data_DVD, 4700 }, { ViewMode::Energy, UnitConverterUnits::Energy_Calorie, 4.184 }, { ViewMode::Energy, UnitConverterUnits::Energy_Kilocalorie, 4184 }, { ViewMode::Energy, UnitConverterUnits::Energy_BritishThermalUnit, 1055.056 }, { ViewMode::Energy, UnitConverterUnits::Energy_Kilojoule, 1000 }, { ViewMode::Energy, UnitConverterUnits::Energy_Kilowatthour, 3600000 }, { ViewMode::Energy, UnitConverterUnits::Energy_ElectronVolt, 0.0000000000000000001602176565 }, { ViewMode::Energy, UnitConverterUnits::Energy_Joule, 1 }, { ViewMode::Energy, UnitConverterUnits::Energy_FootPound, 1.3558179483314 }, { ViewMode::Energy, UnitConverterUnits::Energy_Battery, 9000 }, { ViewMode::Energy, UnitConverterUnits::Energy_Banana, 439614 }, { ViewMode::Energy, UnitConverterUnits::Energy_SliceOfCake, 1046700 }, { ViewMode::Length, UnitConverterUnits::Length_Inch, 0.0254 }, { ViewMode::Length, UnitConverterUnits::Length_Foot, 0.3048 }, { ViewMode::Length, UnitConverterUnits::Length_Yard, 0.9144 }, { ViewMode::Length, UnitConverterUnits::Length_Mile, 1609.344 }, { ViewMode::Length, UnitConverterUnits::Length_Micron, 0.000001 }, { ViewMode::Length, UnitConverterUnits::Length_Millimeter, 0.001 }, { ViewMode::Length, UnitConverterUnits::Length_Nanometer, 0.000000001 }, { ViewMode::Length, UnitConverterUnits::Length_Angstrom, 0.0000000001 }, { ViewMode::Length, UnitConverterUnits::Length_Centimeter, 0.01 }, { ViewMode::Length, UnitConverterUnits::Length_Meter, 1 }, { ViewMode::Length, UnitConverterUnits::Length_Kilometer, 1000 }, { ViewMode::Length, UnitConverterUnits::Length_NauticalMile, 1852 }, { ViewMode::Length, UnitConverterUnits::Length_Paperclip, 0.035052 }, { ViewMode::Length, UnitConverterUnits::Length_Hand, 0.18669 }, { ViewMode::Length, UnitConverterUnits::Length_JumboJet, 76 }, { ViewMode::Power, UnitConverterUnits::Power_BritishThermalUnitPerMinute, 17.58426666666667 }, { ViewMode::Power, UnitConverterUnits::Power_FootPoundPerMinute, 0.0225969658055233 }, { ViewMode::Power, UnitConverterUnits::Power_Watt, 1 }, { ViewMode::Power, UnitConverterUnits::Power_Kilowatt, 1000 }, { ViewMode::Power, UnitConverterUnits::Power_Horsepower, 745.69987158227022 }, { ViewMode::Power, UnitConverterUnits::Power_LightBulb, 60 }, { ViewMode::Power, UnitConverterUnits::Power_Horse, 745.7 }, { ViewMode::Power, UnitConverterUnits::Power_TrainEngine, 2982799.486329081 }, { ViewMode::Time, UnitConverterUnits::Time_Day, 86400 }, { ViewMode::Time, UnitConverterUnits::Time_Second, 1 }, { ViewMode::Time, UnitConverterUnits::Time_Week, 604800 }, { ViewMode::Time, UnitConverterUnits::Time_Year, 31557600 }, { ViewMode::Time, UnitConverterUnits::Time_Millisecond, 0.001 }, { ViewMode::Time, UnitConverterUnits::Time_Microsecond, 0.000001 }, { ViewMode::Time, UnitConverterUnits::Time_Minute, 60 }, { ViewMode::Time, UnitConverterUnits::Time_Hour, 3600 }, { ViewMode::Volume, UnitConverterUnits::Volume_CupUS, 236.588237 }, { ViewMode::Volume, UnitConverterUnits::Volume_PintUS, 473.176473 }, { ViewMode::Volume, UnitConverterUnits::Volume_PintUK, 568.26125 }, { ViewMode::Volume, UnitConverterUnits::Volume_QuartUS, 946.352946 }, { ViewMode::Volume, UnitConverterUnits::Volume_QuartUK, 1136.5225 }, { ViewMode::Volume, UnitConverterUnits::Volume_GallonUS, 3785.411784 }, { ViewMode::Volume, UnitConverterUnits::Volume_GallonUK, 4546.09 }, { ViewMode::Volume, UnitConverterUnits::Volume_Liter, 1000 }, { ViewMode::Volume, UnitConverterUnits::Volume_TeaspoonUS, 4.92892159375 }, { ViewMode::Volume, UnitConverterUnits::Volume_TablespoonUS, 14.78676478125 }, { ViewMode::Volume, UnitConverterUnits::Volume_CubicCentimeter, 1 }, { ViewMode::Volume, UnitConverterUnits::Volume_CubicYard, 764554.857984 }, { ViewMode::Volume, UnitConverterUnits::Volume_CubicMeter, 1000000 }, { ViewMode::Volume, UnitConverterUnits::Volume_Milliliter, 1 }, { ViewMode::Volume, UnitConverterUnits::Volume_CubicInch, 16.387064 }, { ViewMode::Volume, UnitConverterUnits::Volume_CubicFoot, 28316.846592 }, { ViewMode::Volume, UnitConverterUnits::Volume_FluidOunceUS, 29.5735295625 }, { ViewMode::Volume, UnitConverterUnits::Volume_FluidOunceUK, 28.4130625 }, { ViewMode::Volume, UnitConverterUnits::Volume_TeaspoonUK, 5.91938802083333333333 }, { ViewMode::Volume, UnitConverterUnits::Volume_TablespoonUK, 17.7581640625 }, { ViewMode::Volume, UnitConverterUnits::Volume_CoffeeCup, 236.5882 }, { ViewMode::Volume, UnitConverterUnits::Volume_Bathtub, 378541.2 }, { ViewMode::Volume, UnitConverterUnits::Volume_SwimmingPool, 3750000000 }, { ViewMode::Weight, UnitConverterUnits::Weight_Kilogram, 1 }, { ViewMode::Weight, UnitConverterUnits::Weight_Hectogram, 0.1 }, { ViewMode::Weight, UnitConverterUnits::Weight_Decagram, 0.01 }, { ViewMode::Weight, UnitConverterUnits::Weight_Gram, 0.001 }, { ViewMode::Weight, UnitConverterUnits::Weight_Pound, 0.45359237 }, { ViewMode::Weight, UnitConverterUnits::Weight_Ounce, 0.028349523125 }, { ViewMode::Weight, UnitConverterUnits::Weight_Milligram, 0.000001 }, { ViewMode::Weight, UnitConverterUnits::Weight_Centigram, 0.00001 }, { ViewMode::Weight, UnitConverterUnits::Weight_Decigram, 0.0001 }, { ViewMode::Weight, UnitConverterUnits::Weight_LongTon, 1016.0469088 }, { ViewMode::Weight, UnitConverterUnits::Weight_Tonne, 1000 }, { ViewMode::Weight, UnitConverterUnits::Weight_Stone, 6.35029318 }, { ViewMode::Weight, UnitConverterUnits::Weight_Carat, 0.0002 }, { ViewMode::Weight, UnitConverterUnits::Weight_ShortTon, 907.18474 }, { ViewMode::Weight, UnitConverterUnits::Weight_Snowflake, 0.000002 }, { ViewMode::Weight, UnitConverterUnits::Weight_SoccerBall, 0.4325 }, { ViewMode::Weight, UnitConverterUnits::Weight_Elephant, 4000 }, { ViewMode::Weight, UnitConverterUnits::Weight_Whale, 90000 }, { ViewMode::Speed, UnitConverterUnits::Speed_CentimetersPerSecond, 1 }, { ViewMode::Speed, UnitConverterUnits::Speed_FeetPerSecond, 30.48 }, { ViewMode::Speed, UnitConverterUnits::Speed_KilometersPerHour, 27.777777777777777777778 }, { ViewMode::Speed, UnitConverterUnits::Speed_Knot, 51.44 }, { ViewMode::Speed, UnitConverterUnits::Speed_Mach, 34030 }, { ViewMode::Speed, UnitConverterUnits::Speed_MetersPerSecond, 100 }, { ViewMode::Speed, UnitConverterUnits::Speed_MilesPerHour, 44.7 }, { ViewMode::Speed, UnitConverterUnits::Speed_Turtle, 8.94 }, { ViewMode::Speed, UnitConverterUnits::Speed_Horse, 2011.5 }, { ViewMode::Speed, UnitConverterUnits::Speed_Jet, 24585 }, { ViewMode::Angle, UnitConverterUnits::Angle_Degree, 1 }, { ViewMode::Angle, UnitConverterUnits::Angle_Radian, 57.29577951308233 }, { ViewMode::Angle, UnitConverterUnits::Angle_Gradian, 0.9 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_Atmosphere, 1 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_Bar, 0.9869232667160128 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_KiloPascal, 0.0098692326671601 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_MillimeterOfMercury, 0.0013155687145324 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_Pascal, 9.869232667160128e-6 }, { ViewMode::Pressure, UnitConverterUnits::Pressure_PSI, 0.068045961016531 } }; // Populate the hash map and return; for (UnitData unitdata : unitDataList) { if (categoryToUnitConversionMap.find(unitdata.categoryId) == categoryToUnitConversionMap.end()) { unordered_map conversionData; conversionData.insert(pair(unitdata.unitId, unitdata.factor)); categoryToUnitConversionMap.insert(pair>(unitdata.categoryId, conversionData)); } else { categoryToUnitConversionMap.at(unitdata.categoryId).insert(pair(unitdata.unitId, unitdata.factor)); } } } wstring UnitConverterDataLoader::GetLocalizedStringName(String ^ stringId) { return AppResourceProvider::GetInstance()->GetResourceString(stringId)->Data(); } void UnitConverterDataLoader::GetExplicitConversionData(_In_ unordered_map>& unitToUnitConversionList) { /* categoryId, ParentUnitId, UnitId, ratio, offset, offsetfirst*/ ExplicitUnitConversionData conversionDataList[] = { { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesCelsius, UnitConverterUnits::Temperature_DegreesCelsius, 1, 0 }, { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesCelsius, UnitConverterUnits::Temperature_DegreesFahrenheit, 1.8, 32 }, { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesCelsius, UnitConverterUnits::Temperature_Kelvin, 1, 273.15 }, { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesFahrenheit, UnitConverterUnits::Temperature_DegreesCelsius, 0.55555555555555555555555555555556, -32, CONVERT_WITH_OFFSET_FIRST }, { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesFahrenheit, UnitConverterUnits::Temperature_DegreesFahrenheit, 1, 0 }, { ViewMode::Temperature, UnitConverterUnits::Temperature_DegreesFahrenheit, UnitConverterUnits::Temperature_Kelvin, 0.55555555555555555555555555555556, 459.67, CONVERT_WITH_OFFSET_FIRST }, { ViewMode::Temperature, UnitConverterUnits::Temperature_Kelvin, UnitConverterUnits::Temperature_DegreesCelsius, 1, -273.15, CONVERT_WITH_OFFSET_FIRST }, { ViewMode::Temperature, UnitConverterUnits::Temperature_Kelvin, UnitConverterUnits::Temperature_DegreesFahrenheit, 1.8, -459.67 }, { ViewMode::Temperature, UnitConverterUnits::Temperature_Kelvin, UnitConverterUnits::Temperature_Kelvin, 1, 0 } }; // Populate the hash map and return; for (ExplicitUnitConversionData data : conversionDataList) { if (unitToUnitConversionList.find(data.parentUnitId) == unitToUnitConversionList.end()) { unordered_map conversionData; conversionData.insert(pair(data.unitId, static_cast(data))); unitToUnitConversionList.insert(pair>(data.parentUnitId, conversionData)); } else { unitToUnitConversionList.at(data.parentUnitId).insert(pair(data.unitId, static_cast(data))); } } } ================================================ FILE: src/CalcViewModel/DataLoaders/UnitConverterDataLoader.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/UnitConverter.h" #include "Common/NavCategory.h" namespace CalculatorApp { namespace ViewModel::Common { struct OrderedUnit : UnitConversionManager::Unit { OrderedUnit() { } OrderedUnit( int id, std::wstring name, std::wstring abbreviation, int order, bool isConversionSource = false, bool isConversionTarget = false, bool isWhimsical = false) : UnitConversionManager::Unit(id, name, abbreviation, isConversionSource, isConversionTarget, isWhimsical) , order(order) { } int order; }; struct UnitData { CalculatorApp::ViewModel::Common::ViewMode categoryId; int unitId; double factor; }; struct ExplicitUnitConversionData : UnitConversionManager::ConversionData { ExplicitUnitConversionData() { } ExplicitUnitConversionData( CalculatorApp::ViewModel::Common::ViewMode categoryId, int parentUnitId, int unitId, double ratio, double offset, bool offsetFirst = false) : categoryId(categoryId) , parentUnitId(parentUnitId) , unitId(unitId) , UnitConversionManager::ConversionData(ratio, offset, offsetFirst) { } CalculatorApp::ViewModel::Common::ViewMode categoryId; int parentUnitId; int unitId; }; class UnitConverterDataLoader : public UnitConversionManager::IConverterDataLoader, public std::enable_shared_from_this { public: UnitConverterDataLoader(Windows::Globalization::GeographicRegion ^ region); private: // IConverterDataLoader void LoadData() override; std::vector GetOrderedCategories() override; std::vector GetOrderedUnits(const UnitConversionManager::Category& c) override; std::unordered_map LoadOrderedRatios(const UnitConversionManager::Unit& unit) override; bool SupportsCategory(const UnitConversionManager::Category& target) override; // IConverterDataLoader void GetCategories(_In_ std::shared_ptr> categoriesList); void GetUnits(_In_ std::unordered_map>& unitMap); void GetConversionData(_In_ std::unordered_map>& categoryToUnitConversionMap); void GetExplicitConversionData(_In_ std::unordered_map>& unitToUnitConversionList); std::wstring GetLocalizedStringName(_In_ Platform::String ^ stringId); std::shared_ptr> m_categoryList; std::shared_ptr m_categoryIDToUnitsMap; std::shared_ptr m_ratioMap; Platform::String ^ m_currentRegionCode; }; } } ================================================ FILE: src/CalcViewModel/DateCalculatorViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "DateCalculatorViewModel.h" #include "Common/TraceLogger.h" #include "Common/LocalizationStringUtil.h" #include "Common/LocalizationService.h" #include "Common/LocalizationSettings.h" #include "Common/CopyPasteManager.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::DateCalculation; using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace Platform::Collections; using namespace std; using namespace Windows::ApplicationModel::Resources; using namespace Windows::Foundation; using namespace Windows::Globalization; using namespace Windows::Globalization::DateTimeFormatting; using namespace Windows::System::UserProfile; namespace { StringReference StrDateDiffResultPropertyName(L"StrDateDiffResult"); StringReference StrDateDiffResultAutomationNamePropertyName(L"StrDateDiffResultAutomationName"); StringReference StrDateDiffResultInDaysPropertyName(L"StrDateDiffResultInDays"); StringReference StrDateResultPropertyName(L"StrDateResult"); StringReference StrDateResultAutomationNamePropertyName(L"StrDateResultAutomationName"); StringReference IsDiffInDaysPropertyName(L"IsDiffInDays"); } DateCalculatorViewModel::DateCalculatorViewModel() : m_IsDateDiffMode(true) , m_IsAddMode(true) , m_isOutOfBound(false) , m_DaysOffset(0) , m_MonthsOffset(0) , m_YearsOffset(0) , m_StrDateDiffResult(L"") , m_StrDateDiffResultAutomationName(L"") , m_StrDateDiffResultInDays(L"") , m_StrDateResult(L"") , m_StrDateResultAutomationName(L"") { LocalizationSettings^ localizationSettings = LocalizationSettings::GetInstance(); // Initialize Date Output format instances InitializeDateOutputFormats(localizationSettings->GetCalendarIdentifier()); // Initialize Date Calc engine m_dateCalcEngine = ref new DateCalculationEngine(localizationSettings->GetCalendarIdentifier()); // Initialize dates of DatePicker controls to today's date auto calendar = ref new Calendar(); // We force the timezone to UTC, in order to avoid being affected by Daylight Saving Time // when we calculate the difference between 2 dates. calendar->ChangeTimeZone("UTC"); auto today = calendar->GetDateTime(); // FromDate and ToDate should be clipped (adjusted to a consistent hour in UTC) m_fromDate = m_toDate = ClipTime(today); // StartDate should not be clipped m_startDate = today; m_dateResult = today; // Initialize the list separator delimiter appended with a space at the end, e.g. ", " // This will be used for date difference formatting: Y years, M months, W weeks, D days m_listSeparator = localizationSettings->GetListSeparator() + L" "; // Initialize the output results UpdateDisplayResult(); m_offsetValues = ref new Vector(); for (int i = 0; i <= c_maxOffsetValue; i++) { wstring numberStr(to_wstring(i)); localizationSettings->LocalizeDisplayValue(&numberStr); m_offsetValues->Append(ref new String(numberStr.c_str())); } DayOfWeek trueDayOfWeek = calendar->DayOfWeek; DateTime clippedTime = ClipTime(today); calendar->SetDateTime(clippedTime); if (calendar->DayOfWeek != trueDayOfWeek) { calendar->SetDateTime(today); } } void DateCalculatorViewModel::OnPropertyChanged(_In_ String ^ prop) { if (prop == StrDateDiffResultPropertyName) { UpdateStrDateDiffResultAutomationName(); } else if (prop == StrDateResultPropertyName) { UpdateStrDateResultAutomationName(); } else if ( prop != StrDateDiffResultAutomationNamePropertyName && prop != StrDateDiffResultInDaysPropertyName && prop != StrDateResultAutomationNamePropertyName && prop != IsDiffInDaysPropertyName) { OnInputsChanged(); } } void DateCalculatorViewModel::OnInputsChanged() { if (m_IsDateDiffMode) { DateTime clippedFromDate = ClipTime(FromDate); DateTime clippedToDate = ClipTime(ToDate); // Calculate difference between two dates auto dateDiff = m_dateCalcEngine->TryGetDateDifference(clippedFromDate, clippedToDate, m_daysOutputFormat); if (dateDiff != nullptr) { DateDiffResultInDays = dateDiff->Value; dateDiff = m_dateCalcEngine->TryGetDateDifference(clippedFromDate, clippedToDate, m_allDateUnitsOutputFormat); if (dateDiff != nullptr) { DateDiffResult = dateDiff->Value; } else { // TryGetDateDifference wasn't able to calculate the difference in days/weeks/months/years, we will instead display the difference in days. DateDiffResult = DateDiffResultInDays; } } else { DateDiffResult = DateDifferenceUnknown; DateDiffResultInDays = DateDifferenceUnknown; } } else { DateDifference dateDiff; dateDiff.day = DaysOffset; dateDiff.month = MonthsOffset; dateDiff.year = YearsOffset; IBox ^ dateTimeResult; if (m_IsAddMode) { // Add number of Days, Months and Years to a Date dateTimeResult = m_dateCalcEngine->AddDuration(StartDate, dateDiff); } else { // Subtract number of Days, Months and Years from a Date dateTimeResult = m_dateCalcEngine->SubtractDuration(StartDate, dateDiff); } IsOutOfBound = dateTimeResult == nullptr; if (!m_isOutOfBound) { DateResult = dateTimeResult->Value; } } } void DateCalculatorViewModel::UpdateDisplayResult() { if (m_IsDateDiffMode) { if (m_dateDiffResultInDays == DateDifferenceUnknown) { IsDiffInDays = false; StrDateDiffResultInDays = L""; StrDateDiffResult = AppResourceProvider::GetInstance()->GetResourceString(L"CalculationFailed"); } else if (m_dateDiffResultInDays.day == 0) { // to and from dates the same IsDiffInDays = true; StrDateDiffResultInDays = L""; StrDateDiffResult = AppResourceProvider::GetInstance()->GetResourceString(L"Date_SameDates"); } else if (m_dateDiffResult == DateDifferenceUnknown || (m_dateDiffResult.year == 0 && m_dateDiffResult.month == 0 && m_dateDiffResult.week == 0)) { IsDiffInDays = true; StrDateDiffResultInDays = L""; // Display result in number of days StrDateDiffResult = GetDateDiffStringInDays(); } else { IsDiffInDays = false; // Display result in days, weeks, months and years StrDateDiffResult = GetDateDiffString(); // Display result in number of days StrDateDiffResultInDays = GetDateDiffStringInDays(); } } else { if (m_isOutOfBound) { // Display Date out of bound message StrDateResult = AppResourceProvider::GetInstance()->GetResourceString(L"Date_OutOfBoundMessage"); } else { // Display the resulting date in long format StrDateResult = m_dateTimeFormatter->Format(DateResult); } } } void DateCalculatorViewModel::UpdateStrDateDiffResultAutomationName() { String ^ automationFormat = AppResourceProvider::GetInstance()->GetResourceString(L"Date_DifferenceResultAutomationName"); StrDateDiffResultAutomationName = LocalizationStringUtil::GetLocalizedString(automationFormat, StrDateDiffResult); } void DateCalculatorViewModel::UpdateStrDateResultAutomationName() { String ^ automationFormat = AppResourceProvider::GetInstance()->GetResourceString(L"Date_ResultingDateAutomationName"); StrDateResultAutomationName = LocalizationStringUtil::GetLocalizedString(automationFormat, StrDateResult); } void DateCalculatorViewModel::InitializeDateOutputFormats(_In_ String ^ calendarIdentifier) { // Format for Add/Subtract days m_dateTimeFormatter = LocalizationService::GetInstance()->GetRegionalSettingsAwareDateTimeFormatter( L"longdate", calendarIdentifier, ClockIdentifiers::TwentyFourHour); // Clock Identifier is not used // Format for Date Difference m_allDateUnitsOutputFormat = DateUnit::Year | DateUnit::Month | DateUnit::Week | DateUnit::Day; m_daysOutputFormat = DateUnit::Day; } String ^ DateCalculatorViewModel::GetDateDiffString() const { wstring result; bool addDelimiter = false; AppResourceProvider ^ resourceLoader = AppResourceProvider::GetInstance(); auto yearCount = m_dateDiffResult.year; if (yearCount > 0) { result += GetLocalizedNumberString(yearCount)->Data(); result += L' '; if (yearCount > 1) { result += resourceLoader->GetResourceString(L"Date_Years")->Data(); } else { result += resourceLoader->GetResourceString(L"Date_Year")->Data(); } // set the flags to add a delimiter whenever the next unit is added addDelimiter = true; } auto monthCount = m_dateDiffResult.month; if (monthCount > 0) { if (addDelimiter) { result += m_listSeparator; } else { addDelimiter = true; } result += GetLocalizedNumberString(monthCount)->Data(); result += L' '; if (monthCount > 1) { result += resourceLoader->GetResourceString(L"Date_Months")->Data(); } else { result += resourceLoader->GetResourceString(L"Date_Month")->Data(); } } auto weekCount = m_dateDiffResult.week; if (weekCount > 0) { if (addDelimiter) { result += m_listSeparator; } else { addDelimiter = true; } result += GetLocalizedNumberString(weekCount)->Data(); result += L' '; if (weekCount > 1) { result += resourceLoader->GetResourceString(L"Date_Weeks")->Data(); } else { result += resourceLoader->GetResourceString(L"Date_Week")->Data(); } } auto dayCount = m_dateDiffResult.day; if (dayCount > 0) { if (addDelimiter) { result += m_listSeparator; } else { addDelimiter = true; } result += GetLocalizedNumberString(dayCount)->Data(); result += L' '; if (dayCount > 1) { result += resourceLoader->GetResourceString(L"Date_Days")->Data(); } else { result += resourceLoader->GetResourceString(L"Date_Day")->Data(); } } return ref new String(result.data()); } String ^ DateCalculatorViewModel::GetDateDiffStringInDays() const { wstring result = GetLocalizedNumberString(m_dateDiffResultInDays.day)->Data(); result += L' '; // Display the result as '1 day' or 'N days' if (m_dateDiffResultInDays.day > 1) { result += AppResourceProvider::GetInstance()->GetResourceString(L"Date_Days")->Data(); } else { result += AppResourceProvider::GetInstance()->GetResourceString(L"Date_Day")->Data(); } return ref new String(result.data()); } void DateCalculatorViewModel::OnCopyCommand(Platform::Object ^ parameter) { if (m_IsDateDiffMode) { CopyPasteManager::CopyToClipboard(m_StrDateDiffResult); } else { CopyPasteManager::CopyToClipboard(m_StrDateResult); } } String ^ DateCalculatorViewModel::GetLocalizedNumberString(int value) const { wstring numberStr(to_wstring(value)); LocalizationSettings::GetInstance()->LocalizeDisplayValue(&numberStr); return ref new String(numberStr.c_str()); } /// /// Adjusts the given DateTime to 12AM of the same day /// /// DateTime to clip /// Adjust the datetime using local time (by default adjust using UTC time) DateTime DateCalculatorViewModel::ClipTime(DateTime dateTime, bool adjustUsingLocalTime) { DateTime referenceDateTime; if (adjustUsingLocalTime) { FILETIME fileTime; fileTime.dwLowDateTime = (DWORD)(dateTime.UniversalTime & 0xffffffff); fileTime.dwHighDateTime = (DWORD)(dateTime.UniversalTime >> 32); FILETIME localFileTime; FileTimeToLocalFileTime(&fileTime, &localFileTime); referenceDateTime.UniversalTime = (DWORD)localFileTime.dwHighDateTime; referenceDateTime.UniversalTime <<= 32; referenceDateTime.UniversalTime |= (DWORD)localFileTime.dwLowDateTime; } else { referenceDateTime = dateTime; } auto calendar = ref new Calendar(); calendar->ChangeTimeZone("UTC"); calendar->SetDateTime(referenceDateTime); calendar->Period = calendar->FirstPeriodInThisDay; calendar->Hour = calendar->FirstHourInThisPeriod; calendar->Minute = 0; calendar->Second = 0; calendar->Nanosecond = 0; return calendar->GetDateTime(); } ================================================ FILE: src/CalcViewModel/DateCalculatorViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Common/Utils.h" #include "Common/DateCalculator.h" const int c_maxOffsetValue = 999; namespace CalculatorApp { namespace ViewModel { [Windows::UI::Xaml::Data::Bindable] public ref class DateCalculatorViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: DateCalculatorViewModel(); OBSERVABLE_OBJECT_CALLBACK(OnPropertyChanged); // Input Properties OBSERVABLE_PROPERTY_RW(bool, IsDateDiffMode); OBSERVABLE_PROPERTY_RW(bool, IsAddMode); OBSERVABLE_PROPERTY_R(bool, IsDiffInDays); // If diff is only in days or the dates are the same, // then show only one result and avoid redundancy OBSERVABLE_PROPERTY_RW(int, DaysOffset); OBSERVABLE_PROPERTY_RW(int, MonthsOffset); OBSERVABLE_PROPERTY_RW(int, YearsOffset); // Read only property for offset values property Windows::Foundation::Collections::IVector^ OffsetValues { Windows::Foundation::Collections::IVector^ get() { return m_offsetValues; } } // From date for Date Diff property Windows::Foundation::DateTime FromDate { Windows::Foundation::DateTime get() { return m_fromDate; } void set(Windows::Foundation::DateTime value) { if (m_fromDate.UniversalTime != value.UniversalTime) { m_fromDate = value; RaisePropertyChanged("FromDate"); } } } // To date for Date Diff property Windows::Foundation::DateTime ToDate { Windows::Foundation::DateTime get() { return m_toDate; } void set(Windows::Foundation::DateTime value) { if (m_toDate.UniversalTime != value.UniversalTime) { m_toDate = value; RaisePropertyChanged("ToDate"); } } } // Start date for Add/Subtract date property Windows::Foundation::DateTime StartDate { Windows::Foundation::DateTime get() { return m_startDate; } void set(Windows::Foundation::DateTime value) { if (m_startDate.UniversalTime != value.UniversalTime) { m_startDate = value; RaisePropertyChanged("StartDate"); } } } // Output Properties OBSERVABLE_PROPERTY_R(Platform::String ^, StrDateDiffResult); OBSERVABLE_PROPERTY_R(Platform::String ^, StrDateDiffResultAutomationName); OBSERVABLE_PROPERTY_R(Platform::String ^, StrDateDiffResultInDays); OBSERVABLE_PROPERTY_R(Platform::String ^, StrDateResult); OBSERVABLE_PROPERTY_R(Platform::String ^, StrDateResultAutomationName); COMMAND_FOR_METHOD(CopyCommand, DateCalculatorViewModel::OnCopyCommand); void OnCopyCommand(Platform::Object ^ parameter); private: void OnPropertyChanged(_In_ Platform::String ^ prop); void OnInputsChanged(); void UpdateDisplayResult(); void UpdateStrDateDiffResultAutomationName(); void UpdateStrDateResultAutomationName(); void InitializeDateOutputFormats(Platform::String ^ calendarIdentifier); Platform::String ^ GetDateDiffString() const; Platform::String ^ GetDateDiffStringInDays() const; Platform::String ^ GetLocalizedNumberString(int value) const; static Windows::Foundation::DateTime ClipTime(Windows::Foundation::DateTime dateTime, bool adjustUsingLocalTime = false); property bool IsOutOfBound { bool get() { return m_isOutOfBound; } void set(bool value) { m_isOutOfBound = value; UpdateDisplayResult(); } } property CalculatorApp::ViewModel::Common::DateCalculation::DateDifference DateDiffResult { CalculatorApp::ViewModel::Common::DateCalculation::DateDifference get() { return m_dateDiffResult; } void set(CalculatorApp::ViewModel::Common::DateCalculation::DateDifference value) { m_dateDiffResult = value; UpdateDisplayResult(); } } property CalculatorApp::ViewModel::Common::DateCalculation::DateDifference DateDiffResultInDays { CalculatorApp::ViewModel::Common::DateCalculation::DateDifference get() { return m_dateDiffResultInDays; } void set(CalculatorApp::ViewModel::Common::DateCalculation::DateDifference value) { m_dateDiffResultInDays = value; UpdateDisplayResult(); } } property Windows::Foundation::DateTime DateResult { Windows::Foundation::DateTime get() { return m_dateResult; } void set(Windows::Foundation::DateTime value) { m_dateResult = value; UpdateDisplayResult(); } } private: // Property variables bool m_isOutOfBound; Platform::Collections::Vector ^ m_offsetValues; Windows::Foundation::DateTime m_fromDate; Windows::Foundation::DateTime m_toDate; Windows::Foundation::DateTime m_startDate; Windows::Foundation::DateTime m_dateResult; CalculatorApp::ViewModel::Common::DateCalculation::DateDifference m_dateDiffResult; CalculatorApp::ViewModel::Common::DateCalculation::DateDifference m_dateDiffResultInDays; // Private members CalculatorApp::ViewModel::Common::DateCalculation::DateCalculationEngine ^ m_dateCalcEngine; CalculatorApp::ViewModel::Common::DateCalculation::DateUnit m_daysOutputFormat; CalculatorApp::ViewModel::Common::DateCalculation::DateUnit m_allDateUnitsOutputFormat; Windows::Globalization::DateTimeFormatting::DateTimeFormatter ^ m_dateTimeFormatter; std::wstring m_listSeparator; }; } } ================================================ FILE: src/CalcViewModel/GraphingCalculator/EquationViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "EquationViewModel.h" #include "CalcViewModel\Common\LocalizationSettings.h" #include "CalcViewModel\GraphingCalculatorEnums.h" using namespace CalculatorApp::ViewModel::Common; using namespace Graphing; using namespace Platform; using namespace Platform::Collections; using namespace std; using namespace Windows::ApplicationModel::Resources; using namespace Windows::UI; using namespace Windows::UI::Xaml; using namespace Windows::Foundation::Collections; using namespace GraphControl; namespace CalculatorApp::ViewModel { GridDisplayItems::GridDisplayItems() : m_Expression{ "" } , m_Direction{ "" } { } KeyGraphFeaturesItem::KeyGraphFeaturesItem() : m_Title{ "" } , m_DisplayItems{ ref new Vector() } , m_GridItems{ ref new Vector() } , m_IsText{ false } { } EquationViewModel::EquationViewModel(Equation ^ equation, int functionLabelIndex, Windows::UI::Color color, int colorIndex) : m_AnalysisErrorVisible{ false } , m_FunctionLabelIndex{ functionLabelIndex } , m_KeyGraphFeaturesItems{ ref new Vector() } , m_resourceLoader{ ::ResourceLoader::GetForCurrentView() } { if (equation == nullptr) { throw ref new InvalidArgumentException(L"Equation cannot be null"); } GraphEquation = equation; LineColor = color; LineColorIndex = colorIndex; IsLineEnabled = true; } void EquationViewModel::PopulateKeyGraphFeatures(KeyGraphFeaturesInfo ^ graphEquation) { if (graphEquation->AnalysisError != 0) { AnalysisErrorVisible = true; if (graphEquation->AnalysisError == static_cast(AnalysisErrorType::AnalysisCouldNotBePerformed)) { AnalysisErrorString = m_resourceLoader->GetString(L"KGFAnalysisCouldNotBePerformed"); } else if (graphEquation->AnalysisError == static_cast(AnalysisErrorType::AnalysisNotSupported)) { AnalysisErrorString = m_resourceLoader->GetString(L"KGFAnalysisNotSupported"); } else if (graphEquation->AnalysisError == static_cast(AnalysisErrorType::VariableIsNotX)) { AnalysisErrorString = m_resourceLoader->GetString(L"KGFVariableIsNotX"); } return; } KeyGraphFeaturesItems->Clear(); AddKeyGraphFeature(m_resourceLoader->GetString(L"Domain"), graphEquation->Domain, m_resourceLoader->GetString(L"KGFDomainNone")); AddKeyGraphFeature(m_resourceLoader->GetString(L"Range"), graphEquation->Range, m_resourceLoader->GetString(L"KGFRangeNone")); AddKeyGraphFeature(m_resourceLoader->GetString(L"XIntercept"), graphEquation->XIntercept, m_resourceLoader->GetString(L"KGFXInterceptNone")); AddKeyGraphFeature(m_resourceLoader->GetString(L"YIntercept"), graphEquation->YIntercept, m_resourceLoader->GetString(L"KGFYInterceptNone")); AddKeyGraphFeature(m_resourceLoader->GetString(L"Minima"), graphEquation->Minima, m_resourceLoader->GetString(L"KGFMinimaNone")); AddKeyGraphFeature(m_resourceLoader->GetString(L"Maxima"), graphEquation->Maxima, m_resourceLoader->GetString(L"KGFMaximaNone")); AddKeyGraphFeature( m_resourceLoader->GetString(L"InflectionPoints"), graphEquation->InflectionPoints, m_resourceLoader->GetString(L"KGFInflectionPointsNone")); AddKeyGraphFeature( m_resourceLoader->GetString(L"VerticalAsymptotes"), graphEquation->VerticalAsymptotes, m_resourceLoader->GetString(L"KGFVerticalAsymptotesNone")); AddKeyGraphFeature( m_resourceLoader->GetString(L"HorizontalAsymptotes"), graphEquation->HorizontalAsymptotes, m_resourceLoader->GetString(L"KGFHorizontalAsymptotesNone")); AddKeyGraphFeature( m_resourceLoader->GetString(L"ObliqueAsymptotes"), graphEquation->ObliqueAsymptotes, m_resourceLoader->GetString(L"KGFObliqueAsymptotesNone")); AddParityKeyGraphFeature(graphEquation); AddPeriodicityKeyGraphFeature(graphEquation); AddMonotoncityKeyGraphFeature(graphEquation); AddTooComplexKeyGraphFeature(graphEquation); AnalysisErrorVisible = false; } void EquationViewModel::AddKeyGraphFeature(String ^ title, String ^ expression, String ^ errorString) { KeyGraphFeaturesItem ^ item = ref new KeyGraphFeaturesItem(); item->Title = title; if (expression != L"") { item->DisplayItems->Append(expression); item->IsText = false; } else { item->DisplayItems->Append(errorString); item->IsText = true; } KeyGraphFeaturesItems->Append(item); } void EquationViewModel::AddKeyGraphFeature(String ^ title, IVector ^ expressionVector, String ^ errorString) { KeyGraphFeaturesItem ^ item = ref new KeyGraphFeaturesItem(); item->Title = title; if (expressionVector->Size != 0) { for (auto expression : expressionVector) { item->DisplayItems->Append(expression); } item->IsText = false; } else { item->DisplayItems->Append(errorString); item->IsText = true; } KeyGraphFeaturesItems->Append(item); } void EquationViewModel::AddParityKeyGraphFeature(KeyGraphFeaturesInfo ^ graphEquation) { KeyGraphFeaturesItem ^ parityItem = ref new KeyGraphFeaturesItem(); parityItem->Title = m_resourceLoader->GetString(L"Parity"); switch (graphEquation->Parity) { case 0: parityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFParityUnknown")); break; case 1: parityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFParityOdd")); break; case 2: parityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFParityEven")); break; case 3: parityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFParityNeither")); break; default: parityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFParityUnknown")); } parityItem->IsText = true; KeyGraphFeaturesItems->Append(parityItem); } void EquationViewModel::AddPeriodicityKeyGraphFeature(KeyGraphFeaturesInfo ^ graphEquation) { KeyGraphFeaturesItem ^ periodicityItem = ref new KeyGraphFeaturesItem(); periodicityItem->Title = m_resourceLoader->GetString(L"Periodicity"); switch (graphEquation->PeriodicityDirection) { case 0: // Periodicity is not supported or is too complex to calculate. // Return out of this function without adding periodicity to KeyGraphFeatureItems. // SetTooComplexFeaturesErrorProperty will set the too complex error when periodicity is supported and unknown return; case 1: if (graphEquation->PeriodicityExpression == L"") { periodicityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFPeriodicityUnknown")); periodicityItem->IsText = true; } else { periodicityItem->DisplayItems->Append(graphEquation->PeriodicityExpression); periodicityItem->IsText = false; } break; case 2: periodicityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFPeriodicityNotPeriodic")); periodicityItem->IsText = false; break; default: periodicityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFPeriodicityError")); periodicityItem->IsText = true; } KeyGraphFeaturesItems->Append(periodicityItem); } void EquationViewModel::AddMonotoncityKeyGraphFeature(KeyGraphFeaturesInfo ^ graphEquation) { KeyGraphFeaturesItem ^ monotonicityItem = ref new KeyGraphFeaturesItem(); monotonicityItem->Title = m_resourceLoader->GetString(L"Monotonicity"); if (graphEquation->Monotonicity->Size != 0) { for (auto item : graphEquation->Monotonicity) { GridDisplayItems ^ gridItem = ref new GridDisplayItems(); gridItem->Expression = item->Key; auto monotonicityType = item->Value->Data(); switch (*monotonicityType) { case '0': gridItem->Direction = m_resourceLoader->GetString(L"KGFMonotonicityUnknown"); break; case '1': gridItem->Direction = m_resourceLoader->GetString(L"KGFMonotonicityIncreasing"); break; case '2': gridItem->Direction = m_resourceLoader->GetString(L"KGFMonotonicityDecreasing"); break; case '3': gridItem->Direction = m_resourceLoader->GetString(L"KGFMonotonicityConstant"); break; default: gridItem->Direction = m_resourceLoader->GetString(L"KGFMonotonicityError"); break; } monotonicityItem->GridItems->Append(gridItem); } monotonicityItem->IsText = false; } else { monotonicityItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFMonotonicityError")); monotonicityItem->IsText = true; } KeyGraphFeaturesItems->Append(monotonicityItem); } void EquationViewModel::AddTooComplexKeyGraphFeature(KeyGraphFeaturesInfo ^ graphEquation) { if (graphEquation->TooComplexFeatures <= 0) { return; } Platform::String ^ separator = ref new String(LocalizationSettings::GetInstance()->GetListSeparator().c_str()); wstring error; if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Domain) == KeyGraphFeaturesFlag::Domain) { error.append((m_resourceLoader->GetString(L"Domain") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Range) == KeyGraphFeaturesFlag::Range) { error.append((m_resourceLoader->GetString(L"Range") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Zeros) == KeyGraphFeaturesFlag::Zeros) { error.append((m_resourceLoader->GetString(L"XIntercept") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::YIntercept) == KeyGraphFeaturesFlag::YIntercept) { error.append((m_resourceLoader->GetString(L"YIntercept") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Parity) == KeyGraphFeaturesFlag::Parity) { error.append((m_resourceLoader->GetString(L"Parity") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Periodicity) == KeyGraphFeaturesFlag::Periodicity) { error.append((m_resourceLoader->GetString(L"Periodicity") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Minima) == KeyGraphFeaturesFlag::Minima) { error.append((m_resourceLoader->GetString(L"Minima") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::Maxima) == KeyGraphFeaturesFlag::Maxima) { error.append((m_resourceLoader->GetString(L"Maxima") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::InflectionPoints) == KeyGraphFeaturesFlag::InflectionPoints) { error.append((m_resourceLoader->GetString(L"InflectionPoints") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::VerticalAsymptotes) == KeyGraphFeaturesFlag::VerticalAsymptotes) { error.append((m_resourceLoader->GetString(L"VerticalAsymptotes") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::HorizontalAsymptotes) == KeyGraphFeaturesFlag::HorizontalAsymptotes) { error.append((m_resourceLoader->GetString(L"HorizontalAsymptotes") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::ObliqueAsymptotes) == KeyGraphFeaturesFlag::ObliqueAsymptotes) { error.append((m_resourceLoader->GetString(L"ObliqueAsymptotes") + separator + L" ")->Data()); } if ((graphEquation->TooComplexFeatures & KeyGraphFeaturesFlag::MonotoneIntervals) == KeyGraphFeaturesFlag::MonotoneIntervals) { error.append((m_resourceLoader->GetString(L"Monotonicity") + separator + L" ")->Data()); } KeyGraphFeaturesItem ^ tooComplexItem = ref new KeyGraphFeaturesItem(); tooComplexItem->DisplayItems->Append(m_resourceLoader->GetString(L"KGFTooComplexFeaturesError")); tooComplexItem->DisplayItems->Append(ref new String(error.substr(0, (error.length() - (separator->Length() + 1))).c_str())); tooComplexItem->IsText = true; KeyGraphFeaturesItems->Append(tooComplexItem); } String ^ EquationViewModel::EquationErrorText(ErrorType errorType, int errorCode) { auto resLoader = ResourceLoader::GetForCurrentView(); if (errorType == ::ErrorType::Evaluation) { switch (static_cast(errorCode)) { case (EvaluationErrorCode::Overflow): return resLoader->GetString(L"Overflow"); break; case (EvaluationErrorCode::RequireRadiansMode): return resLoader->GetString(L"RequireRadiansMode"); break; case (EvaluationErrorCode::TooComplexToSolve): return resLoader->GetString(L"TooComplexToSolve"); break; case (EvaluationErrorCode::RequireDegreesMode): return resLoader->GetString(L"RequireDegreesMode"); break; case (EvaluationErrorCode::FactorialInvalidArgument): case (EvaluationErrorCode::Factorial2InvalidArgument): return resLoader->GetString(L"FactorialInvalidArgument"); break; case (EvaluationErrorCode::FactorialCannotPerformOnLargeNumber): return resLoader->GetString(L"FactorialCannotPerformOnLargeNumber"); break; case (EvaluationErrorCode::ModuloCannotPerformOnFloat): return resLoader->GetString(L"ModuloCannotPerformOnFloat"); break; case (EvaluationErrorCode::EquationTooComplexToSolve): case (EvaluationErrorCode::EquationTooComplexToSolveSymbolic): case (EvaluationErrorCode::EquationTooComplexToPlot): case (EvaluationErrorCode::InequalityTooComplexToSolve): case (EvaluationErrorCode::GE_TooComplexToSolve): return resLoader->GetString(L"TooComplexToSolve"); break; case (EvaluationErrorCode::EquationHasNoSolution): case (EvaluationErrorCode::InequalityHasNoSolution): return resLoader->GetString(L"EquationHasNoSolution"); break; case (EvaluationErrorCode::DivideByZero): return resLoader->GetString(L"DivideByZero"); break; case (EvaluationErrorCode::MutuallyExclusiveConditions): return resLoader->GetString(L"MutuallyExclusiveConditions"); break; case (EvaluationErrorCode::OutOfDomain): return resLoader->GetString(L"OutOfDomain"); break; case (EvaluationErrorCode::GE_NotSupported): return resLoader->GetString(L"GE_NotSupported"); break; default: return resLoader->GetString(L"GeneralError"); break; } } else if (errorType == ::ErrorType::Syntax) { switch (static_cast(errorCode)) { case (SyntaxErrorCode::ParenthesisMismatch): return resLoader->GetString(L"ParenthesisMismatch"); break; case (SyntaxErrorCode::UnmatchedParenthesis): return resLoader->GetString(L"UnmatchedParenthesis"); break; case (SyntaxErrorCode::TooManyDecimalPoints): return resLoader->GetString(L"TooManyDecimalPoints"); break; case (SyntaxErrorCode::DecimalPointWithoutDigits): return resLoader->GetString(L"DecimalPointWithoutDigits"); break; case (SyntaxErrorCode::UnexpectedEndOfExpression): return resLoader->GetString(L"UnexpectedEndOfExpression"); break; case (SyntaxErrorCode::UnexpectedToken): return resLoader->GetString(L"UnexpectedToken"); break; case (SyntaxErrorCode::InvalidToken): return resLoader->GetString(L"InvalidToken"); break; case (SyntaxErrorCode::TooManyEquals): return resLoader->GetString(L"TooManyEquals"); break; case (SyntaxErrorCode::EqualWithoutGraphVariable): return resLoader->GetString(L"EqualWithoutGraphVariable"); break; case (SyntaxErrorCode::InvalidEquationSyntax): case (SyntaxErrorCode::InvalidEquationFormat): return resLoader->GetString(L"InvalidEquationSyntax"); break; case (SyntaxErrorCode::EmptyExpression): return resLoader->GetString(L"EmptyExpression"); break; case (SyntaxErrorCode::EqualWithoutEquation): return resLoader->GetString(L"EqualWithoutEquation"); break; case (SyntaxErrorCode::ExpectParenthesisAfterFunctionName): return resLoader->GetString(L"ExpectParenthesisAfterFunctionName"); break; case (SyntaxErrorCode::IncorrectNumParameter): return resLoader->GetString(L"IncorrectNumParameter"); break; case (SyntaxErrorCode::InvalidVariableNameFormat): return resLoader->GetString(L"InvalidVariableNameFormat"); break; case (SyntaxErrorCode::BracketMismatch): return resLoader->GetString(L"BracketMismatch"); break; case (SyntaxErrorCode::UnmatchedBracket): return resLoader->GetString(L"UnmatchedBracket"); break; case (SyntaxErrorCode::CannotUseIInReal): return resLoader->GetString(L"CannotUseIInReal"); break; case (SyntaxErrorCode::InvalidNumberDigit): return resLoader->GetString(L"InvalidNumberDigit"); break; case (SyntaxErrorCode::InvalidNumberBase): return resLoader->GetString(L"InvalidNumberBase"); break; case (SyntaxErrorCode::InvalidVariableSpecification): return resLoader->GetString(L"InvalidVariableSpecification"); break; case (SyntaxErrorCode::ExpectingLogicalOperands): case (SyntaxErrorCode::ExpectingScalarOperands): return resLoader->GetString(L"ExpectingLogicalOperands"); break; case (SyntaxErrorCode::CannotUseIndexVarInOpLimits): return resLoader->GetString(L"CannotUseIndexVarInOpLimits"); break; case (SyntaxErrorCode::CannotUseIndexVarInLimPoint): return resLoader->GetString(L"Overflow"); break; case (SyntaxErrorCode::CannotUseComplexInfinityInReal): return resLoader->GetString(L"CannotUseComplexInfinityInReal"); break; case (SyntaxErrorCode::CannotUseIInInequalitySolving): return resLoader->GetString(L"CannotUseIInInequalitySolving"); break; default: return resLoader->GetString(L"GeneralError"); break; } } return resLoader->GetString(L"GeneralError"); } } ================================================ FILE: src/CalcViewModel/GraphingCalculator/EquationViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "../Common/Utils.h" namespace GraphControl { ref class Equation; ref class KeyGraphFeaturesInfo; } namespace CalculatorApp::ViewModel { public ref class GridDisplayItems sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: GridDisplayItems(); OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Expression); OBSERVABLE_PROPERTY_RW(Platform::String ^, Direction); }; public ref class KeyGraphFeaturesItem sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: KeyGraphFeaturesItem(); OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Title); OBSERVABLE_PROPERTY_RW(Windows::Foundation::Collections::IObservableVector ^, DisplayItems); OBSERVABLE_PROPERTY_RW(Windows::Foundation::Collections::IObservableVector ^, GridItems); OBSERVABLE_PROPERTY_RW(bool, IsText); }; public ref class EquationViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: EquationViewModel(GraphControl::Equation ^ equation, int functionLabelIndex, Windows::UI::Color color, int colorIndex); OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(GraphControl::Equation ^, GraphEquation); OBSERVABLE_PROPERTY_RW(int, FunctionLabelIndex); OBSERVABLE_PROPERTY_RW(bool, IsLastItemInList); PROPERTY_RW(int, LineColorIndex); property Platform::String ^ Expression { Platform::String ^ get() { return GraphEquation->Expression; } void set(Platform::String ^ value) { if (GraphEquation->Expression != value) { GraphEquation->Expression = value; RaisePropertyChanged("Expression"); } } } property Windows::UI::Color LineColor { Windows::UI::Color get() { return GraphEquation->LineColor; } void set(Windows::UI::Color value) { if (!Utils::AreColorsEqual(GraphEquation->LineColor, value)) { GraphEquation->LineColor = value; RaisePropertyChanged("LineColor"); } } } property bool IsLineEnabled { bool get() { return GraphEquation->IsLineEnabled; } void set(bool value) { if (GraphEquation->IsLineEnabled != value) { GraphEquation->IsLineEnabled = value; RaisePropertyChanged("IsLineEnabled"); } } } // Key Graph Features OBSERVABLE_PROPERTY_R(Platform::String ^, AnalysisErrorString); OBSERVABLE_PROPERTY_R(bool, AnalysisErrorVisible); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, KeyGraphFeaturesItems) void PopulateKeyGraphFeatures(GraphControl::KeyGraphFeaturesInfo ^ info); static Platform::String ^ EquationErrorText(GraphControl::ErrorType errorType, int errorCode); private: void AddKeyGraphFeature(Platform::String ^ title, Platform::String ^ expression, Platform::String ^ errorString); void AddKeyGraphFeature( Platform::String ^ title, Windows::Foundation::Collections::IVector ^ expressionVector, Platform::String ^ errorString); void AddParityKeyGraphFeature(GraphControl::KeyGraphFeaturesInfo ^ info); void AddPeriodicityKeyGraphFeature(GraphControl::KeyGraphFeaturesInfo ^ info); void AddMonotoncityKeyGraphFeature(GraphControl::KeyGraphFeaturesInfo ^ info); void AddTooComplexKeyGraphFeature(GraphControl::KeyGraphFeaturesInfo ^ info); Windows::Foundation::Collections::IObservableMap ^ m_Monotonicity; Windows::ApplicationModel::Resources::ResourceLoader ^ m_resourceLoader; }; } ================================================ FILE: src/CalcViewModel/GraphingCalculator/GraphingCalculatorViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "GraphingCalculatorViewModel.h" using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace Platform::Collections; using namespace Windows::Foundation; using namespace Windows::Foundation::Collections; using namespace Windows::UI::Xaml::Data; using namespace GraphControl; namespace CalculatorApp::ViewModel { GraphingCalculatorViewModel::GraphingCalculatorViewModel() : m_IsDecimalEnabled{ true } , m_Equations{ ref new Vector() } , m_Variables{ ref new Vector() } { } void GraphingCalculatorViewModel::OnButtonPressed(Object ^ parameter) { } void GraphingCalculatorViewModel::UpdateVariables(IMap ^ variables) { Variables->Clear(); for (auto variablePair : variables) { auto variable = ref new VariableViewModel(variablePair->Key, variablePair->Value); variable->VariableUpdated += ref new EventHandler([this, variable](Object ^ sender, VariableChangedEventArgs e) { VariableUpdated(variable, VariableChangedEventArgs{ e.variableName, e.newValue }); }); Variables->Append(variable); } } void GraphingCalculatorViewModel::SetSelectedEquation(EquationViewModel ^ equation) { SelectedEquation = equation; } } ================================================ FILE: src/CalcViewModel/GraphingCalculator/GraphingCalculatorViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "../Common/Utils.h" #include "EquationViewModel.h" #include "VariableViewModel.h" namespace CalculatorApp::ViewModel { [Windows::UI::Xaml::Data::Bindable] public ref class GraphingCalculatorViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: GraphingCalculatorViewModel(); OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(bool, IsDecimalEnabled); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, Equations); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, Variables); OBSERVABLE_PROPERTY_R(EquationViewModel ^, SelectedEquation); COMMAND_FOR_METHOD(ButtonPressed, GraphingCalculatorViewModel::OnButtonPressed); event Windows::Foundation::EventHandler ^ VariableUpdated; void UpdateVariables(Windows::Foundation::Collections::IMap ^ variables); void SetSelectedEquation(EquationViewModel ^ equation); private: void OnButtonPressed(Platform::Object ^ parameter); }; } ================================================ FILE: src/CalcViewModel/GraphingCalculator/GraphingSettingsViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "GraphingSettingsViewModel.h" using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::Common; using namespace GraphControl; using namespace std; using namespace Platform; using namespace Windows::UI::Xaml; GraphingSettingsViewModel::GraphingSettingsViewModel() : m_XMinValue(0) , m_XMaxValue(0) , m_YMinValue(0) , m_YMaxValue(0) , m_XMinError(false) , m_XMaxError(false) , m_YMinError(false) , m_YMaxError(false) , m_dontUpdateDisplayRange() , m_XIsMinLastChanged(true) , m_YIsMinLastChanged(true) { } void GraphingSettingsViewModel::SetGrapher(Grapher ^ grapher) { if (grapher != nullptr) { if (grapher->TrigUnitMode == (int)Graphing::EvalTrigUnitMode::Invalid) { grapher->TrigUnitMode = (int)Graphing::EvalTrigUnitMode::Radians; } } Graph = grapher; InitRanges(); RaisePropertyChanged(L"TrigUnit"); } void GraphingSettingsViewModel::InitRanges() { double xMin = 0, xMax = 0, yMin = 0, yMax = 0; if (m_Graph != nullptr) { m_Graph->GetDisplayRanges(&xMin, &xMax, &yMin, &yMax); } m_dontUpdateDisplayRange = true; m_XMinValue = xMin; m_XMaxValue = xMax; m_YMinValue = yMin; m_YMaxValue = yMax; std::wostringstream xMinStr; xMinStr << m_XMinValue; XMin = ref new String(xMinStr.str().c_str()); std::wostringstream xMaxStr; xMaxStr << m_XMaxValue; XMax = ref new String(xMaxStr.str().c_str()); std::wostringstream yMinStr; yMinStr << m_YMinValue; YMin = ref new String(yMinStr.str().c_str()); std::wostringstream yMaxStr; yMaxStr << m_YMaxValue; YMax = ref new String(yMaxStr.str().c_str()); m_dontUpdateDisplayRange = false; } void GraphingSettingsViewModel::ResetView() { if (m_Graph != nullptr) { m_Graph->ResetGrid(); InitRanges(); m_XMinError = false; m_XMaxError = false; m_YMinError = false; m_YMaxError = false; RaisePropertyChanged("XError"); RaisePropertyChanged("XMin"); RaisePropertyChanged("XMax"); RaisePropertyChanged("YError"); RaisePropertyChanged("YMin"); RaisePropertyChanged("YMax"); } } void GraphingSettingsViewModel::UpdateDisplayRange() { if (m_Graph == nullptr || m_dontUpdateDisplayRange || HasError()) { return; } m_Graph->SetDisplayRanges(m_XMinValue, m_XMaxValue, m_YMinValue, m_YMaxValue); CalculatorApp::ViewModel::Common::TraceLogger::GetInstance()->LogGraphSettingsChanged(GraphSettingsType::Grid, L""); } bool GraphingSettingsViewModel::HasError() { return m_XMinError || m_YMinError || m_XMaxError || m_YMaxError || XError || YError; } ================================================ FILE: src/CalcViewModel/GraphingCalculator/GraphingSettingsViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "../Common/Utils.h" #include "CalcViewModel/Common/TraceLogger.h" namespace CalculatorApp::ViewModel { #pragma once [Windows::UI::Xaml::Data::Bindable] public ref class GraphingSettingsViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(bool, YMinError); OBSERVABLE_PROPERTY_R(bool, XMinError); OBSERVABLE_PROPERTY_R(bool, XMaxError); OBSERVABLE_PROPERTY_R(bool, YMaxError); OBSERVABLE_PROPERTY_R(GraphControl::Grapher ^, Graph); GraphingSettingsViewModel(); property bool XError { bool get() { return !m_XMinError && !m_XMaxError && m_XMinValue >= m_XMaxValue; } } property bool YError { bool get() { return !m_YMinError && !m_YMaxError && m_YMinValue >= m_YMaxValue; } } property Platform::String ^ XMin { Platform::String ^ get() { return m_XMin; } void set(Platform::String ^ value) { if (m_XMin == value) { return; } m_XMin = value; m_XIsMinLastChanged = true; if (m_Graph != nullptr) { std::wistringstream input(value->Data()); double number; if (input >> number && input.eof()) { m_Graph->XAxisMin = m_XMinValue = number; XMinError = false; } else { XMinError = true; } } RaisePropertyChanged("XError"); RaisePropertyChanged("XMin"); UpdateDisplayRange(); } } property Platform::String ^ XMax { Platform::String ^ get() { return m_XMax; } void set(Platform::String ^ value) { if (m_XMax == value) { return; } m_XMax = value; m_XIsMinLastChanged = false; if (m_Graph != nullptr) { std::wistringstream input(value->Data()); double number; if (input >> number && input.eof()) { m_Graph->XAxisMax = m_XMaxValue = number; XMaxError = false; } else { XMaxError = true; } } RaisePropertyChanged("XError"); RaisePropertyChanged("XMax"); UpdateDisplayRange(); } } property Platform::String ^ YMin { Platform::String ^ get() { return m_YMin; } void set(Platform::String ^ value) { if (m_YMin == value) { return; } m_YMin = value; m_YIsMinLastChanged = true; if (m_Graph != nullptr) { std::wistringstream input(value->Data()); double number; if (input >> number && input.eof()) { m_Graph->YAxisMin = m_YMinValue = number; YMinError = false; } else { YMinError = true; } } RaisePropertyChanged("YError"); RaisePropertyChanged("YMin"); UpdateDisplayRange(); } } property Platform::String ^ YMax { Platform::String ^ get() { return m_YMax; } void set(Platform::String ^ value) { if (m_YMax == value) { return; } m_YMax = value; m_YIsMinLastChanged = false; if (m_Graph != nullptr) { std::wistringstream input(value->Data()); double number; if (input >> number && input.eof()) { m_Graph->YAxisMax = m_YMaxValue = number; YMaxError = false; } else { YMaxError = true; } } RaisePropertyChanged("YError"); RaisePropertyChanged("YMax"); UpdateDisplayRange(); } } property int TrigUnit { int get() { return m_Graph == nullptr ? (int)Graphing::EvalTrigUnitMode::Invalid : m_Graph->TrigUnitMode; } void set(int value) { if (m_Graph == nullptr) { return; } m_Graph->TrigUnitMode = value; RaisePropertyChanged(L"TrigUnit"); } } property bool TrigModeRadians { bool get() { return m_Graph != nullptr && m_Graph->TrigUnitMode == (int)Graphing::EvalTrigUnitMode::Radians; } void set(bool value) { if (value && m_Graph != nullptr && m_Graph->TrigUnitMode != (int)Graphing::EvalTrigUnitMode::Radians) { m_Graph->TrigUnitMode = (int)Graphing::EvalTrigUnitMode::Radians; RaisePropertyChanged(L"TrigModeRadians"); RaisePropertyChanged(L"TrigModeDegrees"); RaisePropertyChanged(L"TrigModeGradians"); CalculatorApp::ViewModel::Common::TraceLogger::GetInstance()->LogGraphSettingsChanged(CalculatorApp::ViewModel::Common::GraphSettingsType::TrigUnits, L"Radians"); } } } property bool TrigModeDegrees { bool get() { return m_Graph != nullptr && m_Graph->TrigUnitMode == (int)Graphing::EvalTrigUnitMode::Degrees; } void set(bool value) { if (value && m_Graph != nullptr && m_Graph->TrigUnitMode != (int)Graphing::EvalTrigUnitMode::Degrees) { m_Graph->TrigUnitMode = (int)Graphing::EvalTrigUnitMode::Degrees; RaisePropertyChanged(L"TrigModeDegrees"); RaisePropertyChanged(L"TrigModeRadians"); RaisePropertyChanged(L"TrigModeGradians"); CalculatorApp::ViewModel::Common::TraceLogger::GetInstance()->LogGraphSettingsChanged(CalculatorApp::ViewModel::Common::GraphSettingsType::TrigUnits, L"Degrees"); } } } property bool TrigModeGradians { bool get() { return m_Graph != nullptr && m_Graph->TrigUnitMode == (int)Graphing::EvalTrigUnitMode::Grads; } void set(bool value) { if (value && m_Graph != nullptr && m_Graph->TrigUnitMode != (int)Graphing::EvalTrigUnitMode::Grads) { m_Graph->TrigUnitMode = (int)Graphing::EvalTrigUnitMode::Grads; RaisePropertyChanged(L"TrigModeGradians"); RaisePropertyChanged(L"TrigModeDegrees"); RaisePropertyChanged(L"TrigModeRadians"); CalculatorApp::ViewModel::Common::TraceLogger::GetInstance()->LogGraphSettingsChanged(CalculatorApp::ViewModel::Common::GraphSettingsType::TrigUnits, L"Gradians"); } } } public: void UpdateDisplayRange(); public: void SetGrapher(GraphControl::Grapher ^ grapher); void InitRanges(); void ResetView(); bool HasError(); private: Platform::String ^ m_XMin; Platform::String ^ m_XMax; Platform::String ^ m_YMin; Platform::String ^ m_YMax; double m_XMinValue; double m_XMaxValue; double m_YMinValue; double m_YMaxValue; bool m_dontUpdateDisplayRange; bool m_XIsMinLastChanged; bool m_YIsMinLastChanged; }; } ================================================ FILE: src/CalcViewModel/GraphingCalculator/VariableViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "../Common/Utils.h" #include "CalcViewModel/Common/LocalizationStringUtil.h" #include "EquationViewModel.h" namespace CalculatorApp::ViewModel { inline constexpr int DefaultMinMaxRange = 10; public value struct VariableChangedEventArgs sealed { Platform::String ^ variableName; double newValue; }; [Windows::UI::Xaml::Data::Bindable] public ref class VariableViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: VariableViewModel(Platform::String ^ name, GraphControl::Variable ^ variable) : m_Name(name) , m_variable{ variable } , m_SliderSettingsVisible(false) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(Platform::String ^, Name); OBSERVABLE_PROPERTY_RW(bool, SliderSettingsVisible); property double Min { double get() { return m_variable->Min; } void set(double value) { if (m_variable->Min != value) { if (value >= m_variable->Max) { m_variable->Max = value + DefaultMinMaxRange; RaisePropertyChanged("Max"); } m_variable->Min = value; RaisePropertyChanged("Min"); } } } property double Step { double get() { return m_variable->Step; } void set(double value) { if (m_variable->Step != value) { m_variable->Step = value; RaisePropertyChanged("Step"); } } } property double Max { double get() { return m_variable->Max; } void set(double value) { if (m_variable->Max != value) { if (value <= m_variable->Min) { m_variable->Min = value - DefaultMinMaxRange; RaisePropertyChanged("Min"); } m_variable->Max = value; RaisePropertyChanged("Max"); } } } event Windows::Foundation::EventHandler ^ VariableUpdated; property double Value { double get() { return m_variable->Value; } void set(double value) { if (value < m_variable->Min) { m_variable->Min = value; RaisePropertyChanged(L"Min"); } else if (value > m_variable->Max) { m_variable->Max = value; RaisePropertyChanged(L"Max"); } if (m_variable->Value != value) { m_variable->Value = value; VariableUpdated(this, VariableChangedEventArgs{ Name, value }); RaisePropertyChanged(L"Value"); } } } property Platform::String ^ VariableAutomationName { Platform::String ^ get() { return CalculatorApp::ViewModel::Common::LocalizationStringUtil::GetLocalizedString( CalculatorApp::ViewModel::Common::AppResourceProvider::GetInstance()->GetResourceString(L"VariableListViewItem"), Name); } } private: GraphControl::Variable ^ m_variable; }; } ================================================ FILE: src/CalcViewModel/GraphingCalculatorEnums.h ================================================ #pragma once namespace CalculatorApp { enum KeyGraphFeaturesFlag { Domain = 1, Range = 2, Parity = 4, Periodicity = 8, Zeros = 16, YIntercept = 32, Minima = 64, Maxima = 128, InflectionPoints = 256, VerticalAsymptotes = 512, HorizontalAsymptotes = 1024, ObliqueAsymptotes = 2048, MonotoneIntervals = 4096 }; enum AnalysisErrorType { NoError, AnalysisCouldNotBePerformed, AnalysisNotSupported, VariableIsNotX }; } ================================================ FILE: src/CalcViewModel/HistoryItemViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "HistoryItemViewModel.h" #include "Common/LocalizationService.h" using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel; using namespace std; using namespace Platform; HistoryItemViewModel::HistoryItemViewModel( String ^ expression, String ^ result, _In_ const shared_ptr>>& spTokens, _In_ const shared_ptr>>& spCommands) : m_expression(expression) , m_result(result) , m_spTokens(spTokens) , m_spCommands(spCommands) { // updating accessibility names for expression and result m_accExpression = HistoryItemViewModel::GetAccessibleExpressionFromTokens(spTokens, m_expression); m_accResult = LocalizationService::GetNarratorReadableString(m_result); } String ^ HistoryItemViewModel::GetAccessibleExpressionFromTokens( _In_ shared_ptr>> const& spTokens, _In_ String ^ fallbackExpression) { // updating accessibility names for expression and result wstring accExpression{}; for (const auto& tokenItem : *spTokens) { accExpression += LocalizationService::GetNarratorReadableToken(StringReference(tokenItem.first.c_str()))->Data(); } return ref new String(accExpression.c_str()); } ================================================ FILE: src/CalcViewModel/HistoryItemViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/ExpressionCommandInterface.h" namespace CalculatorApp { namespace ViewModel { [Windows::UI::Xaml::Data::Bindable] public ref class HistoryItemViewModel sealed { internal : HistoryItemViewModel( Platform::String ^ expression, Platform::String ^ result, _In_ std::shared_ptr>> const& spTokens, _In_ std::shared_ptr>> const& spCommands); std::shared_ptr>> const& GetTokens() { return m_spTokens; } std::shared_ptr>> const& GetCommands() { return m_spCommands; } public: property Platform::String ^ Expression { Platform::String ^ get() { return m_expression; } } property Platform::String ^ AccExpression { Platform::String ^ get() { return m_accExpression; } } property Platform::String ^ Result { Platform::String ^ get() { return m_result; } } property Platform::String ^ AccResult { Platform::String ^ get() { return m_accResult; } } private : static Platform::String ^ GetAccessibleExpressionFromTokens( _In_ std::shared_ptr>> const& spTokens, _In_ Platform::String ^ fallbackExpression); private: Platform::String ^ m_expression; Platform::String ^ m_accExpression; Platform::String ^ m_accResult; Platform::String ^ m_result; std::shared_ptr>> m_spTokens; std::shared_ptr>> m_spCommands; }; } } ================================================ FILE: src/CalcViewModel/HistoryViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "HistoryViewModel.h" #include "Common/TraceLogger.h" #include "Common/LocalizationStringUtil.h" #include "Common/LocalizationSettings.h" #include "StandardCalculatorViewModel.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::Automation; using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace std; using namespace Windows::Foundation; using namespace Windows::Storage; using namespace Windows::Storage::Streams; using namespace Windows::Security::Cryptography; using namespace Windows::Foundation::Collections; static StringReference HistoryVectorLengthKey{ L"HistoryVectorLength" }; static StringReference ItemsSizeKey{ L"ItemsCount" }; namespace HistoryResourceKeys { StringReference HistoryCleared(L"HistoryList_Cleared"); StringReference HistorySlotCleared(L"Format_HistorySlotCleared"); } HistoryViewModel::HistoryViewModel(_In_ CalculationManager::CalculatorManager* calculatorManager) : m_calculatorManager(calculatorManager) , m_localizedHistoryCleared(nullptr) , m_localizedHistorySlotCleared(nullptr) { AreHistoryShortcutsEnabled = true; Items = ref new Platform::Collections::Vector(); } // this will reload Items with the history list based on current mode void HistoryViewModel::ReloadHistory(_In_ ViewMode currentMode) { if (currentMode == ViewMode::Standard) { m_currentMode = CalculationManager::CalculatorMode::Standard; } else if (currentMode == ViewMode::Scientific) { m_currentMode = CalculationManager::CalculatorMode::Scientific; } else { return; } auto historyListModel = m_calculatorManager->GetHistoryItems(m_currentMode); auto historyListVM = ref new Platform::Collections::Vector(); LocalizationSettings^ localizer = LocalizationSettings::GetInstance(); if (historyListModel.size() > 0) { for (auto ritr = historyListModel.rbegin(); ritr != historyListModel.rend(); ++ritr) { wstring expression = (*ritr)->historyItemVector.expression; wstring result = (*ritr)->historyItemVector.result; localizer->LocalizeDisplayValue(&expression); localizer->LocalizeDisplayValue(&result); auto item = ref new HistoryItemViewModel( ref new Platform::String(expression.c_str()), ref new Platform::String(result.c_str()), (*ritr)->historyItemVector.spTokens, (*ritr)->historyItemVector.spCommands); historyListVM->Append(item); } } Items = historyListVM; RaisePropertyChanged(ItemsSizeKey); } void HistoryViewModel::OnHistoryItemAdded(_In_ unsigned int addedItemIndex) { auto newItem = m_calculatorManager->GetHistoryItem(addedItemIndex); LocalizationSettings^ localizer = LocalizationSettings::GetInstance(); wstring expression = newItem->historyItemVector.expression; wstring result = newItem->historyItemVector.result; localizer->LocalizeDisplayValue(&expression); localizer->LocalizeDisplayValue(&result); auto item = ref new HistoryItemViewModel( ref new Platform::String(expression.c_str()), ref new Platform::String(result.c_str()), newItem->historyItemVector.spTokens, newItem->historyItemVector.spCommands); // check if we have not hit the max items if (Items->Size >= m_calculatorManager->MaxHistorySize()) { // this means the item already exists Items->RemoveAt(Items->Size - 1); } assert(addedItemIndex <= m_calculatorManager->MaxHistorySize() && addedItemIndex >= 0); Items->InsertAt(0, item); RaisePropertyChanged(ItemsSizeKey); } void HistoryViewModel::SetCalculatorDisplay(CalculatorDisplay& calculatorDisplay) { WeakReference historyViewModel(this); calculatorDisplay.SetHistoryCallback(historyViewModel); } void HistoryViewModel::ShowItem(_In_ HistoryItemViewModel ^ e) { unsigned int index; Items->IndexOf(e, &index); TraceLogger::GetInstance()->LogHistoryItemLoad((ViewMode)m_currentMode, Items->Size, (int)(index)); HistoryItemClicked(e); } void HistoryViewModel::DeleteItem(_In_ HistoryItemViewModel ^ e) { uint32_t itemIndex; if (Items->IndexOf(e, &itemIndex)) { if (m_calculatorManager->RemoveHistoryItem(itemIndex)) { Items->RemoveAt(itemIndex); RaisePropertyChanged(ItemsSizeKey); } } // Adding 1 to the history item index to provide 1-based numbering on announcements. wstring localizedIndex = to_wstring(itemIndex + 1); LocalizationSettings::GetInstance()->LocalizeDisplayValue(&localizedIndex); m_localizedHistorySlotCleared = AppResourceProvider::GetInstance()->GetResourceString(HistoryResourceKeys::HistorySlotCleared); String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedHistorySlotCleared, StringReference(localizedIndex.c_str())); HistoryAnnouncement = CalculatorAnnouncement::GetHistorySlotClearedAnnouncement(announcement); } void HistoryViewModel::OnHideCommand(_In_ Platform::Object ^ e) { // added at VM layer so that the views do not have to individually raise events HideHistoryClicked(); } void HistoryViewModel::OnClearCommand(_In_ Platform::Object ^ e) { if (AreHistoryShortcutsEnabled) { m_calculatorManager->ClearHistory(); if (Items->Size > 0) { Items->Clear(); RaisePropertyChanged(ItemsSizeKey); } if (m_localizedHistoryCleared == nullptr) { m_localizedHistoryCleared = AppResourceProvider::GetInstance()->GetResourceString(HistoryResourceKeys::HistoryCleared); } HistoryAnnouncement = CalculatorAnnouncement::GetHistoryClearedAnnouncement(m_localizedHistoryCleared); } } unsigned long long HistoryViewModel::GetMaxItemSize() { return static_cast(m_calculatorManager->MaxHistorySize()); } ================================================ FILE: src/CalcViewModel/HistoryViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/CalculatorManager.h" #include "Common/Automation/NarratorAnnouncement.h" #include "Common/CalculatorDisplay.h" #include "Common/NavCategory.h" #include "HistoryItemViewModel.h" namespace CalculatorApp { namespace CM = CalculationManager; namespace ViewModel { ref class StandardCalculatorViewModel; public delegate void HideHistoryClickedHandler(); public delegate void HistoryItemClickedHandler(CalculatorApp::ViewModel::HistoryItemViewModel ^ e); [Windows::UI::Xaml::Data::Bindable] public ref class HistoryViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, Items); OBSERVABLE_PROPERTY_RW(bool, AreHistoryShortcutsEnabled); OBSERVABLE_PROPERTY_R(CalculatorApp::ViewModel::Common::Automation::NarratorAnnouncement ^, HistoryAnnouncement); property int ItemsCount { int get() { return Items->Size; } } void OnHistoryItemAdded(_In_ unsigned int addedItemIndex); COMMAND_FOR_METHOD(HideCommand, HistoryViewModel::OnHideCommand); void OnHideCommand(_In_ Platform::Object ^ e); COMMAND_FOR_METHOD(ClearCommand, HistoryViewModel::OnClearCommand); void OnClearCommand(_In_ Platform::Object ^ e); // events that are created event HideHistoryClickedHandler ^ HideHistoryClicked; event HistoryItemClickedHandler ^ HistoryItemClicked; void ShowItem(_In_ CalculatorApp::ViewModel::HistoryItemViewModel ^ e); void DeleteItem(_In_ CalculatorApp::ViewModel::HistoryItemViewModel ^ e); void ReloadHistory(_In_ CalculatorApp::ViewModel::Common::ViewMode currentMode); internal : HistoryViewModel(_In_ CalculationManager::CalculatorManager* calculatorManager); void SetCalculatorDisplay(Common::CalculatorDisplay& calculatorDisplay); unsigned long long GetMaxItemSize(); private: CalculationManager::CalculatorManager* const m_calculatorManager; Common::CalculatorDisplay m_calculatorDisplay; CalculationManager::CalculatorMode m_currentMode; Platform::String ^ m_localizedHistoryCleared; Platform::String ^ m_localizedHistorySlotCleared; }; } } ================================================ FILE: src/CalcViewModel/MemoryItemViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "MemoryItemViewModel.h" #include "StandardCalculatorViewModel.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::Automation; using namespace CalculatorApp::ViewModel; using namespace Platform; using namespace std; using namespace Windows::Foundation; using namespace Windows::Storage; using namespace Windows::Storage::Streams; using namespace Windows::Security::Cryptography; using namespace Windows::Foundation::Collections; void MemoryItemViewModel::Clear() { m_calcVM->OnMemoryClear(Position); }; void MemoryItemViewModel::MemoryAdd() { m_calcVM->OnMemoryAdd(Position); }; void MemoryItemViewModel::MemorySubtract() { m_calcVM->OnMemorySubtract(Position); }; ================================================ FILE: src/CalcViewModel/MemoryItemViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Common/Utils.h" namespace CalculatorApp { namespace ViewModel { ref class StandardCalculatorViewModel; /// /// Model representation of a single item in the Memory list /// [Windows::UI::Xaml::Data::Bindable] public ref class MemoryItemViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: MemoryItemViewModel(StandardCalculatorViewModel ^ calcVM) : m_Position(-1) , m_calcVM(calcVM) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(int, Position); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value); void Clear(); void MemoryAdd(); void MemorySubtract(); private: StandardCalculatorViewModel ^ m_calcVM; }; } } ================================================ FILE: src/CalcViewModel/Snapshots.cpp ================================================ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include "pch.h" #include #include #include #include "CalcManager/ExpressionCommand.h" #include "Snapshots.h" namespace CalculatorApp::ViewModel::Snapshot { UnaryCommand::UnaryCommand() { } UnaryCommand::UnaryCommand(std::vector cmds) : m_cmds(std::move(cmds)) { } Windows::Foundation::Collections::IVectorView ^ UnaryCommand::Commands::get() { return ref new Platform::Collections::VectorView(m_cmds); } void UnaryCommand::Commands::set(Windows::Foundation::Collections::IVectorView ^ commands) { m_cmds.clear(); for (auto cmd : commands) { m_cmds.push_back(cmd); } } BinaryCommand::BinaryCommand() { Command = 0; } BinaryCommand::BinaryCommand(int cmd) { Command = cmd; } OperandCommand::OperandCommand() { IsNegative = false; IsDecimalPresent = false; IsSciFmt = false; } OperandCommand::OperandCommand(bool isNegative, bool isDecimal, bool isSciFmt, std::vector cmds) { IsNegative = isNegative; IsDecimalPresent = isDecimal; IsSciFmt = isSciFmt; m_cmds = std::move(cmds); } Windows::Foundation::Collections::IVectorView ^ OperandCommand::Commands::get() { return ref new Platform::Collections::VectorView(m_cmds); } void OperandCommand::Commands::set(Windows::Foundation::Collections::IVectorView ^ commands) { m_cmds.clear(); for (auto cmd : commands) { m_cmds.push_back(cmd); } } Parentheses::Parentheses() { Command = 0; } Parentheses::Parentheses(int cmd) { Command = cmd; } ICalcManagerIExprCommand ^ CreateExprCommand(const IExpressionCommand* exprCmd) { switch (exprCmd->GetCommandType()) { case CalculationManager::CommandType::UnaryCommand: { auto cmd = static_cast(exprCmd); std::vector cmdlist; for (auto& subcmd : *cmd->GetCommands()) { cmdlist.push_back(subcmd); } return ref new UnaryCommand(std::move(cmdlist)); } case CalculationManager::CommandType::BinaryCommand: { auto cmd = static_cast(exprCmd); return ref new BinaryCommand(cmd->GetCommand()); } case CalculationManager::CommandType::OperandCommand: { auto cmd = static_cast(exprCmd); std::vector cmdlist; for (auto& subcmd : *cmd->GetCommands()) { cmdlist.push_back(subcmd); } return ref new OperandCommand(cmd->IsNegative(), cmd->IsDecimalPresent(), cmd->IsSciFmt(), std::move(cmdlist)); } case CalculationManager::CommandType::Parentheses: { auto cmd = static_cast(exprCmd); return ref new Parentheses(cmd->GetCommand()); } default: throw std::logic_error{ "unhandled command type." }; } } CalcManagerToken::CalcManagerToken() { OpCodeName = ref new Platform::String(); CommandIndex = 0; } CalcManagerToken::CalcManagerToken(Platform::String ^ opCodeName, int cmdIndex) { assert(opCodeName != nullptr && "opCodeName is mandatory."); OpCodeName = opCodeName; CommandIndex = cmdIndex; } CalcManagerHistoryItem::CalcManagerHistoryItem() { Tokens = ref new Platform::Collections::Vector(); Commands = ref new Platform::Collections::Vector(); Expression = ref new Platform::String(); Result = ref new Platform::String(); } CalcManagerHistoryItem::CalcManagerHistoryItem(const CalculationManager::HISTORYITEM& item) { Tokens = ref new Platform::Collections::Vector(); assert(item.historyItemVector.spTokens != nullptr && "spTokens shall not be null."); for (auto& [opCode, cmdIdx] : *item.historyItemVector.spTokens) { Tokens->Append(ref new CalcManagerToken(ref new Platform::String(opCode.c_str()), cmdIdx)); } Commands = ref new Platform::Collections::Vector(); assert(item.historyItemVector.spCommands != nullptr && "spCommands shall not be null."); for (auto& cmd : *item.historyItemVector.spCommands) { Commands->Append(CreateExprCommand(cmd.get())); } Expression = ref new Platform::String(item.historyItemVector.expression.c_str()); Result = ref new Platform::String(item.historyItemVector.result.c_str()); } CalcManagerSnapshot::CalcManagerSnapshot() { HistoryItems = nullptr; } CalcManagerSnapshot::CalcManagerSnapshot(const CalculationManager::CalculatorManager& calcMgr) { auto& items = calcMgr.GetHistoryItems(); if (!items.empty()) { HistoryItems = ref new Platform::Collections::Vector(); for (auto& item : items) { HistoryItems->Append(ref new CalcManagerHistoryItem(*item)); } } } PrimaryDisplaySnapshot::PrimaryDisplaySnapshot() { DisplayValue = ref new Platform::String(); IsError = false; } PrimaryDisplaySnapshot::PrimaryDisplaySnapshot(Platform::String ^ display, bool isError) { assert(display != nullptr && "display is mandatory"); DisplayValue = display; IsError = isError; } ExpressionDisplaySnapshot::ExpressionDisplaySnapshot() { Tokens = ref new Platform::Collections::Vector(); Commands = ref new Platform::Collections::Vector(); } ExpressionDisplaySnapshot::ExpressionDisplaySnapshot( const std::vector& tokens, const std::vector>& commands) { Tokens = ref new Platform::Collections::Vector(); for (auto& [opCode, cmdIdx] : tokens) { Tokens->Append(ref new CalcManagerToken(ref new Platform::String(opCode.c_str()), cmdIdx)); } Commands = ref new Platform::Collections::Vector(); for (auto& cmd : commands) { Commands->Append(CreateExprCommand(cmd.get())); } } StandardCalculatorSnapshot::StandardCalculatorSnapshot() { CalcManager = ref new CalcManagerSnapshot(); PrimaryDisplay = ref new PrimaryDisplaySnapshot(); ExpressionDisplay = nullptr; DisplayCommands = ref new Platform::Collections::Vector(); } std::vector> ToUnderlying(Windows::Foundation::Collections::IVector ^ items) { std::vector> result; for (CalcManagerHistoryItem ^ item : items) { CalculationManager::HISTORYITEMVECTOR nativeItem; nativeItem.spTokens = std::make_shared>>(); for (CalcManagerToken ^ token : item->Tokens) { nativeItem.spTokens->push_back(std::make_pair(token->OpCodeName->Data(), token->CommandIndex)); } nativeItem.spCommands = std::make_shared>>(ToUnderlying(item->Commands)); nativeItem.expression = item->Expression->Data(); nativeItem.result = item->Result->Data(); auto spItem = std::make_shared(CalculationManager::HISTORYITEM{ std::move(nativeItem) }); result.push_back(std::move(std::move(spItem))); } return result; } std::vector> ToUnderlying(Windows::Foundation::Collections::IVector ^ commands) { std::vector> result; for (ICalcManagerIExprCommand ^ cmdEntry : commands) { if (auto unary = dynamic_cast(cmdEntry); unary != nullptr) { if (unary->m_cmds.size() == 1) { result.push_back(std::make_shared(unary->m_cmds[0])); } else if (unary->m_cmds.size() == 2) { result.push_back(std::make_shared(unary->m_cmds[0], unary->m_cmds[1])); } else { throw std::logic_error{ "ill-formed command." }; } } else if (auto binary = dynamic_cast(cmdEntry); binary != nullptr) { result.push_back(std::make_shared(binary->Command)); } else if (auto paren = dynamic_cast(cmdEntry); paren != nullptr) { result.push_back(std::make_shared(paren->Command)); } else if (auto operand = dynamic_cast(cmdEntry); operand != nullptr) { auto subcmds = std::make_shared>(operand->m_cmds); result.push_back(std::make_shared(std::move(subcmds), operand->IsNegative, operand->IsDecimalPresent, operand->IsSciFmt)); } } return result; } } // namespace CalculatorApp::ViewModel ================================================ FILE: src/CalcViewModel/Snapshots.h ================================================ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #pragma once #include #include #include "CalcManager/CalculatorManager.h" namespace CalculatorApp::ViewModel::Snapshot { public interface struct ICalcManagerIExprCommand { }; public ref struct UnaryCommand sealed : public ICalcManagerIExprCommand { property Windows::Foundation::Collections::IVectorView ^ Commands { Windows::Foundation::Collections::IVectorView ^ get(); void set(Windows::Foundation::Collections::IVectorView ^ commands); }; UnaryCommand(); internal :; explicit UnaryCommand(std::vector cmds); std::vector m_cmds; }; public ref struct BinaryCommand sealed : public ICalcManagerIExprCommand { property int Command; BinaryCommand(); internal :; explicit BinaryCommand(int cmd); }; public ref struct OperandCommand sealed : public ICalcManagerIExprCommand { property bool IsNegative; property bool IsDecimalPresent; property bool IsSciFmt; property Windows::Foundation::Collections::IVectorView ^ Commands { Windows::Foundation::Collections::IVectorView ^ get(); void set(Windows::Foundation::Collections::IVectorView ^ commands); }; OperandCommand(); internal :; explicit OperandCommand(bool isNegative, bool isDecimal, bool isSciFmt, std::vector cmds); std::vector m_cmds; }; public ref struct Parentheses sealed : public ICalcManagerIExprCommand { property int Command; Parentheses(); internal :; explicit Parentheses(int cmd); }; public ref struct CalcManagerToken sealed { property Platform::String ^ OpCodeName; // mandatory property int CommandIndex; CalcManagerToken(); internal :; explicit CalcManagerToken(Platform::String ^ opCodeName, int cmdIndex); }; public ref struct CalcManagerHistoryItem sealed { property Windows::Foundation::Collections::IVector ^ Tokens; // mandatory property Windows::Foundation::Collections::IVector ^ Commands; // mandatory property Platform::String ^ Expression; // mandatory property Platform::String ^ Result; // mandatory CalcManagerHistoryItem(); internal :; explicit CalcManagerHistoryItem(const CalculationManager::HISTORYITEM& item); }; public ref struct CalcManagerSnapshot sealed { property Windows::Foundation::Collections::IVector ^ HistoryItems; // optional CalcManagerSnapshot(); internal :; explicit CalcManagerSnapshot(const CalculationManager::CalculatorManager& calcMgr); }; public ref struct PrimaryDisplaySnapshot sealed { property Platform::String ^ DisplayValue; // mandatory property bool IsError; PrimaryDisplaySnapshot(); internal :; explicit PrimaryDisplaySnapshot(Platform::String ^ display, bool isError); }; public ref struct ExpressionDisplaySnapshot sealed { property Windows::Foundation::Collections::IVector ^ Tokens; property Windows::Foundation::Collections::IVector ^ Commands; ExpressionDisplaySnapshot(); internal :; using CalcHistoryToken = std::pair; explicit ExpressionDisplaySnapshot(const std::vector& tokens, const std::vector>& commands); }; public ref struct StandardCalculatorSnapshot sealed { property CalcManagerSnapshot ^ CalcManager; // mandatory property PrimaryDisplaySnapshot ^ PrimaryDisplay; // mandatory property ExpressionDisplaySnapshot ^ ExpressionDisplay; // optional property Windows::Foundation::Collections::IVector ^ DisplayCommands; // mandatory StandardCalculatorSnapshot(); }; public ref struct ApplicationSnapshot sealed { property int Mode; property StandardCalculatorSnapshot ^ StandardCalculator; // optional }; ICalcManagerIExprCommand ^ CreateExprCommand(const IExpressionCommand* exprCmd); std::vector> ToUnderlying(Windows::Foundation::Collections::IVector ^ commands); std::vector> ToUnderlying(Windows::Foundation::Collections::IVector ^ items); } // namespace CalculatorApp::ViewModel ================================================ FILE: src/CalcViewModel/StandardCalculatorViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "StandardCalculatorViewModel.h" #include "Common/CalculatorButtonPressedEventArgs.h" #include "Common/LocalizationStringUtil.h" #include "Common/LocalizationSettings.h" #include "Common/CopyPasteManager.h" #include "Common/TraceLogger.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::Automation; using namespace CalculatorApp::ViewModel; using namespace CalculationManager; using namespace concurrency; using namespace Platform; using namespace Platform::Collections; using namespace std; using namespace Windows::ApplicationModel::Resources; using namespace Windows::Foundation; using namespace Windows::System; using namespace Windows::UI::Core; using namespace Windows::UI::Popups; using namespace Windows::Storage::Streams; using namespace Windows::Foundation::Collections; using namespace concurrency; constexpr int StandardModePrecision = 16; constexpr int ScientificModePrecision = 32; constexpr int ProgrammerModePrecision = 64; namespace { StringReference IsStandardPropertyName(L"IsStandard"); StringReference IsScientificPropertyName(L"IsScientific"); StringReference IsProgrammerPropertyName(L"IsProgrammer"); StringReference IsAlwaysOnTopPropertyName(L"IsAlwaysOnTop"); StringReference DisplayValuePropertyName(L"DisplayValue"); StringReference CalculationResultAutomationNamePropertyName(L"CalculationResultAutomationName"); StringReference IsBitFlipCheckedPropertyName(L"IsBitFlipChecked"); StringReference CalcAlwaysOnTop(L"CalcAlwaysOnTop"); StringReference CalcBackToFullView(L"CalcBackToFullView"); std::vector GetCommandsFromExpressionCommands(const std::vector>& expressionCommands) { vector commands; for (const auto& command : expressionCommands) { CommandType commandType = command->GetCommandType(); if (commandType == CommandType::UnaryCommand) { shared_ptr spCommand = dynamic_pointer_cast(command); const shared_ptr>& unaryCommands = spCommand->GetCommands(); for (int nUCode : *unaryCommands) { commands.push_back(nUCode); } } if (commandType == CommandType::BinaryCommand) { shared_ptr spCommand = dynamic_pointer_cast(command); commands.push_back(spCommand->GetCommand()); } if (commandType == CommandType::Parentheses) { shared_ptr spCommand = dynamic_pointer_cast(command); commands.push_back(spCommand->GetCommand()); } if (commandType == CommandType::OperandCommand) { shared_ptr spCommand = dynamic_pointer_cast(command); const shared_ptr>& opndCommands = spCommand->GetCommands(); bool fNeedIDCSign = spCommand->IsNegative(); for (int nOCode : *opndCommands) { commands.push_back(nOCode); if (fNeedIDCSign && nOCode != IDC_0) { commands.push_back(static_cast(CalculationManager::Command::CommandSIGN)); fNeedIDCSign = false; } } } } return commands; } } namespace CalculatorResourceKeys { StringReference CalculatorExpression(L"Format_CalculatorExpression"); StringReference CalculatorResults(L"Format_CalculatorResults"); StringReference CalculatorResults_DecimalSeparator_Announced(L"Format_CalculatorResults_Decimal"); StringReference HexButton(L"Format_HexButtonValue"); StringReference DecButton(L"Format_DecButtonValue"); StringReference OctButton(L"Format_OctButtonValue"); StringReference BinButton(L"Format_BinButtonValue"); StringReference OpenParenthesisCountAutomationFormat(L"Format_OpenParenthesisCountAutomationNamePrefix"); StringReference NoParenthesisAdded(L"NoRightParenthesisAdded_Announcement"); StringReference MaxDigitsReachedFormat(L"Format_MaxDigitsReached"); StringReference ButtonPressFeedbackFormat(L"Format_ButtonPressAuditoryFeedback"); StringReference MemorySave(L"Format_MemorySave"); StringReference MemoryItemChanged(L"Format_MemorySlotChanged"); StringReference MemoryItemCleared(L"Format_MemorySlotCleared"); StringReference MemoryCleared(L"Memory_Cleared"); StringReference DisplayCopied(L"Display_Copied"); } StandardCalculatorViewModel::StandardCalculatorViewModel() : m_DisplayValue(L"0") , m_DecimalDisplayValue(L"0") , m_HexDisplayValue(L"0") , m_BinaryDisplayValue(L"0") , m_OctalDisplayValue(L"0") , m_BinaryDigits(ref new Vector(64, false)) , m_standardCalculatorManager(&m_calculatorDisplay, &m_resourceProvider) , m_ExpressionTokens(ref new Vector()) , m_MemorizedNumbers(ref new Vector()) , m_IsMemoryEmpty(true) , m_IsFToEChecked(false) , m_IsShiftProgrammerChecked(false) , m_valueBitLength(BitLength::BitLengthQWord) , m_isBitFlipChecked(false) , m_IsBinaryBitFlippingEnabled(false) , m_CurrentRadixType(NumberBase::DecBase) , m_CurrentAngleType(NumbersAndOperatorsEnum::Degree) , m_Announcement(nullptr) , m_OpenParenthesisCount(0) , m_feedbackForButtonPress(nullptr) , m_isRtlLanguage(false) , m_localizedMaxDigitsReachedAutomationFormat(nullptr) , m_localizedButtonPressFeedbackAutomationFormat(nullptr) , m_localizedMemorySavedAutomationFormat(nullptr) , m_localizedMemoryItemChangedAutomationFormat(nullptr) , m_localizedMemoryItemClearedAutomationFormat(nullptr) , m_localizedMemoryCleared(nullptr) , m_localizedOpenParenthesisCountChangedAutomationFormat(nullptr) , m_localizedNoRightParenthesisAddedFormat(nullptr) , m_TokenPosition(-1) , m_isLastOperationHistoryLoad(false) { WeakReference calculatorViewModel(this); auto appResourceProvider = AppResourceProvider::GetInstance(); m_calculatorDisplay.SetCallback(calculatorViewModel); m_expressionAutomationNameFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::CalculatorExpression); m_localizedCalculationResultAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::CalculatorResults); m_localizedCalculationResultDecimalAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::CalculatorResults_DecimalSeparator_Announced); m_localizedHexaDecimalAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::HexButton); m_localizedDecimalAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::DecButton); m_localizedOctalAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::OctButton); m_localizedBinaryAutomationFormat = appResourceProvider->GetResourceString(CalculatorResourceKeys::BinButton); // Initialize the Automation Name CalculationResultAutomationName = GetLocalizedStringFormat(m_localizedCalculationResultAutomationFormat, m_DisplayValue); CalculationExpressionAutomationName = GetLocalizedStringFormat(m_expressionAutomationNameFormat, L""); // Initialize history view model m_HistoryVM = ref new HistoryViewModel(&m_standardCalculatorManager); m_HistoryVM->SetCalculatorDisplay(m_calculatorDisplay); m_decimalSeparator = LocalizationSettings::GetInstance()->GetDecimalSeparator(); if (CoreWindow::GetForCurrentThread() != nullptr) { // Must have a CoreWindow to access the resource context. m_isRtlLanguage = LocalizationService::GetInstance()->IsRtlLayout(); } IsEditingEnabled = false; IsUnaryOperatorEnabled = true; IsBinaryOperatorEnabled = true; IsOperandEnabled = true; IsNegateEnabled = true; IsDecimalEnabled = true; AreProgrammerRadixOperatorsVisible = false; } String ^ StandardCalculatorViewModel::LocalizeDisplayValue(_In_ wstring const& displayValue) { wstring result(displayValue); // Adds leading padding 0's to Programmer Mode's Binary Display if (IsProgrammer && CurrentRadixType == NumberBase::BinBase) { result = AddPadding(result); } LocalizationSettings::GetInstance()->LocalizeDisplayValue(&result); return ref new Platform::String(result.c_str()); } String ^ StandardCalculatorViewModel::CalculateNarratorDisplayValue(_In_ wstring const& displayValue, _In_ String ^ localizedDisplayValue) { String ^ localizedValue = localizedDisplayValue; String ^ automationFormat = m_localizedCalculationResultAutomationFormat; // The narrator doesn't read the decimalSeparator if it's the last character if (Utils::IsLastCharacterTarget(displayValue, m_decimalSeparator)) { // remove the decimal separator, to avoid a long pause between words localizedValue = LocalizeDisplayValue(displayValue.substr(0, displayValue.length() - 1)); // Use a format which has a word in the decimal separator's place // "The Display is 10 point" automationFormat = m_localizedCalculationResultDecimalAutomationFormat; } // In Programmer modes using non-base10, we want the strings to be read as literal digits. if (IsProgrammer && CurrentRadixType != NumberBase::DecBase) { localizedValue = GetNarratorStringReadRawNumbers(localizedValue); } return GetLocalizedStringFormat(automationFormat, localizedValue); } String ^ StandardCalculatorViewModel::GetNarratorStringReadRawNumbers(_In_ String ^ localizedDisplayValue) { wstring ws; LocalizationSettings ^ locSettings = LocalizationSettings::GetInstance(); // Insert a space after each digit in the string, to force Narrator to read them as separate numbers. for (const wchar_t& c : localizedDisplayValue) { ws += c; if (locSettings->IsLocalizedHexDigit(c)) { ws += L' '; } } return ref new String(ws.c_str()); } void StandardCalculatorViewModel::SetPrimaryDisplay(_In_ String ^ displayStringValue, _In_ bool isError) { String ^ localizedDisplayStringValue = LocalizeDisplayValue(displayStringValue->Data()); // Set this variable before the DisplayValue is modified, Otherwise the DisplayValue will // not match what the narrator is saying m_CalculationResultAutomationName = CalculateNarratorDisplayValue(displayStringValue->Data(), localizedDisplayStringValue); AreAlwaysOnTopResultsUpdated = false; if (DisplayValue != localizedDisplayStringValue) { DisplayValue = localizedDisplayStringValue; AreAlwaysOnTopResultsUpdated = true; } IsInError = isError; if (IsProgrammer) { UpdateProgrammerPanelDisplay(); } } void StandardCalculatorViewModel::DisplayPasteError() { m_standardCalculatorManager.DisplayPasteError(); } void StandardCalculatorViewModel::SetParenthesisCount(_In_ unsigned int parenthesisCount) { if (m_OpenParenthesisCount == parenthesisCount) { return; } OpenParenthesisCount = parenthesisCount; if (IsProgrammer || IsScientific) { SetOpenParenthesisCountNarratorAnnouncement(); } } void StandardCalculatorViewModel::SetOpenParenthesisCountNarratorAnnouncement() { wstring localizedParenthesisCount = to_wstring(m_OpenParenthesisCount).c_str(); LocalizationSettings::GetInstance()->LocalizeDisplayValue(&localizedParenthesisCount); if (m_localizedOpenParenthesisCountChangedAutomationFormat == nullptr) { m_localizedOpenParenthesisCountChangedAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::OpenParenthesisCountAutomationFormat); } String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedOpenParenthesisCountChangedAutomationFormat, StringReference(localizedParenthesisCount.c_str())); Announcement = CalculatorAnnouncement::GetOpenParenthesisCountChangedAnnouncement(announcement); } void StandardCalculatorViewModel::OnNoRightParenAdded() { SetNoParenAddedNarratorAnnouncement(); } void StandardCalculatorViewModel::SetNoParenAddedNarratorAnnouncement() { if (m_localizedNoRightParenthesisAddedFormat == nullptr) { m_localizedNoRightParenthesisAddedFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::NoParenthesisAdded); } Announcement = CalculatorAnnouncement::GetNoRightParenthesisAddedAnnouncement(m_localizedNoRightParenthesisAddedFormat); } void StandardCalculatorViewModel::DisableButtons(CommandType selectedExpressionCommandType) { if (selectedExpressionCommandType == CommandType::OperandCommand) { IsBinaryOperatorEnabled = false; IsUnaryOperatorEnabled = false; IsOperandEnabled = true; IsNegateEnabled = true; IsDecimalEnabled = true; } if (selectedExpressionCommandType == CommandType::BinaryCommand) { IsBinaryOperatorEnabled = true; IsUnaryOperatorEnabled = false; IsOperandEnabled = false; IsNegateEnabled = false; IsDecimalEnabled = false; } if (selectedExpressionCommandType == CommandType::UnaryCommand) { IsBinaryOperatorEnabled = false; IsUnaryOperatorEnabled = true; IsOperandEnabled = false; IsNegateEnabled = true; IsDecimalEnabled = false; } } void StandardCalculatorViewModel::SetExpressionDisplay( _Inout_ shared_ptr>> const& tokens, _Inout_ shared_ptr>> const& commands) { m_tokens = tokens; m_commands = commands; if (!IsEditingEnabled) { SetTokens(tokens); } CalculationExpressionAutomationName = GetCalculatorExpressionAutomationName(); AreTokensUpdated = true; } void StandardCalculatorViewModel::SetHistoryExpressionDisplay( _Inout_ shared_ptr>> const& tokens, _Inout_ shared_ptr>> const& commands) { m_tokens = make_shared>>(*tokens); m_commands = make_shared>>(*commands); IsEditingEnabled = false; // Setting the History Item Load Mode so that UI does not get updated with recalculation of every token m_standardCalculatorManager.SetInHistoryItemLoadMode(true); Recalculate(true); m_standardCalculatorManager.SetInHistoryItemLoadMode(false); m_isLastOperationHistoryLoad = true; } void StandardCalculatorViewModel::SetTokens(_Inout_ shared_ptr>> const& tokens) { AreTokensUpdated = false; const size_t nTokens = tokens->size(); if (nTokens == 0) { m_ExpressionTokens->Clear(); return; } LocalizationSettings ^ localizer = LocalizationSettings::GetInstance(); const wstring separator = L" "; for (unsigned int i = 0; i < nTokens; ++i) { auto currentToken = (*tokens)[i]; Common::TokenType type; bool isEditable = currentToken.second != -1; localizer->LocalizeDisplayValue(&(currentToken.first)); if (!isEditable) { type = currentToken.first == separator ? TokenType::Separator : TokenType::Operator; } else { const shared_ptr& command = m_commands->at(currentToken.second); type = command->GetCommandType() == CommandType::OperandCommand ? TokenType::Operand : TokenType::Operator; } auto currentTokenString = StringReference(currentToken.first.c_str()); if (i < m_ExpressionTokens->Size) { auto existingItem = m_ExpressionTokens->GetAt(i); if (type == existingItem->Type && existingItem->Token->Equals(currentTokenString)) { existingItem->TokenPosition = i; existingItem->IsTokenEditable = isEditable; existingItem->CommandIndex = 0; } else { auto expressionToken = ref new DisplayExpressionToken(currentTokenString, i, isEditable, type); m_ExpressionTokens->InsertAt(i, expressionToken); } } else { auto expressionToken = ref new DisplayExpressionToken(currentTokenString, i, isEditable, type); m_ExpressionTokens->Append(expressionToken); } } while (m_ExpressionTokens->Size != nTokens) { m_ExpressionTokens->RemoveAtEnd(); } } String ^ StandardCalculatorViewModel::GetCalculatorExpressionAutomationName() { String ^ expression = L""; for (auto&& token : m_ExpressionTokens) { expression += LocalizationService::GetNarratorReadableToken(token->Token); } return GetLocalizedStringFormat(m_expressionAutomationNameFormat, expression); } void StandardCalculatorViewModel::SetMemorizedNumbers(const vector& newMemorizedNumbers) { LocalizationSettings ^ localizer = LocalizationSettings::GetInstance(); if (newMemorizedNumbers.size() == 0) // Memory has been cleared { MemorizedNumbers->Clear(); IsMemoryEmpty = true; } // A new value is added to the memory else if (newMemorizedNumbers.size() > MemorizedNumbers->Size) { while (newMemorizedNumbers.size() > MemorizedNumbers->Size) { size_t newValuePosition = newMemorizedNumbers.size() - MemorizedNumbers->Size - 1; auto stringValue = newMemorizedNumbers.at(newValuePosition); MemoryItemViewModel ^ memorySlot = ref new MemoryItemViewModel(this); memorySlot->Position = 0; localizer->LocalizeDisplayValue(&stringValue); memorySlot->Value = ref new String(stringValue.c_str()); MemorizedNumbers->InsertAt(0, memorySlot); IsMemoryEmpty = IsAlwaysOnTop; // Update the slot position for the rest of the slots for (unsigned int i = 1; i < MemorizedNumbers->Size; i++) { MemorizedNumbers->GetAt(i)->Position++; } } } else if (newMemorizedNumbers.size() == MemorizedNumbers->Size) // Either M+ or M- { for (unsigned int i = 0; i < MemorizedNumbers->Size; i++) { auto newStringValue = newMemorizedNumbers.at(i); localizer->LocalizeDisplayValue(&newStringValue); // If the value is different, update the value if (MemorizedNumbers->GetAt(i)->Value != StringReference(newStringValue.c_str())) { MemorizedNumbers->GetAt(i)->Value = ref new String(newStringValue.c_str()); } } } } void StandardCalculatorViewModel::FtoEButtonToggled() { OnButtonPressed(NumbersAndOperatorsEnum::FToE); } void StandardCalculatorViewModel::HandleUpdatedOperandData(Command cmdenum) { DisplayExpressionToken ^ displayExpressionToken = ExpressionTokens->GetAt(m_TokenPosition); if (displayExpressionToken == nullptr) { return; } if ((displayExpressionToken->Token == nullptr) || (displayExpressionToken->Token->Length() == 0)) { displayExpressionToken->CommandIndex = 0; } wchar_t ch = 0; if ((cmdenum >= Command::Command0) && (cmdenum <= Command::Command9)) { switch (cmdenum) { case Command::Command0: ch = L'0'; break; case Command::Command1: ch = L'1'; break; case Command::Command2: ch = L'2'; break; case Command::Command3: ch = L'3'; break; case Command::Command4: ch = L'4'; break; case Command::Command5: ch = L'5'; break; case Command::Command6: ch = L'6'; break; case Command::Command7: ch = L'7'; break; case Command::Command8: ch = L'8'; break; case Command::Command9: ch = L'9'; break; } } else if (cmdenum == Command::CommandPNT) { ch = L'.'; } else if (cmdenum == Command::CommandBACK) { ch = L'x'; } else { return; } int length = 0; wchar_t* temp = new wchar_t[100]; const wchar_t* data = m_selectedExpressionLastData->Data(); int i = 0, j = 0; int commandIndex = displayExpressionToken->CommandIndex; if (IsOperandTextCompletelySelected) { // Clear older text; m_selectedExpressionLastData = L""; if (ch == L'x') { temp[0] = L'\0'; commandIndex = 0; } else { temp[0] = ch; temp[1] = L'\0'; commandIndex = 1; } IsOperandTextCompletelySelected = false; } else { if (ch == L'x') { if (commandIndex == 0) { delete[] temp; return; } length = m_selectedExpressionLastData->Length(); for (; j < length; ++j) { if (j == commandIndex - 1) { continue; } temp[i++] = data[j]; } temp[i] = L'\0'; commandIndex -= 1; } else { length = m_selectedExpressionLastData->Length() + 1; if (length > 50) { delete[] temp; return; } for (; i < length; ++i) { if (i == commandIndex) { temp[i] = ch; continue; } temp[i] = data[j++]; } temp[i] = L'\0'; commandIndex += 1; } } String ^ updatedData = ref new String(temp); UpdateOperand(m_TokenPosition, updatedData); displayExpressionToken->Token = updatedData; IsOperandUpdatedUsingViewModel = true; displayExpressionToken->CommandIndex = commandIndex; } bool StandardCalculatorViewModel::IsOperator(Command cmdenum) { if ((cmdenum >= Command::Command0 && cmdenum <= Command::Command9) || (cmdenum == Command::CommandPNT) || (cmdenum == Command::CommandBACK) || (cmdenum == Command::CommandEXP) || (cmdenum == Command::CommandFE) || (cmdenum == Command::ModeBasic) || (cmdenum == Command::ModeProgrammer) || (cmdenum == Command::ModeScientific) || (cmdenum == Command::CommandINV) || (cmdenum == Command::CommandCENTR) || (cmdenum == Command::CommandDEG) || (cmdenum == Command::CommandRAD) || (cmdenum == Command::CommandGRAD) || ((cmdenum >= Command::CommandBINEDITSTART) && (cmdenum <= Command::CommandBINEDITEND))) { return false; } return true; } void StandardCalculatorViewModel::OnButtonPressed(Object ^ parameter) { m_feedbackForButtonPress = CalculatorButtonPressedEventArgs::GetAuditoryFeedbackFromCommandParameter(parameter); NumbersAndOperatorsEnum numOpEnum = CalculatorButtonPressedEventArgs::GetOperationFromCommandParameter(parameter); Command cmdenum = ConvertToOperatorsEnum(numOpEnum); if (IsInError) { m_standardCalculatorManager.SendCommand(Command::CommandCLEAR); if (!IsRecoverableCommand(static_cast(numOpEnum))) { return; } } if (IsEditingEnabled && numOpEnum != NumbersAndOperatorsEnum::IsScientificMode && numOpEnum != NumbersAndOperatorsEnum::IsStandardMode && numOpEnum != NumbersAndOperatorsEnum::IsProgrammerMode && numOpEnum != NumbersAndOperatorsEnum::FToE && (numOpEnum != NumbersAndOperatorsEnum::Degree) && (numOpEnum != NumbersAndOperatorsEnum::Radians) && (numOpEnum != NumbersAndOperatorsEnum::Grads)) { if (!m_KeyPressed) { SaveEditedCommand(m_selectedExpressionToken->TokenPosition, cmdenum); } } else { if (numOpEnum == NumbersAndOperatorsEnum::IsStandardMode || numOpEnum == NumbersAndOperatorsEnum::IsScientificMode || numOpEnum == NumbersAndOperatorsEnum::IsProgrammerMode) { IsEditingEnabled = false; } if (numOpEnum == NumbersAndOperatorsEnum::Memory) { OnMemoryButtonPressed(); } else { if (numOpEnum == NumbersAndOperatorsEnum::Clear || numOpEnum == NumbersAndOperatorsEnum::ClearEntry || numOpEnum == NumbersAndOperatorsEnum::IsStandardMode || numOpEnum == NumbersAndOperatorsEnum::IsProgrammerMode) { // On Clear('C') the F-E button needs to be UnChecked if it in Checked state. // Also, the Primary Display Value should not show in exponential format. // Hence the check below to ensure parity with Desktop Calculator. // Clear the FE mode if the switching to StandardMode, since 'C'/'CE' in StandardMode // doesn't honor the FE button. if (IsFToEChecked) { IsFToEChecked = false; } } if (numOpEnum == NumbersAndOperatorsEnum::Degree || numOpEnum == NumbersAndOperatorsEnum::Radians || numOpEnum == NumbersAndOperatorsEnum::Grads) { m_CurrentAngleType = numOpEnum; } if ((cmdenum >= Command::Command0 && cmdenum <= Command::Command9) || (cmdenum == Command::CommandPNT) || (cmdenum == Command::CommandBACK) || (cmdenum == Command::CommandEXP)) { IsOperatorCommand = false; } else { IsOperatorCommand = true; } if (m_isLastOperationHistoryLoad && ((numOpEnum != NumbersAndOperatorsEnum::Degree) && (numOpEnum != NumbersAndOperatorsEnum::Radians) && (numOpEnum != NumbersAndOperatorsEnum::Grads))) { IsFToEEnabled = true; m_isLastOperationHistoryLoad = false; } TraceLogger::GetInstance()->UpdateButtonUsage(numOpEnum, GetCalculatorMode()); m_standardCalculatorManager.SendCommand(cmdenum); } } } RadixType StandardCalculatorViewModel::GetRadixTypeFromNumberBase(NumberBase base) { switch (base) { case NumberBase::BinBase: return RadixType::Binary; case NumberBase::HexBase: return RadixType::Hex; case NumberBase::OctBase: return RadixType::Octal; default: return RadixType::Decimal; } } void StandardCalculatorViewModel::OnCopyCommand(Object ^ parameter) { CopyPasteManager::CopyToClipboard(GetRawDisplayValue()); String ^ announcement = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::DisplayCopied); Announcement = CalculatorAnnouncement::GetDisplayCopiedAnnouncement(announcement); } void StandardCalculatorViewModel::OnPasteCommand(Object ^ parameter) { auto that(this); ViewMode mode; BitLength bitLengthType = BitLength::BitLengthUnknown; NumberBase numberBase = NumberBase::Unknown; if (IsScientific) { mode = ViewMode::Scientific; } else if (IsProgrammer) { mode = ViewMode::Programmer; bitLengthType = m_valueBitLength; numberBase = CurrentRadixType; } else { mode = ViewMode::Standard; } // if there's nothing to copy early out if (IsEditingEnabled || !CopyPasteManager::HasStringToPaste()) { return; } // Ensure that the paste happens on the UI thread create_task(CopyPasteManager::GetStringToPaste(mode, NavCategoryStates::GetGroupType(mode), numberBase, bitLengthType)) .then([that, mode](String ^ pastedString) { that->OnPaste(pastedString); }, concurrency::task_continuation_context::use_current()); } CalculationManager::Command StandardCalculatorViewModel::ConvertToOperatorsEnum(NumbersAndOperatorsEnum operation) { return safe_cast(operation); } void StandardCalculatorViewModel::OnPaste(String ^ pastedString) { // If pastedString is invalid("NoOp") then display pasteError else process the string if (CopyPasteManager::IsErrorMessage(pastedString)) { this->DisplayPasteError(); return; } TraceLogger::GetInstance()->LogInputPasted(GetCalculatorMode()); bool isFirstLegalChar = true; m_standardCalculatorManager.SendCommand(Command::CommandCENTR); bool sendNegate = false; bool processedDigit = false; bool sentEquals = false; bool isPreviousOperator = false; vector negateStack; // Iterate through each character pasted, and if it's valid, send it to the model. auto it = pastedString->Begin(); while (it != pastedString->End()) { bool sendCommand = true; auto buttonInfo = MapCharacterToButtonId(*it); NumbersAndOperatorsEnum mappedNumOp = buttonInfo.buttonId; bool canSendNegate = buttonInfo.canSendNegate; if (mappedNumOp == NumbersAndOperatorsEnum::None) { ++it; continue; } if (isFirstLegalChar || isPreviousOperator) { isFirstLegalChar = false; isPreviousOperator = false; // If the character is a - sign, send negate // after sending the next legal character. Send nothing now, or // it will be ignored. if (NumbersAndOperatorsEnum::Subtract == mappedNumOp) { sendNegate = true; sendCommand = false; } // Support (+) sign prefix if (NumbersAndOperatorsEnum::Add == mappedNumOp) { sendCommand = false; } } switch (mappedNumOp) { // Opening parenthesis starts a new expression and pushes negation state onto the stack case NumbersAndOperatorsEnum::OpenParenthesis: negateStack.push_back(sendNegate); sendNegate = false; break; // Closing parenthesis pops the negation state off the stack and sends it down to the calc engine case NumbersAndOperatorsEnum::CloseParenthesis: if (!negateStack.empty()) { sendNegate = negateStack.back(); negateStack.pop_back(); canSendNegate = true; } else { // Don't send a closing parenthesis if a matching opening parenthesis hasn't been sent already sendCommand = false; } break; case NumbersAndOperatorsEnum::Zero: case NumbersAndOperatorsEnum::One: case NumbersAndOperatorsEnum::Two: case NumbersAndOperatorsEnum::Three: case NumbersAndOperatorsEnum::Four: case NumbersAndOperatorsEnum::Five: case NumbersAndOperatorsEnum::Six: case NumbersAndOperatorsEnum::Seven: case NumbersAndOperatorsEnum::Eight: case NumbersAndOperatorsEnum::Nine: processedDigit = true; break; case NumbersAndOperatorsEnum::Add: case NumbersAndOperatorsEnum::Subtract: case NumbersAndOperatorsEnum::Multiply: case NumbersAndOperatorsEnum::Divide: isPreviousOperator = true; break; } if (sendCommand) { sentEquals = (mappedNumOp == NumbersAndOperatorsEnum::Equals); Command cmdenum = ConvertToOperatorsEnum(mappedNumOp); m_standardCalculatorManager.SendCommand(cmdenum); // The CalcEngine state machine won't allow the negate command to be sent before any // other digits, so instead a flag is set and the command is sent after the first appropriate // command. if (sendNegate) { if (canSendNegate) { Command cmdNegate = ConvertToOperatorsEnum(NumbersAndOperatorsEnum::Negate); m_standardCalculatorManager.SendCommand(cmdNegate); } // Can't send negate on a leading zero, so wait until the appropriate time to send it. if (NumbersAndOperatorsEnum::Zero != mappedNumOp && NumbersAndOperatorsEnum::Decimal != mappedNumOp) { sendNegate = false; } } } // Handle exponent and exponent sign (...e+... or ...e-... or ...e...) if (mappedNumOp == NumbersAndOperatorsEnum::Exp) { // Check the following item switch (MapCharacterToButtonId(*(it + 1)).buttonId) { case NumbersAndOperatorsEnum::Subtract: { Command cmdNegate = ConvertToOperatorsEnum(NumbersAndOperatorsEnum::Negate); m_standardCalculatorManager.SendCommand(cmdNegate); ++it; } break; case NumbersAndOperatorsEnum::Add: { // Nothing to do, skip to the next item ++it; } break; } } ++it; } } void StandardCalculatorViewModel::OnClearMemoryCommand(Object ^ parameter) { m_standardCalculatorManager.MemorizedNumberClearAll(); TraceLogger::GetInstance()->UpdateButtonUsage(NumbersAndOperatorsEnum::MemoryClear, GetCalculatorMode()); if (m_localizedMemoryCleared == nullptr) { m_localizedMemoryCleared = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::MemoryCleared); } Announcement = CalculatorAnnouncement::GetMemoryClearedAnnouncement(m_localizedMemoryCleared); } ButtonInfo StandardCalculatorViewModel::MapCharacterToButtonId(char16 ch) { ButtonInfo result; result.buttonId = NumbersAndOperatorsEnum::None; result.canSendNegate = false; switch (ch) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': result.buttonId = NumbersAndOperatorsEnum::Zero + static_cast(ch - L'0'); result.canSendNegate = true; break; case '*': result.buttonId = NumbersAndOperatorsEnum::Multiply; break; case '+': result.buttonId = NumbersAndOperatorsEnum::Add; break; case '-': result.buttonId = NumbersAndOperatorsEnum::Subtract; break; case '/': result.buttonId = NumbersAndOperatorsEnum::Divide; break; case '^': if (IsScientific) { result.buttonId = NumbersAndOperatorsEnum::XPowerY; } break; case '%': if (IsScientific || IsProgrammer) { result.buttonId = NumbersAndOperatorsEnum::Mod; } break; case '=': result.buttonId = NumbersAndOperatorsEnum::Equals; break; case '(': result.buttonId = NumbersAndOperatorsEnum::OpenParenthesis; break; case ')': result.buttonId = NumbersAndOperatorsEnum::CloseParenthesis; break; case 'a': case 'A': result.buttonId = NumbersAndOperatorsEnum::A; break; case 'b': case 'B': result.buttonId = NumbersAndOperatorsEnum::B; break; case 'c': case 'C': result.buttonId = NumbersAndOperatorsEnum::C; break; case 'd': case 'D': result.buttonId = NumbersAndOperatorsEnum::D; break; case 'e': case 'E': // Only allow scientific notation in scientific mode if (IsProgrammer) { result.buttonId = NumbersAndOperatorsEnum::E; } else { result.buttonId = NumbersAndOperatorsEnum::Exp; } break; case 'f': case 'F': result.buttonId = NumbersAndOperatorsEnum::F; break; default: // For the decimalSeparator, we need to respect the user setting. if (ch == m_decimalSeparator) { result.buttonId = NumbersAndOperatorsEnum::Decimal; } break; } if (result.buttonId == NumbersAndOperatorsEnum::None) { if (LocalizationSettings::GetInstance()->IsLocalizedDigit(ch)) { result.buttonId = NumbersAndOperatorsEnum::Zero + static_cast(ch - LocalizationSettings::GetInstance()->GetDigitSymbolFromEnUsDigit('0')); result.canSendNegate = true; } } // Negate cannot be sent for leading zeroes if (NumbersAndOperatorsEnum::Zero == result.buttonId) { result.canSendNegate = false; } return result; } void StandardCalculatorViewModel::OnInputChanged() { IsInputEmpty = m_standardCalculatorManager.IsInputEmpty(); } void StandardCalculatorViewModel::OnMemoryButtonPressed() { m_standardCalculatorManager.MemorizeNumber(); TraceLogger::GetInstance()->UpdateButtonUsage(NumbersAndOperatorsEnum::Memory, GetCalculatorMode()); if (m_localizedMemorySavedAutomationFormat == nullptr) { m_localizedMemorySavedAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::MemorySave); } String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedMemorySavedAutomationFormat, m_DisplayValue); Announcement = CalculatorAnnouncement::GetMemoryItemAddedAnnouncement(announcement); } void StandardCalculatorViewModel::OnMemoryItemChanged(unsigned int indexOfMemory) { if (indexOfMemory < MemorizedNumbers->Size) { MemoryItemViewModel ^ memSlot = MemorizedNumbers->GetAt(indexOfMemory); String ^ localizedValue = memSlot->Value; wstring localizedIndex = to_wstring(indexOfMemory + 1); LocalizationSettings::GetInstance()->LocalizeDisplayValue(&localizedIndex); if (m_localizedMemoryItemChangedAutomationFormat == nullptr) { m_localizedMemoryItemChangedAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::MemoryItemChanged); } String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedMemoryItemChangedAutomationFormat, StringReference(localizedIndex.c_str()), localizedValue); Announcement = CalculatorAnnouncement::GetMemoryItemChangedAnnouncement(announcement); } } void StandardCalculatorViewModel::OnMemoryItemPressed(Object ^ memoryItemPosition) { if (MemorizedNumbers && MemorizedNumbers->Size > 0) { auto boxedPosition = safe_cast ^>(memoryItemPosition); m_standardCalculatorManager.MemorizedNumberLoad(boxedPosition->Value); HideMemoryClicked(); auto mode = IsStandard ? ViewMode::Standard : IsScientific ? ViewMode::Scientific : ViewMode::Programmer; TraceLogger::GetInstance()->LogMemoryItemLoad(mode, MemorizedNumbers->Size, boxedPosition->Value); } } void StandardCalculatorViewModel::OnMemoryAdd(Object ^ memoryItemPosition) { // M+ will add display to memorylist if memory list is empty. if (MemorizedNumbers) { auto boxedPosition = safe_cast ^>(memoryItemPosition); TraceLogger::GetInstance()->UpdateButtonUsage(NumbersAndOperatorsEnum::MemoryAdd, GetCalculatorMode()); m_standardCalculatorManager.MemorizedNumberAdd(boxedPosition->Value); } } void StandardCalculatorViewModel::OnMemorySubtract(Object ^ memoryItemPosition) { // M- will add negative of displayed number to memorylist if memory list is empty. if (MemorizedNumbers) { auto boxedPosition = safe_cast ^>(memoryItemPosition); TraceLogger::GetInstance()->UpdateButtonUsage(NumbersAndOperatorsEnum::MemorySubtract, GetCalculatorMode()); m_standardCalculatorManager.MemorizedNumberSubtract(boxedPosition->Value); } } void StandardCalculatorViewModel::OnMemoryClear(_In_ Object ^ memoryItemPosition) { if (MemorizedNumbers && MemorizedNumbers->Size > 0) { auto boxedPosition = safe_cast ^>(memoryItemPosition); if (boxedPosition->Value >= 0) { unsigned int unsignedPosition = safe_cast(boxedPosition->Value); m_standardCalculatorManager.MemorizedNumberClear(unsignedPosition); MemorizedNumbers->RemoveAt(unsignedPosition); for (unsigned int i = 0; i < MemorizedNumbers->Size; i++) { MemorizedNumbers->GetAt(i)->Position = i; } if (MemorizedNumbers->Size == 0) { IsMemoryEmpty = true; } TraceLogger::GetInstance()->UpdateButtonUsage(NumbersAndOperatorsEnum::MemoryClear, GetCalculatorMode()); wstring localizedIndex = to_wstring(boxedPosition->Value + 1); LocalizationSettings::GetInstance()->LocalizeDisplayValue(&localizedIndex); if (m_localizedMemoryItemClearedAutomationFormat == nullptr) { m_localizedMemoryItemClearedAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::MemoryItemCleared); } String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedMemoryItemClearedAutomationFormat, StringReference(localizedIndex.c_str())); Announcement = CalculatorAnnouncement::GetMemoryClearedAnnouncement(announcement); } } } void StandardCalculatorViewModel::OnPropertyChanged(String ^ propertyname) { if (propertyname == IsScientificPropertyName) { if (IsScientific) { OnButtonPressed(NumbersAndOperatorsEnum::IsScientificMode); } } else if (propertyname == IsProgrammerPropertyName) { if (IsProgrammer) { OnButtonPressed(NumbersAndOperatorsEnum::IsProgrammerMode); } } else if (propertyname == IsStandardPropertyName) { if (IsStandard) { OnButtonPressed(NumbersAndOperatorsEnum::IsStandardMode); } } else if (propertyname == DisplayValuePropertyName) { RaisePropertyChanged(CalculationResultAutomationNamePropertyName); Announcement = GetDisplayUpdatedNarratorAnnouncement(); } else if (propertyname == IsBitFlipCheckedPropertyName) { TraceLogger::GetInstance()->UpdateButtonUsage( IsBitFlipChecked ? NumbersAndOperatorsEnum::BitflipButton : NumbersAndOperatorsEnum::FullKeypadButton, ViewMode::Programmer); } else if (propertyname == IsAlwaysOnTopPropertyName) { String ^ announcement; if (IsAlwaysOnTop) { announcement = AppResourceProvider::GetInstance()->GetResourceString(CalcAlwaysOnTop); } else { announcement = AppResourceProvider::GetInstance()->GetResourceString(CalcBackToFullView); } Announcement = CalculatorAnnouncement::GetAlwaysOnTopChangedAnnouncement(announcement); } } void StandardCalculatorViewModel::SetCalculatorType(ViewMode targetState) { // Reset error state so that commands caused by the mode change are still // sent if calc is currently in error state. IsInError = false; // Setting one of these properties to true will set the others to false. switch (targetState) { case ViewMode::Standard: IsStandard = true; ResetRadixAndUpdateMemory(true); SetPrecision(StandardModePrecision); UpdateMaxIntDigits(); break; case ViewMode::Scientific: IsScientific = true; ResetRadixAndUpdateMemory(true); SetPrecision(ScientificModePrecision); break; case ViewMode::Programmer: IsProgrammer = true; ResetRadixAndUpdateMemory(false); SetPrecision(ProgrammerModePrecision); break; } } String ^ StandardCalculatorViewModel::GetRawDisplayValue() { if (IsInError) { return DisplayValue; } else { return LocalizationSettings::GetInstance()->RemoveGroupSeparators(DisplayValue); } } // Given a format string, returns a string with the input display value inserted. // 'format' is a localized string containing a %1 formatting mark where the display value should be inserted. // 'displayValue' is a localized string containing a numerical value to be displayed to the user. String ^ StandardCalculatorViewModel::GetLocalizedStringFormat(String ^ format, String ^ displayValue) { return LocalizationStringUtil::GetLocalizedString(format, displayValue); } void StandardCalculatorViewModel::ResetRadixAndUpdateMemory(bool resetRadix) { if (resetRadix) { AreHEXButtonsEnabled = false; CurrentRadixType = NumberBase::DecBase; m_standardCalculatorManager.SetRadix(RadixType::Decimal); } else { m_standardCalculatorManager.SetMemorizedNumbersString(); } } void StandardCalculatorViewModel::SetPrecision(int32_t precision) { m_standardCalculatorManager.SetPrecision(precision); } void StandardCalculatorViewModel::SwitchProgrammerModeBase(NumberBase numberBase) { if (IsInError) { m_standardCalculatorManager.SendCommand(Command::CommandCLEAR); } AreHEXButtonsEnabled = numberBase == NumberBase::HexBase; CurrentRadixType = numberBase; m_standardCalculatorManager.SetRadix(GetRadixTypeFromNumberBase(numberBase)); } void StandardCalculatorViewModel::SetMemorizedNumbersString() { m_standardCalculatorManager.SetMemorizedNumbersString(); } AngleType GetAngleTypeFromCommand(Command command) { switch (command) { case Command::CommandDEG: return AngleType::Degrees; case Command::CommandRAD: return AngleType::Radians; case Command::CommandGRAD: return AngleType::Gradians; default: throw ref new Exception(E_FAIL, L"Invalid command type"); } } void StandardCalculatorViewModel::SaveEditedCommand(_In_ unsigned int tokenPosition, _In_ Command command) { bool handleOperand = false; wstring updatedToken; const pair& token = m_tokens->at(tokenPosition); const shared_ptr& tokenCommand = m_commands->at(token.second); if (IsUnaryOp(command) && command != Command::CommandSIGN) { int angleCmd = static_cast(m_standardCalculatorManager.GetCurrentDegreeMode()); AngleType angleType = GetAngleTypeFromCommand(static_cast(angleCmd)); if (IsTrigOp(command)) { shared_ptr spUnaryCommand = dynamic_pointer_cast(tokenCommand); spUnaryCommand->SetCommands(angleCmd, static_cast(command)); } else { shared_ptr spUnaryCommand = dynamic_pointer_cast(tokenCommand); spUnaryCommand->SetCommand(static_cast(command)); } switch (command) { case Command::CommandASIN: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandSIN), true, angleType); break; case Command::CommandACOS: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandCOS), true, angleType); break; case Command::CommandATAN: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandTAN), true, angleType); break; case Command::CommandASINH: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandSINH), true, angleType); break; case Command::CommandACOSH: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandCOSH), true, angleType); break; case Command::CommandATANH: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandTANH), true, angleType); break; case Command::CommandPOWE: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(Command::CommandLN), true, angleType); break; default: updatedToken = CCalcEngine::OpCodeToUnaryString(static_cast(command), false, angleType); } if ((token.first.length() > 0) && (token.first[token.first.length() - 1] == L'(')) { updatedToken += L'('; } } else if (IsBinOp(command)) { shared_ptr spBinaryCommand = dynamic_pointer_cast(tokenCommand); spBinaryCommand->SetCommand(static_cast(command)); updatedToken = CCalcEngine::OpCodeToString(static_cast(command)); } else if (IsOpnd(command) || command == Command::CommandBACK) { HandleUpdatedOperandData(command); handleOperand = true; } else if (command == Command::CommandSIGN) { if (tokenCommand->GetCommandType() == CommandType::UnaryCommand) { shared_ptr spSignCommand = make_shared(static_cast(command)); m_commands->insert(m_commands->begin() + token.second + 1, spSignCommand); } else { shared_ptr spOpndCommand = dynamic_pointer_cast(tokenCommand); spOpndCommand->ToggleSign(); updatedToken = spOpndCommand->GetToken(m_standardCalculatorManager.DecimalSeparator()); } IsOperandUpdatedUsingViewModel = true; } if (!handleOperand) { (*m_commands)[token.second] = tokenCommand; (*m_tokens)[tokenPosition].first = updatedToken; DisplayExpressionToken ^ displayExpressionToken = ExpressionTokens->GetAt(tokenPosition); displayExpressionToken->Token = ref new Platform::String(updatedToken.c_str()); // Special casing if (command == Command::CommandSIGN && tokenCommand->GetCommandType() == CommandType::UnaryCommand) { IsEditingEnabled = false; Recalculate(); } } } void StandardCalculatorViewModel::Recalculate(bool fromHistory) { // Recalculate Command currentDegreeMode = m_standardCalculatorManager.GetCurrentDegreeMode(); shared_ptr>> savedCommands = std::make_shared>>(*m_commands); vector currentCommands = GetCommandsFromExpressionCommands(*m_commands); shared_ptr>> savedTokens = make_shared>>(); for (const auto& currentToken : *m_tokens) { savedTokens->push_back(currentToken); } m_standardCalculatorManager.Reset(false); if (IsScientific) { m_standardCalculatorManager.SendCommand(Command::ModeScientific); } if (IsFToEChecked) { m_standardCalculatorManager.SendCommand(Command::CommandFE); } m_standardCalculatorManager.SendCommand(currentDegreeMode); for (int command : currentCommands) { m_standardCalculatorManager.SendCommand(static_cast(command)); } if (fromHistory) // This is for the cases where the expression is loaded from history { // To maintain F-E state of the engine, as the last operand hasn't reached engine by now m_standardCalculatorManager.SendCommand(Command::CommandFE); m_standardCalculatorManager.SendCommand(Command::CommandFE); } // After recalculation. If there is an error then // IsInError should be set synchronously. if (IsInError) { SetExpressionDisplay(savedTokens, savedCommands); } } bool StandardCalculatorViewModel::IsOpnd(Command command) { static constexpr Command opnd[] = { Command::Command0, Command::Command1, Command::Command2, Command::Command3, Command::Command4, Command::Command5, Command::Command6, Command::Command7, Command::Command8, Command::Command9, Command::CommandPNT }; return find(begin(opnd), end(opnd), command) != end(opnd); } bool StandardCalculatorViewModel::IsUnaryOp(Command command) { static constexpr Command unaryOp[] = { Command::CommandSQRT, Command::CommandFAC, Command::CommandSQR, Command::CommandLOG, Command::CommandPOW10, Command::CommandPOWE, Command::CommandLN, Command::CommandREC, Command::CommandSIGN, Command::CommandSINH, Command::CommandASINH, Command::CommandCOSH, Command::CommandACOSH, Command::CommandTANH, Command::CommandATANH, Command::CommandCUB }; if (find(begin(unaryOp), end(unaryOp), command) != end(unaryOp)) { return true; } if (IsTrigOp(command)) { return true; } return false; } bool StandardCalculatorViewModel::IsTrigOp(Command command) { static constexpr Command trigOp[] = { Command::CommandSIN, Command::CommandCOS, Command::CommandTAN, Command::CommandASIN, Command::CommandACOS, Command::CommandATAN }; return find(begin(trigOp), end(trigOp), command) != end(trigOp); } bool StandardCalculatorViewModel::IsBinOp(Command command) { static constexpr Command binOp[] = { Command::CommandADD, Command::CommandSUB, Command::CommandMUL, Command::CommandDIV, Command::CommandEXP, Command::CommandROOT, Command::CommandMOD, Command::CommandPWR }; return find(begin(binOp), end(binOp), command) != end(binOp); } bool StandardCalculatorViewModel::IsRecoverableCommand(Command command) { if (IsOpnd(command)) { return true; } // Programmer mode, bit flipping if (Command::CommandBINEDITSTART <= command && command <= Command::CommandBINEDITEND) { return true; } static constexpr Command recoverableCommands[] = { Command::CommandA, Command::CommandB, Command::CommandC, Command::CommandD, Command::CommandE, Command::CommandF }; return find(begin(recoverableCommands), end(recoverableCommands), command) != end(recoverableCommands); } size_t StandardCalculatorViewModel::LengthWithoutPadding(wstring str) { return str.length() - count(str.begin(), str.end(), L' '); } wstring StandardCalculatorViewModel::AddPadding(wstring binaryString) { if (LocalizationSettings::GetInstance()->GetEnglishValueFromLocalizedDigits(StringReference(binaryString.c_str())) == L"0") { return binaryString; } size_t pad = 4 - LengthWithoutPadding(binaryString) % 4; if (pad == 4) { pad = 0; } return wstring(pad, L'0') + binaryString; } void StandardCalculatorViewModel::UpdateProgrammerPanelDisplay() { constexpr int32_t precision = 64; wstring hexDisplayString; wstring decimalDisplayString; wstring octalDisplayString; wstring binaryDisplayString; if (!IsInError) { // we want the precision to be set to maximum value so that the autoconversions result as desired if ((hexDisplayString = m_standardCalculatorManager.GetResultForRadix(16, precision, true)) == L"") { hexDisplayString = DisplayValue->Data(); decimalDisplayString = DisplayValue->Data(); octalDisplayString = DisplayValue->Data(); binaryDisplayString = DisplayValue->Data(); } else { decimalDisplayString = m_standardCalculatorManager.GetResultForRadix(10, precision, true); octalDisplayString = m_standardCalculatorManager.GetResultForRadix(8, precision, true); binaryDisplayString = m_standardCalculatorManager.GetResultForRadix(2, precision, true); } } LocalizationSettings ^ localizer = LocalizationSettings::GetInstance(); binaryDisplayString = AddPadding(binaryDisplayString); localizer->LocalizeDisplayValue(&hexDisplayString); localizer->LocalizeDisplayValue(&decimalDisplayString); localizer->LocalizeDisplayValue(&octalDisplayString); localizer->LocalizeDisplayValue(&binaryDisplayString); HexDisplayValue = ref new Platform::String(hexDisplayString.c_str()); DecimalDisplayValue = ref new Platform::String(decimalDisplayString.c_str()); OctalDisplayValue = ref new Platform::String(octalDisplayString.c_str()); BinaryDisplayValue = ref new Platform::String(binaryDisplayString.c_str()); HexDisplayValue_AutomationName = GetLocalizedStringFormat(m_localizedHexaDecimalAutomationFormat, GetNarratorStringReadRawNumbers(HexDisplayValue)); DecDisplayValue_AutomationName = GetLocalizedStringFormat(m_localizedDecimalAutomationFormat, DecimalDisplayValue); OctDisplayValue_AutomationName = GetLocalizedStringFormat(m_localizedOctalAutomationFormat, GetNarratorStringReadRawNumbers(OctalDisplayValue)); BinDisplayValue_AutomationName = GetLocalizedStringFormat(m_localizedBinaryAutomationFormat, GetNarratorStringReadRawNumbers(BinaryDisplayValue)); auto binaryValueArray = ref new Vector(64, false); auto binaryValue = m_standardCalculatorManager.GetResultForRadix(2, precision, false); int i = 0; // To get bit 0, grab from opposite end of string. for (std::wstring::reverse_iterator it = binaryValue.rbegin(); it != binaryValue.rend(); ++it) { binaryValueArray->SetAt(i++, *it == L'1'); } BinaryDigits = binaryValueArray; } void StandardCalculatorViewModel::SwitchAngleType(NumbersAndOperatorsEnum num) { OnButtonPressed(num); } void StandardCalculatorViewModel::UpdateOperand(int pos, String ^ text) { pair p = m_tokens->at(pos); String ^ englishString = LocalizationSettings::GetInstance()->GetEnglishValueFromLocalizedDigits(text); p.first = englishString->Data(); int commandPos = p.second; const shared_ptr& exprCmd = m_commands->at(commandPos); auto operandCommand = std::dynamic_pointer_cast(exprCmd); if (operandCommand != nullptr) { shared_ptr> commands = make_shared>(); size_t length = p.first.length(); if (length > 0) { int num = 0; for (unsigned int i = 0; i < length; ++i) { if (p.first[i] == L'.') { num = static_cast(Command::CommandPNT); } else if (p.first[i] == L'e') { num = static_cast(Command::CommandEXP); } else if (p.first[i] == L'-') { num = static_cast(Command::CommandSIGN); if (i == 0) { shared_ptr spOpndCommand = dynamic_pointer_cast(exprCmd); if (!spOpndCommand->IsNegative()) { spOpndCommand->ToggleSign(); } continue; } } else { num = static_cast(p.first[i]) - ASCII_0; num += IDC_0; if (num == static_cast(Command::CommandMPLUS)) { continue; } } commands->push_back(num); } } else { commands->push_back(0); } operandCommand->SetCommands(commands); } } void StandardCalculatorViewModel::OnMaxDigitsReached() { if (m_localizedMaxDigitsReachedAutomationFormat == nullptr) { m_localizedMaxDigitsReachedAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::MaxDigitsReachedFormat); } String ^ announcement = LocalizationStringUtil::GetLocalizedString(m_localizedMaxDigitsReachedAutomationFormat, m_CalculationResultAutomationName); Announcement = CalculatorAnnouncement::GetMaxDigitsReachedAnnouncement(announcement); } void StandardCalculatorViewModel::OnBinaryOperatorReceived() { Announcement = GetDisplayUpdatedNarratorAnnouncement(); } NarratorAnnouncement ^ StandardCalculatorViewModel::GetDisplayUpdatedNarratorAnnouncement() { String ^ announcement; if (m_feedbackForButtonPress == nullptr || m_feedbackForButtonPress->IsEmpty()) { announcement = m_CalculationResultAutomationName; } else { if (m_localizedButtonPressFeedbackAutomationFormat == nullptr) { m_localizedButtonPressFeedbackAutomationFormat = AppResourceProvider::GetInstance()->GetResourceString(CalculatorResourceKeys::ButtonPressFeedbackFormat); } announcement = LocalizationStringUtil::GetLocalizedString( m_localizedButtonPressFeedbackAutomationFormat, m_CalculationResultAutomationName, m_feedbackForButtonPress); } // Make sure we don't accidentally repeat an announcement. m_feedbackForButtonPress = nullptr; return CalculatorAnnouncement::GetDisplayUpdatedAnnouncement(announcement); } ViewMode StandardCalculatorViewModel::GetCalculatorMode() { if (IsStandard) { return ViewMode::Standard; } else if (IsScientific) { return ViewMode::Scientific; } return ViewMode::Programmer; } void StandardCalculatorViewModel::ValueBitLength::set(CalculatorApp::ViewModel::Common::BitLength value) { if (m_valueBitLength != value) { m_valueBitLength = value; RaisePropertyChanged(L"ValueBitLength"); switch (value) { case BitLength::BitLengthQWord: ButtonPressed->Execute(NumbersAndOperatorsEnum::Qword); break; case BitLength::BitLengthDWord: ButtonPressed->Execute(NumbersAndOperatorsEnum::Dword); break; case BitLength::BitLengthWord: ButtonPressed->Execute(NumbersAndOperatorsEnum::Word); break; case BitLength::BitLengthByte: ButtonPressed->Execute(NumbersAndOperatorsEnum::Byte); break; } // update memory list according to bit length SetMemorizedNumbersString(); } } void StandardCalculatorViewModel::SelectHistoryItem(HistoryItemViewModel ^ item) { SetHistoryExpressionDisplay(item->GetTokens(), item->GetCommands()); SetExpressionDisplay(item->GetTokens(), item->GetCommands()); SetPrimaryDisplay(item->Result, false); IsFToEEnabled = false; } void StandardCalculatorViewModel::ResetCalcManager(bool clearMemory) { m_standardCalculatorManager.Reset(clearMemory); } void StandardCalculatorViewModel::SendCommandToCalcManager(int commandId) { m_standardCalculatorManager.SendCommand(static_cast(commandId)); } void StandardCalculatorViewModel::SetBitshiftRadioButtonCheckedAnnouncement(Platform::String ^ announcement) { Announcement = CalculatorAnnouncement::GetBitShiftRadioButtonCheckedAnnouncement(announcement); } CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot ^ StandardCalculatorViewModel::Snapshot::get() { auto result = ref new CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot(); result->CalcManager = ref new CalculatorApp::ViewModel::Snapshot::CalcManagerSnapshot(m_standardCalculatorManager); result->PrimaryDisplay = ref new CalculatorApp::ViewModel::Snapshot::PrimaryDisplaySnapshot(m_DisplayValue, m_IsInError); if (!m_tokens->empty() && !m_commands->empty()) { result->ExpressionDisplay = ref new CalculatorApp::ViewModel::Snapshot::ExpressionDisplaySnapshot(*m_tokens, *m_commands); } result->DisplayCommands = ref new Platform::Collections::Vector(); for (auto cmd : m_standardCalculatorManager.GetDisplayCommandsSnapshot()) { result->DisplayCommands->Append(CalculatorApp::ViewModel::Snapshot::CreateExprCommand(cmd.get())); } return result; } void CalculatorApp::ViewModel::StandardCalculatorViewModel::Snapshot::set(CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot ^ snapshot) { assert(snapshot != nullptr); m_standardCalculatorManager.Reset(); if (snapshot->CalcManager->HistoryItems != nullptr) { m_standardCalculatorManager.SetHistoryItems(ToUnderlying(snapshot->CalcManager->HistoryItems)); } if (snapshot->ExpressionDisplay != nullptr) { if (snapshot->DisplayCommands->Size == 0) { // use case: the current expression was evaluated before. load from history. assert(!snapshot->PrimaryDisplay->IsError); using RawTokenCollection = std::vector>; RawTokenCollection rawTokens; for (CalculatorApp::ViewModel::Snapshot::CalcManagerToken ^ token : snapshot->ExpressionDisplay->Tokens) { rawTokens.push_back(std::pair{ token->OpCodeName->Data(), token->CommandIndex }); } auto tokens = std::make_shared(rawTokens); auto commands = std::make_shared>>(ToUnderlying(snapshot->ExpressionDisplay->Commands)); SetHistoryExpressionDisplay(tokens, commands); SetExpressionDisplay(tokens, commands); SetPrimaryDisplay(snapshot->PrimaryDisplay->DisplayValue, false); } else { // use case: the current expression was not evaluated before, or it was an error. auto displayCommands = GetCommandsFromExpressionCommands(ToUnderlying(snapshot->DisplayCommands)); for (auto cmd : displayCommands) { m_standardCalculatorManager.SendCommand(static_cast(cmd)); } if (snapshot->PrimaryDisplay->IsError) { SetPrimaryDisplay(snapshot->PrimaryDisplay->DisplayValue, true); } } } else { if (snapshot->PrimaryDisplay->IsError) { // use case: user copy-pasted an invalid expression to Calculator and caused an error. SetPrimaryDisplay(snapshot->PrimaryDisplay->DisplayValue, true); } else { // use case: there was no expression but user was inputing some numbers (including negative numbers). auto commands = GetCommandsFromExpressionCommands(ToUnderlying(snapshot->DisplayCommands)); for (auto cmd : commands) { m_standardCalculatorManager.SendCommand(static_cast(cmd)); } } } } ================================================ FILE: src/CalcViewModel/StandardCalculatorViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "Common/Automation/NarratorAnnouncement.h" #include "Common/DisplayExpressionToken.h" #include "Common/CalculatorDisplay.h" #include "Common/EngineResourceProvider.h" #include "Common/CalculatorButtonUser.h" #include "Common/BitLength.h" #include "Common/NumberBase.h" #include "HistoryViewModel.h" #include "MemoryItemViewModel.h" #include "Snapshots.h" namespace CalculatorUnitTests { class MultiWindowUnitTests; } namespace CalculatorApp { namespace WS = Windows::System; namespace CM = CalculationManager; namespace ViewModel { #define ASCII_0 48 public delegate void HideMemoryClickedHandler(); public value struct ButtonInfo { CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum buttonId; bool canSendNegate; }; [Windows::UI::Xaml::Data::Bindable] public ref class StandardCalculatorViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: StandardCalculatorViewModel(); void UpdateOperand(int pos, Platform::String ^ text); OBSERVABLE_OBJECT_CALLBACK(OnPropertyChanged); OBSERVABLE_PROPERTY_RW(Platform::String ^, DisplayValue); OBSERVABLE_PROPERTY_R(HistoryViewModel ^, HistoryVM); OBSERVABLE_PROPERTY_RW(bool, IsAlwaysOnTop); OBSERVABLE_PROPERTY_R(bool, IsBinaryBitFlippingEnabled); PROPERTY_R(bool, IsOperandUpdatedUsingViewModel); PROPERTY_R(int, TokenPosition); PROPERTY_R(bool, IsOperandTextCompletelySelected); PROPERTY_R(bool, KeyPressed); PROPERTY_R(Platform::String ^, SelectedExpressionLastData); OBSERVABLE_NAMED_PROPERTY_R(bool, IsInError); OBSERVABLE_PROPERTY_R(bool, IsOperatorCommand); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, ExpressionTokens); OBSERVABLE_PROPERTY_R(Platform::String ^, DecimalDisplayValue); OBSERVABLE_PROPERTY_R(Platform::String ^, HexDisplayValue); OBSERVABLE_PROPERTY_R(Platform::String ^, OctalDisplayValue); OBSERVABLE_NAMED_PROPERTY_R(Platform::String ^, BinaryDisplayValue); OBSERVABLE_NAMED_PROPERTY_R(Windows::Foundation::Collections::IVector ^, BinaryDigits); OBSERVABLE_PROPERTY_R(Platform::String ^, HexDisplayValue_AutomationName); OBSERVABLE_PROPERTY_R(Platform::String ^, DecDisplayValue_AutomationName); OBSERVABLE_PROPERTY_R(Platform::String ^, OctDisplayValue_AutomationName); OBSERVABLE_PROPERTY_R(Platform::String ^, BinDisplayValue_AutomationName); OBSERVABLE_PROPERTY_R(bool, IsBinaryOperatorEnabled); OBSERVABLE_PROPERTY_R(bool, IsUnaryOperatorEnabled); OBSERVABLE_PROPERTY_R(bool, IsNegateEnabled); OBSERVABLE_PROPERTY_RW(bool, IsDecimalEnabled); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IVector ^, MemorizedNumbers); OBSERVABLE_NAMED_PROPERTY_RW(bool, IsMemoryEmpty); OBSERVABLE_PROPERTY_R(bool, IsFToEChecked); OBSERVABLE_PROPERTY_R(bool, IsFToEEnabled); OBSERVABLE_PROPERTY_R(bool, AreHEXButtonsEnabled); OBSERVABLE_PROPERTY_R(Platform::String ^, CalculationResultAutomationName); OBSERVABLE_PROPERTY_R(Platform::String ^, CalculationExpressionAutomationName); OBSERVABLE_PROPERTY_R(bool, IsShiftProgrammerChecked); OBSERVABLE_PROPERTY_R(CalculatorApp::ViewModel::Common::NumberBase, CurrentRadixType); OBSERVABLE_PROPERTY_R(bool, AreTokensUpdated); OBSERVABLE_PROPERTY_R(bool, AreAlwaysOnTopResultsUpdated); OBSERVABLE_PROPERTY_R(bool, AreProgrammerRadixOperatorsVisible); OBSERVABLE_PROPERTY_R(bool, IsInputEmpty); OBSERVABLE_PROPERTY_R(CalculatorApp::ViewModel::Common::Automation::NarratorAnnouncement ^, Announcement); OBSERVABLE_PROPERTY_R(unsigned int, OpenParenthesisCount); COMMAND_FOR_METHOD(CopyCommand, StandardCalculatorViewModel::OnCopyCommand); COMMAND_FOR_METHOD(PasteCommand, StandardCalculatorViewModel::OnPasteCommand); COMMAND_FOR_METHOD(ButtonPressed, StandardCalculatorViewModel::OnButtonPressed); COMMAND_FOR_METHOD(ClearMemoryCommand, StandardCalculatorViewModel::OnClearMemoryCommand); COMMAND_FOR_METHOD(MemoryItemPressed, StandardCalculatorViewModel::OnMemoryItemPressed); COMMAND_FOR_METHOD(MemoryAdd, StandardCalculatorViewModel::OnMemoryAdd); COMMAND_FOR_METHOD(MemorySubtract, StandardCalculatorViewModel::OnMemorySubtract); event HideMemoryClickedHandler ^ HideMemoryClicked; property bool IsBitFlipChecked { bool get() { return m_isBitFlipChecked; } void set(bool value) { if (m_isBitFlipChecked != value) { m_isBitFlipChecked = value; IsBinaryBitFlippingEnabled = IsProgrammer && m_isBitFlipChecked; AreProgrammerRadixOperatorsVisible = IsProgrammer && !m_isBitFlipChecked; RaisePropertyChanged(L"IsBitFlipChecked"); } } } static property Platform::String ^ IsBitFlipCheckedPropertyName { Platform::String ^ get() { return Platform::StringReference(L"IsBitFlipChecked"); } } property CalculatorApp::ViewModel::Common::BitLength ValueBitLength { CalculatorApp::ViewModel::Common::BitLength get() { return m_valueBitLength; } void set(CalculatorApp::ViewModel::Common::BitLength value); } property bool IsStandard { bool get() { return m_isStandard; } void set(bool value) { if (m_isStandard != value) { m_isStandard = value; if (value) { IsScientific = false; IsProgrammer = false; } RaisePropertyChanged(L"IsStandard"); } } } property bool IsScientific { bool get() { return m_isScientific; } void set(bool value) { if (m_isScientific != value) { m_isScientific = value; if (value) { IsStandard = false; IsProgrammer = false; } RaisePropertyChanged(L"IsScientific"); } } } property bool IsProgrammer { bool get() { return m_isProgrammer; } void set(bool value) { if (m_isProgrammer != value) { m_isProgrammer = value; if (!m_isProgrammer) { IsBitFlipChecked = false; } IsBinaryBitFlippingEnabled = m_isProgrammer && IsBitFlipChecked; AreProgrammerRadixOperatorsVisible = m_isProgrammer && !IsBitFlipChecked; if (value) { IsStandard = false; IsScientific = false; } RaisePropertyChanged(L"IsProgrammer"); } } } static property Platform::String ^ IsProgrammerPropertyName { Platform::String ^ get() { return Platform::StringReference(L"IsProgrammer"); } } property bool IsEditingEnabled { bool get() { return m_isEditingEnabled; } void set(bool value) { if (m_isEditingEnabled != value) { m_isEditingEnabled = value; bool currentEditToggleValue = !m_isEditingEnabled; IsBinaryOperatorEnabled = currentEditToggleValue; IsUnaryOperatorEnabled = currentEditToggleValue; IsOperandEnabled = currentEditToggleValue; IsNegateEnabled = currentEditToggleValue; IsDecimalEnabled = currentEditToggleValue; RaisePropertyChanged(L"IsEditingEnabled"); } } } property bool IsEngineRecording { bool get() { return m_standardCalculatorManager.IsEngineRecording(); } } property bool IsOperandEnabled { bool get() { return m_isOperandEnabled; } void set(bool value) { if (m_isOperandEnabled != value) { m_isOperandEnabled = value; IsDecimalEnabled = value; AreHEXButtonsEnabled = IsProgrammer; IsFToEEnabled = value; RaisePropertyChanged(L"IsOperandEnabled"); } } } property CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot ^ Snapshot { CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot ^ get(); void set(CalculatorApp::ViewModel::Snapshot::StandardCalculatorSnapshot ^ snapshot); }; // Used by unit tests void ResetCalcManager(bool clearMemory); void SendCommandToCalcManager(int command); public: // Memory feature related methods. void OnMemoryButtonPressed(); void OnMemoryItemPressed(Platform::Object ^ memoryItemPosition); void OnMemoryAdd(Platform::Object ^ memoryItemPosition); void OnMemorySubtract(Platform::Object ^ memoryItemPosition); void OnMemoryClear(_In_ Platform::Object ^ memoryItemPosition); void SelectHistoryItem(HistoryItemViewModel ^ item); void SwitchProgrammerModeBase(CalculatorApp::ViewModel::Common::NumberBase calculatorBase); void SetBitshiftRadioButtonCheckedAnnouncement(Platform::String ^ announcement); void SetOpenParenthesisCountNarratorAnnouncement(); void SwitchAngleType(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum num); void FtoEButtonToggled(); void OnCopyCommand(Platform::Object ^ parameter); void OnPasteCommand(Platform::Object ^ parameter); void SetCalculatorType(CalculatorApp::ViewModel::Common::ViewMode targetState); internal : void OnPaste(Platform::String ^ pastedString); ButtonInfo MapCharacterToButtonId(char16 ch); void OnInputChanged(); void DisplayPasteError(); void SetParenthesisCount(_In_ unsigned int parenthesisCount); void OnNoRightParenAdded(); void SetNoParenAddedNarratorAnnouncement(); void OnMaxDigitsReached(); void OnBinaryOperatorReceived(); void OnMemoryItemChanged(unsigned int indexOfMemory); Platform::String ^ GetLocalizedStringFormat(Platform::String ^ format, Platform::String ^ displayValue); void OnPropertyChanged(Platform::String ^ propertyname); Platform::String ^ GetRawDisplayValue(); void Recalculate(bool fromHistory = false); bool IsOperator(CalculationManager::Command cmdenum); void SetMemorizedNumbersString(); void ResetRadixAndUpdateMemory(bool resetRadix); void SetPrecision(int32_t precision); void UpdateMaxIntDigits() { m_standardCalculatorManager.UpdateMaxIntDigits(); } CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum GetCurrentAngleType() { return m_CurrentAngleType; } private: void SetMemorizedNumbers(const std::vector& memorizedNumbers); void UpdateProgrammerPanelDisplay(); void HandleUpdatedOperandData(CalculationManager::Command cmdenum); void SetPrimaryDisplay(_In_ Platform::String ^ displayStringValue, _In_ bool isError); void SetExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands); void SetHistoryExpressionDisplay( _Inout_ std::shared_ptr>> const& tokens, _Inout_ std::shared_ptr>> const& commands); void SetTokens(_Inout_ std::shared_ptr>> const& tokens); CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum ConvertIntegerToNumbersAndOperatorsEnum(unsigned int parameter); static RadixType GetRadixTypeFromNumberBase(CalculatorApp::ViewModel::Common::NumberBase base); CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum m_CurrentAngleType; wchar_t m_decimalSeparator; CalculatorApp::ViewModel::Common::CalculatorDisplay m_calculatorDisplay; CalculatorApp::ViewModel::Common::EngineResourceProvider m_resourceProvider; CalculationManager::CalculatorManager m_standardCalculatorManager; Platform::String ^ m_expressionAutomationNameFormat; Platform::String ^ m_localizedCalculationResultAutomationFormat; Platform::String ^ m_localizedCalculationResultDecimalAutomationFormat; Platform::String ^ m_localizedHexaDecimalAutomationFormat; Platform::String ^ m_localizedDecimalAutomationFormat; Platform::String ^ m_localizedOctalAutomationFormat; Platform::String ^ m_localizedBinaryAutomationFormat; Platform::String ^ m_localizedMaxDigitsReachedAutomationFormat; Platform::String ^ m_localizedButtonPressFeedbackAutomationFormat; Platform::String ^ m_localizedMemorySavedAutomationFormat; Platform::String ^ m_localizedMemoryItemChangedAutomationFormat; Platform::String ^ m_localizedMemoryItemClearedAutomationFormat; Platform::String ^ m_localizedMemoryCleared; Platform::String ^ m_localizedOpenParenthesisCountChangedAutomationFormat; Platform::String ^ m_localizedNoRightParenthesisAddedFormat; bool m_isOperandEnabled; bool m_isEditingEnabled; bool m_isStandard; bool m_isScientific; bool m_isProgrammer; bool m_isBitFlipChecked; bool m_isRtlLanguage; bool m_operandUpdated; bool m_isLastOperationHistoryLoad; CalculatorApp::ViewModel::Common::BitLength m_valueBitLength; Platform::String ^ m_selectedExpressionLastData; Common::DisplayExpressionToken ^ m_selectedExpressionToken; Platform::String ^ LocalizeDisplayValue(_In_ std::wstring const& displayValue); Platform::String ^ CalculateNarratorDisplayValue(_In_ std::wstring const& displayValue, _In_ Platform::String ^ localizedDisplayValue); CalculatorApp::ViewModel::Common::Automation::NarratorAnnouncement ^ GetDisplayUpdatedNarratorAnnouncement(); Platform::String ^ GetCalculatorExpressionAutomationName(); Platform::String ^ GetNarratorStringReadRawNumbers(_In_ Platform::String ^ localizedDisplayValue); CalculationManager::Command ConvertToOperatorsEnum(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum operation); void DisableButtons(CalculationManager::CommandType selectedExpressionCommandType); Platform::String ^ m_feedbackForButtonPress; void OnButtonPressed(Platform::Object ^ parameter); void OnClearMemoryCommand(Platform::Object ^ parameter); std::wstring AddPadding(std::wstring); size_t LengthWithoutPadding(std::wstring); std::shared_ptr>> m_tokens; std::shared_ptr>> m_commands; // Token types bool IsUnaryOp(CalculationManager::Command command); bool IsBinOp(CalculationManager::Command command); bool IsTrigOp(CalculationManager::Command command); bool IsOpnd(CalculationManager::Command command); bool IsRecoverableCommand(CalculationManager::Command command); void SaveEditedCommand(_In_ unsigned int index, _In_ CalculationManager::Command command); CalculatorApp::ViewModel::Common::ViewMode GetCalculatorMode(); friend class CalculatorApp::ViewModel::Common::CalculatorDisplay; friend class CalculatorUnitTests::MultiWindowUnitTests; }; } } ================================================ FILE: src/CalcViewModel/UnitConverterViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "UnitConverterViewModel.h" #include "CalcManager/Header Files/EngineStrings.h" #include "Common/CalculatorButtonPressedEventArgs.h" #include "Common/CopyPasteManager.h" #include "Common/LocalizationStringUtil.h" #include "Common/LocalizationService.h" #include "Common/LocalizationSettings.h" #include "Common/TraceLogger.h" #include "DataLoaders/CurrencyHttpClient.h" #include "DataLoaders/CurrencyDataLoader.h" #include "DataLoaders/UnitConverterDataLoader.h" using namespace CalculatorApp; using namespace CalculatorApp::ViewModel; using namespace CalculatorApp::ViewModel::Common; using namespace CalculatorApp::ViewModel::Common::Automation; using namespace CalculatorApp::ViewModel::DataLoaders; using namespace concurrency; using namespace Platform; using namespace Platform::Collections; using namespace std; using namespace Windows::Foundation; using namespace Windows::Globalization::NumberFormatting; using namespace Windows::System; using namespace Windows::System::Threading; using namespace Windows::System::UserProfile; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Automation::Peers; using namespace Windows::ApplicationModel::Resources; using namespace Windows::Storage; constexpr int EXPECTEDVIEWMODELDATATOKENS = 8; // interval is in 100 nanosecond units constexpr unsigned int TIMER_INTERVAL_IN_MS = 10000; #ifdef UNIT_TESTS #define TIMER_CALLBACK_CONTEXT CallbackContext::Any #else #define TIMER_CALLBACK_CONTEXT CallbackContext::Same #endif const TimeSpan SUPPLEMENTARY_VALUES_INTERVAL = { 10 * TIMER_INTERVAL_IN_MS }; static Unit ^ EMPTY_UNIT = ref new Unit(UCM::EMPTY_UNIT); constexpr size_t UNIT_LIST = 0; constexpr size_t SELECTED_SOURCE_UNIT = 1; constexpr size_t SELECTED_TARGET_UNIT = 2; // x millisecond delay before we consider conversion to be final constexpr unsigned int CONVERSION_FINALIZED_DELAY_IN_MS = 1000; const wregex regexTrimSpacesStart = wregex(L"^\\s+"); const wregex regexTrimSpacesEnd = wregex(L"\\s+$"); namespace { StringReference CurrentCategoryPropertyName(L"CurrentCategory"); StringReference Unit1AutomationNamePropertyName(L"Unit1AutomationName"); StringReference Unit2AutomationNamePropertyName(L"Unit2AutomationName"); StringReference Unit1PropertyName(L"Unit1"); StringReference Unit2PropertyName(L"Unit2"); StringReference Value1PropertyName(L"Value1"); StringReference Value2PropertyName(L"Value2"); StringReference Value1ActivePropertyName(L"Value1Active"); StringReference Value2ActivePropertyName(L"Value2Active"); StringReference Value1AutomationNamePropertyName(L"Value1AutomationName"); StringReference Value2AutomationNamePropertyName(L"Value2AutomationName"); StringReference CurrencySymbol1PropertyName(L"CurrencySymbol1"); StringReference CurrencySymbol2PropertyName(L"CurrencySymbol2"); StringReference CurrencySymbolVisibilityPropertyName(L"CurrencySymbolVisibility"); StringReference SupplementaryVisibilityPropertyName(L"SupplementaryVisibility"); } namespace CalculatorApp::ViewModel::DataLoaders::UnitConverterResourceKeys { StringReference ValueFromFormat(L"Format_ValueFrom"); StringReference ValueFromDecimalFormat(L"Format_ValueFrom_Decimal"); StringReference ValueToFormat(L"Format_ValueTo"); StringReference ConversionResultFormat(L"Format_ConversionResult"); StringReference InputUnit_Name(L"InputUnit_Name"); StringReference OutputUnit_Name(L"OutputUnit_Name"); StringReference MaxDigitsReachedFormat(L"Format_MaxDigitsReached"); StringReference UpdatingCurrencyRates(L"UpdatingCurrencyRates"); StringReference CurrencyRatesUpdated(L"CurrencyRatesUpdated"); StringReference CurrencyRatesUpdateFailed(L"CurrencyRatesUpdateFailed"); } UnitConverterViewModel::UnitConverterViewModel(const shared_ptr& model) : m_model(model) , m_resettingTimer(false) , m_value1cp(ConversionParameter::Source) , m_Value1Active(true) , m_Value2Active(false) , m_Value1("0") , m_Value2("0") , m_valueToUnlocalized(L"0") , m_valueFromUnlocalized(L"0") , m_relocalizeStringOnSwitch(false) , m_Categories(ref new Vector()) , m_Units(ref new Vector()) , m_SupplementaryResults(ref new Vector) , m_IsDropDownOpen(false) , m_IsDropDownEnabled(true) , m_IsCurrencyLoadingVisible(false) , m_isCurrencyDataLoaded(false) , m_lastAnnouncedFrom(L"") , m_lastAnnouncedTo(L"") , m_lastAnnouncedConversionResult(L"") , m_isValue1Updating(false) , m_isValue2Updating(false) , m_Announcement(nullptr) , m_Mode(ViewMode::None) , m_CurrencySymbol1(L"") , m_CurrencySymbol2(L"") , m_IsCurrencyCurrentCategory(false) , m_CurrencyRatioEquality(L"") , m_CurrencyRatioEqualityAutomationName(L"") , m_isInputBlocked(false) , m_CurrencyDataLoadFailed(false) { auto localizationService = LocalizationService::GetInstance(); m_model->SetViewModelCallback(make_shared(this)); m_model->SetViewModelCurrencyCallback(make_shared(this)); m_decimalFormatter = localizationService->GetRegionalSettingsAwareDecimalFormatter(); m_decimalFormatter->FractionDigits = 0; m_decimalFormatter->IsGrouped = true; m_decimalSeparator = LocalizationSettings::GetInstance()->GetDecimalSeparator(); m_currencyFormatter = localizationService->GetRegionalSettingsAwareCurrencyFormatter(); m_currencyFormatter->IsGrouped = true; m_currencyFormatter->Mode = CurrencyFormatterMode::UseCurrencyCode; m_currencyFormatter->ApplyRoundingForCurrency(RoundingAlgorithm::RoundHalfDown); auto resourceLoader = AppResourceProvider::GetInstance(); m_localizedValueFromFormat = resourceLoader->GetResourceString(UnitConverterResourceKeys::ValueFromFormat); m_localizedValueToFormat = resourceLoader->GetResourceString(UnitConverterResourceKeys::ValueToFormat); m_localizedConversionResultFormat = resourceLoader->GetResourceString(UnitConverterResourceKeys::ConversionResultFormat); m_localizedValueFromDecimalFormat = resourceLoader->GetResourceString(UnitConverterResourceKeys::ValueFromDecimalFormat); m_localizedInputUnitName = resourceLoader->GetResourceString(UnitConverterResourceKeys::InputUnit_Name); m_localizedOutputUnitName = resourceLoader->GetResourceString(UnitConverterResourceKeys::OutputUnit_Name); Unit1AutomationName = m_localizedInputUnitName; Unit2AutomationName = m_localizedOutputUnitName; IsDecimalEnabled = true; m_model->Initialize(); PopulateData(); } UnitConverterViewModel::UnitConverterViewModel() : UnitConverterViewModel(std::make_shared( // std::make_shared(ref new Windows::Globalization::GeographicRegion()), // std::make_shared())) { } void UnitConverterViewModel::ResetView() { m_model->SendCommand(UCM::Command::Reset); OnCategoryChanged(nullptr); } void UnitConverterViewModel::PopulateData() { InitializeView(); } void UnitConverterViewModel::OnCategoryChanged(Object ^ parameter) { m_model->SendCommand(UCM::Command::Clear); ResetCategory(); } void UnitConverterViewModel::ResetCategory() { m_isInputBlocked = false; SetSelectedUnits(); IsCurrencyLoadingVisible = m_IsCurrencyCurrentCategory && !m_isCurrencyDataLoaded; IsDropDownEnabled = m_Units->GetAt(0) != EMPTY_UNIT; UnitChanged->Execute(nullptr); } void UnitConverterViewModel::SetSelectedUnits() { UCM::CategorySelectionInitializer categoryInitializer = m_model->SetCurrentCategory(CurrentCategory->GetModelCategory()); BuildUnitList(get(categoryInitializer)); UnitFrom = FindUnitInList(get(categoryInitializer)); UnitTo = FindUnitInList(get(categoryInitializer)); } void UnitConverterViewModel::BuildUnitList(const vector& modelUnitList) { m_Units->Clear(); for (const UCM::Unit& modelUnit : modelUnitList) { if (!modelUnit.isWhimsical) { m_Units->Append(ref new Unit(modelUnit)); } } if (m_Units->Size == 0) { m_Units->Append(EMPTY_UNIT); } } Unit ^ UnitConverterViewModel::FindUnitInList(UCM::Unit target) { for (Unit ^ vmUnit : m_Units) { UCM::Unit modelUnit = vmUnit->GetModelUnit(); if (modelUnit.id == target.id) { return vmUnit; } } return EMPTY_UNIT; } void UnitConverterViewModel::OnUnitChanged(Object ^ parameter) { if ((m_Unit1 == nullptr) || (m_Unit2 == nullptr)) { // Return if both Unit1 & Unit2 are not set return; } UpdateCurrencyFormatter(); m_model->SetCurrentUnitTypes(UnitFrom->GetModelUnit(), UnitTo->GetModelUnit()); if (m_supplementaryResultsTimer != nullptr) { // End timer to show results immediately m_supplementaryResultsTimer->Cancel(); } SaveUserPreferences(); } void UnitConverterViewModel::OnSwitchActive(Platform::Object ^ unused) { // this can be false if this switch occurs without the user having explicitly updated any strings // (for example, during deserialization). We only want to try this cleanup if there's actually // something to clean up. if (m_relocalizeStringOnSwitch) { // clean up any ill-formed strings that were in progress before the switch ValueFrom = ConvertToLocalizedString(m_valueFromUnlocalized, false, CurrencyFormatterParameterFrom); } SwitchConversionParameters(); // Now deactivate the other if (m_value1cp == ConversionParameter::Source) { Value2Active = false; } else { Value1Active = false; } m_valueFromUnlocalized.swap(m_valueToUnlocalized); swap(m_localizedValueFromFormat, m_localizedValueToFormat); swap(m_Unit1AutomationName, m_Unit2AutomationName); RaisePropertyChanged(Unit1AutomationNamePropertyName); RaisePropertyChanged(Unit2AutomationNamePropertyName); m_isInputBlocked = false; m_model->SwitchActive(m_valueFromUnlocalized); UpdateIsDecimalEnabled(); } String ^ UnitConverterViewModel::ConvertToLocalizedString(const std::wstring& stringToLocalize, bool allowPartialStrings, CurrencyFormatterParameter cfp) { Platform::String ^ result; if (stringToLocalize.empty()) { return result; } CurrencyFormatter ^ currencyFormatter; switch (cfp) { case CurrencyFormatterParameter::ForValue1: currencyFormatter = m_currencyFormatter1; break; case CurrencyFormatterParameter::ForValue2: currencyFormatter = m_currencyFormatter2; break; default: currencyFormatter = m_currencyFormatter; break; } // If unit hasn't been set, currencyFormatter1/2 is nullptr. Fallback to default. if (currencyFormatter == nullptr) { currencyFormatter = m_currencyFormatter; } int lastCurrencyFractionDigits = currencyFormatter->FractionDigits; m_decimalFormatter->IsDecimalPointAlwaysDisplayed = false; m_decimalFormatter->FractionDigits = 0; currencyFormatter->IsDecimalPointAlwaysDisplayed = false; currencyFormatter->FractionDigits = 0; wstring::size_type posOfE = stringToLocalize.find(L'e'); if (posOfE != wstring::npos) { wstring::size_type posOfSign = posOfE + 1; wchar_t signOfE = stringToLocalize.at(posOfSign); std::wstring significandStr(stringToLocalize.substr(0, posOfE)); std::wstring exponentStr(stringToLocalize.substr(posOfSign + 1, stringToLocalize.length() - posOfSign)); result += ConvertToLocalizedString(significandStr, allowPartialStrings, cfp) + "e" + signOfE + ConvertToLocalizedString(exponentStr, allowPartialStrings, cfp); } else { // stringToLocalize is in en-US and has the default decimal separator, so this is safe to do. wstring::size_type posOfDecimal = stringToLocalize.find(L'.'); bool hasDecimal = wstring::npos != posOfDecimal; if (hasDecimal) { if (allowPartialStrings && lastCurrencyFractionDigits > 0) { // allow "in progress" strings, like "3." that occur during the composition of // a final number. Without this, when typing the three characters in "3.2" // you don't see the decimal point when typing it, you only see it once you've finally // typed a post-decimal digit. m_decimalFormatter->IsDecimalPointAlwaysDisplayed = true; currencyFormatter->IsDecimalPointAlwaysDisplayed = true; } // force post-decimal digits so that trailing zeroes entered by the user aren't suddenly cut off. m_decimalFormatter->FractionDigits = static_cast(stringToLocalize.length() - (posOfDecimal + 1)); currencyFormatter->FractionDigits = lastCurrencyFractionDigits; } if (IsCurrencyCurrentCategory) { wstring currencyResult = currencyFormatter->Format(stod(stringToLocalize))->Data(); wstring currencyCode = currencyFormatter->Currency->Data(); // CurrencyFormatter always includes LangCode or Symbol. Make it include LangCode // because this includes a non-breaking space. Remove the LangCode. auto pos = currencyResult.find(currencyCode); if (pos != wstring::npos) { currencyResult.erase(pos, currencyCode.length()); std::wsmatch sm; if (regex_search(currencyResult, sm, regexTrimSpacesStart)) { currencyResult.erase(sm.prefix().length(), sm.length()); } if (regex_search(currencyResult, sm, regexTrimSpacesEnd)) { currencyResult.erase(sm.prefix().length(), sm.length()); } } result = ref new String(currencyResult.c_str()); } else { // Convert the input string to double using stod // Then use the decimalFormatter to reformat the double to Platform String result = m_decimalFormatter->Format(stod(stringToLocalize)); } if (hasDecimal) { // Since the output from GetLocaleInfoEx() and DecimalFormatter are differing for decimal string // we are adding the below work-around of editing the string returned by DecimalFormatter // and replacing the decimal separator with the one returned by GetLocaleInfoEx() String ^ formattedSampleString = m_decimalFormatter->Format(stod("1.1")); wstring formattedSampleWString = wstring(formattedSampleString->Data()); wstring resultWithDecimal = wstring(result->Data()); size_t pos = resultWithDecimal.find(formattedSampleWString[1], 0); if (pos != wstring::npos) { resultWithDecimal.replace(pos, 1, &m_decimalSeparator); } // Copy back the edited string to the result result = ref new String(resultWithDecimal.c_str()); } } wstring resultHolder = wstring(result->Data()); if ((stringToLocalize.front() == L'-' && stod(stringToLocalize) == 0) || resultHolder.back() == L'-') { if (resultHolder.back() == L'-') { result = ref new String(resultHolder.erase(resultHolder.size() - 1, 1).c_str()); } result = L"-" + result; } // restore the original fraction digits currencyFormatter->FractionDigits = lastCurrencyFractionDigits; return result; } void UnitConverterViewModel::DisplayPasteError() { String ^ errorMsg = AppResourceProvider::GetInstance()->GetCEngineString(StringReference(SIDS_DOMAIN)); /*SIDS_DOMAIN is for "invalid input"*/ Value1 = errorMsg; Value2 = errorMsg; m_relocalizeStringOnSwitch = false; } void UnitConverterViewModel::UpdateDisplay(const wstring& from, const wstring& to) { String ^ fromStr = this->ConvertToLocalizedString(from, true, CurrencyFormatterParameterFrom); UpdateInputBlocked(from); String ^ toStr = this->ConvertToLocalizedString(to, true, CurrencyFormatterParameterTo); bool updatedValueFrom = ValueFrom != fromStr; bool updatedValueTo = ValueTo != toStr; if (updatedValueFrom) { m_valueFromUnlocalized = from; // once we've updated the unlocalized from string, we'll potentially need to clean it back up when switching between fields // to eliminate dangling decimal points. m_relocalizeStringOnSwitch = true; } if (updatedValueTo) { // This is supposed to use trimming logic, but that's highly dependent // on the auto-scaling textbox control which we dont have yet. For now, // not doing anything. It will have to be integrated once that control is // created. m_valueToUnlocalized = to; } m_isValue1Updating = m_Value1Active ? updatedValueFrom : updatedValueTo; m_isValue2Updating = m_Value2Active ? updatedValueFrom : updatedValueTo; // Setting these properties before setting the member variables above causes // a chain of properties that can result in the wrong result being announced // to Narrator. We need to know which values are updating before setting the // below properties, so that we know when to announce the result. if (updatedValueFrom) { ValueFrom = fromStr; } if (updatedValueTo) { ValueTo = toStr; } } void UnitConverterViewModel::UpdateSupplementaryResults(const std::vector>& suggestedValues) { m_cacheMutex.lock(); m_cachedSuggestedValues = suggestedValues; m_cacheMutex.unlock(); // If we're already "ticking", reset the timer if (m_supplementaryResultsTimer != nullptr) { m_resettingTimer = true; m_supplementaryResultsTimer->Cancel(); m_resettingTimer = false; } // Schedule the timer m_supplementaryResultsTimer = ThreadPoolTimer::CreateTimer( ref new TimerElapsedHandler(this, &UnitConverterViewModel::SupplementaryResultsTimerTick, TIMER_CALLBACK_CONTEXT), SUPPLEMENTARY_VALUES_INTERVAL, ref new TimerDestroyedHandler(this, &UnitConverterViewModel::SupplementaryResultsTimerCancel, TIMER_CALLBACK_CONTEXT)); } void UnitConverterViewModel::OnValueActivated(IActivatable ^ control) { control->IsActive = true; } void UnitConverterViewModel::OnButtonPressed(Platform::Object ^ parameter) { NumbersAndOperatorsEnum numOpEnum = CalculatorButtonPressedEventArgs::GetOperationFromCommandParameter(parameter); UCM::Command command = CommandFromButtonId(numOpEnum); // Don't clear the display if combo box is open and escape is pressed if (command == UCM::Command::Clear && IsDropDownOpen) { return; } static constexpr UCM::Command OPERANDS[] = { UCM::Command::Zero, UCM::Command::One, UCM::Command::Two, UCM::Command::Three, UCM::Command::Four, UCM::Command::Five, UCM::Command::Six, UCM::Command::Seven, UCM::Command::Eight, UCM::Command::Nine }; // input should be allowed if user just switches active, because we will clear values in such cases if (m_isInputBlocked && !m_model->IsSwitchedActive() && command != UCM::Command::Clear && command != UCM::Command::Backspace) { return; } m_model->SendCommand(command); TraceLogger::GetInstance()->LogConverterInputReceived(Mode); } void UnitConverterViewModel::OnCopyCommand(Platform::Object ^ parameter) { // EventWriteClipboardCopy_Start(); CopyPasteManager::CopyToClipboard(ref new Platform::String(m_valueFromUnlocalized.c_str())); // EventWriteClipboardCopy_Stop(); } void UnitConverterViewModel::OnPasteCommand(Platform::Object ^ parameter) { // if there's nothing to copy early out if (!CopyPasteManager::HasStringToPaste()) { return; } // Ensure that the paste happens on the UI thread // EventWriteClipboardPaste_Start(); // Any converter ViewMode is fine here. auto that(this); create_task(CopyPasteManager::GetStringToPaste(m_Mode, NavCategoryStates::GetGroupType(m_Mode), NumberBase::Unknown, BitLength::BitLengthUnknown)) .then([that](String ^ pastedString) { that->OnPaste(pastedString); }, concurrency::task_continuation_context::use_current()); } void UnitConverterViewModel::InitializeView() { vector categories = m_model->GetCategories(); for (UINT i = 0; i < categories.size(); i++) { Category ^ category = ref new Category(categories[i]); m_Categories->Append(category); } RestoreUserPreferences(); CurrentCategory = ref new Category(m_model->GetCurrentCategory()); } void UnitConverterViewModel::OnPropertyChanged(Platform::String ^ prop) { static bool isCategoryChanging = false; if (prop == CurrentCategoryPropertyName) { isCategoryChanging = true; CategoryChanged->Execute(nullptr); isCategoryChanging = false; } else if (prop == Unit1PropertyName || prop == Unit2PropertyName) { // Category changes will handle updating units after they've both been updated. // This event should only be used to update units from explicit user interaction. if (!isCategoryChanging) { UnitChanged->Execute(nullptr); } // Get the localized automation name for each CalculationResults field if (prop == Unit1PropertyName) { UpdateValue1AutomationName(); } else { UpdateValue2AutomationName(); } } else if (prop == Value1PropertyName) { UpdateValue1AutomationName(); } else if (prop == Value2PropertyName) { UpdateValue2AutomationName(); } else if (prop == Value1ActivePropertyName || prop == Value2ActivePropertyName) { // if one of the values is activated, and as a result both are true, it means // that we're trying to switch. if (Value1Active && Value2Active) { SwitchActive->Execute(nullptr); } UpdateValue1AutomationName(); UpdateValue2AutomationName(); } else if (prop == SupplementaryResultsPropertyName) { RaisePropertyChanged(SupplementaryVisibilityPropertyName); } else if (prop == Value1AutomationNamePropertyName) { m_isValue1Updating = false; if (!m_isValue2Updating) { AnnounceConversionResult(); } } else if (prop == Value2AutomationNamePropertyName) { m_isValue2Updating = false; if (!m_isValue1Updating) { AnnounceConversionResult(); } } else if (prop == CurrencySymbol1PropertyName || prop == CurrencySymbol2PropertyName) { RaisePropertyChanged(CurrencySymbolVisibilityPropertyName); } } // Saving User Preferences of Category and Associated-Units across Sessions. void UnitConverterViewModel::SaveUserPreferences() { if (UnitsAreValid()) { ApplicationDataContainer ^ localSettings = ApplicationData::Current->LocalSettings; if (!m_IsCurrencyCurrentCategory) { auto userPreferences = m_model->SaveUserPreferences(); localSettings->Values->Insert(ref new String(L"UnitConverterPreferences"), ref new String(userPreferences.c_str())); } else { // Currency preferences shouldn't be saved in the same way as standard converter modes because // the delay loading creates a big mess of issues that are better to avoid. localSettings->Values->Insert(UnitConverterResourceKeys::CurrencyUnitFromKey, UnitFrom->Abbreviation); localSettings->Values->Insert(UnitConverterResourceKeys::CurrencyUnitToKey, UnitTo->Abbreviation); } } } // Restoring User Preferences of Category and Associated-Units. void UnitConverterViewModel::RestoreUserPreferences() { if (!IsCurrencyCurrentCategory) { ApplicationDataContainer ^ localSettings = ApplicationData::Current->LocalSettings; if (localSettings->Values->HasKey(ref new String(L"UnitConverterPreferences"))) { String ^ userPreferences = safe_cast(localSettings->Values->Lookup(ref new String(L"UnitConverterPreferences"))); m_model->RestoreUserPreferences(userPreferences->Data()); } } } void UnitConverterViewModel::OnCurrencyDataLoadFinished(bool didLoad) { m_isCurrencyDataLoaded = true; CurrencyDataLoadFailed = !didLoad; m_model->ResetCategoriesAndRatios(); m_model->Calculate(); ResetCategory(); StringReference key = didLoad ? UnitConverterResourceKeys::CurrencyRatesUpdated : UnitConverterResourceKeys::CurrencyRatesUpdateFailed; String ^ announcement = AppResourceProvider::GetInstance()->GetResourceString(key); Announcement = CalculatorAnnouncement::GetUpdateCurrencyRatesAnnouncement(announcement); } void UnitConverterViewModel::OnCurrencyTimestampUpdated(_In_ const wstring& timestamp, bool isWeekOld) { CurrencyDataIsWeekOld = isWeekOld; CurrencyTimestamp = ref new String(timestamp.c_str()); } void UnitConverterViewModel::RefreshCurrencyRatios() { m_isCurrencyDataLoaded = false; IsCurrencyLoadingVisible = true; String ^ announcement = AppResourceProvider::GetInstance()->GetResourceString(UnitConverterResourceKeys::UpdatingCurrencyRates); Announcement = CalculatorAnnouncement::GetUpdateCurrencyRatesAnnouncement(announcement); auto that(this); auto refreshTask = create_task([that] { return that->m_model->RefreshCurrencyRatios().get(); }); refreshTask.then( [that](const pair& refreshResult) { bool didLoad = refreshResult.first; wstring timestamp = refreshResult.second; that->OnCurrencyTimestampUpdated(timestamp, false /*isWeekOldData*/); that->OnCurrencyDataLoadFinished(didLoad); }, task_continuation_context::use_current()); } void UnitConverterViewModel::OnNetworkBehaviorChanged(_In_ NetworkAccessBehavior newBehavior) { CurrencyDataLoadFailed = false; NetworkBehavior = newBehavior; } UnitConversionManager::Command UnitConverterViewModel::CommandFromButtonId(NumbersAndOperatorsEnum button) { UCM::Command command; switch (button) { case NumbersAndOperatorsEnum::Zero: command = UCM::Command::Zero; break; case NumbersAndOperatorsEnum::One: command = UCM::Command::One; break; case NumbersAndOperatorsEnum::Two: command = UCM::Command::Two; break; case NumbersAndOperatorsEnum::Three: command = UCM::Command::Three; break; case NumbersAndOperatorsEnum::Four: command = UCM::Command::Four; break; case NumbersAndOperatorsEnum::Five: command = UCM::Command::Five; break; case NumbersAndOperatorsEnum::Six: command = UCM::Command::Six; break; case NumbersAndOperatorsEnum::Seven: command = UCM::Command::Seven; break; case NumbersAndOperatorsEnum::Eight: command = UCM::Command::Eight; break; case NumbersAndOperatorsEnum::Nine: command = UCM::Command::Nine; break; case NumbersAndOperatorsEnum::Decimal: command = UCM::Command::Decimal; break; case NumbersAndOperatorsEnum::Negate: command = UCM::Command::Negate; break; case NumbersAndOperatorsEnum::Backspace: command = UCM::Command::Backspace; break; case NumbersAndOperatorsEnum::Clear: command = UCM::Command::Clear; break; default: command = UCM::Command::None; break; } return command; } void UnitConverterViewModel::SupplementaryResultsTimerTick(ThreadPoolTimer ^ timer) { timer->Cancel(); } void UnitConverterViewModel::SupplementaryResultsTimerCancel(ThreadPoolTimer ^ timer) { if (!m_resettingTimer) { RefreshSupplementaryResults(); } } void UnitConverterViewModel::RefreshSupplementaryResults() { m_cacheMutex.lock(); m_SupplementaryResults->Clear(); vector whimsicals; for (tuple suggestedValue : m_cachedSuggestedValues) { SupplementaryResult ^ result = ref new SupplementaryResult( this->ConvertToLocalizedString(get<0>(suggestedValue), false, CurrencyFormatterParameter::Default), ref new Unit(get<1>(suggestedValue))); if (result->IsWhimsical()) { whimsicals.push_back(result); } else { m_SupplementaryResults->Append(result); } } if (whimsicals.size() > 0) { m_SupplementaryResults->Append(whimsicals[0]); } m_cacheMutex.unlock(); RaisePropertyChanged(SupplementaryResultsPropertyName); // EventWriteConverterSupplementaryResultsUpdated(); } // When UpdateDisplay is called, the ViewModel will remember the From/To unlocalized display values // This function will announce the conversion result after the ValueTo/ValueFrom automation names update, // only if the new unlocalized display values are different from the last announced values, and if the // values are not both zero. void UnitConverterViewModel::AnnounceConversionResult() { if ((m_valueFromUnlocalized != m_lastAnnouncedFrom || m_valueToUnlocalized != m_lastAnnouncedTo) && Unit1 != nullptr && Unit2 != nullptr) { m_lastAnnouncedFrom = m_valueFromUnlocalized; m_lastAnnouncedTo = m_valueToUnlocalized; Unit ^ unitFrom = Value1Active ? Unit1 : Unit2; Unit ^ unitTo = (unitFrom == Unit1) ? Unit2 : Unit1; m_lastAnnouncedConversionResult = GetLocalizedConversionResultStringFormat(ValueFrom, unitFrom->Name, ValueTo, unitTo->Name); Announcement = CalculatorAnnouncement::GetDisplayUpdatedAnnouncement(m_lastAnnouncedConversionResult); } } void UnitConverterViewModel::UpdateInputBlocked(_In_ const wstring& currencyInput) { // currencyInput is in en-US and has the default decimal separator, so this is safe to do. auto posOfDecimal = currencyInput.find(L'.'); m_isInputBlocked = false; if (posOfDecimal != wstring::npos && IsCurrencyCurrentCategory) { m_isInputBlocked = (posOfDecimal + static_cast(CurrencyFormatterFrom->FractionDigits) + 1 == currencyInput.length()); } } std::wstring TruncateFractionDigits(const std::wstring& n, int digitCount) { auto i = n.find('.'); if (i == std::wstring::npos) return n; size_t actualDigitCount = n.size() - i - 1; return n.substr(0, n.size() - (actualDigitCount - digitCount)); } void UnitConverterViewModel::UpdateCurrencyFormatter() { if (!IsCurrencyCurrentCategory || m_Unit1->Abbreviation->IsEmpty() || m_Unit2->Abbreviation->IsEmpty()) return; m_currencyFormatter1 = ref new CurrencyFormatter(m_Unit1->Abbreviation); m_currencyFormatter1->IsGrouped = true; m_currencyFormatter1->Mode = CurrencyFormatterMode::UseCurrencyCode; m_currencyFormatter1->ApplyRoundingForCurrency(RoundingAlgorithm::RoundHalfDown); m_currencyFormatter2 = ref new CurrencyFormatter(m_Unit2->Abbreviation); m_currencyFormatter2->IsGrouped = true; m_currencyFormatter2->Mode = CurrencyFormatterMode::UseCurrencyCode; m_currencyFormatter2->ApplyRoundingForCurrency(RoundingAlgorithm::RoundHalfDown); UpdateIsDecimalEnabled(); OnPaste(ref new String(TruncateFractionDigits(m_valueFromUnlocalized, CurrencyFormatterFrom->FractionDigits).data())); } void UnitConverterViewModel::UpdateIsDecimalEnabled() { if (!IsCurrencyCurrentCategory || CurrencyFormatterFrom == nullptr) return; IsDecimalEnabled = CurrencyFormatterFrom->FractionDigits > 0; } NumbersAndOperatorsEnum UnitConverterViewModel::MapCharacterToButtonId(const wchar_t ch, bool& canSendNegate) { static_assert(NumbersAndOperatorsEnum::Zero < NumbersAndOperatorsEnum::One, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::One < NumbersAndOperatorsEnum::Two, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Two < NumbersAndOperatorsEnum::Three, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Three < NumbersAndOperatorsEnum::Four, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Four < NumbersAndOperatorsEnum::Five, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Five < NumbersAndOperatorsEnum::Six, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Six < NumbersAndOperatorsEnum::Seven, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Seven < NumbersAndOperatorsEnum::Eight, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Eight < NumbersAndOperatorsEnum::Nine, "NumbersAndOperatorsEnum order is invalid"); static_assert(NumbersAndOperatorsEnum::Zero < NumbersAndOperatorsEnum::Nine, "NumbersAndOperatorsEnum order is invalid"); NumbersAndOperatorsEnum mappedValue = NumbersAndOperatorsEnum::None; canSendNegate = false; switch (ch) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': mappedValue = NumbersAndOperatorsEnum::Zero + static_cast(ch - L'0'); canSendNegate = true; break; case '-': mappedValue = NumbersAndOperatorsEnum::Negate; break; default: // Respect the user setting for decimal separator if (ch == m_decimalSeparator) { mappedValue = NumbersAndOperatorsEnum::Decimal; canSendNegate = true; break; } } if (mappedValue == NumbersAndOperatorsEnum::None) { if (LocalizationSettings::GetInstance()->IsLocalizedDigit(ch)) { mappedValue = NumbersAndOperatorsEnum::Zero + static_cast(ch - LocalizationSettings::GetInstance()->GetDigitSymbolFromEnUsDigit(L'0')); canSendNegate = true; } } return mappedValue; } void UnitConverterViewModel::OnPaste(String ^ stringToPaste) { // If pastedString is invalid("NoOp") then display pasteError else process the string if (CopyPasteManager::IsErrorMessage(stringToPaste)) { this->DisplayPasteError(); return; } TraceLogger::GetInstance()->LogInputPasted(Mode); bool isFirstLegalChar = true; bool sendNegate = false; wstring accumulation; for (const auto ch : stringToPaste) { bool canSendNegate = false; NumbersAndOperatorsEnum op = MapCharacterToButtonId(ch, canSendNegate); if (NumbersAndOperatorsEnum::None != op) { if (isFirstLegalChar) { // Send Clear before sending something that will actually apply // to the field. m_model->SendCommand(UCM::Command::Clear); isFirstLegalChar = false; // If the very first legal character is a - sign, send negate // after sending the next legal character. Send nothing now, or // it will be ignored. if (NumbersAndOperatorsEnum::Negate == op) { sendNegate = true; } } // Negate is only allowed if it's the first legal character, which is handled above. if (NumbersAndOperatorsEnum::Negate != op) { UCM::Command cmd = CommandFromButtonId(op); m_model->SendCommand(cmd); if (sendNegate) { if (canSendNegate) { m_model->SendCommand(UCM::Command::Negate); } sendNegate = false; } } accumulation += ch; UpdateInputBlocked(accumulation); if (m_isInputBlocked) { break; } } else { sendNegate = false; } } } String ^ UnitConverterViewModel::GetLocalizedAutomationName( _In_ String ^ displayvalue, _In_ String ^ unitname, _In_ String ^ format, _In_ CurrencyFormatterParameter cfp) { String ^ valueToLocalize = displayvalue; if (displayvalue == ValueFrom && Utils::IsLastCharacterTarget(m_valueFromUnlocalized, m_decimalSeparator)) { // Need to compute a second localized value for the automation // name that does not include the decimal separator. displayvalue = ConvertToLocalizedString(m_valueFromUnlocalized, false /*allowTrailingDecimal*/, cfp); format = m_localizedValueFromDecimalFormat; } return LocalizationStringUtil::GetLocalizedString(format, displayvalue, unitname); } String ^ UnitConverterViewModel::GetLocalizedConversionResultStringFormat( _In_ String ^ fromValue, _In_ String ^ fromUnit, _In_ String ^ toValue, _In_ String ^ toUnit) { return LocalizationStringUtil::GetLocalizedString(m_localizedConversionResultFormat, fromValue, fromUnit, toValue, toUnit); } void UnitConverterViewModel::UpdateValue1AutomationName() { if (Unit1) { Value1AutomationName = GetLocalizedAutomationName(Value1, Unit1->AccessibleName, m_localizedValueFromFormat, CurrencyFormatterParameter::ForValue1); } } void UnitConverterViewModel::UpdateValue2AutomationName() { if (Unit2) { Value2AutomationName = GetLocalizedAutomationName(Value2, Unit2->AccessibleName, m_localizedValueToFormat, CurrencyFormatterParameter::ForValue1); } } void UnitConverterViewModel::OnMaxDigitsReached() { String ^ format = AppResourceProvider::GetInstance()->GetResourceString(UnitConverterResourceKeys::MaxDigitsReachedFormat); auto announcement = LocalizationStringUtil::GetLocalizedString(format, m_lastAnnouncedConversionResult); Announcement = CalculatorAnnouncement::GetMaxDigitsReachedAnnouncement(announcement); } bool UnitConverterViewModel::UnitsAreValid() { return UnitFrom != nullptr && !UnitFrom->Abbreviation->IsEmpty() && UnitTo != nullptr && !UnitTo->Abbreviation->IsEmpty(); } String ^ SupplementaryResult::GetLocalizedAutomationName() { auto format = AppResourceProvider::GetInstance()->GetResourceString("SupplementaryUnit_AutomationName"); return LocalizationStringUtil::GetLocalizedString(format, this->Value, this->Unit->Name); } ================================================ FILE: src/CalcViewModel/UnitConverterViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "CalcManager/UnitConverter.h" #include "Common/Utils.h" #include "Common/NetworkManager.h" #include "Common/Automation/NarratorAnnouncement.h" #include "Common/CalculatorButtonUser.h" #include "Common/NavCategory.h" namespace CalculatorApp { namespace ViewModel { [Windows::UI::Xaml::Data::Bindable] public ref class Category sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal : Category(const UnitConversionManager::Category& category) : m_original(category) { } public: OBSERVABLE_OBJECT(); property Platform::String ^ Name { Platform::String ^ get() { return ref new Platform::String(m_original.name.c_str()); } } property Windows::UI::Xaml::Visibility NegateVisibility { Windows::UI::Xaml::Visibility get() { return m_original.supportsNegative ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed; } } int GetModelCategoryId() { return GetModelCategory().id; } internal : const UnitConversionManager::Category& GetModelCategory() const { return m_original; } private: const UnitConversionManager::Category m_original; }; [Windows::UI::Xaml::Data::Bindable] public ref class Unit sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal : Unit(const UnitConversionManager::Unit& unit) : m_original(unit) { } public: OBSERVABLE_OBJECT(); property Platform::String ^ Name { Platform::String ^ get() { return ref new Platform::String(m_original.name.c_str()); } } property Platform::String ^ AccessibleName { Platform::String ^ get() { return ref new Platform::String(m_original.accessibleName.c_str()); } } property Platform::String ^ Abbreviation { Platform::String ^ get() { return ref new Platform::String(m_original.abbreviation.c_str()); } } // This method is used to return the desired automation name for default unit in UnitConverter combo box. Platform::String ^ ToString() override { return AccessibleName; } public: bool IsModelUnitWhimsical() { return m_original.isWhimsical; } int ModelUnitID() { return m_original.id; } internal: const UnitConversionManager::Unit& GetModelUnit() const { return m_original; } private: const UnitConversionManager::Unit m_original; }; [Windows::UI::Xaml::Data::Bindable] public ref class SupplementaryResult sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal: SupplementaryResult(Platform::String ^ value, Unit ^ unit) : m_Value(value) , m_Unit(unit) { } public: bool IsWhimsical() { return m_Unit->GetModelUnit().isWhimsical; } Platform::String ^ GetLocalizedAutomationName(); OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_R(Platform::String ^, Value); OBSERVABLE_PROPERTY_R(CalculatorApp::ViewModel::Unit ^, Unit); }; public interface class IActivatable { virtual property bool IsActive; }; template ref class Activatable sealed : public IActivatable { private: TActivatable m_activatable; public: Activatable(TActivatable activatable) : m_activatable(activatable) { } virtual property bool IsActive { bool get() { return m_activatable->IsActive; } void set(bool value) { m_activatable->IsActive = value; } } }; template IActivatable ^ AsActivatable(TActivatable activatable) { return ref new Activatable(activatable); } [Windows::UI::Xaml::Data::Bindable] public ref class UnitConverterViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { internal : UnitConverterViewModel(const std::shared_ptr& model); public: UnitConverterViewModel(); virtual ~UnitConverterViewModel() { } OBSERVABLE_OBJECT_CALLBACK(OnPropertyChanged); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, Categories); OBSERVABLE_PROPERTY_RW(CalculatorApp::ViewModel::Common::ViewMode, Mode); OBSERVABLE_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, Units); OBSERVABLE_PROPERTY_RW(Platform::String ^, CurrencySymbol1); OBSERVABLE_PROPERTY_RW(Unit ^, Unit1); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value1); OBSERVABLE_PROPERTY_RW(Platform::String ^, CurrencySymbol2); OBSERVABLE_PROPERTY_RW(Unit ^, Unit2); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value2); OBSERVABLE_NAMED_PROPERTY_R(Windows::Foundation::Collections::IObservableVector ^, SupplementaryResults); OBSERVABLE_PROPERTY_RW(bool, Value1Active); OBSERVABLE_PROPERTY_RW(bool, Value2Active); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value1AutomationName); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value2AutomationName); OBSERVABLE_PROPERTY_RW(Platform::String ^, Unit1AutomationName); OBSERVABLE_PROPERTY_RW(Platform::String ^, Unit2AutomationName); OBSERVABLE_PROPERTY_RW(CalculatorApp::ViewModel::Common::Automation::NarratorAnnouncement ^, Announcement); OBSERVABLE_PROPERTY_RW(bool, IsDecimalEnabled); OBSERVABLE_PROPERTY_RW(bool, IsDropDownOpen); OBSERVABLE_PROPERTY_RW(bool, IsDropDownEnabled); OBSERVABLE_NAMED_PROPERTY_RW(bool, IsCurrencyLoadingVisible); OBSERVABLE_NAMED_PROPERTY_R(bool, IsCurrencyCurrentCategory); OBSERVABLE_PROPERTY_RW(Platform::String ^, CurrencyRatioEquality); OBSERVABLE_PROPERTY_RW(Platform::String ^, CurrencyRatioEqualityAutomationName); OBSERVABLE_PROPERTY_RW(Platform::String ^, CurrencyTimestamp); OBSERVABLE_NAMED_PROPERTY_RW(CalculatorApp::ViewModel::Common::NetworkAccessBehavior, NetworkBehavior); OBSERVABLE_NAMED_PROPERTY_RW(bool, CurrencyDataLoadFailed); OBSERVABLE_NAMED_PROPERTY_RW(bool, CurrencyDataIsWeekOld); public: property Category ^ CurrentCategory { Category ^ get() { return m_CurrentCategory; } void set(Category ^ value) { if (m_CurrentCategory == value) { return; } m_CurrentCategory = value; if (value != nullptr) { auto currentCategory = value->GetModelCategory(); IsCurrencyCurrentCategory = currentCategory.id == CalculatorApp::ViewModel::Common::NavCategoryStates::Serialize(CalculatorApp::ViewModel::Common::ViewMode::Currency); } RaisePropertyChanged("CurrentCategory"); } } property Windows::UI::Xaml::Visibility SupplementaryVisibility { Windows::UI::Xaml::Visibility get() { return SupplementaryResults->Size > 0 ? Windows::UI::Xaml::Visibility::Visible : Windows::UI::Xaml::Visibility::Collapsed; } } property Windows::UI::Xaml::Visibility CurrencySymbolVisibility { Windows::UI::Xaml::Visibility get() { return (CurrencySymbol1->IsEmpty() || CurrencySymbol2->IsEmpty()) ? Windows::UI::Xaml::Visibility::Collapsed : Windows::UI::Xaml::Visibility::Visible; } } COMMAND_FOR_METHOD(CategoryChanged, UnitConverterViewModel::OnCategoryChanged); COMMAND_FOR_METHOD(UnitChanged, UnitConverterViewModel::OnUnitChanged); COMMAND_FOR_METHOD(SwitchActive, UnitConverterViewModel::OnSwitchActive); COMMAND_FOR_METHOD(ButtonPressed, UnitConverterViewModel::OnButtonPressed); COMMAND_FOR_METHOD(CopyCommand, UnitConverterViewModel::OnCopyCommand); COMMAND_FOR_METHOD(PasteCommand, UnitConverterViewModel::OnPasteCommand); void AnnounceConversionResult(); void OnPaste(Platform::String ^ stringToPaste); void RefreshCurrencyRatios(); void OnValueActivated(IActivatable ^ control); void OnCopyCommand(Platform::Object ^ parameter); void OnPasteCommand(Platform::Object ^ parameter); internal : void ResetView(); void PopulateData(); CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum MapCharacterToButtonId(const wchar_t ch, bool& canSendNegate); void DisplayPasteError(); enum class CurrencyFormatterParameter { Default, ForValue1, ForValue2, }; Platform::String ^ GetLocalizedAutomationName( _In_ Platform::String ^ displayvalue, _In_ Platform::String ^ unitname, _In_ Platform::String ^ format, _In_ CurrencyFormatterParameter cfp); Platform::String ^ GetLocalizedConversionResultStringFormat( _In_ Platform::String ^ fromValue, _In_ Platform::String ^ fromUnit, _In_ Platform::String ^ toValue, _In_ Platform::String ^ toUnit); void UpdateValue1AutomationName(); void UpdateValue2AutomationName(); // Saving And Restoring User Preferences of Category and Associated-Units across Sessions. void SaveUserPreferences(); void RestoreUserPreferences(); void OnCurrencyDataLoadFinished(bool didLoad); void OnCurrencyTimestampUpdated(_In_ const std::wstring& timestamp, bool isWeekOld); void OnNetworkBehaviorChanged(_In_ CalculatorApp::ViewModel::Common::NetworkAccessBehavior newBehavior); const std::wstring& GetValueFromUnlocalized() const { return m_valueFromUnlocalized; } const std::wstring& GetValueToUnlocalized() const { return m_valueToUnlocalized; } // used by UnitConverterVMCallback void UpdateDisplay(const std::wstring& from, const std::wstring& to); void UpdateSupplementaryResults(const std::vector>& suggestedValues); void OnMaxDigitsReached(); void BuildUnitList(const std::vector& modelUnitList); Unit ^ FindUnitInList(UnitConversionManager::Unit target); void SetSelectedUnits(); private: void InitializeView(); void OnPropertyChanged(Platform::String ^ prop); void OnCategoryChanged(Platform::Object ^ unused); void OnUnitChanged(Platform::Object ^ unused); void OnSwitchActive(Platform::Object ^ unused); UnitConversionManager::Command CommandFromButtonId(CalculatorApp::ViewModel::Common::NumbersAndOperatorsEnum button); void SupplementaryResultsTimerTick(Windows::System::Threading::ThreadPoolTimer ^ timer); void SupplementaryResultsTimerCancel(Windows::System::Threading::ThreadPoolTimer ^ timer); void RefreshSupplementaryResults(); void UpdateInputBlocked(_In_ const std::wstring& currencyInput); void UpdateCurrencyFormatter(); void UpdateIsDecimalEnabled(); bool UnitsAreValid(); void ResetCategory(); void OnButtonPressed(Platform::Object ^ parameter); Platform::String ^ ConvertToLocalizedString(const std::wstring& stringToLocalize, bool allowPartialStrings, CurrencyFormatterParameter cfp); std::shared_ptr m_model; wchar_t m_decimalSeparator; enum class ConversionParameter { Source, Target } m_value1cp; property CurrencyFormatterParameter CurrencyFormatterParameterFrom { CurrencyFormatterParameter get() { return m_value1cp == ConversionParameter::Source ? CurrencyFormatterParameter::ForValue1 : CurrencyFormatterParameter::ForValue2; } } property CurrencyFormatterParameter CurrencyFormatterParameterTo { CurrencyFormatterParameter get() { return m_value1cp == ConversionParameter::Target ? CurrencyFormatterParameter::ForValue1 : CurrencyFormatterParameter::ForValue2; } } property Windows::Globalization::NumberFormatting::CurrencyFormatter^ CurrencyFormatterFrom { Windows::Globalization::NumberFormatting::CurrencyFormatter^ get() { return m_value1cp == ConversionParameter::Source ? m_currencyFormatter1 : m_currencyFormatter2; } } property Windows::Globalization::NumberFormatting::CurrencyFormatter^ CurrencyFormatterTo { Windows::Globalization::NumberFormatting::CurrencyFormatter^ get() { return m_value1cp == ConversionParameter::Target ? m_currencyFormatter1 : m_currencyFormatter2; } } property Platform::String^ ValueFrom { Platform::String^ get() { return m_value1cp == ConversionParameter::Source ? Value1 : Value2; } void set(Platform::String^ value) { m_value1cp == ConversionParameter::Source ? Value1 = value : Value2 = value; } } property Unit^ UnitFrom { Unit^ get() { return m_value1cp == ConversionParameter::Source ? Unit1 : Unit2; } void set(Unit^ value) { m_value1cp == ConversionParameter::Source ? Unit1 = value : Unit2 = value; } } property Platform::String^ ValueTo { Platform::String^ get() { return m_value1cp == ConversionParameter::Target ? Value1 : Value2; } void set(Platform::String^ value) { m_value1cp == ConversionParameter::Target ? Value1 = value : Value2 = value; } } property Unit^ UnitTo { Unit^ get() { return m_value1cp == ConversionParameter::Target ? Unit1 : Unit2; } void set(Unit^ value) { m_value1cp == ConversionParameter::Target ? Unit1 = value : Unit2 = value; } } void SwitchConversionParameters() { m_value1cp = m_value1cp == ConversionParameter::Source ? ConversionParameter::Target : ConversionParameter::Source; } private: bool m_isInputBlocked; Windows::System::Threading::ThreadPoolTimer ^ m_supplementaryResultsTimer; bool m_resettingTimer; std::vector> m_cachedSuggestedValues; std::mutex m_cacheMutex; Windows::Globalization::NumberFormatting::DecimalFormatter ^ m_decimalFormatter; Windows::Globalization::NumberFormatting::CurrencyFormatter ^ m_currencyFormatter; Windows::Globalization::NumberFormatting::CurrencyFormatter ^ m_currencyFormatter1; Windows::Globalization::NumberFormatting::CurrencyFormatter ^ m_currencyFormatter2; std::wstring m_valueFromUnlocalized; std::wstring m_valueToUnlocalized; bool m_relocalizeStringOnSwitch; Platform::String ^ m_localizedValueFromFormat; Platform::String ^ m_localizedValueFromDecimalFormat; Platform::String ^ m_localizedValueToFormat; Platform::String ^ m_localizedConversionResultFormat; Platform::String ^ m_localizedInputUnitName; Platform::String ^ m_localizedOutputUnitName; bool m_isValue1Updating; bool m_isValue2Updating; std::wstring m_lastAnnouncedFrom; std::wstring m_lastAnnouncedTo; Platform::String ^ m_lastAnnouncedConversionResult; Category ^ m_CurrentCategory; bool m_isCurrencyDataLoaded; }; class UnitConverterVMCallback : public UnitConversionManager::IUnitConverterVMCallback { public: UnitConverterVMCallback(UnitConverterViewModel ^ viewModel) : m_viewModel(viewModel) { } void DisplayCallback(const std::wstring& from, const std::wstring& to) override { m_viewModel->UpdateDisplay(from, to); } void SuggestedValueCallback(const std::vector>& suggestedValues) override { m_viewModel->UpdateSupplementaryResults(suggestedValues); } void MaxDigitsReached() { m_viewModel->OnMaxDigitsReached(); } private: UnitConverterViewModel ^ m_viewModel; }; class ViewModelCurrencyCallback : public UnitConversionManager::IViewModelCurrencyCallback { public: ViewModelCurrencyCallback(UnitConverterViewModel ^ viewModel) : m_viewModel(viewModel) { } void CurrencyDataLoadFinished(bool didLoad) override { m_viewModel->OnCurrencyDataLoadFinished(didLoad); } void CurrencySymbolsCallback(const std::wstring& symbol1, const std::wstring& symbol2) override { Platform::String ^ sym1 = Platform::StringReference(symbol1.c_str()); Platform::String ^ sym2 = Platform::StringReference(symbol2.c_str()); bool value1Active = m_viewModel->Value1Active; m_viewModel->CurrencySymbol1 = value1Active ? sym1 : sym2; m_viewModel->CurrencySymbol2 = value1Active ? sym2 : sym1; } void CurrencyRatiosCallback(_In_ const std::wstring& ratioEquality, _In_ const std::wstring& accRatioEquality) override { m_viewModel->CurrencyRatioEquality = ref new Platform::String(ratioEquality.c_str()); m_viewModel->CurrencyRatioEqualityAutomationName = ref new Platform::String(accRatioEquality.c_str()); } void CurrencyTimestampCallback(_In_ const std::wstring& timestamp, bool isWeekOld) override { m_viewModel->OnCurrencyTimestampUpdated(timestamp, isWeekOld); } void NetworkBehaviorChanged(_In_ int newBehavior) override { m_viewModel->OnNetworkBehaviorChanged(static_cast(newBehavior)); } private: UnitConverterViewModel ^ m_viewModel; }; } } ================================================ FILE: src/CalcViewModel/pch.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" ================================================ FILE: src/CalcViewModel/pch.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "targetver.h" #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif // Windows headers define min/max macros. // Disable it for project code. #define NOMINMAX #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // C++\WinRT Headers #include "winrt/base.h" #include "winrt/Windows.Foundation.Diagnostics.h" #include "winrt/Windows.Globalization.h" #include "winrt/Windows.Globalization.DateTimeFormatting.h" #include "winrt/Windows.System.UserProfile.h" #include "winrt/Windows.UI.Xaml.h" #include "winrt/Windows.Foundation.Metadata.h" #include "winrt/Windows.Management.Policies.h" ================================================ FILE: src/CalcViewModel/targetver.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once // Including SDKDDKVer.h defines the highest available Windows platform. // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. #include ================================================ FILE: src/CalcViewModelCopyForUT/CalcViewModelCopyForUT.vcxproj ================================================ Debug ARM64 Debug Win32 Debug x64 Release ARM64 Release Win32 Release x64 {cc9b4fa7-d746-4f52-9401-0ad1b4d6b16d} StaticLibrary CalcViewModelCopyForUT en-US 14.0 true Windows Store 10.0.26100.0 10.0.19041.0 10.0 StaticLibrary true v143 StaticLibrary true v143 StaticLibrary true v143 StaticLibrary false true v143 StaticLibrary false true v143 StaticLibrary false true v143 false true Use true true $(SolutionDir)..\src\;$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) Use true true $(SolutionDir)..\src\;$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) Use true true $(SolutionDir);$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) Use true true $(SolutionDir)..\src\;$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) Use true true $(SolutionDir)..\src\;$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) Use true true $(SolutionDir)..\src\;$(SolutionDir)CalcViewModel\;%(AdditionalIncludeDirectories) 4453 /bigobj /await /std:c++17 /utf-8 /w44242 %(AdditionalOptions) Level4 true VIEWMODEL_FOR_UT;%(PreprocessorDefinitions) Console false false /ignore:4264 %(AdditionalOptions) /DSEND_DIAGNOSTICS %(AdditionalOptions) Create Create Create Create Create Create {311e866d-8b93-4609-a691-265941fee101} {e727a92b-f149-492c-8117-c039a298719b} {fc81ff41-02cd-4cd9-9bc5-45a1e39ac6ed} ================================================ FILE: src/CalcViewModelCopyForUT/CalcViewModelCopyForUT.vcxproj.filters ================================================  {2c2762e9-7673-4c4e-bf31-9513125dfc00} {8f48b19f-14df-421f-bcc6-ef908f9dcff0} {6811c769-d698-4add-b477-794316d39c66} {da163ad4-d001-45eb-b4b3-6e9e17d22077} Common Common\Automation Common\Automation Common Common Common Common Common Common Common Common Common Common Common Common DataLoaders DataLoaders GraphingCalculator GraphingCalculator GraphingCalculator Common Common\Automation Common\Automation Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common Common DataLoaders DataLoaders DataLoaders GraphingCalculator GraphingCalculator GraphingCalculator GraphingCalculator Common DataLoaders ================================================ FILE: src/CalcViewModelCopyForUT/DataLoaders/CurrencyHttpClient.cpp ================================================ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #include "pch.h" #include "DataLoaders/CurrencyHttpClient.h" namespace { constexpr auto MockCurrencyConverterData = LR"([{"An":"USD","Ch":0,"Pc":0,"Rt":1},{"An":"EUR","Ch":0.003803,"Pc":0.4149,"Rt":0.920503,"Yh":0.9667,"Yl":0.86701}])"; constexpr auto MockCurrencyStaticData = LR"([{"CountryCode":"USA","CountryName":"United States","CurrencyCode":"USD","CurrencyName":"Dollar","CurrencySymbol":"$"},{"CountryCode":"EUR","CountryName":"Europe","CurrencyCode":"EUR","CurrencyName":"Euro","CurrencySymbol":"€"}])"; } namespace CalculatorApp::ViewModel::DataLoaders { bool CurrencyHttpClient::ForceWebFailure = false; void CurrencyHttpClient::Initialize(Platform::String ^ sourceCurrencyCode, Platform::String ^ responseLanguage) { m_sourceCurrencyCode = sourceCurrencyCode; m_responseLanguage = responseLanguage; } std::future CurrencyHttpClient::GetCurrencyMetadataAsync() const { if (ForceWebFailure) { throw ref new Platform::Exception(E_FAIL, L"Mocked Network Failure: failed to load currency metadata"); } (void)m_responseLanguage; // to be used in production. std::promise mockedTask; mockedTask.set_value(ref new Platform::String(MockCurrencyStaticData)); return mockedTask.get_future(); } std::future CurrencyHttpClient::GetCurrencyRatiosAsync() const { if (ForceWebFailure) { throw ref new Platform::Exception(E_FAIL, L"Mocked Network Failure: failed to load currency metadata"); } (void)m_sourceCurrencyCode; // to be used in production. std::promise mockedTask; mockedTask.set_value(ref new Platform::String(MockCurrencyConverterData)); return mockedTask.get_future(); } } // namespace CalculatorApp::ViewModel::DataLoaders ================================================ FILE: src/Calculator/App.xaml ================================================ 0 0 0 0,0,0,0 0 #FF000000 #FF2B2B2B #FF858585 Dark #FFFFFF #000000 0 0,0,0,0 0 #FFF2F2F2 #FFE0E0E0 #FF858585 Light #FFFFFF #000000 1 0,1,0,0 2 Dark 500 320 ms-appx:///Assets/CalculatorIcons.ttf#Calculator Fluent Icons 256 0,1,0,0 14 Normal 70 24 24 16 70 16 20 10 44 12 16 12 12 14 24 14 SemiBold 48 48 32 34 38 48 24 20 22 15 12 14 12 16 ================================================ FILE: src/Calculator/App.xaml.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // // App.xaml.h // Declaration of the App class. // using System; using System.Diagnostics; using System.Threading.Tasks; using Windows.ApplicationModel; using Windows.ApplicationModel.Activation; using Windows.Storage; using Windows.UI.StartScreen; using Windows.UI.ViewManagement; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using CalculatorApp.Utils; using CalculatorApp.ViewModel.Common; using CalculatorApp.ViewModel.Common.Automation; namespace CalculatorApp { /// /// Provides application-specific behavior to supplement the default Application class. /// public sealed partial class App { /// /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// public App() { InitializeComponent(); NarratorNotifier.RegisterDependencyProperties(); // TODO: MSFT 14645325: Set this directly from XAML. // Currently this is bugged so the property is only respected from code-behind. HighContrastAdjustment = ApplicationHighContrastAdjustment.None; Suspending += OnSuspending; #if DEBUG DebugSettings.IsBindingTracingEnabled = true; DebugSettings.BindingFailed += (sender, args) => { if (Debugger.IsAttached) { string errorMessage = args.Message; Debugger.Break(); } }; #endif } /// /// Invoked when the application is launched normally by the end user. Other entry points /// will be used when the application is launched to open a specific file, to display /// search results, and so forth. /// /// Details about the launch request and process. protected override void OnLaunched(LaunchActivatedEventArgs args) { NavCategoryStates.SetCurrentUser(args.User.NonRoamableId); // It takes time to check GraphingMode at the very first time. Warm up in a background thread. Task.Run(() => NavCategoryStates.IsViewModeEnabled(ViewMode.Graphing)); OnAppLaunch(args, args.Arguments, args.PrelaunchActivated); } protected override void OnActivated(IActivatedEventArgs args) { if (args.Kind != ActivationKind.Protocol) { return; } else if (args.TryGetSnapshotProtocol(out var protoArgs)) { OnAppLaunch(args, protoArgs.GetSnapshotLaunchArgs(), false); } else { // handle any unknown protocol launch as a normal app launch. OnAppLaunch(args, null, false); } } private void OnAppLaunch(IActivatedEventArgs args, object arguments, bool isPreLaunch) { // Uncomment the following lines to display frame-rate and per-frame CPU usage info. //#if DEBUG // if (IsDebuggerPresent()) // { // DebugSettings.EnableFrameRateCounter = true; // } //#endif args.SplashScreen.Dismissed += async (_, __) => await SetupJumpListAsync(); var minWindowWidth = Convert.ToSingle(Resources["AppMinWindowWidth"]); var minWindowHeight = Convert.ToSingle(Resources["AppMinWindowHeight"]); var minWindowSize = SizeHelper.FromDimensions(minWindowWidth, minWindowHeight); var appView = ApplicationView.GetForCurrentView(); var localSettings = ApplicationData.Current.LocalSettings; // SetPreferredMinSize should always be called before Window.Activate appView.SetPreferredMinSize(minWindowSize); // For very first launch, set the size of the calc as size of the default standard mode if (!localSettings.Values.ContainsKey("VeryFirstLaunch")) { localSettings.Values["VeryFirstLaunch"] = false; appView.TryResizeView(minWindowSize); // the requested size must not be less than the min size. } else { ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.Auto; } // Do not repeat app initialization when the Window already has content, // just ensure that the window is active var rootFrame = Window.Current.Content as Frame; if (rootFrame == null) { rootFrame = new Frame { FlowDirection = LocalizationService.GetInstance().GetFlowDirection() }; } if (isPreLaunch) { return; } // When the navigation stack isn't restored navigate to the first page, // configuring the new page by passing required information as a navigation // parameter if (rootFrame.Content == null && !rootFrame.Navigate(typeof(MainPage), arguments)) { // We couldn't navigate to the main page, kill the app so we have a good // stack to debug throw new SystemException("6d430286-eb5d-4f8d-95d2-3d1059552968"); } // Place the frame in the current Window Window.Current.Content = rootFrame; ThemeHelper.InitializeAppTheme(); Window.Current.Activate(); } private void OnSuspending(object sender, SuspendingEventArgs args) { TraceLogger.GetInstance().LogButtonUsage(); } private async Task SetupJumpListAsync() { try { var calculatorOptions = NavCategoryStates.CreateCalculatorCategoryGroup(); var jumpList = await JumpList.LoadCurrentAsync(); jumpList.SystemGroupKind = JumpListSystemGroupKind.None; jumpList.Items.Clear(); foreach (NavCategory option in calculatorOptions.Categories) { if (!NavCategoryStates.IsViewModeEnabled(option.ViewMode)) { continue; } ViewMode mode = option.ViewMode; var item = JumpListItem.CreateWithArguments(((int)mode).ToString(), "ms-resource:///Resources/" + NavCategoryStates.GetNameResourceKey(mode)); item.Description = "ms-resource:///Resources/" + NavCategoryStates.GetNameResourceKey(mode); item.Logo = new Uri("ms-appx:///Assets/" + mode + ".png"); jumpList.Items.Add(item); } await jumpList.SaveAsync(); } catch (Exception ex) { TraceLogger.GetInstance().LogError(ViewMode.None, nameof(SetupJumpListAsync), ex.ToString()); #if DEBUG throw; #endif } } } } ================================================ FILE: src/Calculator/Calculator.csproj ================================================  Debug x86 {3B773403-B0D6-4F9A-948E-512A7A5FB315} AppContainerExe Properties CalculatorApp CalculatorApp Windows Store true en-US UAP 10.0.26100.0 10.0.17763.0 false false 14 10.0 black 512 {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} true False False Always true False SHA256 False True $(Platform) 0 /disableStackTraceMetadata /disableExceptionMessages true ..\x86\Debug\Calculator\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 full x86 false prompt true ..\x86\Release\Calculator\ TRACE;NETFX_CORE;WINDOWS_UWP true ;2008 pdbonly x86 false prompt true true true ..\ARM64\Debug\Calculator\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 full ARM64 false prompt true true ..\ARM64\Release\Calculator\ TRACE;NETFX_CORE;WINDOWS_UWP true ;2008 pdbonly ARM64 false prompt true true true ..\x64\Debug\Calculator\ DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP ;2008 full x64 false prompt true ..\x64\Release\Calculator\ TRACE;NETFX_CORE;WINDOWS_UWP true ;2008 pdbonly x64 false prompt true true $(DefineConstants);SEND_DIAGNOSTICS;IS_STORE_BUILD PackageReference App.xaml EquationStylePanelControl.xaml Calculator.xaml CalculatorProgrammerBitFlipPanel.xaml CalculatorProgrammerOperators.xaml CalculatorProgrammerRadixOperators.xaml CalculatorScientificAngleButtons.xaml CalculatorScientificOperators.xaml CalculatorStandardOperators.xaml DateCalculator.xaml EquationInputArea.xaml GraphingCalculator.xaml GraphingNumPad.xaml GraphingSettings.xaml KeyGraphFeaturesPanel.xaml HistoryList.xaml MainPage.xaml Memory.xaml MemoryListItem.xaml NumberPad.xaml OperatorsPanel.xaml Settings.xaml CalculatorProgrammerDisplayPanel.xaml SupplementaryResults.xaml TitleBar.xaml UnitConverter.xaml Designer Designer Designer MSBuild:Compile Designer Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile MSBuild:Compile Designer Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile MSBuild:Compile Designer Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile Designer MSBuild:Compile MSBuild:Compile Designer 8.0.230823-rc 6.2.14 8.0.5 {2179cfde-cded-4df0-8c24-a0ef6b425771} Calculator.ManagedViewModels {812d1a7b-b8ac-49e4-8e6d-af5d59500d56} CalcViewModel {e727a92b-f149-492c-8117-c039a298719b} GraphControl {fc81ff41-02cd-4cd9-9bc5-45a1e39ac6ed} TraceLogging 14.0 <_IntermediateFrameworkSdkReference Include="@(AppxPackageRegistration)" Condition="'@(AppxPackageRegistration)' != '' AND ('$(Configuration)' == '%(AppxPackageRegistration.Configuration)' OR '%(AppxPackageRegistration.Configuration)' == '') AND ('$(PlatformTarget)' == '%(AppxPackageRegistration.Architecture)' OR '%(AppxPackageRegistration.Configuration)' == '')"> %(AppxPackageRegistration.Name) %(AppxPackageRegistration.Filename) %(AppxPackageRegistration.Configuration) %(AppxPackageRegistration.Architecture) %(AppxPackageRegistration.Identity) Name = %(_IntermediateFrameworkSdkReference.SDKName), MinVersion = %(_IntermediateFrameworkSdkReference.Version), Publisher = %(_IntermediateFrameworkSdkReference.Publisher) ================================================ FILE: src/Calculator/Common/AlwaysSelectedCollectionView.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.Collections; using System.Collections.Generic; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Xaml.Data; namespace CalculatorApp { namespace Common { internal sealed class AlwaysSelectedCollectionView : Windows.UI.Xaml.DependencyObject, Windows.UI.Xaml.Data.ICollectionView { internal AlwaysSelectedCollectionView(IList source) { CurrentPosition = -1; m_source = source; if (source is Windows.UI.Xaml.Interop.IBindableObservableVector observable) { observable.VectorChanged += OnSourceBindableVectorChanged; } } public bool MoveCurrentTo(object item) { if (item != null) { int newCurrentPosition = m_source.IndexOf(item); if (newCurrentPosition != -1) { CurrentPosition = newCurrentPosition; CurrentChanged?.Invoke(this, null); return true; } } // The item is not in the collection // We're going to schedule a call back later so we // restore the selection to the way we wanted it to begin with if (CurrentPosition >= 0 && CurrentPosition < m_source.Count) { Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () => { CurrentChanged?.Invoke(this, null); }).AsTask().Wait(); } return false; } public bool MoveCurrentToPosition(int index) { if (index < 0 || index >= m_source.Count) { return false; } CurrentPosition = index; CurrentChanged?.Invoke(this, null); return true; } #region no implementations public bool MoveCurrentToFirst() { throw new NotImplementedException(); } public bool MoveCurrentToLast() { throw new NotImplementedException(); } public bool MoveCurrentToNext() { throw new NotImplementedException(); } public bool MoveCurrentToPrevious() { throw new NotImplementedException(); } public IAsyncOperation LoadMoreItemsAsync(uint count) { throw new NotImplementedException(); } public void Insert(int index, object item) { throw new NotImplementedException(); } public void RemoveAt(int index) { throw new NotImplementedException(); } public void Add(object item) { throw new NotImplementedException(); } public void Clear() { throw new NotImplementedException(); } public bool Contains(object item) { throw new NotImplementedException(); } public void CopyTo(object[] array, int arrayIndex) { throw new NotImplementedException(); } public bool Remove(object item) { throw new NotImplementedException(); } public bool IsReadOnly => throw new NotImplementedException(); #endregion no implementations public object this[int index] { get => m_source[index]; set => throw new NotImplementedException(); } public int Count => m_source.Count; public IObservableVector CollectionGroups => (IObservableVector)new List(); public object CurrentItem { get { if (CurrentPosition >= 0 && CurrentPosition < m_source.Count) { return m_source[CurrentPosition]; } return null; } } public int CurrentPosition { get; private set; } public bool HasMoreItems => false; public bool IsCurrentAfterLast => CurrentPosition >= m_source.Count; public bool IsCurrentBeforeFirst => CurrentPosition < 0; public int IndexOf(object item) { return m_source.IndexOf(item); } public IEnumerator GetEnumerator() { throw new NotImplementedException(); } IEnumerator IEnumerable.GetEnumerator() { throw new NotImplementedException(); } // Event handlers private void OnSourceBindableVectorChanged(Windows.UI.Xaml.Interop.IBindableObservableVector source, object e) { Windows.Foundation.Collections.IVectorChangedEventArgs args = (Windows.Foundation.Collections.IVectorChangedEventArgs)e; VectorChanged?.Invoke(this, args); } public event EventHandler CurrentChanged; public event VectorChangedEventHandler VectorChanged; public event CurrentChangingEventHandler CurrentChanging { add => throw new NotImplementedException(); remove => throw new NotImplementedException(); } private readonly IList m_source; } public sealed class AlwaysSelectedCollectionViewConverter : Windows.UI.Xaml.Data.IValueConverter { public AlwaysSelectedCollectionViewConverter() { } public object Convert(object value, Type targetType, object parameter, string language) { if (value is IList result) { return new AlwaysSelectedCollectionView(result); } return Windows.UI.Xaml.DependencyProperty.UnsetValue; // Can't convert } public object ConvertBack(object value, Type targetType, object parameter, string language) { return Windows.UI.Xaml.DependencyProperty.UnsetValue; } } } } ================================================ FILE: src/Calculator/Common/AppLifecycleLogger.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using System; using Windows.ApplicationModel; using Windows.ApplicationModel.Core; using Windows.Foundation.Diagnostics; using Windows.UI.ViewManagement; namespace CalculatorApp { public static class Globals { #if SEND_DIAGNOSTICS // c.f. WINEVENT_KEYWORD_RESERVED_63-56 0xFF00000000000000 // Bits 63-56 - channel keywords // c.f. WINEVENT_KEYWORD_* 0x00FF000000000000 // Bits 55-48 - system-reserved keywords public const long MICROSOFT_KEYWORD_LEVEL_1 = 0x0000800000000000; // Bit 47 public const long MICROSOFT_KEYWORD_LEVEL_2 = 0x0000400000000000; // Bit 46 public const long MICROSOFT_KEYWORD_LEVEL_3 = 0x0000200000000000; // Bit 45 public const long MICROSOFT_KEYWORD_RESERVED_44 = 0x0000100000000000; // Bit 44 (reserved for future assignment) #else // define all Keyword options as 0 when we do not want to upload app diagnostics public const long MICROSOFT_KEYWORD_LEVEL_1 = 0; public const long MICROSOFT_KEYWORD_LEVEL_2 = 0; public const long MICROSOFT_KEYWORD_LEVEL_3 = 0; public const long MICROSOFT_KEYWORD_RESERVED_44 = 0; #endif } internal class AppLifecycleLogger { public static AppLifecycleLogger GetInstance() { return s_selfInstance.Value; } public bool GetTraceLoggingProviderEnabled() { return m_appLifecycleProvider.Enabled; } public void LaunchUIResponsive() { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); LogAppLifecycleEvent("ModernAppLaunch_UIResponsive", fields); } public void LaunchVisibleComplete() { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); LogAppLifecycleEvent("ModernAppLaunch_VisibleComplete", fields); } public void ResumeUIResponsive() { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); LogAppLifecycleEvent("ModernAppResume_UIResponsive", fields); } public void ResumeVisibleComplete() { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); LogAppLifecycleEvent("ModernAppResume_VisibleComplete", fields); } public void ResizeUIResponsive() { ResizeUIResponsive(ApplicationView.GetForCurrentView().Id); } public void ResizeVisibleComplete() { ResizeVisibleComplete(ApplicationView.GetForCurrentView().Id); } public void ResizeUIResponsive(int viewId) { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); fields.AddInt32("ViewId", viewId); LogAppLifecycleEvent("ModernAppResize_UIResponsive", fields); } public void ResizeVisibleComplete(int viewId) { if (!GetTraceLoggingProviderEnabled()) return; LoggingFields fields = new LoggingFields(); PopulateAppInfo(fields); fields.AddInt32("ViewId", viewId); LogAppLifecycleEvent("ModernAppResize_VisibleComplete", fields); } // Make the object construction private to allow singleton access to this class private AppLifecycleLogger() { m_appLifecycleProvider = new LoggingChannel( "Microsoft.Windows.AppLifeCycle", new LoggingChannelOptions(new Guid(0x4f50731a, 0x89cf, 0x4782, 0xb3, 0xe0, 0xdc, 0xe8, 0xc9, 0x4, 0x76, 0xba)), new Guid(0xef00584a, 0x2655, 0x462c, 0xbc, 0x24, 0xe7, 0xde, 0x63, 0xe, 0x7f, 0xbf)); } // Any new Log method should // a) Decide the level of logging. This will help us in limiting recording of events only up to a certain level. See this link for guidance // https://msdn.microsoft.com/en-us/library/windows/desktop/aa363742(v=vs.85).aspx We're using Verbose level for events that are called frequently and // needed only for debugging or capturing perf for specific scenarios b) Should decide whether or not to log to diagnostics and pass // TraceLoggingKeyword(MICROSOFT_KEYWORD_LEVEL_3) accordingly c) Should accept a variable number of additional data arguments if needed private void LogAppLifecycleEvent(string eventName, LoggingFields fields) { m_appLifecycleProvider.LogEvent( eventName, fields, LoggingLevel.Information, new LoggingOptions(Globals.MICROSOFT_KEYWORD_LEVEL_3 | Utilities.GetConst_WINEVENT_KEYWORD_RESPONSE_TIME())); } private void PopulateAppInfo(LoggingFields fields) { var appId = CoreApplication.Id; var aumId = Package.Current.Id.FamilyName + "!" + appId; var packageFullName = Package.Current.Id.FullName; var psmKey = Package.Current.Id.FullName + "+" + appId; fields.AddString("AumId", aumId); fields.AddString("PackageFullName", packageFullName); fields.AddString("PsmKey", psmKey); } private readonly LoggingChannel m_appLifecycleProvider; private static readonly Lazy s_selfInstance = new Lazy(() => new AppLifecycleLogger(), true); } } ================================================ FILE: src/Calculator/Common/KeyboardShortcutManager.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ManagedViewModels; using CalculatorApp.ViewModel.Common; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Windows.UI.Core; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using MUXC = Microsoft.UI.Xaml.Controls; namespace CalculatorApp { namespace Common { internal static class KeyboardShortcutManagerLocals { // Lights up all of the buttons in the given range // The range is defined by a pair of iterators public static void LightUpButtons(IEnumerable buttons) { foreach (var button in buttons) { if (button.Target is ButtonBase btn && btn.IsEnabled) { LightUpButton(btn); } } } public static void LightUpButton(ButtonBase button) { // If the button is a toggle button then we don't need // to change the UI of the button if (button is ToggleButton) { return; } // The button will go into the visual Pressed state with this call VisualStateManager.GoToState(button, "Pressed", true); // This timer will fire after lightUpTime and make the button // go back to the normal state. // This timer will only fire once after which it will be destroyed var timer = new DispatcherTimer(); TimeSpan lightUpTime = TimeSpan.FromMilliseconds(50); // 5e5 100-ns timer.Interval = lightUpTime; var timerWeakReference = new WeakReference(timer); var buttonWeakReference = new WeakReference(button); timer.Tick += (sender, args) => { if (buttonWeakReference.Target is ButtonBase btn) { VisualStateManager.GoToState(button, "Normal", true); } if (timerWeakReference.Target is DispatcherTimer tmr) { tmr.Stop(); } }; timer.Start(); } // Looks for the first button reference that it can resolve // and execute its command. // NOTE: It is assumed that all buttons associated with a particular // key have the same command public static void RunFirstEnabledButtonCommand(IEnumerable buttons) { foreach (var button in buttons) { if (button.Target is ButtonBase btn && btn.IsEnabled) { RunButtonCommand(btn); break; } } } public static void RunButtonCommand(ButtonBase button) { if (button.IsEnabled) { var command = button.Command; var parameter = button.CommandParameter; if (command != null && command.CanExecute(parameter)) { command.Execute(parameter); } if (button is RadioButton radio) { radio.IsChecked = true; return; } if (button is ToggleButton toggle) { toggle.IsChecked = !(toggle.IsChecked != null && toggle.IsChecked.Value); return; } } } } public sealed class KeyboardShortcutManager : DependencyObject { public KeyboardShortcutManager() { } public static readonly DependencyProperty CharacterProperty = DependencyProperty.RegisterAttached( "Character", typeof(string), typeof(KeyboardShortcutManager), new PropertyMetadata(string.Empty, (sender, args) => { OnCharacterPropertyChanged(sender, (string)args.OldValue, (string)args.NewValue); })); public static string GetCharacter(DependencyObject target) { return (string)target.GetValue(CharacterProperty); } public static void SetCharacter(DependencyObject target, string value) { target.SetValue(CharacterProperty, value); } public static readonly DependencyProperty VirtualKeyProperty = DependencyProperty.RegisterAttached( "VirtualKey", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => { OnVirtualKeyPropertyChanged(sender, (MyVirtualKey)args.OldValue, (MyVirtualKey)args.NewValue); })); public static MyVirtualKey GetVirtualKey(DependencyObject target) { return (MyVirtualKey)target.GetValue(VirtualKeyProperty); } public static void SetVirtualKey(DependencyObject target, MyVirtualKey value) { target.SetValue(VirtualKeyProperty, value); } public static readonly DependencyProperty VirtualKeyControlChordProperty = DependencyProperty.RegisterAttached( "VirtualKeyControlChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => { OnVirtualKeyControlChordPropertyChanged(sender, (MyVirtualKey)args.OldValue, (MyVirtualKey)args.NewValue); })); public static MyVirtualKey GetVirtualKeyControlChord(DependencyObject target) { return (MyVirtualKey)target.GetValue(VirtualKeyControlChordProperty); } public static void SetVirtualKeyControlChord(DependencyObject target, MyVirtualKey value) { target.SetValue(VirtualKeyControlChordProperty, value); } public static readonly DependencyProperty VirtualKeyShiftChordProperty = DependencyProperty.RegisterAttached( "VirtualKeyShiftChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => { OnVirtualKeyShiftChordPropertyChanged(sender, (MyVirtualKey)args.OldValue, (MyVirtualKey)args.NewValue); })); public static MyVirtualKey GetVirtualKeyShiftChord(DependencyObject target) { return (MyVirtualKey)target.GetValue(VirtualKeyShiftChordProperty); } public static void SetVirtualKeyShiftChord(DependencyObject target, MyVirtualKey value) { target.SetValue(VirtualKeyShiftChordProperty, value); } public static readonly DependencyProperty VirtualKeyAltChordProperty = DependencyProperty.RegisterAttached( "VirtualKeyAltChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => { OnVirtualKeyAltChordPropertyChanged(sender, (MyVirtualKey)args.OldValue, (MyVirtualKey)args.NewValue); })); public static MyVirtualKey GetVirtualKeyAltChord(DependencyObject target) { return (MyVirtualKey)target.GetValue(VirtualKeyAltChordProperty); } public static void SetVirtualKeyAltChord(DependencyObject target, MyVirtualKey value) { target.SetValue(VirtualKeyAltChordProperty, value); } public static readonly DependencyProperty VirtualKeyControlShiftChordProperty = DependencyProperty.RegisterAttached( "VirtualKeyControlShiftChord", typeof(MyVirtualKey), typeof(KeyboardShortcutManager), new PropertyMetadata(default(MyVirtualKey), (sender, args) => { OnVirtualKeyControlShiftChordPropertyChanged(sender, (MyVirtualKey)args.OldValue, (MyVirtualKey)args.NewValue); })); public static MyVirtualKey GetVirtualKeyControlShiftChord(DependencyObject target) { return (MyVirtualKey)target.GetValue(VirtualKeyControlShiftChordProperty); } public static void SetVirtualKeyControlShiftChord(DependencyObject target, MyVirtualKey value) { target.SetValue(VirtualKeyControlShiftChordProperty, value); } internal static void Initialize() { var coreWindow = Window.Current.CoreWindow; coreWindow.CharacterReceived += OnCharacterReceivedHandler; coreWindow.KeyDown += OnKeyDownHandler; coreWindow.KeyUp += OnKeyUpHandler; coreWindow.Dispatcher.AcceleratorKeyActivated += OnAcceleratorKeyActivated; KeyboardShortcutManager.RegisterNewAppViewId(); } // Sometimes, like with popups, escape is treated as special and even // though it is handled we get it passed through to us. In those cases // we need to be able to ignore it (looking at e->Handled isn't sufficient // because that always returns true). // The onlyOnce flag is used to indicate whether we should only ignore the // next escape, or keep ignoring until you explicitly HonorEscape. public static void IgnoreEscape(bool onlyOnce) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { int viewId = Utilities.GetWindowId(); if (s_ignoreNextEscape.ContainsKey(viewId)) { s_ignoreNextEscape[viewId] = true; } if (s_keepIgnoringEscape.ContainsKey(viewId)) { s_keepIgnoringEscape[viewId] = !onlyOnce; } } } public static void HonorEscape() { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { int viewId = Utilities.GetWindowId(); if (s_ignoreNextEscape.ContainsKey(viewId)) { s_ignoreNextEscape[viewId] = false; } if (s_keepIgnoringEscape.ContainsKey(viewId)) { s_keepIgnoringEscape[viewId] = false; } } } public static void HonorShortcuts(bool allow) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { int viewId = Utilities.GetWindowId(); if (s_fHonorShortcuts.ContainsKey(viewId)) { if (s_fDisableShortcuts.ContainsKey(viewId)) { if (s_fDisableShortcuts[viewId]) { s_fHonorShortcuts[viewId] = false; return; } } s_fHonorShortcuts[viewId] = allow; } } } public static void DisableShortcuts(bool disable) { //deferredEnableShortcut is being used to prevent the mode change from happening before the user input has processed if (s_keyHandlerCount > 0 && !disable) { s_deferredEnableShortcut = true; } else { int viewId = Utilities.GetWindowId(); if (s_fDisableShortcuts.ContainsKey(viewId)) { s_fDisableShortcuts[viewId] = disable; } HonorShortcuts(!disable); } } public static void UpdateDropDownState(bool isOpen) { int viewId = Utilities.GetWindowId(); if (s_IsDropDownOpen.ContainsKey(viewId)) { s_IsDropDownOpen[viewId] = isOpen; } } public static void RegisterNewAppViewId() { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { int appViewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (!s_characterForButtons.ContainsKey(appViewId)) { s_characterForButtons.Add(appViewId, new SortedDictionary>()); } if (!s_virtualKey.ContainsKey(appViewId)) { s_virtualKey.Add(appViewId, new SortedDictionary>()); } if (!s_VirtualKeyControlChordsForButtons.ContainsKey(appViewId)) { s_VirtualKeyControlChordsForButtons.Add(appViewId, new SortedDictionary>()); } if (!s_VirtualKeyShiftChordsForButtons.ContainsKey(appViewId)) { s_VirtualKeyShiftChordsForButtons.Add(appViewId, new SortedDictionary>()); } if (!s_VirtualKeyAltChordsForButtons.ContainsKey(appViewId)) { s_VirtualKeyAltChordsForButtons.Add(appViewId, new SortedDictionary>()); } if (!s_VirtualKeyControlShiftChordsForButtons.ContainsKey(appViewId)) { s_VirtualKeyControlShiftChordsForButtons.Add(appViewId, new SortedDictionary>()); } s_IsDropDownOpen[appViewId] = false; s_ignoreNextEscape[appViewId] = false; s_keepIgnoringEscape[appViewId] = false; s_fHonorShortcuts[appViewId] = true; s_fDisableShortcuts[appViewId] = false; } } public static void OnWindowClosed(int viewId) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { s_characterForButtons.Remove(viewId); s_virtualKey.Remove(viewId); s_VirtualKeyControlChordsForButtons.Remove(viewId); s_VirtualKeyShiftChordsForButtons.Remove(viewId); s_VirtualKeyAltChordsForButtons.Remove(viewId); s_VirtualKeyControlShiftChordsForButtons.Remove(viewId); s_IsDropDownOpen.Remove(viewId); s_ignoreNextEscape.Remove(viewId); s_keepIgnoringEscape.Remove(viewId); s_fHonorShortcuts.Remove(viewId); s_fDisableShortcuts.Remove(viewId); } } private static void OnCharacterPropertyChanged(DependencyObject target, string oldValue, string newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { var button = (target as ButtonBase); int viewId = Utilities.GetWindowId(); if (s_characterForButtons.TryGetValue(viewId, out var iterViewMap)) { if (!string.IsNullOrEmpty(oldValue)) { iterViewMap.Remove(oldValue[0]); } if (!string.IsNullOrEmpty(newValue)) { if (newValue == ".") { char decSep = LocalizationSettings.GetInstance().GetDecimalSeparator(); Insert(iterViewMap, decSep, new WeakReference(button)); } else { Insert(iterViewMap, newValue[0], new WeakReference(button)); } } } else { s_characterForButtons.Add(viewId, new SortedDictionary>()); if (newValue == ".") { char decSep = LocalizationSettings.GetInstance().GetDecimalSeparator(); Insert(s_characterForButtons[viewId], decSep, new WeakReference(button)); } else { Insert(s_characterForButtons[viewId], newValue[0], new WeakReference(button)); } } } } private static void OnVirtualKeyPropertyChanged(DependencyObject target, MyVirtualKey oldValue, MyVirtualKey newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { var button = ((ButtonBase)target); int viewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (s_virtualKey.TryGetValue(viewId, out var iterViewMap)) { Insert(iterViewMap, newValue, new WeakReference(button)); } else { // If the View Id is not already registered, then register it and make the entry s_virtualKey.Add(viewId, new SortedDictionary>()); Insert(s_virtualKey[viewId], newValue, new WeakReference(button)); } } } private static void OnVirtualKeyControlChordPropertyChanged(DependencyObject target, MyVirtualKey oldValue, MyVirtualKey newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { // Handling Ctrl+E shortcut for Date Calc, target would be NavigationView^ in that case Control control = (target as ButtonBase) ?? (Control)(target as MUXC.NavigationView); int viewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (s_VirtualKeyControlChordsForButtons.TryGetValue(viewId, out var iterViewMap)) { Insert(iterViewMap, newValue, new WeakReference(control)); } else { // If the View Id is not already registered, then register it and make the entry s_VirtualKeyControlChordsForButtons.Add(viewId, new SortedDictionary>()); Insert(s_VirtualKeyControlChordsForButtons[viewId], newValue, new WeakReference(control)); } } } private static void OnVirtualKeyShiftChordPropertyChanged(DependencyObject target, MyVirtualKey oldValue, MyVirtualKey newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { var button = (target as ButtonBase); int viewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (s_VirtualKeyShiftChordsForButtons.TryGetValue(viewId, out var iterViewMap)) { Insert(iterViewMap, newValue, new WeakReference(button)); } else { // If the View Id is not already registered, then register it and make the entry s_VirtualKeyShiftChordsForButtons.Add(viewId, new SortedDictionary>()); Insert(s_VirtualKeyShiftChordsForButtons[viewId], newValue, new WeakReference(button)); } } } private static void OnVirtualKeyAltChordPropertyChanged(DependencyObject target, MyVirtualKey oldValue, MyVirtualKey newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { MUXC.NavigationView navView = (target as MUXC.NavigationView); int viewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (s_VirtualKeyAltChordsForButtons.TryGetValue(viewId, out var iterViewMap)) { Insert(iterViewMap, newValue, new WeakReference(navView)); } else { // If the View Id is not already registered, then register it and make the entry s_VirtualKeyAltChordsForButtons.Add(viewId, new SortedDictionary>()); Insert(s_VirtualKeyAltChordsForButtons[viewId], newValue, new WeakReference(navView)); } } } private static void OnVirtualKeyControlShiftChordPropertyChanged(DependencyObject target, MyVirtualKey oldValue, MyVirtualKey newValue) { // Writer lock for the static maps lock (s_keyboardShortcutMapLockMutex) { var button = (target as ButtonBase); int viewId = Utilities.GetWindowId(); // Check if the View Id has already been registered if (s_VirtualKeyControlShiftChordsForButtons.TryGetValue(viewId, out var iterViewMap)) { Insert(iterViewMap, newValue, new WeakReference(button)); } else { // If the View Id is not already registered, then register it and make the entry s_VirtualKeyControlShiftChordsForButtons.Add(viewId, new SortedDictionary>()); Insert(s_VirtualKeyControlShiftChordsForButtons[viewId], newValue, new WeakReference(button)); } } } private static bool CanNavigateModeByShortcut(MUXC.NavigationView navView, object nvi , ApplicationViewModel vm, ViewMode toMode) { if (nvi is NavCategory navCategory) { return navCategory.IsEnabled && navView.Visibility == Visibility.Visible && !vm.IsAlwaysOnTop && NavCategoryStates.IsValidViewMode(toMode); } return false; } private static void NavigateModeByShortcut(bool controlKeyPressed, bool shiftKeyPressed, bool altPressed , Windows.System.VirtualKey key, ViewMode? toMode) { var lookupMap = GetCurrentKeyDictionary(controlKeyPressed, shiftKeyPressed, altPressed); if (lookupMap != null) { var listItems = EqualRange(lookupMap, (MyVirtualKey)key); foreach (var itemRef in listItems) { if (itemRef.Target is MUXC.NavigationView item) { var menuItems = ((List)item.MenuItemsSource); if (menuItems != null) { if (item.DataContext is ApplicationViewModel vm) { ViewMode realToMode = toMode ?? NavCategoryStates.GetViewModeForVirtualKey(((MyVirtualKey)key)); var nvi = menuItems[NavCategoryStates.GetFlatIndex(realToMode)]; if (CanNavigateModeByShortcut(item, nvi, vm, realToMode)) { vm.Mode = realToMode; item.SelectedItem = nvi; } } } break; } } } } // In the three event handlers below we will not mark the event as handled // because this is a supplemental operation and we don't want to interfere with // the normal keyboard handling. private static void OnCharacterReceivedHandler(CoreWindow sender, CharacterReceivedEventArgs args) { int viewId = Utilities.GetWindowId(); bool hit = s_fHonorShortcuts.TryGetValue(viewId, out var currentHonorShortcuts); if (!hit || currentHonorShortcuts) { char character = ((char)args.KeyCode); var buttons = EqualRange(s_characterForButtons[viewId], character); KeyboardShortcutManagerLocals.RunFirstEnabledButtonCommand(buttons); KeyboardShortcutManagerLocals.LightUpButtons(buttons); } } private static void OnKeyDownHandler(CoreWindow sender, KeyEventArgs args) { s_keyHandlerCount++; if (args.Handled) { return; } var key = args.VirtualKey; int viewId = Utilities.GetWindowId(); bool isControlKeyPressed = (Window.Current.CoreWindow.GetKeyState(Windows.System.VirtualKey.Control) & CoreVirtualKeyStates.Down) == CoreVirtualKeyStates.Down; bool isShiftKeyPressed = (Window.Current.CoreWindow.GetKeyState(Windows.System.VirtualKey.Shift) & CoreVirtualKeyStates.Down) == CoreVirtualKeyStates.Down; bool isAltKeyPressed = (Window.Current.CoreWindow.GetKeyState(Windows.System.VirtualKey.Menu) & CoreVirtualKeyStates.Down) == CoreVirtualKeyStates.Down; // Handle Ctrl + E for DateCalculator if ((key == Windows.System.VirtualKey.E) && isControlKeyPressed && !isShiftKeyPressed && !isAltKeyPressed) { NavigateModeByShortcut(true, false, false, key, ViewMode.Date); return; } if (s_ignoreNextEscape.TryGetValue(viewId, out var currentIgnoreNextEscape)) { if (currentIgnoreNextEscape && key == Windows.System.VirtualKey.Escape) { if (s_keepIgnoringEscape.TryGetValue(viewId, out var currentKeepIgnoringEscape)) { if (!currentKeepIgnoringEscape) { HonorEscape(); } return; } } } if (s_fHonorShortcuts.TryGetValue(viewId, out var currentHonorShortcuts)) { if (currentHonorShortcuts) { var lookupMap = GetCurrentKeyDictionary(isControlKeyPressed, isShiftKeyPressed, isAltKeyPressed); if (lookupMap == null) { return; } var buttons = EqualRange(lookupMap, (MyVirtualKey)key); if (!buttons.Any()) { return; } KeyboardShortcutManagerLocals.RunFirstEnabledButtonCommand(buttons); // Ctrl+C and Ctrl+V shifts focus to some button because of which enter doesn't work after copy/paste. So don't shift focus if Ctrl+C or Ctrl+V // is pressed. When drop down is open, pressing escape shifts focus to clear button. So don't shift focus if drop down is open. Ctrl+Insert is // equivalent to Ctrl+C and Shift+Insert is equivalent to Ctrl+V //var currentIsDropDownOpen = s_IsDropDownOpen.find(viewId); if (!s_IsDropDownOpen.TryGetValue(viewId, out var currentIsDropDownOpen) || !currentIsDropDownOpen) { // Do not Light Up Buttons when Ctrl+C, Ctrl+V, Ctrl+Insert or Shift+Insert is pressed if (!(isControlKeyPressed && (key == Windows.System.VirtualKey.C || key == Windows.System.VirtualKey.V || key == Windows.System.VirtualKey.Insert)) & !(isShiftKeyPressed && (key == Windows.System.VirtualKey.Insert))) { KeyboardShortcutManagerLocals.LightUpButtons(buttons); } } } } } private static void OnKeyUpHandler(CoreWindow sender, KeyEventArgs args) { s_keyHandlerCount--; if (s_keyHandlerCount == 0 && s_deferredEnableShortcut) { DisableShortcuts(false); s_deferredEnableShortcut = false; } } private static void OnAcceleratorKeyActivated(CoreDispatcher dispatcher, AcceleratorKeyEventArgs args) { if (args.KeyStatus.IsKeyReleased) { var key = args.VirtualKey; bool altPressed = args.KeyStatus.IsMenuKeyDown; // If the Alt/Menu key is not pressed then we don't care about the key anymore if (!altPressed) { return; } bool controlKeyPressed = (Window.Current.CoreWindow.GetKeyState(Windows.System.VirtualKey.Control) & CoreVirtualKeyStates.Down) == CoreVirtualKeyStates.Down; // Ctrl is pressed in addition to alt, this means Alt Gr is intended. do not navigate. if (controlKeyPressed) { return; } bool shiftKeyPressed = (Window.Current.CoreWindow.GetKeyState(Windows.System.VirtualKey.Shift) & CoreVirtualKeyStates.Down) == CoreVirtualKeyStates.Down; NavigateModeByShortcut(false, shiftKeyPressed, true, key, null); } } private static SortedDictionary> GetCurrentKeyDictionary(bool controlKeyPressed, bool shiftKeyPressed, bool altPressed) { int viewId = Utilities.GetWindowId(); if (controlKeyPressed) { if (altPressed) { return null; } else { if (shiftKeyPressed) { return s_VirtualKeyControlShiftChordsForButtons[viewId]; } else { return s_VirtualKeyControlChordsForButtons[viewId]; } } } else { if (altPressed) { if (shiftKeyPressed) { return null; } else { return s_VirtualKeyAltChordsForButtons[viewId]; } } else { if (shiftKeyPressed) { return s_VirtualKeyShiftChordsForButtons[viewId]; } else { return s_virtualKey[viewId]; } } } } // EqualRange is a helper function to pick a range from std::multimap. private static IEnumerable EqualRange(SortedDictionary> source, TKey key) { Debug.Assert(source != null); if (source.TryGetValue(key, out List items)) { return items; } else { return Enumerable.Empty(); } } // Insert is a helper function to insert a pair into std::multimap. private static void Insert(SortedDictionary> dest, Tkey key, TValue value) { if (dest.TryGetValue(key, out List items)) { items.Add(value); } else { items = new List { value }; dest.Add(key, items); } } private static readonly SortedDictionary>> s_characterForButtons = new SortedDictionary>>(); private static readonly SortedDictionary>> s_virtualKey = new SortedDictionary>>(); private static readonly SortedDictionary>> s_VirtualKeyControlChordsForButtons = new SortedDictionary>>(); private static readonly SortedDictionary>> s_VirtualKeyShiftChordsForButtons = new SortedDictionary>>(); private static readonly SortedDictionary>> s_VirtualKeyAltChordsForButtons = new SortedDictionary>>(); private static readonly SortedDictionary>> s_VirtualKeyControlShiftChordsForButtons = new SortedDictionary>>(); private static readonly SortedDictionary s_IsDropDownOpen = new SortedDictionary(); private static readonly SortedDictionary s_ignoreNextEscape = new SortedDictionary(); private static readonly SortedDictionary s_keepIgnoringEscape = new SortedDictionary(); private static readonly SortedDictionary s_fHonorShortcuts = new SortedDictionary(); private static readonly SortedDictionary s_fDisableShortcuts = new SortedDictionary(); //private static Concurrency.reader_writer_lock s_keyboardShortcutMapLock; private static readonly object s_keyboardShortcutMapLockMutex = new object(); private static int s_keyHandlerCount = 0; private static bool s_deferredEnableShortcut = false; } } } ================================================ FILE: src/Calculator/Common/LaunchArguments.cs ================================================ using System; using System.Linq; using System.Text.Json; using Windows.ApplicationModel.Activation; using CalculatorApp.ViewModel.Snapshot; using CalculatorApp.JsonUtils; using CalculatorApp.ViewModel.Common; namespace CalculatorApp { internal class SnapshotLaunchArguments { public bool HasError { get; set; } public ApplicationSnapshot Snapshot { get; set; } } internal static class LaunchExtensions { public static bool TryGetSnapshotProtocol(this IActivatedEventArgs args, out IProtocolActivatedEventArgs result) { result = null; var protoArgs = args as IProtocolActivatedEventArgs; if (protoArgs == null || protoArgs.Uri == null || protoArgs.Uri.Segments == null || protoArgs.Uri.Segments.Length < 2 || protoArgs.Uri.Segments[0] != "snapshot/") { return false; } result = protoArgs; return true; } public static SnapshotLaunchArguments GetSnapshotLaunchArgs(this IProtocolActivatedEventArgs args) { try { var rawbase64 = args.Uri.Segments.Skip(1).Aggregate((folded, x) => folded += x); var compressed = Convert.FromBase64String(rawbase64); var jsonStr = DeflateUtils.Decompress(compressed); var snapshot = JsonSerializer.Deserialize(jsonStr); return new SnapshotLaunchArguments { HasError = false, Snapshot = snapshot.Value }; } catch (Exception ex) { TraceLogger.GetInstance().LogRecallError($"Error occurs during the deserialization of Snapshot. Exception: {ex}"); return new SnapshotLaunchArguments { HasError = true }; } } } } ================================================ FILE: src/Calculator/Common/ValidatingConverters.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; namespace CalculatorApp { namespace Common { public sealed class ValidSelectedItemConverter : Windows.UI.Xaml.Data.IValueConverter { public ValidSelectedItemConverter() { } public object Convert(object value, Type targetType, object parameter, string language) { // Pass through as we don't want to change the value from the source return value; } public object ConvertBack(object value, Type targetType, object parameter, string language) { if (value != null) { return value; } // Stop the binding if the object is nullptr return Windows.UI.Xaml.DependencyProperty.UnsetValue; } } public sealed class ValidSelectedIndexConverter : Windows.UI.Xaml.Data.IValueConverter { public ValidSelectedIndexConverter() { } public object Convert(object value, Type targetType, object parameter, string language) { // Pass through as we don't want to change the value from the source return value; } public object ConvertBack(object value, Type targetType, object parameter, string language) { // The value to be valid has to be a boxed int32 value // extract that value and ensure it is valid, ie >= 0 if (value is Windows.Foundation.IPropertyValue box && box.Type == Windows.Foundation.PropertyType.Int32) { int index = box.GetInt32(); if (index >= 0) { return value; } } // The value is not valid therefore stop the binding right here return Windows.UI.Xaml.DependencyProperty.UnsetValue; } } } } ================================================ FILE: src/Calculator/Controls/CalculationResult.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using System; using System.Diagnostics; using Windows.UI.Xaml; using Windows.UI.Xaml.Automation.Peers; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public delegate void SelectedEventHandler(object sender); public sealed class CalculationResult : Windows.UI.Xaml.Controls.Control { public CalculationResult() { m_isScalingText = false; m_haveCalculatedMax = false; } public double MinFontSize { get => (double)GetValue(MinFontSizeProperty); set => SetValue(MinFontSizeProperty, value); } // Using a DependencyProperty as the backing store for MinFontSize. This enables animation, styling, binding, etc... public static readonly DependencyProperty MinFontSizeProperty = DependencyProperty.Register(nameof(MinFontSize), typeof(double), typeof(CalculationResult), new PropertyMetadata(0.0, (sender, args) => { var self = (CalculationResult)sender; self.OnMinFontSizePropertyChanged((double)args.OldValue, (double)args.NewValue); })); public double MaxFontSize { get => (double)GetValue(MaxFontSizeProperty); set => SetValue(MaxFontSizeProperty, value); } // Using a DependencyProperty as the backing store for MaxFontSize. This enables animation, styling, binding, etc... public static readonly DependencyProperty MaxFontSizeProperty = DependencyProperty.Register(nameof(MaxFontSize), typeof(double), typeof(CalculationResult), new PropertyMetadata(30.0, (sender, args) => { var self = (CalculationResult)sender; self.OnMaxFontSizePropertyChanged((double)args.OldValue, (double)args.NewValue); })); public Thickness DisplayMargin { get => (Thickness)GetValue(DisplayMarginProperty); set => SetValue(DisplayMarginProperty, value); } // Using a DependencyProperty as the backing store for DisplayMargin. This enables animation, styling, binding, etc... public static readonly DependencyProperty DisplayMarginProperty = DependencyProperty.Register(nameof(DisplayMargin), typeof(Thickness), typeof(CalculationResult), new PropertyMetadata(default(Thickness))); public bool IsActive { get => (bool)GetValue(IsActiveProperty); set => SetValue(IsActiveProperty, value); } // Using a DependencyProperty as the backing store for IsActive. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register(nameof(IsActive), typeof(bool), typeof(CalculationResult), new PropertyMetadata(default(bool), (sender, args) => { var self = (CalculationResult)sender; self.OnIsActivePropertyChanged((bool)args.OldValue, (bool)args.NewValue); })); public string DisplayValue { get => (string)GetValue(DisplayValueProperty); set => SetValue(DisplayValueProperty, value); } // Using a DependencyProperty as the backing store for DisplayValue. This enables animation, styling, binding, etc... public static readonly DependencyProperty DisplayValueProperty = DependencyProperty.Register(nameof(DisplayValue), typeof(string), typeof(CalculationResult), new PropertyMetadata(string.Empty, (sender, args) => { var self = (CalculationResult)sender; self.OnDisplayValuePropertyChanged((string)args.OldValue, (string)args.NewValue); })); public bool IsInError { get => (bool)GetValue(IsInErrorProperty); set => SetValue(IsInErrorProperty, value); } // Using a DependencyProperty as the backing store for IsInError. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsInErrorProperty = DependencyProperty.Register(nameof(IsInError), typeof(bool), typeof(CalculationResult), new PropertyMetadata(default(bool), (sender, args) => { var self = (CalculationResult)sender; self.OnIsInErrorPropertyChanged((bool)args.OldValue, (bool)args.NewValue); })); public bool IsOperatorCommand { get => (bool)GetValue(IsOperatorCommandProperty); set => SetValue(IsOperatorCommandProperty, value); } // Using a DependencyProperty as the backing store for IsOperatorCommand. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsOperatorCommandProperty = DependencyProperty.Register(nameof(IsOperatorCommand), typeof(bool), typeof(CalculationResult), new PropertyMetadata(false)); public event SelectedEventHandler Selected; public void ProgrammaticSelect() { RaiseSelectedEvent(); } internal void UpdateTextState() { if ((m_textContainer == null) || (m_textBlock == null)) { return; } var containerSize = m_textContainer.ActualWidth; string oldText = m_textBlock.Text; string newText = DisplayValue; // Initiate the scaling operation // UpdateLayout will keep calling us until we make it through the below 2 if-statements if (!m_isScalingText || oldText != newText) { m_textBlock.Text = newText; m_isScalingText = true; m_haveCalculatedMax = false; m_textBlock.InvalidateArrange(); return; } if (containerSize > 0) { double widthDiff = Math.Abs(m_textBlock.ActualWidth - containerSize); double fontSizeChange = INCREMENTOFFSET; if (widthDiff > WIDTHCUTOFF) { fontSizeChange = Math.Min(Math.Max(Math.Floor(WIDTHTOFONTSCALAR * widthDiff) - WIDTHTOFONTOFFSET, INCREMENTOFFSET), MAXFONTINCREMENT); } if (m_textBlock.ActualWidth < containerSize && Math.Abs(m_textBlock.FontSize - MaxFontSize) > FONTTOLERANCE && !m_haveCalculatedMax) { ModifyFontAndMargin(m_textBlock, fontSizeChange); m_textBlock.InvalidateArrange(); return; } if (fontSizeChange < 5) { m_haveCalculatedMax = true; } if (m_textBlock.ActualWidth >= containerSize && Math.Abs(m_textBlock.FontSize - MinFontSize) > FONTTOLERANCE) { ModifyFontAndMargin(m_textBlock, -1 * fontSizeChange); m_textBlock.InvalidateArrange(); return; } Debug.Assert(m_textBlock.FontSize >= MinFontSize && m_textBlock.FontSize <= MaxFontSize); m_isScalingText = false; if (IsOperatorCommand) { m_textContainer.ChangeView(0.0, null, null); } else { m_textContainer.ChangeView(m_textContainer.ExtentWidth - m_textContainer.ViewportWidth, null, null); } } } public string GetRawDisplayValue() { return LocalizationSettings.GetInstance().RemoveGroupSeparators(DisplayValue); } protected override void OnKeyDown(KeyRoutedEventArgs e) { switch (e.Key) { case Windows.System.VirtualKey.Left: this.ScrollLeft(); break; case Windows.System.VirtualKey.Right: this.ScrollRight(); break; } } protected override void OnApplyTemplate() { if (m_textContainer != null) { m_textContainer.LayoutUpdated -= OnTextContainerLayoutUpdated; m_textContainer.SizeChanged -= OnTextContainerSizeChanged; m_textContainer.ViewChanged -= OnTextContainerOnViewChanged; } if (m_textBlock != null) { m_textBlock.SizeChanged -= OnTextBlockSizeChanged; } if (m_scrollLeft != null) { m_scrollLeft.Click -= OnScrollLeftClick; } if (m_scrollRight != null) { m_scrollRight.Click -= OnScrollRightClick; } m_textContainer = GetTemplateChild("TextContainer") as ScrollViewer; if (m_textContainer != null) { // We want to know when the size of the container changes so // we can rescale the textbox m_textContainer.SizeChanged += OnTextContainerSizeChanged; m_textContainer.ViewChanged += OnTextContainerOnViewChanged; m_textContainer.LayoutUpdated += OnTextContainerLayoutUpdated; m_textContainer.ChangeView(m_textContainer.ExtentWidth - m_textContainer.ViewportWidth, null, null); m_scrollLeft = GetTemplateChild("ScrollLeft") as HyperlinkButton; if (m_scrollLeft != null) { m_scrollLeft.Click += OnScrollLeftClick; } m_scrollRight = GetTemplateChild("ScrollRight") as HyperlinkButton; if (m_scrollRight != null) { m_scrollRight.Click += OnScrollRightClick; } m_textBlock = GetTemplateChild("NormalOutput") as TextBlock; if (m_textBlock != null) { m_textBlock.Visibility = Visibility.Visible; m_textBlock.SizeChanged += OnTextBlockSizeChanged; } } UpdateVisualState(); UpdateTextState(); } protected override void OnTapped(TappedRoutedEventArgs e) { this.Focus(FocusState.Programmatic); RaiseSelectedEvent(); } protected override void OnRightTapped(RightTappedRoutedEventArgs e) { var requestedElement = e.OriginalSource; if (requestedElement.Equals(m_textBlock)) { m_textBlock.Focus(FocusState.Programmatic); } else { this.Focus(FocusState.Programmatic); } } protected override AutomationPeer OnCreateAutomationPeer() { return new CalculationResultAutomationPeer(this); } private void OnIsActivePropertyChanged(bool oldValue, bool newValue) { UpdateVisualState(); } private void OnDisplayValuePropertyChanged(string oldValue, string newValue) { UpdateTextState(); } private void OnIsInErrorPropertyChanged(bool oldValue, bool newValue) { // We need to have a good template for this to work if (m_textBlock == null) { return; } if (newValue) { // If there's an error message we need to override the normal display font // with the font appropriate for this language. This is because the error // message is localized and therefore can contain characters that are not // available in the normal font. // We use UIText as the font type because this is the most common font type to use m_textBlock.FontFamily = LocalizationService.GetInstance().GetLanguageFontFamilyForType(LanguageFontType.UIText); } else { // The error result is no longer an error so we will restore the // value to FontFamily property to the value provided in the style // for the TextBlock in the template. m_textBlock.ClearValue(TextBlock.FontFamilyProperty); } } private void OnMinFontSizePropertyChanged(double oldValue, double newValue) { UpdateTextState(); } private void OnMaxFontSizePropertyChanged(double oldValue, double newValue) { UpdateTextState(); } private void OnTextContainerSizeChanged(object sender, SizeChangedEventArgs e) { UpdateTextState(); } private void OnTextBlockSizeChanged(object sender, SizeChangedEventArgs e) { UpdateScrollButtons(); } private void OnTextContainerLayoutUpdated(object sender, object e) { if (m_isScalingText) { UpdateTextState(); } } private void OnTextContainerOnViewChanged(object sender, ScrollViewerViewChangedEventArgs e) { UpdateScrollButtons(); } private void UpdateVisualState() { VisualStateManager.GoToState(this, IsActive ? "Active" : "Normal", true); } private void OnScrollLeftClick(object sender, RoutedEventArgs e) { ScrollLeft(); } private void OnScrollRightClick(object sender, RoutedEventArgs e) { ScrollRight(); } private void ModifyFontAndMargin(TextBlock textBox, double fontChange) { double cur = textBox.FontSize; double scaleFactor = SCALEFACTOR; if (m_textContainer.ActualHeight <= HEIGHTCUTOFF) { scaleFactor = SMALLHEIGHTSCALEFACTOR; } double newFontSize = Math.Min(Math.Max(cur + fontChange, MinFontSize), MaxFontSize); m_textContainer.Padding = new Thickness(0, 0, 0, scaleFactor * Math.Abs(cur - newFontSize)); textBox.FontSize = newFontSize; } private void UpdateScrollButtons() { if (m_textContainer == null) { return; } bool shouldTryFocusScrollRight = false; if (m_scrollLeft != null) { var scrollLeftVisibility = m_textContainer.HorizontalOffset > SCROLL_BUTTONS_APPROXIMATION_RANGE ? Visibility.Visible : Visibility.Collapsed; if (scrollLeftVisibility == Visibility.Collapsed) { shouldTryFocusScrollRight = m_scrollLeft.Equals(FocusManager.GetFocusedElement()); } m_scrollLeft.Visibility = scrollLeftVisibility; } if (m_scrollRight != null) { var scrollRightVisibility = m_textContainer.HorizontalOffset + m_textContainer.ViewportWidth + SCROLL_BUTTONS_APPROXIMATION_RANGE < m_textContainer.ExtentWidth ? Visibility.Visible : Visibility.Collapsed; if (scrollRightVisibility == Visibility.Collapsed && m_scrollLeft != null && m_scrollLeft.Visibility == Visibility.Visible && m_scrollRight.Equals(FocusManager.GetFocusedElement())) { // ScrollRight had the focus and will be collapsed, ScrollLeft should get the focus m_scrollLeft.Focus(FocusState.Programmatic); } m_scrollRight.Visibility = scrollRightVisibility; if (shouldTryFocusScrollRight && scrollRightVisibility == Visibility.Visible) { m_scrollRight.Focus(FocusState.Programmatic); } } } private void ScrollLeft() { if (m_textContainer == null) { return; } if (m_textContainer.HorizontalOffset > 0) { double offset = m_textContainer.HorizontalOffset - (SCROLL_RATIO * m_textContainer.ViewportWidth); m_textContainer.ChangeView(offset, null, null); } } private void ScrollRight() { if (m_textContainer == null) { return; } if (m_textContainer.HorizontalOffset < m_textContainer.ExtentWidth - m_textContainer.ViewportWidth) { double offset = m_textContainer.HorizontalOffset + (SCROLL_RATIO * m_textContainer.ViewportWidth); m_textContainer.ChangeView(offset, null, null); } } private void RaiseSelectedEvent() { Selected?.Invoke(this); } private const double SCALEFACTOR = 0.357143; private const double SMALLHEIGHTSCALEFACTOR = 0; private const double HEIGHTCUTOFF = 100; private const double INCREMENTOFFSET = 1; private const double MAXFONTINCREMENT = 5; private const double WIDTHTOFONTSCALAR = 0.0556513; private const double WIDTHTOFONTOFFSET = 3; private const double WIDTHCUTOFF = 50; private const double FONTTOLERANCE = 0.001; private const double SCROLL_RATIO = 0.7; // We need a safety margin to guarantee we correctly always show/hide ScrollLeft and ScrollRight buttons when necessary. // In rare cases, ScrollViewer::HorizontalOffset is a little low by a few (sub)pixels when users scroll to one of the extremity // and no events are launched when they scroll again in the same direction private const double SCROLL_BUTTONS_APPROXIMATION_RANGE = 4; private Windows.UI.Xaml.Controls.ScrollViewer m_textContainer; private Windows.UI.Xaml.Controls.TextBlock m_textBlock; private Windows.UI.Xaml.Controls.HyperlinkButton m_scrollLeft; private Windows.UI.Xaml.Controls.HyperlinkButton m_scrollRight; private bool m_isScalingText; private bool m_haveCalculatedMax; } } } ================================================ FILE: src/Calculator/Controls/CalculationResultAutomationPeer.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using Windows.UI.Xaml; using Windows.UI.Xaml.Automation.Peers; namespace CalculatorApp { namespace Controls { public sealed class CalculationResultAutomationPeer : Windows.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer, Windows.UI.Xaml.Automation.Provider.IInvokeProvider { public CalculationResultAutomationPeer(FrameworkElement owner) : base(owner) { } protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } protected override object GetPatternCore(PatternInterface pattern) { return pattern == PatternInterface.Invoke ? this : base.GetPatternCore(pattern); } public void Invoke() { var owner = (CalculationResult)this.Owner; owner.ProgrammaticSelect(); } } } } ================================================ FILE: src/Calculator/Controls/CalculatorButton.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using Windows.System; using Windows.UI.Xaml; using Windows.UI.Xaml.Data; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public sealed class CalculatorButton : Windows.UI.Xaml.Controls.Button { public CalculatorButton() { // Set the default bindings for this button, these can be overwritten by Xaml if needed // These are a replacement for binding in styles Binding commandBinding = new Binding { Path = new PropertyPath("ButtonPressed") }; this.SetBinding(CommandProperty, commandBinding); } public NumbersAndOperatorsEnum ButtonId { get => (NumbersAndOperatorsEnum)GetValue(ButtonIdProperty); set => SetValue(ButtonIdProperty, value); } // Using a DependencyProperty as the backing store for ButtonId. This enables animation, styling, binding, etc... public static readonly DependencyProperty ButtonIdProperty = DependencyProperty.Register(nameof(ButtonId), typeof(NumbersAndOperatorsEnum), typeof(CalculatorButton), new PropertyMetadata(default(NumbersAndOperatorsEnum), (sender, args) => { var self = (CalculatorButton)sender; self.OnButtonIdPropertyChanged((NumbersAndOperatorsEnum)args.OldValue, (NumbersAndOperatorsEnum)args.NewValue); })); public string AuditoryFeedback { get => (string)GetValue(AuditoryFeedbackProperty); set => SetValue(AuditoryFeedbackProperty, value); } // Using a DependencyProperty as the backing store for AuditoryFeedback. This enables animation, styling, binding, etc... public static readonly DependencyProperty AuditoryFeedbackProperty = DependencyProperty.Register(nameof(AuditoryFeedback), typeof(string), typeof(CalculatorButton), new PropertyMetadata(string.Empty, (sender, args) => { var self = (CalculatorButton)sender; self.OnAuditoryFeedbackPropertyChanged((string)args.OldValue, (string)args.NewValue); })); public Windows.UI.Xaml.Media.Brush HoverBackground { get => (Windows.UI.Xaml.Media.Brush)GetValue(HoverBackgroundProperty); set => SetValue(HoverBackgroundProperty, value); } // Using a DependencyProperty as the backing store for HoverBackground. This enables animation, styling, binding, etc... public static readonly DependencyProperty HoverBackgroundProperty = DependencyProperty.Register(nameof(HoverBackground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush HoverForeground { get => (Windows.UI.Xaml.Media.Brush)GetValue(HoverForegroundProperty); set => SetValue(HoverForegroundProperty, value); } // Using a DependencyProperty as the backing store for HoverForeground. This enables animation, styling, binding, etc... public static readonly DependencyProperty HoverForegroundProperty = DependencyProperty.Register(nameof(HoverForeground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush PressBackground { get => (Windows.UI.Xaml.Media.Brush)GetValue(PressBackgroundProperty); set => SetValue(PressBackgroundProperty, value); } // Using a DependencyProperty as the backing store for PressBackground. This enables animation, styling, binding, etc... public static readonly DependencyProperty PressBackgroundProperty = DependencyProperty.Register(nameof(PressBackground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush PressForeground { get => (Windows.UI.Xaml.Media.Brush)GetValue(PressForegroundProperty); set => SetValue(PressForegroundProperty, value); } // Using a DependencyProperty as the backing store for PressForeground. This enables animation, styling, binding, etc... public static readonly DependencyProperty PressForegroundProperty = DependencyProperty.Register(nameof(PressForeground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush DisabledBackground { get => (Windows.UI.Xaml.Media.Brush)GetValue(DisabledBackgroundProperty); set => SetValue(DisabledBackgroundProperty, value); } // Using a DependencyProperty as the backing store for DisabledBackground. This enables animation, styling, binding, etc... public static readonly DependencyProperty DisabledBackgroundProperty = DependencyProperty.Register(nameof(DisabledBackground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush DisabledForeground { get => (Windows.UI.Xaml.Media.Brush)GetValue(DisabledForegroundProperty); set => SetValue(DisabledForegroundProperty, value); } // Using a DependencyProperty as the backing store for DisabledForeground. This enables animation, styling, binding, etc... public static readonly DependencyProperty DisabledForegroundProperty = DependencyProperty.Register(nameof(DisabledForeground), typeof(Windows.UI.Xaml.Media.Brush), typeof(CalculatorButton), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); protected override void OnKeyDown(KeyRoutedEventArgs e) { // Ignore the Enter key if (e.Key == VirtualKey.Enter) { return; } base.OnKeyDown(e); } protected override void OnKeyUp(KeyRoutedEventArgs e) { // Ignore the Enter key if (e.Key == VirtualKey.Enter) { return; } base.OnKeyUp(e); } private void OnButtonIdPropertyChanged(NumbersAndOperatorsEnum oldValue, NumbersAndOperatorsEnum newValue) { this.CommandParameter = new CalculatorButtonPressedEventArgs(AuditoryFeedback, newValue); } private void OnAuditoryFeedbackPropertyChanged(string oldValue, string newValue) { this.CommandParameter = new CalculatorButtonPressedEventArgs(newValue, ButtonId); } } } } ================================================ FILE: src/Calculator/Controls/EquationTextBox.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using Windows.UI.Text; using Windows.UI.Xaml; using Windows.UI.Xaml.Automation; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public sealed class EquationTextBox : Windows.UI.Xaml.Controls.Control { public EquationTextBox() { } public Windows.UI.Xaml.Media.SolidColorBrush EquationColor { get => (Windows.UI.Xaml.Media.SolidColorBrush)GetValue(EquationColorProperty); set => SetValue(EquationColorProperty, value); } // Using a DependencyProperty as the backing store for EquationColor. This enables animation, styling, binding, etc... public static readonly DependencyProperty EquationColorProperty = DependencyProperty.Register(nameof(EquationColor), typeof(Windows.UI.Xaml.Media.SolidColorBrush), typeof(EquationTextBox), new PropertyMetadata(default(Windows.UI.Xaml.Media.SolidColorBrush))); public Windows.UI.Xaml.Media.SolidColorBrush EquationButtonForegroundColor { get => (Windows.UI.Xaml.Media.SolidColorBrush)GetValue(EquationButtonForegroundColorProperty); set => SetValue(EquationButtonForegroundColorProperty, value); } // Using a DependencyProperty as the backing store for EquationButtonForegroundColor. This enables animation, styling, binding, etc... public static readonly DependencyProperty EquationButtonForegroundColorProperty = DependencyProperty.Register(nameof(EquationButtonForegroundColor), typeof(Windows.UI.Xaml.Media.SolidColorBrush), typeof(EquationTextBox), new PropertyMetadata(default(Windows.UI.Xaml.Media.SolidColorBrush))); public Windows.UI.Xaml.Controls.Flyout ColorChooserFlyout { get => (Windows.UI.Xaml.Controls.Flyout)GetValue(ColorChooserFlyoutProperty); set => SetValue(ColorChooserFlyoutProperty, value); } // Using a DependencyProperty as the backing store for ColorChooserFlyout. This enables animation, styling, binding, etc... public static readonly DependencyProperty ColorChooserFlyoutProperty = DependencyProperty.Register(nameof(ColorChooserFlyout), typeof(Windows.UI.Xaml.Controls.Flyout), typeof(EquationTextBox), new PropertyMetadata(default(Windows.UI.Xaml.Controls.Flyout))); public string EquationButtonContentIndex { get => (string)GetValue(EquationButtonContentIndexProperty); set => SetValue(EquationButtonContentIndexProperty, value); } // Using a DependencyProperty as the backing store for EquationButtonContentIndex. This enables animation, styling, binding, etc... public static readonly DependencyProperty EquationButtonContentIndexProperty = DependencyProperty.Register(nameof(EquationButtonContentIndex), typeof(string), typeof(EquationTextBox), new PropertyMetadata(string.Empty, (sender, args) => { var self = (EquationTextBox)sender; self.OnEquationButtonContentIndexPropertyChanged((string)args.OldValue, (string)args.NewValue); })); public string MathEquation { get => (string)GetValue(MathEquationProperty); set => SetValue(MathEquationProperty, value); } // Using a DependencyProperty as the backing store for MathEquation. This enables animation, styling, binding, etc... public static readonly DependencyProperty MathEquationProperty = DependencyProperty.Register(nameof(MathEquation), typeof(string), typeof(EquationTextBox), new PropertyMetadata(string.Empty)); public bool HasError { get => (bool)GetValue(HasErrorProperty); set => SetValue(HasErrorProperty, value); } // Using a DependencyProperty as the backing store for HasError. This enables animation, styling, binding, etc... public static readonly DependencyProperty HasErrorProperty = DependencyProperty.Register(nameof(HasError), typeof(bool), typeof(EquationTextBox), new PropertyMetadata(default(bool), (sender, args) => { var self = (EquationTextBox)sender; self.OnHasErrorPropertyChanged((bool)args.OldValue, (bool)args.NewValue); })); public bool IsAddEquationMode { get => (bool)GetValue(IsAddEquationModeProperty); set => SetValue(IsAddEquationModeProperty, value); } // Using a DependencyProperty as the backing store for IsAddEquationMode. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsAddEquationModeProperty = DependencyProperty.Register(nameof(IsAddEquationMode), typeof(bool), typeof(EquationTextBox), new PropertyMetadata(default(bool), (sender, args) => { var self = (EquationTextBox)sender; self.OnIsAddEquationModePropertyChanged((bool)args.OldValue, (bool)args.NewValue); })); public string ErrorText { get => (string)GetValue(ErrorTextProperty); set => SetValue(ErrorTextProperty, value); } // Using a DependencyProperty as the backing store for ErrorText. This enables animation, styling, binding, etc... public static readonly DependencyProperty ErrorTextProperty = DependencyProperty.Register(nameof(ErrorText), typeof(string), typeof(EquationTextBox), new PropertyMetadata(string.Empty)); public bool IsEquationLineDisabled { get => (bool)GetValue(IsEquationLineDisabledProperty); set => SetValue(IsEquationLineDisabledProperty, value); } // Using a DependencyProperty as the backing store for IsEquationLineDisabled. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsEquationLineDisabledProperty = DependencyProperty.Register(nameof(IsEquationLineDisabled), typeof(bool), typeof(EquationTextBox), new PropertyMetadata(default(bool))); private bool HasFocus { get; set; } public event Windows.UI.Xaml.RoutedEventHandler RemoveButtonClicked; public event Windows.UI.Xaml.RoutedEventHandler KeyGraphFeaturesButtonClicked; public event System.EventHandler EquationSubmitted; public event System.EventHandler EquationFormatRequested; public event Windows.UI.Xaml.RoutedEventHandler EquationButtonClicked; public void SetEquationText(string equationText) { if (m_richEditBox != null) { m_richEditBox.MathText = equationText; } } public void FocusTextBox() { if (m_richEditBox != null) { _ = FocusManager.TryFocusAsync(m_richEditBox, FocusState.Programmatic); } } protected override void OnApplyTemplate() { m_equationButton = GetTemplateChild("EquationButton") as ToggleButton; m_richEditBox = GetTemplateChild("MathRichEditBox") as MathRichEditBox; m_deleteButton = GetTemplateChild("DeleteButton") as Button; m_removeButton = GetTemplateChild("RemoveButton") as Button; m_functionButton = GetTemplateChild("FunctionButton") as Button; m_colorChooserButton = GetTemplateChild("ColorChooserButton") as ToggleButton; m_richEditContextMenu = GetTemplateChild("MathRichEditContextMenu") as MenuFlyout; m_kgfEquationMenuItem = GetTemplateChild("FunctionAnalysisMenuItem") as MenuFlyoutItem; m_removeMenuItem = GetTemplateChild("RemoveFunctionMenuItem") as MenuFlyoutItem; m_colorChooserMenuItem = GetTemplateChild("ChangeFunctionStyleMenuItem") as MenuFlyoutItem; m_cutMenuItem = GetTemplateChild("CutMenuItem") as MenuFlyoutItem; m_copyMenuItem = GetTemplateChild("CopyMenuItem") as MenuFlyoutItem; m_pasteMenuItem = GetTemplateChild("PasteMenuItem") as MenuFlyoutItem; m_undoMenuItem = GetTemplateChild("UndoMenuItem") as MenuFlyoutItem; m_selectAllMenuItem = GetTemplateChild("SelectAllMenuItem") as MenuFlyoutItem; var resProvider = AppResourceProvider.GetInstance(); if (m_richEditBox != null) { m_richEditBox.GotFocus += OnRichEditBoxGotFocus; m_richEditBox.LostFocus += OnRichEditBoxLostFocus; m_richEditBox.TextChanged += OnRichEditTextChanged; m_richEditBox.SelectionFlyout = null; m_richEditBox.EquationSubmitted += OnEquationSubmitted; m_richEditBox.FormatRequest += OnEquationFormatRequested; } if (m_equationButton != null) { m_equationButton.Click += OnEquationButtonClicked; } if (m_richEditContextMenu != null) { m_richEditContextMenu.Opened += OnRichEditMenuOpened; } if (m_deleteButton != null) { m_deleteButton.Click += OnDeleteButtonClicked; } if (m_removeButton != null) { m_removeButton.Click += OnRemoveButtonClicked; } if (m_removeMenuItem != null) { m_removeMenuItem.Text = resProvider.GetResourceString("removeMenuItem"); m_removeMenuItem.Click += OnRemoveButtonClicked; } if (m_colorChooserButton != null) { m_colorChooserButton.Click += OnColorChooserButtonClicked; } if (m_colorChooserMenuItem != null) { m_colorChooserMenuItem.Text = resProvider.GetResourceString("colorChooserMenuItem"); m_colorChooserMenuItem.Click += OnColorChooserButtonClicked; } if (m_functionButton != null) { m_functionButton.Click += OnFunctionButtonClicked; m_functionButton.IsEnabled = false; } if (m_kgfEquationMenuItem != null) { m_kgfEquationMenuItem.Text = resProvider.GetResourceString("functionAnalysisMenuItem"); m_kgfEquationMenuItem.Click += OnFunctionMenuButtonClicked; } if (ColorChooserFlyout != null) { ColorChooserFlyout.Opened += OnColorFlyoutOpened; ColorChooserFlyout.Closed += OnColorFlyoutClosed; } if (m_cutMenuItem != null) { m_cutMenuItem.Click += OnCutClicked; } if (m_copyMenuItem != null) { m_copyMenuItem.Click += OnCopyClicked; } if (m_pasteMenuItem != null) { m_pasteMenuItem.Click += OnPasteClicked; } if (m_undoMenuItem != null) { m_undoMenuItem.Click += OnUndoClicked; } if (m_selectAllMenuItem != null) { m_selectAllMenuItem.Click += OnSelectAllClicked; } UpdateCommonVisualState(); UpdateButtonsVisualState(); } protected override void OnPointerEntered(PointerRoutedEventArgs e) { m_isPointerOver = true; UpdateCommonVisualState(); } protected override void OnPointerExited(PointerRoutedEventArgs e) { m_isPointerOver = false; UpdateCommonVisualState(); } protected override void OnPointerCanceled(PointerRoutedEventArgs e) { m_isPointerOver = false; UpdateCommonVisualState(); } protected override void OnPointerCaptureLost(PointerRoutedEventArgs e) { m_isPointerOver = false; UpdateCommonVisualState(); } private void OnIsAddEquationModePropertyChanged(bool oldValue, bool newValue) { UpdateCommonVisualState(); UpdateButtonsVisualState(); } private void UpdateCommonVisualState() { string state; bool richEditHasContent = RichEditHasContent(); if (HasFocus && HasError) { state = "FocusedError"; } else if (IsAddEquationMode && HasFocus && !richEditHasContent) { state = "AddEquationFocused"; } else if (HasFocus) { state = "Focused"; } else if (IsAddEquationMode && m_isPointerOver && !richEditHasContent) { state = "AddEquation"; } else if (HasError && (m_isPointerOver || m_isColorChooserFlyoutOpen)) { state = "PointerOverError"; } else if (m_isPointerOver || m_isColorChooserFlyoutOpen) { state = "PointerOver"; } else if (HasError) { state = "Error"; } else if (IsAddEquationMode) { state = "AddEquation"; } else { state = "Normal"; } VisualStateManager.GoToState(this, state, false); } private void UpdateButtonsVisualState() { string state; if (HasFocus && RichEditHasContent()) { state = "ButtonVisible"; } else if (IsAddEquationMode) { state = "ButtonHideRemove"; } else { state = "ButtonCollapsed"; } VisualStateManager.GoToState(this, state, true); } private bool RichEditHasContent() { string text = null; m_richEditBox?.TextDocument.GetText(Windows.UI.Text.TextGetOptions.NoHidden, out text); return !string.IsNullOrEmpty(text); } private void OnRichEditBoxGotFocus(object sender, RoutedEventArgs e) { HasFocus = true; UpdateCommonVisualState(); UpdateButtonsVisualState(); } private void OnRichEditBoxLostFocus(object sender, RoutedEventArgs e) { if (!m_richEditBox.ContextFlyout.IsOpen) { HasFocus = false; } UpdateCommonVisualState(); UpdateButtonsVisualState(); } private void OnRichEditTextChanged(object sender, RoutedEventArgs e) { UpdateCommonVisualState(); UpdateButtonsVisualState(); } private void OnDeleteButtonClicked(object sender, RoutedEventArgs e) { if (m_richEditBox != null) { m_richEditBox.TextDocument.SetText(TextSetOptions.None, ""); if (m_functionButton != null) { m_functionButton.IsEnabled = false; } } } private void OnEquationButtonClicked(object sender, RoutedEventArgs e) { EquationButtonClicked?.Invoke(this, new RoutedEventArgs()); SetEquationButtonTooltipAndAutomationName(); } private void OnRemoveButtonClicked(object sender, RoutedEventArgs e) { if (IsAddEquationMode) { // Don't remove the last equation return; } if (m_richEditBox != null) { m_richEditBox.MathText = ""; } RemoveButtonClicked?.Invoke(this, new RoutedEventArgs()); if (m_functionButton != null) { m_functionButton.IsEnabled = false; } if (m_equationButton != null) { IsEquationLineDisabled = false; } TraceLogger.GetInstance().LogGraphButtonClicked(GraphButton.RemoveFunction, GraphButtonValue.None); VisualStateManager.GoToState(this, "Normal", true); } private void OnColorChooserButtonClicked(object sender, RoutedEventArgs e) { if (ColorChooserFlyout != null && m_richEditBox != null) { ColorChooserFlyout.ShowAt(m_richEditBox); TraceLogger.GetInstance().LogGraphButtonClicked(GraphButton.StylePicker, GraphButtonValue.None); } } private void OnFunctionButtonClicked(object sender, RoutedEventArgs e) { KeyGraphFeaturesButtonClicked?.Invoke(this, new RoutedEventArgs()); } private void OnFunctionMenuButtonClicked(object sender, RoutedEventArgs e) { // Submit the equation before trying to analyze it if invoked from context menu m_richEditBox?.SubmitEquation(EquationSubmissionSource.FOCUS_LOST); KeyGraphFeaturesButtonClicked?.Invoke(this, new RoutedEventArgs()); } private void OnRichEditMenuOpened(object sender, object args) { if (m_removeMenuItem != null) { m_removeMenuItem.IsEnabled = !IsAddEquationMode; } if (m_kgfEquationMenuItem != null) { m_kgfEquationMenuItem.IsEnabled = HasFocus && !HasError && RichEditHasContent(); } if (m_colorChooserMenuItem != null) { m_colorChooserMenuItem.IsEnabled = !HasError && !IsAddEquationMode; } if (m_richEditBox != null && m_cutMenuItem != null) { m_cutMenuItem.IsEnabled = m_richEditBox.TextDocument.CanCopy(); } if (m_richEditBox != null && m_copyMenuItem != null) { m_copyMenuItem.IsEnabled = m_richEditBox.TextDocument.CanCopy(); } if (m_richEditBox != null && m_pasteMenuItem != null) { m_pasteMenuItem.IsEnabled = m_richEditBox.TextDocument.CanPaste(); } if (m_richEditBox != null && m_undoMenuItem != null) { m_undoMenuItem.IsEnabled = m_richEditBox.TextDocument.CanUndo(); } } private void OnCutClicked(object sender, RoutedEventArgs e) { m_richEditBox?.TextDocument.Selection.Cut(); } private void OnCopyClicked(object sender, RoutedEventArgs e) { m_richEditBox?.TextDocument.Selection.Copy(); } private void OnPasteClicked(object sender, RoutedEventArgs e) { m_richEditBox?.TextDocument.Selection.Paste(0); } private void OnUndoClicked(object sender, RoutedEventArgs e) { m_richEditBox?.TextDocument.Undo(); } private void OnSelectAllClicked(object sender, RoutedEventArgs e) { m_richEditBox?.TextDocument.Selection.SetRange(0, m_richEditBox.TextDocument.Selection.EndPosition); } private void OnColorFlyoutOpened(object sender, object e) { m_isColorChooserFlyoutOpen = true; UpdateCommonVisualState(); } private void OnColorFlyoutClosed(object sender, object e) { m_colorChooserButton.IsChecked = false; m_isColorChooserFlyoutOpen = false; UpdateCommonVisualState(); } private void OnHasErrorPropertyChanged(bool oldValue, bool newValue) { UpdateCommonVisualState(); } private void OnEquationButtonContentIndexPropertyChanged(string oldValue, string newValue) { SetEquationButtonTooltipAndAutomationName(); } private void SetEquationButtonTooltipAndAutomationName() { var toolTip = new ToolTip(); var resProvider = AppResourceProvider.GetInstance(); var equationButtonMessage = LocalizationStringUtil.GetLocalizedString( IsEquationLineDisabled ? resProvider.GetResourceString("showEquationButtonAutomationName") : resProvider.GetResourceString("hideEquationButtonAutomationName"), EquationButtonContentIndex); var equationButtonTooltip = LocalizationStringUtil.GetLocalizedString( IsEquationLineDisabled ? resProvider.GetResourceString("showEquationButtonToolTip") : resProvider.GetResourceString("hideEquationButtonToolTip")); toolTip.Content = equationButtonTooltip; ToolTipService.SetToolTip(m_equationButton, toolTip); AutomationProperties.SetName(m_equationButton, equationButtonMessage); } private CalculatorApp.Controls.MathRichEditBox m_richEditBox; private Windows.UI.Xaml.Controls.Primitives.ToggleButton m_equationButton; private Windows.UI.Xaml.Controls.Button m_deleteButton; private Windows.UI.Xaml.Controls.Button m_removeButton; private Windows.UI.Xaml.Controls.Button m_functionButton; private Windows.UI.Xaml.Controls.Primitives.ToggleButton m_colorChooserButton; private Windows.UI.Xaml.Controls.MenuFlyout m_richEditContextMenu; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_cutMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_copyMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_pasteMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_undoMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_selectAllMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_kgfEquationMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_removeMenuItem; private Windows.UI.Xaml.Controls.MenuFlyoutItem m_colorChooserMenuItem; private bool m_isPointerOver; private bool m_isColorChooserFlyoutOpen; private void OnEquationSubmitted(object sender, MathRichEditBoxSubmission args) { if (args.HasTextChanged) { if (m_functionButton != null && m_richEditBox.MathText != "") { m_functionButton.IsEnabled = true; } } EquationSubmitted?.Invoke(this, args); } private void OnEquationFormatRequested(object sender, MathRichEditBoxFormatRequest args) { EquationFormatRequested?.Invoke(this, args); } } } } ================================================ FILE: src/Calculator/Controls/FlipButtons.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using Windows.System; using Windows.UI.Xaml; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public sealed class FlipButtons : Windows.UI.Xaml.Controls.Primitives.ToggleButton { public NumbersAndOperatorsEnum ButtonId { get => (NumbersAndOperatorsEnum)GetValue(ButtonIdProperty); set => SetValue(ButtonIdProperty, value); } // Using a DependencyProperty as the backing store for ButtonId. This enables animation, styling, binding, etc... public static readonly DependencyProperty ButtonIdProperty = DependencyProperty.Register(nameof(ButtonId), typeof(NumbersAndOperatorsEnum), typeof(FlipButtons), new PropertyMetadata(default(NumbersAndOperatorsEnum))); public Windows.UI.Xaml.Media.Brush HoverBackground { get => (Windows.UI.Xaml.Media.Brush)GetValue(HoverBackgroundProperty); set => SetValue(HoverBackgroundProperty, value); } // Using a DependencyProperty as the backing store for HoverBackground. This enables animation, styling, binding, etc... public static readonly DependencyProperty HoverBackgroundProperty = DependencyProperty.Register(nameof(HoverBackground), typeof(Windows.UI.Xaml.Media.Brush), typeof(FlipButtons), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush HoverForeground { get => (Windows.UI.Xaml.Media.Brush)GetValue(HoverForegroundProperty); set => SetValue(HoverForegroundProperty, value); } // Using a DependencyProperty as the backing store for HoverForeground. This enables animation, styling, binding, etc... public static readonly DependencyProperty HoverForegroundProperty = DependencyProperty.Register(nameof(HoverForeground), typeof(Windows.UI.Xaml.Media.Brush), typeof(FlipButtons), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush PressBackground { get => (Windows.UI.Xaml.Media.Brush)GetValue(PressBackgroundProperty); set => SetValue(PressBackgroundProperty, value); } // Using a DependencyProperty as the backing store for PressBackground. This enables animation, styling, binding, etc... public static readonly DependencyProperty PressBackgroundProperty = DependencyProperty.Register(nameof(PressBackground), typeof(Windows.UI.Xaml.Media.Brush), typeof(FlipButtons), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); public Windows.UI.Xaml.Media.Brush PressForeground { get => (Windows.UI.Xaml.Media.Brush)GetValue(PressForegroundProperty); set => SetValue(PressForegroundProperty, value); } // Using a DependencyProperty as the backing store for PressForeground. This enables animation, styling, binding, etc... public static readonly DependencyProperty PressForegroundProperty = DependencyProperty.Register(nameof(PressForeground), typeof(Windows.UI.Xaml.Media.Brush), typeof(FlipButtons), new PropertyMetadata(default(Windows.UI.Xaml.Media.Brush))); protected override void OnKeyDown(KeyRoutedEventArgs e) { // Ignore the Enter key if (e.Key == VirtualKey.Enter) { return; } base.OnKeyDown(e); } protected override void OnKeyUp(KeyRoutedEventArgs e) { // Ignore the Enter key if (e.Key == VirtualKey.Enter) { return; } base.OnKeyUp(e); } private void OnButtonIdPropertyChanged(NumbersAndOperatorsEnum oldValue, NumbersAndOperatorsEnum newValue) { CommandParameter = newValue; } } } } ================================================ FILE: src/Calculator/Controls/HorizontalNoOverflowStackPanel.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // // HorizontalNoOverflowStackPanel.h // Declaration of the HorizontalNoOverflowStackPanel class // using System; using Windows.Foundation; using Windows.UI.Xaml.Automation; using Windows.UI.Xaml.Automation.Peers; namespace CalculatorApp { namespace Controls { public class HorizontalNoOverflowStackPanel : Windows.UI.Xaml.Controls.Panel { // Prioritize the last item over all other items (except the first one) internal HorizontalNoOverflowStackPanel() { } protected override Size MeasureOverride(Size availableSize) { float maxHeight = 0; float width = 0; foreach (var child in Children) { child.Measure(new Size(float.PositiveInfinity, float.PositiveInfinity)); maxHeight = (float)Math.Max(maxHeight, child.DesiredSize.Height); width += (float)child.DesiredSize.Width; } return new Size(Math.Min(width, availableSize.Width), Math.Min(availableSize.Height, maxHeight)); } protected override Size ArrangeOverride(Size finalSize) { if (Children.Count == 0) { return finalSize; } float posX = 0; var lastChild = Children[Children.Count - 1]; float lastChildWidth = 0; if (Children.Count > 2 && ShouldPrioritizeLastItem()) { lastChildWidth = (float)lastChild.DesiredSize.Width; } foreach (var item in Children) { var widthAvailable = finalSize.Width - posX; if (item != lastChild) { widthAvailable -= lastChildWidth; } float itemWidth = (float)item.DesiredSize.Width; if (widthAvailable > 0 && itemWidth <= widthAvailable) { // stack the items horizontally (left to right) item.Arrange(new Rect(posX, 0, itemWidth, finalSize.Height)); AutomationProperties.SetAccessibilityView(item, AccessibilityView.Content); posX += (float)item.RenderSize.Width; } else { // Not display the item item.Arrange(new Rect(0, 0, 0, 0)); AutomationProperties.SetAccessibilityView(item, AccessibilityView.Raw); } } return finalSize; } protected virtual bool ShouldPrioritizeLastItem() { return false; } } } } ================================================ FILE: src/Calculator/Controls/MathRichEditBox.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.Runtime.InteropServices; using Windows.ApplicationModel; using Windows.System; using Windows.UI.Core; using Windows.UI.Text; using Windows.UI.Xaml; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { namespace Windows_2004_Prerelease { public enum RichEditMathMode { NoMath, MathOnly } [Guid("619c20f2-cb3b-4521-981f-2865b1b93f04")] internal interface ITextDocument4 { int SetMath(string value); int GetMath(out string value); int SetMathMode(RichEditMathMode mathMode); } } public enum EquationSubmissionSource { FOCUS_LOST, ENTER_KEY, PROGRAMMATIC } public sealed class MathRichEditBoxSubmission { public bool HasTextChanged { get; } public EquationSubmissionSource Source { get; } public MathRichEditBoxSubmission(bool hasTextChanged, EquationSubmissionSource source) { HasTextChanged = hasTextChanged; Source = source; } } public sealed class MathRichEditBoxFormatRequest { public string OriginalText { get; } public string FormattedText { get; set; } public MathRichEditBoxFormatRequest(string originalText) { OriginalText = originalText; } } public sealed class MathRichEditBox : Windows.UI.Xaml.Controls.RichEditBox { public MathRichEditBox() { string packageName = Package.Current.Id.Name; if (packageName == "Microsoft.WindowsCalculator.Dev") { LimitedAccessFeatures.TryUnlockFeature( "com.microsoft.windows.richeditmath", "BeDD/jxKhz/yfVNA11t4uA==", // Microsoft.WindowsCalculator.Dev "8wekyb3d8bbwe has registered their use of com.microsoft.windows.richeditmath with Microsoft and agrees to the terms of use."); } else if (packageName == "Microsoft.WindowsCalculator") { LimitedAccessFeatures.TryUnlockFeature( "com.microsoft.windows.richeditmath", "pfanNuxnzo+mAkBQ3N/rGQ==", // Microsoft.WindowsCalculator "8wekyb3d8bbwe has registered their use of com.microsoft.windows.richeditmath with Microsoft and agrees to the terms of use."); } TextDocument.SetMathMode(RichEditMathMode.MathOnly); LosingFocus += OnLosingFocus; KeyUp += OnKeyUp; } public string MathText { get => (string)GetValue(MathTextProperty); set => SetValue(MathTextProperty, value); } // Using a DependencyProperty as the backing store for MathText. This enables animation, styling, binding, etc... public static readonly DependencyProperty MathTextProperty = DependencyProperty.Register(nameof(MathText), typeof(string), typeof(MathRichEditBox), new PropertyMetadata(string.Empty, (sender, args) => { var self = (MathRichEditBox)sender; self.OnMathTextPropertyChanged((string)args.OldValue, (string)args.NewValue); })); public event EventHandler FormatRequest; public event EventHandler EquationSubmitted; public void OnMathTextPropertyChanged(string oldValue, string newValue) { SetMathTextProperty(newValue); // Get the new math text directly from the TextBox since the textbox may have changed its formatting SetValue(MathTextProperty, GetMathTextProperty()); } public void InsertText(string text, int cursorOffSet, int selectionLength) { // If the rich edit is empty, the math zone may not exist, and so selection (and thus the resulting text) will not be in a math zone. // If the rich edit has content already, then the mathzone will already be created due to mathonly mode being set and the selection will exist inside the // math zone. To handle this, we will force a math zone to be created in teh case of the text being empty and then replacing the text inside of the math // zone with the newly inserted text. if (string.IsNullOrEmpty(GetMathTextProperty())) { SetMathTextProperty("x"); TextDocument.Selection.StartPosition = 0; TextDocument.Selection.EndPosition = 1; } // insert the text in place of selection TextDocument.Selection.SetText(Windows.UI.Text.TextSetOptions.FormatRtf, text); // Move the cursor to the next logical place for users to enter text. TextDocument.Selection.StartPosition += cursorOffSet; TextDocument.Selection.EndPosition = TextDocument.Selection.StartPosition + selectionLength; } public void SubmitEquation(EquationSubmissionSource source) { // Clear formatting since the graph control doesn't work with bold/underlines var range = TextDocument.GetRange(0, TextDocument.Selection.EndPosition); if (range != null) { range.CharacterFormat.Underline = UnderlineType.None; } var newVal = GetMathTextProperty(); if (MathText != newVal) { // Request the final formatting of the text var formatRequest = new MathRichEditBoxFormatRequest(newVal); FormatRequest?.Invoke(this, formatRequest); if (!string.IsNullOrEmpty(formatRequest.FormattedText)) { newVal = formatRequest.FormattedText; } SetValue(MathTextProperty, newVal); EquationSubmitted?.Invoke(this, new MathRichEditBoxSubmission(true, source)); } else { EquationSubmitted?.Invoke(this, new MathRichEditBoxSubmission(false, source)); } } public void BackSpace() { // if anything is selected, just delete the selection. Note: EndPosition can be before start position. if (TextDocument.Selection.StartPosition != TextDocument.Selection.EndPosition) { TextDocument.Selection.SetText(Windows.UI.Text.TextSetOptions.None, ""); return; } // if we are at the start of the string, do nothing if (TextDocument.Selection.StartPosition == 0) { return; } // Select the previous group. TextDocument.Selection.EndPosition = TextDocument.Selection.StartPosition; TextDocument.Selection.StartPosition -= 1; // If the group contains anything complex, we want to give the user a chance to preview the deletion. // If it's a single character, then just delete it. Otherwise do nothing until the user triggers backspace again. var text = TextDocument.Selection.Text; if (text.Length == 1) { TextDocument.Selection.SetText(Windows.UI.Text.TextSetOptions.None, ""); } } protected override void OnKeyDown(KeyRoutedEventArgs e) { // suppress control + B to prevent bold input from being entered if ((Window.Current.CoreWindow.GetKeyState(VirtualKey.Control) & CoreVirtualKeyStates.Down) != CoreVirtualKeyStates.Down || e.Key != VirtualKey.B) { base.OnKeyDown(e); } } private string GetMathTextProperty() { TextDocument.GetMath(out string math); return math; } private void SetMathTextProperty(string newValue) { bool readOnlyState = IsReadOnly; IsReadOnly = false; TextDocument.SetMath(newValue); IsReadOnly = readOnlyState; } private void OnLosingFocus(UIElement sender, LosingFocusEventArgs args) { if (IsReadOnly || ContextFlyout.IsOpen) { return; } SubmitEquation(EquationSubmissionSource.FOCUS_LOST); } private void OnKeyUp(object sender, KeyRoutedEventArgs e) { if (!IsReadOnly && e.Key == VirtualKey.Enter) { SubmitEquation(EquationSubmissionSource.ENTER_KEY); } } } } } ================================================ FILE: src/Calculator/Controls/OperatorPanelButton.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace CalculatorApp { namespace Controls { public sealed class OperatorPanelButton : Windows.UI.Xaml.Controls.Primitives.ToggleButton { public OperatorPanelButton() { } public string Text { get => (string)GetValue(TextProperty); set => SetValue(TextProperty, value); } // Using a DependencyProperty as the backing store for Text. This enables animation, styling, binding, etc... public static readonly DependencyProperty TextProperty = DependencyProperty.Register(nameof(Text), typeof(string), typeof(OperatorPanelButton), new PropertyMetadata(string.Empty)); public string Glyph { get => (string)GetValue(GlyphProperty); set => SetValue(GlyphProperty, value); } // Using a DependencyProperty as the backing store for Glyph. This enables animation, styling, binding, etc... public static readonly DependencyProperty GlyphProperty = DependencyProperty.Register(nameof(Glyph), typeof(string), typeof(OperatorPanelButton), new PropertyMetadata(string.Empty)); public double GlyphFontSize { get => (double)GetValue(GlyphFontSizeProperty); set => SetValue(GlyphFontSizeProperty, value); } // Using a DependencyProperty as the backing store for GlyphFontSize. This enables animation, styling, binding, etc... public static readonly DependencyProperty GlyphFontSizeProperty = DependencyProperty.Register(nameof(GlyphFontSize), typeof(double), typeof(OperatorPanelButton), new PropertyMetadata(default(double))); public double ChevronFontSize { get => (double)GetValue(ChevronFontSizeProperty); set => SetValue(ChevronFontSizeProperty, value); } // Using a DependencyProperty as the backing store for ChevronFontSize. This enables animation, styling, binding, etc... public static readonly DependencyProperty ChevronFontSizeProperty = DependencyProperty.Register(nameof(ChevronFontSize), typeof(double), typeof(OperatorPanelButton), new PropertyMetadata(default(double))); public Flyout FlyoutMenu { get => (Flyout)GetValue(FlyoutMenuProperty); set => SetValue(FlyoutMenuProperty, value); } // Using a DependencyProperty as the backing store for FlyoutMenu. This enables animation, styling, binding, etc... public static readonly DependencyProperty FlyoutMenuProperty = DependencyProperty.Register(nameof(FlyoutMenu), typeof(Flyout), typeof(OperatorPanelButton), new PropertyMetadata(default(Flyout))); protected override void OnApplyTemplate() { if (FlyoutMenu != null) { FlyoutMenu.Closed += FlyoutClosed; } } protected override void OnToggle() { base.OnToggle(); if (IsChecked == true) { FlyoutMenu.ShowAt(this); } } private void FlyoutClosed(object sender, object args) { IsChecked = false; } } } } ================================================ FILE: src/Calculator/Controls/OperatorPanelListView.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using Windows.Devices.Input; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public sealed class OperatorPanelListView : Windows.UI.Xaml.Controls.ListView { public OperatorPanelListView() { } protected override void OnApplyTemplate() { m_scrollViewer = GetTemplateChild("ScrollViewer") as ScrollViewer; m_scrollLeft = GetTemplateChild("ScrollLeft") as Button; m_scrollRight = GetTemplateChild("ScrollRight") as Button; m_content = GetTemplateChild("Content") as ItemsPresenter; if (m_scrollLeft != null) { m_scrollLeft.Click += OnScrollClick; m_scrollLeft.PointerExited += OnButtonPointerExited; } if (m_scrollRight != null) { m_scrollRight.Click += OnScrollClick; m_scrollRight.PointerExited += OnButtonPointerExited; } if (m_scrollViewer != null) { m_scrollViewer.ViewChanged += ScrollViewChanged; } this.PointerEntered += OnPointerEntered; this.PointerExited += OnPointerExited; base.OnApplyTemplate(); } private void OnScrollClick(object sender, RoutedEventArgs e) { var clicked = sender as Button; if (clicked == m_scrollLeft) { ScrollLeft(); } else { ScrollRight(); } } private void OnPointerEntered(object sender, PointerRoutedEventArgs e) { if (e.Pointer.PointerDeviceType == PointerDeviceType.Mouse) { UpdateScrollButtons(); m_isPointerEntered = true; } } private void OnPointerExited(object sender, PointerRoutedEventArgs e) { m_scrollLeft.Visibility = Visibility.Collapsed; m_scrollRight.Visibility = Visibility.Collapsed; m_isPointerEntered = false; } private void OnButtonPointerExited(object sender, PointerRoutedEventArgs e) { var button = sender as Button; // Do not bubble up the pointer exit event to the control if the button being exited was not visible if (button.Visibility == Visibility.Collapsed) { e.Handled = true; } } private void ScrollViewChanged(object sender, ScrollViewerViewChangedEventArgs e) { if (m_isPointerEntered && !e.IsIntermediate) { UpdateScrollButtons(); } } private void ShowHideScrollButtons(Visibility vLeft, Visibility vRight) { if (m_scrollLeft != null && m_scrollRight != null) { m_scrollLeft.Visibility = vLeft; m_scrollRight.Visibility = vRight; } } private void UpdateScrollButtons() { if (m_content == null || m_scrollViewer == null) { return; } // When the width is smaller than the container, don't show any if (m_content.ActualWidth <= m_scrollViewer.ActualWidth) { ShowHideScrollButtons(Visibility.Collapsed, Visibility.Collapsed); } // We have more number on both side. Show both arrows else if ((m_scrollViewer.HorizontalOffset > 0) && (m_scrollViewer.HorizontalOffset < (m_scrollViewer.ExtentWidth - m_scrollViewer.ViewportWidth))) { ShowHideScrollButtons(Visibility.Visible, Visibility.Visible); } // Width is larger than the container and left most part of the number is shown. Should be able to scroll left. else if (m_scrollViewer.HorizontalOffset == 0) { ShowHideScrollButtons(Visibility.Collapsed, Visibility.Visible); } else // Width is larger than the container and right most part of the number is shown. Should be able to scroll left. { ShowHideScrollButtons(Visibility.Visible, Visibility.Collapsed); } } private void ScrollLeft() { double offset = m_scrollViewer.HorizontalOffset - (scrollRatio * m_scrollViewer.ViewportWidth); m_scrollViewer.ChangeView(offset, null, null); } private void ScrollRight() { double offset = m_scrollViewer.HorizontalOffset + (scrollRatio * m_scrollViewer.ViewportWidth); m_scrollViewer.ChangeView(offset, null, null); } private readonly double scrollRatio = 0.7; private bool m_isPointerEntered; private Windows.UI.Xaml.Controls.ItemsPresenter m_content; private Windows.UI.Xaml.Controls.ScrollViewer m_scrollViewer; private Windows.UI.Xaml.Controls.Button m_scrollLeft; private Windows.UI.Xaml.Controls.Button m_scrollRight; } } } ================================================ FILE: src/Calculator/Controls/OverflowTextBlock.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using Windows.UI.Xaml; using Windows.UI.Xaml.Automation; using Windows.UI.Xaml.Automation.Peers; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Input; namespace CalculatorApp { namespace Controls { public enum OverflowButtonPlacement { InLine, Above }; public sealed class OverflowTextBlock : Windows.UI.Xaml.Controls.Control { public OverflowTextBlock() { m_isAccessibilityViewControl = false; m_expressionContent = null; m_itemsControl = null; m_expressionContainer = null; m_scrollLeft = null; m_scrollRight = null; } public bool TokensUpdated { get => (bool)GetValue(TokensUpdatedProperty); set => SetValue(TokensUpdatedProperty, value); } // Using a DependencyProperty as the backing store for TokensUpdated. This enables animation, styling, binding, etc... public static readonly DependencyProperty TokensUpdatedProperty = DependencyProperty.Register(nameof(TokensUpdated), typeof(bool), typeof(OverflowTextBlock), new PropertyMetadata(default(bool), (sender, args) => { var self = (OverflowTextBlock)sender; self.OnTokensUpdatedPropertyChanged((bool)args.OldValue, (bool)args.NewValue); })); public OverflowButtonPlacement ScrollButtonsPlacement { get => (OverflowButtonPlacement)GetValue(ScrollButtonsPlacementProperty); set => SetValue(ScrollButtonsPlacementProperty, value); } // Using a DependencyProperty as the backing store for ScrollButtonsPlacement. This enables animation, styling, binding, etc... public static readonly DependencyProperty ScrollButtonsPlacementProperty = DependencyProperty.Register(nameof(ScrollButtonsPlacement), typeof(OverflowButtonPlacement), typeof(OverflowTextBlock), new PropertyMetadata(default(OverflowButtonPlacement), (sender, args) => { var self = (OverflowTextBlock)sender; self.OnScrollButtonsPlacementPropertyChanged((OverflowButtonPlacement)args.OldValue, (OverflowButtonPlacement)args.NewValue); })); public bool IsActive { get => (bool)GetValue(IsActiveProperty); set => SetValue(IsActiveProperty, value); } // Using a DependencyProperty as the backing store for IsActive. This enables animation, styling, binding, etc... public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register(nameof(IsActive), typeof(bool), typeof(OverflowTextBlock), new PropertyMetadata(default(bool))); public Windows.UI.Xaml.Style TextStyle { get => (Style)GetValue(TextStyleProperty); set => SetValue(TextStyleProperty, value); } // Using a DependencyProperty as the backing store for TextStyle. This enables animation, styling, binding, etc... public static readonly DependencyProperty TextStyleProperty = DependencyProperty.Register(nameof(TextStyle), typeof(Style), typeof(OverflowTextBlock), new PropertyMetadata(default(Style))); public double ScrollButtonsWidth { get => (double)GetValue(ScrollButtonsWidthProperty); set => SetValue(ScrollButtonsWidthProperty, value); } // Using a DependencyProperty as the backing store for ScrollButtonsWidth. This enables animation, styling, binding, etc... public static readonly DependencyProperty ScrollButtonsWidthProperty = DependencyProperty.Register(nameof(ScrollButtonsWidth), typeof(double), typeof(OverflowTextBlock), new PropertyMetadata(default(double))); public double ScrollButtonsFontSize { get => (double)GetValue(ScrollButtonsFontSizeProperty); set => SetValue(ScrollButtonsFontSizeProperty, value); } // Using a DependencyProperty as the backing store for ScrollButtonsFontSize. This enables animation, styling, binding, etc... public static readonly DependencyProperty ScrollButtonsFontSizeProperty = DependencyProperty.Register(nameof(ScrollButtonsFontSize), typeof(double), typeof(OverflowTextBlock), new PropertyMetadata(default(double))); public void OnTokensUpdatedPropertyChanged(bool oldValue, bool newValue) { if (m_expressionContainer != null && newValue) { m_expressionContainer.UpdateLayout(); m_expressionContainer.ChangeView(m_expressionContainer.ScrollableWidth, null, null, true); } var newIsAccessibilityViewControl = m_itemsControl != null && m_itemsControl.Items.Count > 0; if (m_isAccessibilityViewControl != newIsAccessibilityViewControl) { m_isAccessibilityViewControl = newIsAccessibilityViewControl; AutomationProperties.SetAccessibilityView(this, newIsAccessibilityViewControl ? AccessibilityView.Control : AccessibilityView.Raw); } UpdateScrollButtons(); } public void OnScrollButtonsPlacementPropertyChanged(OverflowButtonPlacement oldValue, OverflowButtonPlacement newValue) { if (newValue == OverflowButtonPlacement.InLine) { m_expressionContainer.Padding = new Thickness(0); m_expressionContent.Margin = new Thickness(0); } UpdateScrollButtons(); } public void UpdateScrollButtons() { if (m_expressionContent == null || m_expressionContainer == null || m_scrollLeft == null || m_scrollRight == null) { return; } var realOffset = m_expressionContainer.HorizontalOffset + m_expressionContainer.Padding.Left + m_expressionContent.Margin.Left; var scrollLeftVisibility = realOffset > SCROLL_BUTTONS_APPROXIMATION_RANGE ? Visibility.Visible : Visibility.Collapsed; var scrollRightVisibility = realOffset + m_expressionContainer.ActualWidth + SCROLL_BUTTONS_APPROXIMATION_RANGE < m_expressionContent.ActualWidth ? Visibility.Visible : Visibility.Collapsed; bool shouldTryFocusScrollRight = false; if (m_scrollLeft.Visibility != scrollLeftVisibility) { if (scrollLeftVisibility == Visibility.Collapsed) { shouldTryFocusScrollRight = m_scrollLeft.Equals(FocusManager.GetFocusedElement()); } m_scrollLeft.Visibility = scrollLeftVisibility; } if (m_scrollRight.Visibility != scrollRightVisibility) { if (scrollRightVisibility == Visibility.Collapsed && m_scrollLeft.Visibility == Visibility.Visible && m_scrollRight.Equals(FocusManager.GetFocusedElement())) { m_scrollLeft.Focus(FocusState.Programmatic); } m_scrollRight.Visibility = scrollRightVisibility; } if (shouldTryFocusScrollRight && scrollRightVisibility == Visibility.Visible) { m_scrollRight.Focus(FocusState.Programmatic); } if (ScrollButtonsPlacement == OverflowButtonPlacement.Above && m_expressionContent != null) { double left = m_scrollLeft != null && m_scrollLeft.Visibility == Visibility.Visible ? ScrollButtonsWidth : 0; double right = m_scrollRight != null && m_scrollRight.Visibility == Visibility.Visible ? ScrollButtonsWidth : 0; if (m_expressionContainer.Padding.Left != left || m_expressionContainer.Padding.Right != right) { m_expressionContainer.ViewChanged -= OnViewChanged; m_expressionContainer.Padding = new Thickness(left, 0, right, 0); m_expressionContent.Margin = new Thickness(-left, 0, -right, 0); m_expressionContainer.UpdateLayout(); m_expressionContainer.Measure(m_expressionContainer.RenderSize); m_expressionContainer.ViewChanged += OnViewChanged; } } } public void UnregisterEventHandlers() { // Unregister the event handlers if (m_scrollLeft != null) { m_scrollLeft.Click -= OnScrollLeftClick; } if (m_scrollRight != null) { m_scrollRight.Click -= OnScrollRightClick; } if (m_expressionContainer != null) { m_expressionContainer.ViewChanged -= OnViewChanged; } } protected override void OnApplyTemplate() { UnregisterEventHandlers(); var uiElement = GetTemplateChild("ExpressionContainer"); if (uiElement != null) { m_expressionContainer = (ScrollViewer)uiElement; m_expressionContainer.ChangeView(m_expressionContainer.ExtentWidth - m_expressionContainer.ViewportWidth, null, null); m_expressionContainer.ViewChanged += OnViewChanged; } uiElement = GetTemplateChild("ExpressionContent"); if (uiElement != null) { m_expressionContent = (FrameworkElement)uiElement; } uiElement = GetTemplateChild("ScrollLeft"); if (uiElement != null) { m_scrollLeft = (Button)uiElement; m_scrollLeft.Click += OnScrollLeftClick; } uiElement = GetTemplateChild("ScrollRight"); if (uiElement != null) { m_scrollRight = (Button)uiElement; m_scrollRight.Click += OnScrollRightClick; } uiElement = GetTemplateChild("TokenList"); if (uiElement != null) { m_itemsControl = (ItemsControl)uiElement; } UpdateAllState(); } protected override AutomationPeer OnCreateAutomationPeer() { return new OverflowTextBlockAutomationPeer(this); } private void OnScrollLeftClick(object sender, RoutedEventArgs e) { ScrollLeft(); } private void OnScrollRightClick(object sender, RoutedEventArgs e) { ScrollRight(); } private void OnViewChanged(object sender, ScrollViewerViewChangedEventArgs args) { UpdateScrollButtons(); } private void UpdateVisualState() { VisualStateManager.GoToState(this, IsActive ? "Active" : "Normal", true); } private void UpdateAllState() { UpdateVisualState(); } private void ScrollLeft() { if (m_expressionContainer != null && m_expressionContainer.HorizontalOffset > 0) { double offset = m_expressionContainer.HorizontalOffset - (SCROLL_RATIO * m_expressionContainer.ViewportWidth); m_expressionContainer.ChangeView(offset, null, null); m_expressionContainer.UpdateLayout(); UpdateScrollButtons(); } } private void ScrollRight() { if (m_expressionContainer != null && m_expressionContent != null) { var realOffset = m_expressionContainer.HorizontalOffset + m_expressionContainer.Padding.Left + m_expressionContent.Margin.Left; if (realOffset + m_expressionContainer.ActualWidth < m_expressionContent.ActualWidth) { double offset = m_expressionContainer.HorizontalOffset + (SCROLL_RATIO * m_expressionContainer.ViewportWidth); m_expressionContainer.ChangeView(offset, null, null); m_expressionContainer.UpdateLayout(); UpdateScrollButtons(); } } } private const uint SCROLL_BUTTONS_APPROXIMATION_RANGE = 4; private const double SCROLL_RATIO = 0.7; private bool m_isAccessibilityViewControl; private Windows.UI.Xaml.FrameworkElement m_expressionContent; private Windows.UI.Xaml.Controls.ItemsControl m_itemsControl; private Windows.UI.Xaml.Controls.ScrollViewer m_expressionContainer; private Windows.UI.Xaml.Controls.Button m_scrollLeft; private Windows.UI.Xaml.Controls.Button m_scrollRight; } } } ================================================ FILE: src/Calculator/Controls/OverflowTextBlockAutomationPeer.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.Collections.Generic; using Windows.UI.Xaml.Automation.Peers; namespace CalculatorApp { namespace Controls { public sealed class OverflowTextBlockAutomationPeer : Windows.UI.Xaml.Automation.Peers.FrameworkElementAutomationPeer { public OverflowTextBlockAutomationPeer(OverflowTextBlock owner) : base(owner) { } protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } protected override IList GetChildrenCore() { return null; } } } } ================================================ FILE: src/Calculator/Controls/RadixButton.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; namespace CalculatorApp { namespace Controls { public sealed class RadixButton : Windows.UI.Xaml.Controls.RadioButton { public RadixButton() { } internal string GetRawDisplayValue() { string radixContent = Content?.ToString(); return LocalizationSettings.GetInstance().RemoveGroupSeparators(radixContent); } } } } ================================================ FILE: src/Calculator/Controls/SupplementaryItemsControl.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel; using System.Collections.Generic; using Windows.UI.Xaml; using Windows.UI.Xaml.Automation; using Windows.UI.Xaml.Automation.Peers; using Windows.UI.Xaml.Controls; namespace CalculatorApp { namespace Controls { public sealed class SupplementaryItemsControl : ItemsControl { public SupplementaryItemsControl() { } protected override DependencyObject GetContainerForItemOverride() { return new SupplementaryContentPresenter(); } protected override void PrepareContainerForItemOverride(DependencyObject element, object item) { base.PrepareContainerForItemOverride(element, item); if (item is SupplementaryResult supplementaryResult) { AutomationProperties.SetName(element, supplementaryResult.GetLocalizedAutomationName()); } } } public sealed class SupplementaryContentPresenter : ContentPresenter { public SupplementaryContentPresenter() { } protected override AutomationPeer OnCreateAutomationPeer() { return new SupplementaryContentPresenterAP(this); } } internal sealed class SupplementaryContentPresenterAP : FrameworkElementAutomationPeer { protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } protected override IList GetChildrenCore() { return null; } internal SupplementaryContentPresenterAP(SupplementaryContentPresenter owner) : base(owner) { } } } } ================================================ FILE: src/Calculator/Converters/BooleanNegationConverter.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; namespace CalculatorApp { namespace Converters { /// /// Value converter that translates true to false and vice versa. /// [Windows.Foundation.Metadata.WebHostHidden] public sealed class BooleanNegationConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { var boolValue = (value is bool boxedBool && boxedBool); return !boolValue; } public object ConvertBack(object value, Type targetType, object parameter, string language) { var boolValue = (value is bool boxedBool && boxedBool); return !boolValue; } } } } ================================================ FILE: src/Calculator/Converters/BooleanToVisibilityConverter.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using Windows.UI.Xaml; namespace CalculatorApp { namespace Converters { /// /// Value converter that translates true to and false /// to . /// public sealed class BooleanToVisibilityConverter : Windows.UI.Xaml.Data.IValueConverter { public static Windows.UI.Xaml.Visibility Convert(bool visibility) { return visibility ? Windows.UI.Xaml.Visibility.Visible : Windows.UI.Xaml.Visibility.Collapsed; } public object Convert(object value, Type targetType, object parameter, string language) { var boolValue = (value is bool boxedBool && boxedBool); return BooleanToVisibilityConverter.Convert(boolValue); } public object ConvertBack(object value, Type targetType, object parameter, string language) { return (value is Visibility visibility && visibility == Visibility.Visible); } } /// /// Value converter that translates false to and true /// to . /// public sealed class BooleanToVisibilityNegationConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { var boolValue = (value is bool boxedBool && boxedBool); return BooleanToVisibilityConverter.Convert(!boolValue); } public object ConvertBack(object value, Type targetType, object parameter, string language) { return (value is Visibility visibility && visibility != Visibility.Visible); } } } } ================================================ FILE: src/Calculator/Converters/ExpressionItemTemplateSelector.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using System; using Windows.UI.Xaml; namespace CalculatorApp { namespace Converters { [Windows.UI.Xaml.Data.Bindable] public sealed class ExpressionItemTemplateSelector : Windows.UI.Xaml.Controls.DataTemplateSelector { protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) { if (item is DisplayExpressionToken token) { CalculatorApp.ViewModel.Common.TokenType type = token.Type; switch (type) { case TokenType.Operator: return OperatorTemplate; case TokenType.Operand: return OperandTemplate; case TokenType.Separator: return SeparatorTemplate; default: throw new Exception("Invalid token type"); } } return SeparatorTemplate; } public Windows.UI.Xaml.DataTemplate OperatorTemplate { get; set; } public Windows.UI.Xaml.DataTemplate OperandTemplate { get; set; } public Windows.UI.Xaml.DataTemplate SeparatorTemplate { get; set; } } } } ================================================ FILE: src/Calculator/Converters/ItemSizeToVisibilityConverter.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; namespace CalculatorApp { namespace Converters { [Windows.Foundation.Metadata.WebHostHidden] public sealed class ItemSizeToVisibilityConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { var boolValue = (value is int items && (items == 0)); return BooleanToVisibilityConverter.Convert(boolValue); } public object ConvertBack(object value, Type targetType, object parameter, string language) { throw new NotImplementedException(); } } public sealed class ItemSizeToVisibilityNegationConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { var boolValue = (value is int items && (items > 0)); return BooleanToVisibilityConverter.Convert(boolValue); } public object ConvertBack(object value, Type targetType, object parameter, string language) { throw new NotImplementedException(); } } } } ================================================ FILE: src/Calculator/Converters/RadixToStringConverter.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using System; namespace CalculatorApp { namespace Converters { /// /// Value converter that translates true to false and vice versa. /// [Windows.Foundation.Metadata.WebHostHidden] public sealed class RadixToStringConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { var boxedInt = (value as int?); string convertedValue = null; var resourceLoader = AppResourceProvider.GetInstance(); switch (boxedInt.Value) { case (int)RadixType.Binary: { convertedValue = resourceLoader.GetResourceString("Bin"); break; } case (int)RadixType.Octal: { convertedValue = resourceLoader.GetResourceString("Oct"); break; } case (int)RadixType.Decimal: { convertedValue = resourceLoader.GetResourceString("Dec"); break; } case (int)RadixType.Hex: { convertedValue = resourceLoader.GetResourceString("Hex"); break; } default: break; } return convertedValue; } public object ConvertBack(object value, Type targetType, object parameter, string language) { throw new NotImplementedException(); } } } } ================================================ FILE: src/Calculator/Converters/VisibilityNegationConverter.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using Windows.UI.Xaml; namespace CalculatorApp { namespace Common { /// /// Value converter that translates Visible to Collapsed and vice versa /// [Windows.Foundation.Metadata.WebHostHidden] public sealed class VisibilityNegationConverter : Windows.UI.Xaml.Data.IValueConverter { public object Convert(object value, Type targetType, object parameter, string language) { if (value is Visibility boxedVisibility && boxedVisibility == Visibility.Collapsed) { return Visibility.Visible; } return Visibility.Collapsed; } public object ConvertBack(object value, Type targetType, object parameter, string language) { return Convert(value, targetType, parameter, language); } } } } ================================================ FILE: src/Calculator/DesignData/DesignAppViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "DesignAppViewModel.h" ================================================ FILE: src/Calculator/DesignData/DesignAppViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #include "DesignStandardCalculatorViewModel.h" #include "DesignUnitConverterViewModel.h" namespace Numbers { namespace DesignData { #ifdef _DEBUG // These class are to be consumed exclusively by Blend and the VS designer // with these classes Blend will be able to populate the controls // with the hardcoded strings so whoever is working on the UI can actually see how the app would look like // with semi-realistic data. // This data is to only be compiled in the debug build and it will not affect app functionality at all // so it does not need to be tested. It will have to be kept in sync with UnitConverterViewModel though // to ensure that the design experience is correct. // This class's code is run in the designer process so the less code it has the better. public ref class AppViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: AppViewModel() : m_IsStandardMode(true) , m_IsScientificMode(false) , m_IsConverterMode(false) , m_CalculatorViewModel(ref new StandardCalculatorViewModel()) , m_ConverterViewModel(ref new UnitConverterViewModel()) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(StandardCalculatorViewModel ^, CalculatorViewModel); OBSERVABLE_PROPERTY_RW(UnitConverterViewModel ^, ConverterViewModel); OBSERVABLE_PROPERTY_RW(bool, IsStandardMode); OBSERVABLE_PROPERTY_RW(bool, IsScientificMode); OBSERVABLE_PROPERTY_RW(bool, IsConverterMode); }; #endif } } ================================================ FILE: src/Calculator/DesignData/DesignStandardCalculatorViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "DesignStandardCalculatorViewModel.h" ================================================ FILE: src/Calculator/DesignData/DesignStandardCalculatorViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace Numbers { namespace DesignData { #ifdef _DEBUG public ref class MemorySlot sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: MemorySlot(int slotPosition, Platform::String ^ value) : m_SlotPosition(slotPosition) , m_SlotValue(value) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(int, SlotPosition); OBSERVABLE_PROPERTY_RW(Platform::String ^, SlotValue); }; // This class is to be consumed exclusively by Blend and the VS designer // with this class Blend will be able to populate the controls, the CalculationResults control for example, // with the hardcoded strings so whoever is working on the UI can actually see how the app would look like // with semi-realistic data. // This data is to only be compiled in the debug build and it will not affect app functionality at all // so it does not need to be tested. It will have to be kept in sync with StandardCalculatorViewModel though // to ensure that the design experience is correct. // This class's code is run in the designer process so the less code it has the better. public ref class StandardCalculatorViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: StandardCalculatorViewModel() : m_DisplayValue("1234569") , m_DisplayStringExpression("14560 x 1890") , m_DegreeButtonContent("Deg") , m_IsMemoryEmpty(false) { m_MemorizedNumbers = ref new Platform::Collections::Vector(); for (int i = 1000; i < 1100; i++) { wchar_t wzi[5]; _itow_s(i, wzi, 10); m_MemorizedNumbers->Append(ref new MemorySlot(i, ref new Platform::String(wzi))); } } typedef Windows::Foundation::Collections::IMap KeyboardButtonStates; OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, DisplayValue); OBSERVABLE_PROPERTY_RW(Platform::String ^, DisplayStringExpression); OBSERVABLE_PROPERTY_RW(Platform::String ^, DegreeButtonContent); OBSERVABLE_PROPERTY_RW(Windows::Foundation::Collections::IVector ^, MemorizedNumbers); OBSERVABLE_PROPERTY_RW(bool, IsMemoryEmpty); OBSERVABLE_PROPERTY_RW(KeyboardButtonStates ^, PressedButtons); COMMAND_FOR_METHOD(ButtonPressed, StandardCalculatorViewModel::OnButtonPressed); private: void OnButtonPressed(Platform::Object ^ parameter) { } }; #endif } } ================================================ FILE: src/Calculator/DesignData/DesignUnitConverterViewModel.cpp ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "pch.h" #include "DesignUnitConverterViewModel.h" ================================================ FILE: src/Calculator/DesignData/DesignUnitConverterViewModel.h ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once namespace Numbers { namespace DesignData { #ifdef _DEBUG // These class are to be consumed exclusively by Blend and the VS designer // with these classes Blend will be able to populate the controls // with the hardcoded strings so whoever is working on the UI can actually see how the app would look like // with semi-realistic data. // This data is to only be compiled in the debug build and it will not affect app functionality at all // so it does not need to be tested. It will have to be kept in sync with UnitConverterViewModel though // to ensure that the design experience is correct. // This class's code is run in the designer process so the less code it has the better. public ref class CategoryViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: CategoryViewModel(Platform::String ^ name) : m_Name(name) , m_NegateVisibility(Windows::UI::Xaml::Visibility::Collapsed) { } CategoryViewModel(Platform::String ^ name, Windows::UI::Xaml::Visibility negateVisibility) : m_Name(name) , m_NegateVisibility(negateVisibility) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Name); OBSERVABLE_PROPERTY_RW(Windows::UI::Xaml::Visibility, NegateVisibility); }; public ref class UnitViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: UnitViewModel(Platform::String ^ unit, Platform::String ^ abbr) : m_Name(unit) , m_Abbreviation(abbr) { } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Name); OBSERVABLE_PROPERTY_RW(Platform::String ^, Abbreviation); }; public ref class UnitConverterSupplementaryResultViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: UnitConverterSupplementaryResultViewModel(Platform::String ^ value, Platform::String ^ unit, Platform::String ^ abbr) : m_Value(value) { m_Unit = ref new UnitViewModel(unit, abbr); } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value); OBSERVABLE_PROPERTY_RW(UnitViewModel ^, Unit); }; public ref class UnitConverterViewModel sealed : public Windows::UI::Xaml::Data::INotifyPropertyChanged { public: UnitConverterViewModel() : m_Value1("Åy24") , m_Value2("Åy183") , m_Value1Active(true) , m_Value2Active(false) { m_SupplementaryResults = ref new Platform::Collections::Vector(); m_SupplementaryResults->Append(ref new UnitConverterSupplementaryResultViewModel("128", "Kilograms", "Kgs")); m_SupplementaryResults->Append(ref new UnitConverterSupplementaryResultViewModel("42.55", "Liters", "ÅyL")); m_SupplementaryResults->Append(ref new UnitConverterSupplementaryResultViewModel("1.5e3", "Gallons", "G")); m_SupplementaryResults->Append(ref new UnitConverterSupplementaryResultViewModel("1929", "Gigabyte", "GB")); m_Categories = ref new Platform::Collections::Vector(); m_Categories->Append(ref new CategoryViewModel("Volume")); m_Categories->Append(ref new CategoryViewModel("Temperature", Windows::UI::Xaml::Visibility::Visible)); m_CurrentCategory = ref new CategoryViewModel("ÅyTime"); m_Categories->Append(m_CurrentCategory); m_Categories->Append(ref new CategoryViewModel("Speed")); m_Units = ref new Platform::Collections::Vector(); m_Unit1 = ref new UnitViewModel("ÅySeconds", "S"); m_Unit2 = ref new UnitViewModel("ÅyMinutes", "M"); m_Units->Append(ref new UnitViewModel("Miliseconds", "MS")); m_Units->Append(m_Unit1); m_Units->Append(m_Unit2); m_Units->Append(ref new UnitViewModel("Hours", "HRs")); } OBSERVABLE_OBJECT(); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value1); OBSERVABLE_PROPERTY_RW(Platform::String ^, Value2); OBSERVABLE_PROPERTY_R(Windows::UI::Xaml::Interop::IBindableObservableVector ^, Categories); OBSERVABLE_PROPERTY_RW(CategoryViewModel ^, CurrentCategory); OBSERVABLE_PROPERTY_R(Windows::UI::Xaml::Interop::IBindableObservableVector ^, Units); OBSERVABLE_PROPERTY_RW(UnitViewModel ^, Unit1); OBSERVABLE_PROPERTY_RW(UnitViewModel ^, Unit2); OBSERVABLE_PROPERTY_RW(bool, Value1Active); OBSERVABLE_PROPERTY_RW(bool, Value2Active); OBSERVABLE_PROPERTY_R(Windows::UI::Xaml::Interop::IBindableObservableVector ^, SupplementaryResults); }; #endif } } ================================================ FILE: src/Calculator/Package.Release.appxmanifest ================================================ ms-resource:AppStoreName Microsoft Corporation Assets\CalculatorStoreLogo.png Assets\CalculatorAppList.png Assets\CalculatorAppList.png com.microsoft.windows.dontmaximizeonsmallscreen ================================================ FILE: src/Calculator/Package.appxmanifest ================================================ ms-resource:DevAppStoreName Microsoft Corporation Assets\CalculatorStoreLogo.png Assets\CalculatorAppList.png Assets\CalculatorAppList.png com.microsoft.windows.dontmaximizeonsmallscreen ================================================ FILE: src/Calculator/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Calculator")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyProduct("Microsoft Calculator")] [assembly: AssemblyCopyright("Copyright © Microsoft Corporation. All rights reserved.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] ================================================ FILE: src/Calculator/Properties/Default.rd.xml ================================================ ================================================ FILE: src/Calculator/Resources/af-ZA/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ongeldige invoer Error message shown when the input makes a function fail, like log(-1) Resultaat is ongedefinieer Error message shown when there's no possible value for a function. Nie genoeg geheue nie Error message shown when we run out of memory during a calculation. Oorloop Error message shown when there's an overflow during the calculation. Resultaat nie gedefinieer nie Same as 101 Resultaat nie gedefinieer nie Same 101 Oorloop Same as 107 Oorloop Same 107 Kan nie deur nul deel nie Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/af-ZA/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Sakrekenaar {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Sakrekenaar [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows-Sakrekenaar {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows-Sakrekenaar [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Sakrekenaar {@Appx_Description@} This description is used for the official application when published through Windows Store. Sakrekenaar [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopieer Copy context menu string Plak Paste context menu string Ongeveer gelyk aan The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, waarde %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bis {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63ste Sub-string used in automation name for 63 bit in bit flip 62ste Sub-string used in automation name for 62 bit in bit flip 61ste Sub-string used in automation name for 61 bit in bit flip 60ste Sub-string used in automation name for 60 bit in bit flip 59ste Sub-string used in automation name for 59 bit in bit flip 58ste Sub-string used in automation name for 58 bit in bit flip 57ste Sub-string used in automation name for 57 bit in bit flip 56ste Sub-string used in automation name for 56 bit in bit flip 55ste Sub-string used in automation name for 55 bit in bit flip 54ste Sub-string used in automation name for 54 bit in bit flip 53ste Sub-string used in automation name for 53 bit in bit flip 52ste Sub-string used in automation name for 52 bit in bit flip 51ste Sub-string used in automation name for 51 bit in bit flip 50ste Sub-string used in automation name for 50 bit in bit flip 49ste Sub-string used in automation name for 49 bit in bit flip 48ste Sub-string used in automation name for 48 bit in bit flip 47ste Sub-string used in automation name for 47 bit in bit flip 46ste Sub-string used in automation name for 46 bit in bit flip 45ste Sub-string used in automation name for 45 bit in bit flip 44ste Sub-string used in automation name for 44 bit in bit flip 43ste Sub-string used in automation name for 43 bit in bit flip 42ste Sub-string used in automation name for 42 bit in bit flip 41ste Sub-string used in automation name for 41 bit in bit flip 40ste Sub-string used in automation name for 40 bit in bit flip 39ste Sub-string used in automation name for 39 bit in bit flip 38ste Sub-string used in automation name for 38 bit in bit flip 37ste Sub-string used in automation name for 37 bit in bit flip 36ste Sub-string used in automation name for 36 bit in bit flip 35ste Sub-string used in automation name for 35 bit in bit flip 34ste Sub-string used in automation name for 34 bit in bit flip 33ste Sub-string used in automation name for 33 bit in bit flip 32ste Sub-string used in automation name for 32 bit in bit flip 31ste Sub-string used in automation name for 31 bit in bit flip 30ste Sub-string used in automation name for 30 bit in bit flip 29ste Sub-string used in automation name for 29 bit in bit flip 28ste Sub-string used in automation name for 28 bit in bit flip 27ste Sub-string used in automation name for 27 bit in bit flip 26ste Sub-string used in automation name for 26 bit in bit flip 25ste Sub-string used in automation name for 25 bit in bit flip 24ste Sub-string used in automation name for 24 bit in bit flip 23ste Sub-string used in automation name for 23 bit in bit flip 22ste Sub-string used in automation name for 22 bit in bit flip 21ste Sub-string used in automation name for 21 bit in bit flip 20ste Sub-string used in automation name for 20 bit in bit flip 19de Sub-string used in automation name for 19 bit in bit flip 18de Sub-string used in automation name for 18 bit in bit flip 17de Sub-string used in automation name for 17 bit in bit flip 16de Sub-string used in automation name for 16 bit in bit flip 15de Sub-string used in automation name for 15 bit in bit flip 14de Sub-string used in automation name for 14 bit in bit flip 13de Sub-string used in automation name for 13 bit in bit flip 12de Sub-string used in automation name for 12 bit in bit flip 11de Sub-string used in automation name for 11 bit in bit flip 10de Sub-string used in automation name for 10 bit in bit flip 9de Sub-string used in automation name for 9 bit in bit flip 8ste Sub-string used in automation name for 8 bit in bit flip 7de Sub-string used in automation name for 7 bit in bit flip 6de Sub-string used in automation name for 6 bit in bit flip 5de Sub-string used in automation name for 5 bit in bit flip 4de Sub-string used in automation name for 4 bit in bit flip 3de Sub-string used in automation name for 3 bit in bit flip 2de Sub-string used in automation name for 2 bit in bit flip 1ste Sub-string used in automation name for 1 bit in bit flip mees onbeduidende bis Used to describe the first bit of a binary number. Used in bit flip Maak geheue-uitvlieg oop This is the automation name and label for the memory button when the memory flyout is closed. Sluit geheue-uitvlieg This is the automation name and label for the memory button when the memory flyout is open. Hou bo This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Terug na volle aansig This is the tool tip automation name for the always-on-top button when in always-on-top mode. Geheue This is the tool tip automation name for the memory button. Geskiedenis (Ctrl+H) This is the tool tip automation name for the history button. Biswisselingsleutelblok This is the tool tip automation name for the bitFlip button. Volle sleutelblok This is the tool tip automation name for the numberPad button. Vee alle geheue uit (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Geheue The text that shows as the header for the memory list Geheue The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Geskiedenis The text that shows as the header for the history list Geskiedenis The automation name for the History pivot item that is shown when Calculator is in wide layout. Omsetter Label for a control that activates the unit converter mode. Wetenskaplik Label for a control that activates scientific mode calculator layout Standaard Label for a control that activates standard mode calculator layout. Omskakelingsmodus Screen reader prompt for a control that activates the unit converter mode. Wetenskaplike modus Screen reader prompt for a control that activates scientific mode calculator layout Standaardmodus Screen reader prompt for a control that activates standard mode calculator layout. Vee alle geskiedenis uit "ClearHistory" used on the calculator history pane that stores the calculation history. Vee alle geskiedenis uit This is the tool tip automation name for the Clear History button. Versteek "HideHistory" used on the calculator history pane that stores the calculation history. Standaard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Wetenskaplik The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmeerder The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Omsetter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Sakrekenaar The text that shows in the dropdown navigation control for the calculator group. Omsetter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Sakrekenaar The text that shows in the dropdown navigation control for the calculator group in upper case. Omsetters Pluralized version of the converter group text, used for the screen reader prompt. Sakrekenaars Pluralized version of the calculator group text, used for the screen reader prompt. Vertoon is %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Uitdrukking is %1, huidige toevoer is %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Vertoon is %1 komma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Uitdrukking is %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Vertoonwaarde is na die knipbord gekopieer Screen reader prompt for the Calculator display copy button, when the button is invoked. Geskiedenis Screen reader prompt for the history flyout Geheue Screen reader prompt for the memory flyout HeksaDesimaal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desimaal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktaal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binêr %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Vee alle geskiedenis uit Screen reader prompt for the Calculator History Clear button Geskiedenis uitgevee Screen reader prompt for the Calculator History Clear button, when the button is invoked. Versteek geskiedenis Screen reader prompt for the Calculator History Hide button Maak geskiedenis-uitvlieg oop Screen reader prompt for the Calculator History button, when the flyout is closed. Sluit geskiedenis-uitvlieg Screen reader prompt for the Calculator History button, when the flyout is open. Geheuewinkel Screen reader prompt for the Calculator Memory button Geheue stoor (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Vee alle geheue uit Screen reader prompt for the Calculator Clear Memory button Geheue uitgevee Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Geheue herroep Screen reader prompt for the Calculator Memory Recall button Geheue herroep (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Geheue byvoeg Screen reader prompt for the Calculator Memory Add button Geheue byvoeg (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Geheue aftrek Screen reader prompt for the Calculator Memory Subtract button Geheue aftrek (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Vee geheue-item uit Screen reader prompt for the Calculator Clear Memory button Vee geheue-item uit This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Voeg by geheue-item Screen reader prompt for the Calculator Memory Add button in the Memory list Voeg by geheue-item This is the tool tip automation name for the Calculator Memory Add button in the Memory list Trek van geheue-item af Screen reader prompt for the Calculator Memory Subtract button in the Memory list Trek van geheue-item af This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Vee geheue-item uit Screen reader prompt for the Calculator Clear Memory button Vee geheue-item uit Text string for the Calculator Clear Memory option in the Memory list context menu Voeg by geheue-item Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Voeg by geheue-item Text string for the Calculator Memory Add option in the Memory list context menu Trek van geheue-item af Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Trek van geheue-item af Text string for the Calculator Memory Subtract option in the Memory list context menu Skrap Text string for the Calculator Delete swipe button in the History list Kopieer Text string for the Calculator Copy option in the History list context menu Skrap Text string for the Calculator Delete option in the History list context menu Skrap geskiedenisitem Screen reader prompt for the Calculator Delete swipe button in the History list Skrap geskiedenisitem Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nul Screen reader prompt for the Calculator number "0" button Een Screen reader prompt for the Calculator number "1" button Twee Screen reader prompt for the Calculator number "2" button Drie Screen reader prompt for the Calculator number "3" button Vier Screen reader prompt for the Calculator number "4" button Vyf Screen reader prompt for the Calculator number "5" button Ses Screen reader prompt for the Calculator number "6" button Sewe Screen reader prompt for the Calculator number "7" button Agt Screen reader prompt for the Calculator number "8" button Nege Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button En Screen reader prompt for the Calculator And button Of Screen reader prompt for the Calculator Or button Nie Screen reader prompt for the Calculator Not button Draai links Screen reader prompt for the Calculator ROL button Draai regs Screen reader prompt for the Calculator ROR button Linksskuif Screen reader prompt for the Calculator LSH button Regsskuif Screen reader prompt for the Calculator RSH button Uitsluitend of Screen reader prompt for the Calculator XOR button Viervoudige woordwissel Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Dubbelwoordwissel Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Woordwissel Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Greepwissel Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Biswisselingsleutelblok Screen reader prompt for the Calculator bitFlip button Volle sleutelblok Screen reader prompt for the Calculator numberPad button Desimale skeier Screen reader prompt for the "." button Vee inskrywing uit Screen reader prompt for the "CE" button Vee uit Screen reader prompt for the "C" button Deel deur Screen reader prompt for the divide button on the number pad Vermenigvuldig met Screen reader prompt for the multiply button on the number pad Gelyk aan Screen reader prompt for the equals button on the scientific operator keypad Inverse funksie Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Vierkantswortel Screen reader prompt for the square root button on the scientific operator keypad Persent Screen reader prompt for the percent button on the scientific operator keypad Positiewe negatief Screen reader prompt for the negate button on the scientific operator keypad Positiewe negatief Screen reader prompt for the negate button on the converter operator keypad Resiprook Screen reader prompt for the invert button on the scientific operator keypad Linkerhakie Screen reader prompt for the Calculator "(" button on the scientific operator keypad Linkerhakie, maak hakie nommer %1 oop {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Regterhakie Screen reader prompt for the Calculator ")" button on the scientific operator keypad Aantal oop hakies %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Daar is geen oop hakies om te sluit nie. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Wetenskaplike notasie Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperboliese funksie Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperboliese sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperboliese kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperboliese tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Vierkant Screen reader prompt for the x squared on the scientific operator keypad. Kubieke Screen reader prompt for the x cubed on the scientific operator keypad. Boogsinus Screen reader prompt for the inverted sin on the scientific operator keypad. Boogkosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Boogtangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperboliese boogsinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperboliese boogkosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperboliese boogtangens Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' tot die mag Screen reader prompt for x power y button on the scientific operator keypad. Tien tot die mag Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' tot die mag Screen reader for the e power x on the scientific operator keypad. 'y'-wortel van 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Natuurlike log Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Eksponensiaal Screen reader for the exp button on the scientific operator keypad Grade minuut sekonde Screen reader for the exp button on the scientific operator keypad Grade Screen reader for the exp button on the scientific operator keypad Heelgetaldeel Screen reader for the int button on the scientific operator keypad Breukdeel Screen reader for the frac button on the scientific operator keypad Faktoriaal Screen reader for the factorial button on the basic operator keypad Gradewissel This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradiaalwissel This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radiaalwissel This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Modus-aftrekkieslys Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategorieë-aftrekkieslys Screen reader prompt for the Categories dropdown field. Hou bo Screen reader prompt for the Always-on-Top button when in normal mode. Terug na volle aansig Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Hou bo (Alt+Op) This is the tool tip automation name for the Always-on-Top button when in normal mode. Terug na volle aansig (Alt+Af) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Skakel om vanaf %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Skakel om vanaf %1 komma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Skakel om na %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 is %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Invoereenheid Screen reader prompt for the Unit Converter Units1 i.e. top units field. Afvoereenheid Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lengte Unit conversion category name called Length Krag Unit conversion category name called Power (eg. the power of an engine or a light bulb) Spoed Unit conversion category name called Speed Tyd Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatuur Unit conversion category name called Temperature Gewig en massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Druk Unit conversion category name called Pressure Hoek Unit conversion category name called Angle Geldeenheid Unit conversion category name called Currency Vloeistofonse (VK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vloz. (VK) An abbreviation for a measurement unit of volume Vloeistofonse (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vloz. (VSA) An abbreviation for a measurement unit of volume Gelling (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gall. (VK) An abbreviation for a measurement unit of volume Gelling (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gall. (VSA) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pint (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt. (VK) An abbreviation for a measurement unit of volume Pint (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt. (VSA) An abbreviation for a measurement unit of volume Eetlepels (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) e. (VSA) An abbreviation for a measurement unit of volume Teelepels (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) t. (VSA) An abbreviation for a measurement unit of volume Eetlepels (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) e. (VK) An abbreviation for a measurement unit of volume Teelepels (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) t. (VK) An abbreviation for a measurement unit of volume Kwartgelling (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kw. (VK) An abbreviation for a measurement unit of volume Kwartgelling (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kw. (VSA) An abbreviation for a measurement unit of volume Koppies (VSA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koppie (VSA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length akker An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTE An abbreviation for a measurement unit of volume BTE/min. An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data kal. An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/sek. An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume vt³ An abbreviation for a measurement unit of volume dm³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume jt³ An abbreviation for a measurement unit of volume d. An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy vt. An abbreviation for a measurement unit of length vt./sek. An abbreviation for a measurement unit of speed vt.•lb. An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area pk. (VSA) An abbreviation for a measurement unit of power u. An abbreviation for a measurement unit of time dm An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kkal. An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/sek. An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time m. An abbreviation for a measurement unit of length m.p.u. An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min. An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length sm. An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data vt.•lb./min. An abbreviation for a measurement unit of power sek. An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area vt² An abbreviation for a measurement unit of area dm² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area jt² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power w. An abbreviation for a measurement unit of time jt. An abbreviation for a measurement unit of length j. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akker A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britse termiese eenhede A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTE’e/minuut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Warmtekalorieë A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter per sekonde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke sentimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke voet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke duim A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke meter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke jaart A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dae A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voet A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voet per sekonde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voetpond A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voetpond/minuut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektaar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Perdekrag (VSA) A measurement unit for power Uur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Duim A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-ure A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Koskalorieë A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer per uur A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knope A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter per sekonde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Myl A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Myl per uur A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minute A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Seemyle A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante sentimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante voet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante duim A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante kilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante meter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante myl A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante millimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante jaart A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Teragrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Weke A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jaart A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jaar A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight gr. An abbreviation for a measurement unit of Angle rad. An abbreviation for a measurement unit of Angle grad. An abbreviation for a measurement unit of Angle atm. An abbreviation for a measurement unit of Pressure bar. An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (VK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb. An abbreviation for a measurement unit of weight ton (VSA) An abbreviation for a measurement unit of weight st. An abbreviation for a measurement unit of weight t. An abbreviation for a measurement unit of weight Karaat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grade A measurement unit for Angle. Radiale A measurement unit for Angle. Gradiale A measurement unit for Angle. Atmosfeer A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeter kwik A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pond per vierkante duim A measurement unit for Pressure. Sentigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Desigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Groot ton (VK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onse A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pond A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Klein ton (VSA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrieke ton A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD’s A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD’s A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sokkervelde A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sokkervelde A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskette A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskette A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD’s A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD’s A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterye AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterye AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skuifspelde A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skuifspelde A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) makrostralers A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) makrostralers A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gloeilampe A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gloeilampe A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) perde A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) perde A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baddens A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baddens A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sneeuvlokkies A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sneeuvlokkies A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) olifante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) olifante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skilpaaie A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skilpaaie A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stralers A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stralers A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) walvisse A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) walvisse A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koffiebekers A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koffiebekers A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swembaddens An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swembaddens An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hande A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hande A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) blaaie papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) blaaie papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastele A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastele A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piesangs A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piesangs A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snye koek A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snye koek A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) treinenjins A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) treinenjins A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sokkerballe A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sokkerballe A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Geheue-item Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Terug Screen reader prompt for the About panel back button Terug Content of tooltip being displayed on AboutControlBackButton Microsoft-programmatuurlisensiebepalings Displayed on a link to the Microsoft Software License Terms on the About panel Voorskou Label displayed next to upcoming features Microsoft-privaatheidstelling Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Alle regte voorbehou. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Om uit te vind hoe om tot Windows-Sakrekenaar by te dra, gaan kyk na die projek op %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Inligting oor Subtitle of about message on Settings page Stuur terugvoer The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Daar is nog geen geskiedenis nie. The text that shows as the header for the history list Daar is niks in geheue gestoor nie. The text that shows as the header for the memory list Geheue Screen reader prompt for the negate button on the converter operator keypad Hierdie uitdrukking kan nie geplak word nie The paste operation cannot be performed, if the expression is invalid. Gibibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottagrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibisse A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobigrepe A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datumberekening Berekeningmodus Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Voeg by Add toggle button text Voeg dae by of trek af Add or Subtract days option Datum Date result label Verskil tussen datums Date difference option Dae Add/Subtract Days label Verskil Difference result label Vanaf From Date Header for Difference Date Picker Maande Add/Subtract Months label Aftrek Subtract toggle button text Aan To Date Header for Difference Date Picker Jaar Add/Subtract Years label Datum buite grense Out of bound message shown as result when the date calculation exceeds the bounds dag dae maand maande Dieselfde datums week weke jaar jaar Verskil %1 Automation name for reading out the date difference. %1 = Date difference Resulterende datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1-sakrekenaarmodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1-omsettermodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datumberekeningmodus Automation name for when the mode header is focused and the current mode is Date calculation. Geskiedenis- en geheuelyste Automation name for the group of controls for history and memory lists. Geheuekontroles Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standaardfunksies Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Vertoonkontroles Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standaardoperators Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Sleutelblok Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Hoekoperators Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Wetenskaplike funksies Automation name for the group of Scientific functions. Wortel-seleksie Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeerder-operators Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Invoermodusseleksie Automation name for the group of input mode toggling buttons. Biswisselingsleutelblok Automation name for the group of bit toggling buttons. Rol uitdrukking na links Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Rol uitdrukking na regs Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maksimum syfers bereik. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 is na geheue gestoor {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Geheue-gleuf %1 is %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Geheue-gleuf %1 is uitgevee {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". gedeel deur Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. maal Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. tot die mag van Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-wortel Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod. Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. linksskuif Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. regsskuif Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. of Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x of Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. en Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. %1 %2 is bygewerk The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Werk tariewe by The text displayed for a hyperlink button that refreshes currency converter ratios. Datakoste kan moontlik geld. The text displayed when users are on a metered connection and using currency converter. Kon nie nuwe tariewe kry nie. Probeer later weer. The text displayed when currency ratio data fails to load. Vanlyn. Kontroleer asseblief jou%HL%Netwerkinstellings%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Werk geldeenheidtariewe by This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Geldeenheidtariewe is bygewerk This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kon nie tariewe bywerk nie This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Vee alle geheue uit (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Vee alle geheue uit Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinusgrade Name for the sine function in degrees mode. Used by screen readers. sinusradiale Name for the sine function in radians mode. Used by screen readers. sinusgradiale Name for the sine function in gradians mode. Used by screen readers. inverse sinusgrade Name for the inverse sine function in degrees mode. Used by screen readers. inverse sinusradiale Name for the inverse sine function in radians mode. Used by screen readers. inverse sinusgradiale Name for the inverse sine function in gradians mode. Used by screen readers. hiperboliese sinus Name for the hyperbolic sine function. Used by screen readers. inverse hiperboliese sinus Name for the inverse hyperbolic sine function. Used by screen readers. kosinusgrade Name for the cosine function in degrees mode. Used by screen readers. kosinusradiale Name for the cosine function in radians mode. Used by screen readers. kosinusgradiale Name for the cosine function in gradians mode. Used by screen readers. inverse kosinusgrade Name for the inverse cosine function in degrees mode. Used by screen readers. inverse kosinusradiale Name for the inverse cosine function in radians mode. Used by screen readers. inverse kosinusgradiale Name for the inverse cosine function in gradians mode. Used by screen readers. hiperboliese kosinus Name for the hyperbolic cosine function. Used by screen readers. inverse hiperboliese kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangensgrade Name for the tangent function in degrees mode. Used by screen readers. tangensradiale Name for the tangent function in radians mode. Used by screen readers. tangensgradiale Name for the tangent function in gradians mode. Used by screen readers. inverse tangensgrade Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangensradiale Name for the inverse tangent function in radians mode. Used by screen readers. inverse tangensgradiale Name for the inverse tangent function in gradians mode. Used by screen readers. hiperboliese tangens Name for the hyperbolic tangent function. Used by screen readers. inverse hiperboliese tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekans-grade Name for the secant function in degrees mode. Used by screen readers. sekans-radiale Name for the secant function in radians mode. Used by screen readers. sekans-gradiënte Name for the secant function in gradians mode. Used by screen readers. keer sekans-grade om Name for the inverse secant function in degrees mode. Used by screen readers. keer sekans-radiale om Name for the inverse secant function in radians mode. Used by screen readers. keer sekans-gradiënte om Name for the inverse secant function in gradians mode. Used by screen readers. hiperboliese sekans Name for the hyperbolic secant function. Used by screen readers. keer hiperboliese sekans om Name for the inverse hyperbolic secant function. Used by screen readers. kosekans-grade Name for the cosecant function in degrees mode. Used by screen readers. kosekans-radiale Name for the cosecant function in radians mode. Used by screen readers. kosekans-gradiënte Name for the cosecant function in gradians mode. Used by screen readers. keer kosekans-grade om Name for the inverse cosecant function in degrees mode. Used by screen readers. keer kosekans-radiale om Name for the inverse cosecant function in radians mode. Used by screen readers. keer kosekans-gradiënte om Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperboliese kosekans Name for the hyperbolic cosecant function. Used by screen readers. keer hiperboliese kosekans om Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangens-grade Name for the cotangent function in degrees mode. Used by screen readers. Kotangens-radiale Name for the cotangent function in radians mode. Used by screen readers. kotangens-gradiënte Name for the cotangent function in gradians mode. Used by screen readers. keer kotangens-grade om Name for the inverse cotangent function in degrees mode. Used by screen readers. keer kotangens-radiale om Name for the inverse cotangent function in radians mode. Used by screen readers. keer kotangens-gradiënte om Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperboliese kotangens Name for the hyperbolic cotangent function. Used by screen readers. keer hiperboliese kotangens om Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubuswortel Name for the cube root function. Used by screen readers. Logbasis Name for the logbasey function. Used by screen readers. Absolute waarde Name for the absolute value function. Used by screen readers. linksskuif Name for the programmer function that shifts bits to the left. Used by screen readers. regsskuif Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriaal Name for the factorial function. Used by screen readers. grade minuut sekonde Name for the degree minute second (dms) function. Used by screen readers. natuurlike log Name for the natural log (ln) function. Used by screen readers. vierkant Name for the square function. Used by screen readers. y-wortel Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1-kategorie {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft-Dienste-ooreenkoms Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Vanaf From Date Header for AddSubtract Date Picker Rolberekening-resultaat is links Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Rolberekening-resultaat is regs Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Berekening het misluk Text displayed when the application is not able to do a calculation Basislog Y Screen reader prompt for the logBaseY button Trigonometrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Funksie Displayed on the button that contains a flyout for the general functions in scientific mode. Ongelykhede Displayed on the button that contains a flyout for the inequality functions. Ongelykhede Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bisverskuiwing Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse funksie Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperboliese funksie Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperboliese sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Boogsekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperboliese boogsekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperboliese kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Boog-kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperboliese boog-kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperboliese kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Boog-kotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperboliese boog-kotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Vloer Screen reader prompt for the Calculator button floor in the scientific flyout keypad Plafon Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Lukraak Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolute waarde Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler se nommer Screen reader prompt for the Calculator button e in the scientific flyout keypad Twee tot die mag Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Of nie Screen reader prompt for the Calculator button nor in the scientific flyout keypad Of nie Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Draai verder links met dra Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Draai verder regs met dra Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Linksskuif Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Linker-shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Regsskuif Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Regter-shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Rekenkundige verskuiwing Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logiese verskuiwing Label for a radio button that toggles logical shift behavior for the shift operations. Draai sirkelverskuiwing Label for a radio button that toggles rotate circular behavior for the shift operations. Draai deur dra-sirkelverskuiwing Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubuswortel Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrie Screen reader prompt for the square root button on the scientific operator keypad Funksies Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bis-Shift Screen reader prompt for the square root button on the scientific operator keypad Wetenskaplike operateurpanele Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programmeerderoperateurspanele Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad mees beduidende bis Used to describe the last bit of a binary number. Used in bit flip Grafiese voorstelling Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Stip uit Screen reader prompt for the plot button on the graphing calculator operator keypad Verfris aansig outomaties (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafiekaansig Screen reader prompt for the graph view button. Outomatiese beste passing Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Handmatig-aanpassing Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafiek-aansig is teruggestel Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Bekyk nader (ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Bekyk nader Screen reader prompt for the zoom in button. Bekyk van ver (ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Bekyk van ver Screen reader prompt for the zoom out button. Voeg vergelyking by Placeholder text for the equation input button Kan nie op die oomblik deel nie. If there is an error in the sharing action will display a dialog with this text. Goed Used on the dismiss button of the share action error dialog. Kyk watter grafiek ek met Windows-Sakrekenaar getrek het Sent as part of the shared content. The title for the share. Vergelykings Header that appears over the equations section when sharing Veranderlikes Header that appears over the variables section when sharing Beeld van ’n grafiek met vergelykings Alt text for the graph image when output via Share Veranderlikes Header text for variables area Stap Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Kleur Label for the Line Color section of the style picker Styl Label for the Line Style section of the style picker Funksie-ontleding Title for KeyGraphFeatures Control Die funksie het nie enige horisontale asimptote nie. Message displayed when the graph does not have any horizontal asymptotes Die funksie het nie enige verbuigingspunte nie. Message displayed when the graph does not have any inflection points Die funksie het nie enige maksima-punte nie. Message displayed when the graph does not have any maxima Die funksie het nie enige minima-punte nie. Message displayed when the graph does not have any minima Konstante String describing constant monotonicity of a function Dalend String describing decreasing monotonicity of a function Nie in staat om die monotonisiteit van die funksie te bepaal nie. Error displayed when monotonicity cannot be determined Stygend String describing increasing monotonicity of a function Die monotonisiteit van die funksie is onbekend. Error displayed when monotonicity is unknown Die funksie het nie enige skuins asimptote nie. Message displayed when the graph does not have any oblique asymptotes Nie in staat om die pariteit van die funksie te bepaal nie. Error displayed when parity is cannot be determined Die funksie is gelyk. Message displayed with the function parity is even Die funksie is nie gelyk of ongelyk nie. Message displayed with the function parity is neither even nor odd Die funksie is ongelyk. Message displayed with the function parity is odd Die funksiepariteit is onbekend. Error displayed when parity is unknown Periodisiteit word nie vir hierdie funksie ondersteun nie. Error displayed when periodicity is not supported Die funksie is nie periodiek nie. Message displayed with the function periodicity is not periodic Die funksieperiodisiteit is onbekend. Message displayed with the function periodicity is unknown Hierdie kenmerke is vir Sakrekenaar te kompleks om te bereken: Error displayed when analysis features cannot be calculated Die funksie het nie enige vertikale asimptote nie. Message displayed when the graph does not have any vertical asymptotes Die funksie het nie enige x-afsnitte nie. Message displayed when the graph does not have any x-intercepts Die funksie het nie enige y-afsnitte nie. Message displayed when the graph does not have any y-intercepts Domein Title for KeyGraphFeatures Domain Property Horisontale asimptote Title for KeyGraphFeatures Horizontal aysmptotes Property Infleksiepunte Title for KeyGraphFeatures Inflection points Property Ontleding word nie vir hierdie funksie ondersteun nie. Error displayed when graph analysis is not supported or had an error. Ontleding word slegs vir funksies in die formaat f(x) ondersteun. Voorbeeld: y=x Error displayed when graph analysis detects the function format is not f(x). Maksima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonisiteit Title for KeyGraphFeatures Monotonicity Property Skuins asimptote Title for KeyGraphFeatures Oblique asymptotes Property Pariteit Title for KeyGraphFeatures Parity Property Periode Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Bestek Title for KeyGraphFeatures Range Property Vertikale asimptote Title for KeyGraphFeatures Vertical asymptotes Property X-afsnit Title for KeyGraphFeatures XIntercept Property Y-afsnit Title for KeyGraphFeatures YIntercept Property Ontleding kon nie vir die funksie uitgevoer word nie. Kon nie die domein vir hierdie funksie bereken nie. Error displayed when Domain is not returned from the analyzer. Kan nie die bestek vir hierdie funksie bereken nie. Error displayed when Range is not returned from the analyzer. Oorskryding (die getal is te groot) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radiale modus word benodig om hierdie vergelyking met ’n grafiek voor te stel. Error that occurs during graphing when radians is required. Hierdie funksie is te kompleks om met ’n grafiek voor te stel Error that occurs during graphing when the equation is too complex. Grademodus word benodig om hierdie funksie met ’n grafiek voor te stel Error that occurs during graphing when degrees is required Die faktoriale funksie bevat ’n ongeldige argument Error that occurs during graphing when a factorial function has an invalid argument. Die faktoriale funksie bevat ’n argument wat te groot is om met ’n grafiek voor te stel Error that occurs during graphing when a factorial has a large n Modulo kan slegs saam met heelgetalle gebruik word Error that occurs during graphing when modulo is used with a float. Die vergelyking het geen oplossing nie Error that occurs during graphing when the equation has no solution. Kan nie deur nul deel nie Error that occurs during graphing when a divison by zero occurs. Die vergelyking bevat logiese toestande wat onderling uitsluitend is Error that occurs during graphing when mutually exclusive conditions are used. Vergelyking is buite die domein Error that occurs during graphing when the equation is out of domain. Grafiese voorstelling word nie vir hierdie vergelyking gesteun nie Error that occurs during graphing when the equation is not supported. Die vergelyking ontbreek ’n openingshakie Error that occurs during graphing when the equation is missing a ( Die vergelyking ontbreek ’n sluithakie Error that occurs during graphing when the equation is missing a ) Daar is te veel desimale punte in ’n getal Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 ’n Desimale punt ontbreek syfers Error that occurs during graphing with a decimal point without digits Onverwagte einde van uitdrukking Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Onverwagte karakters in die uitdrukking Error that occurs during graphing when there is an unexpected token. Ongeldige karakters in die uitdrukking Error that occurs during graphing when there is an invalid token. Daar is te veel gelyk-aan-tekens Error that occurs during graphing when there are too many equals. Die funksie moet ten minste een x- of y-veranderlike bevat Error that occurs during graphing when the equation is missing x or y. Ongeldige uitdrukking Error that occurs during graphing when an invalid syntax is used. Die uitdrukking is leeg Error that occurs during graphing when the expression is empty Gelyk aan is gebruik sonder ’n vergelyking Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Hakie ontbreek ná funksienaam Error that occurs during graphing when parenthesis are missing after a function. ’n Wiskundige bewerking bevat die verkeerde getal parameters Error that occurs during graphing when a function has the wrong number of parameters ’n Veranderlike naam is ongeldig Error that occurs during graphing when a variable name is invalid. Die vergelyking ontbreek ’n openingshakie Error that occurs during graphing when a { is missing Die vergelyking ontbreek ’n sluithakie Error that occurs during graphing when a } is missing. “i” en “I” kan nie as veranderlike name gebruik word nie Error that occurs during graphing when i or I is used. Die vergelyking kon nie met ’n grafiek voorgestel word nie General error that occurs during graphing. Die syfer kon nie vir die gegewe basis opgelos word nie Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Die basis moet meer as 2 en minder as 36 wees Error that occurs during graphing when the base is out of range. 'n Wiskundige bewerking vereis dat een van sy parameters 'n veranderlike is Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Vergelyking meng logiese en skalêre operande Error that occurs during graphing when operands are mixed. Such as true and 1. x of y kan nie in die boonste of onderste limiete gebruik word nie Error that occurs during graphing when x or y is used in integral upper limits. x of y kan nie in die limietpunt gebruik word nie Error that occurs during graphing when x or y is used in the limit point. Kan nie komplekse oneindigheid gebruik nie Error that occurs during graphing when complex infinity is used Kan nie komplekse getalle in ongelykhede gebruik nie Error that occurs during graphing when complex numbers are used in inequalities. Terug na funksielys This is the tooltip for the back button in the equation analysis page in the graphing calculator Terug na funksielys This is the automation name for the back button in the equation analysis page in the graphing calculator Ontleed funksie This is the tooltip for the analyze function button Ontleed funksie This is the automation name for the analyze function button Ontleed funksie This is the text for the for the analyze function context menu command Verwyder vergelyking This is the tooltip for the graphing calculator remove equation buttons Verwyder vergelyking This is the automation name for the graphing calculator remove equation buttons Verwyder vergelyking This is the text for the for the remove equation context menu command Deel This is the automation name for the graphing calculator share button. Deel This is the tooltip for the graphing calculator share button. Verander vergelykingstyl This is the tooltip for the graphing calculator equation style button Verander vergelykingstyl This is the automation name for the graphing calculator equation style button Verander vergelykingstyl This is the text for the for the equation style context menu command Wys vergelyking This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Versteek vergelyking This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Wys vergelyking %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Versteek vergelyking %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stop nasporing This is the tooltip/automation name for the graphing calculator stop tracing button Begin nasporing This is the tooltip/automation name for the graphing calculator start tracing button Grafiek-besigtigingsvenster, x-as gebonde deur %1 en %2, y-as gebonde deur %3 en %4, vertoon tans %5 vergelykings {Locked="%1","%2", "%3", "%4", "%5"}. Konfigureer glyer This is the tooltip text for the slider options button in Graphing Calculator Konfigureer glyer This is the automation name text for the slider options button in Graphing Calculator Skakel oor na vergelykingmodus Used in Graphing Calculator to switch the view to the equation mode Skakel oor na grafiekmodus Used in Graphing Calculator to switch the view to the graph mode Skakel oor na vergelykingmodus Used in Graphing Calculator to switch the view to the equation mode Huidige modus is vergelykingmodus Announcement used in Graphing Calculator when switching to the equation mode Huidige modus is grafiekmodus Announcement used in Graphing Calculator when switching to the graph mode Venster Heading for window extents on the settings Grade Degrees mode on settings page Gradiënte Gradian mode on settings page Radiane Radians mode on settings page Eenhede Heading for Unit's on the settings Stel aansig terug Hyperlink button to reset the view of the graph X-Maks. X maximum value header X-Min. X minimum value header Y-Maks. Y Maximum value header Y-Min. Y minimum value header Grafiek-opsies This is the tooltip text for the graph options button in Graphing Calculator Grafiek-opsies This is the automation name text for the graph options button in Graphing Calculator Grafiek-opsies Heading for the Graph options flyout in Graphing mode. Veranderlike opsies Screen reader prompt for the variable settings toggle button Wissel veranderlike opsies Tool tip for the variable settings toggle button Lyndikte Heading for the Graph options flyout in Graphing mode. Lynopsies Heading for the equation style flyout in Graphing mode. Klein reëlwydte Automation name for line width setting Medium reëlwydte Automation name for line width setting Groot reëlbreedte Automation name for line width setting Ekstra groot reëlwydte Automation name for line width setting Voer ’n uitdrukking in this is the placeholder text used by the textbox to enter an equation Kopieer Copy menu item for the graph context menu Knip Cut menu item from the Equation TextBox Kopieer Copy menu item from the Equation TextBox Plak Paste menu item from the Equation TextBox Ontdoen Undo menu item from the Equation TextBox Kies alles Select all menu item from the Equation TextBox Funksietoevoer The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funksietoevoer The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funksie-toevoerpaneel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Veranderlikepaneel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Veranderlikelys The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Veranderlike %1-lysitem The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Veranderlikewaardeteksblokkie The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Veranderlikewaardeglyer The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Veranderlike-minimumwaardeteksblokkie The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Veranderlike-stapwaardeteksblokkie The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Veranderlike-maksimumwaardeteksblokkie The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Soliedelynstyl Name of the solid line style for a graphed equation Stippellynstyl Name of the dotted line style for a graphed equation Streeplynstyl Name of the dashed line style for a graphed equation Donkerblou Name of color in the color picker Seeskuimkleur Name of color in the color picker Violet Name of color in the color picker Groen Name of color in the color picker Mintgroen Name of color in the color picker Donkergroen Name of color in the color picker Houtskoolgrys Name of color in the color picker Rooi Name of color in the color picker Pruimlig Name of color in the color picker Magenta Name of color in the color picker Geelgoud Name of color in the color picker Helderoranje Name of color in the color picker Bruin Name of color in the color picker Swart Name of color in the color picker Wit Name of color in the color picker Kleur 1 Name of color in the color picker Kleur 2 Name of color in the color picker Kleur 3 Name of color in the color picker Kleur 4 Name of color in the color picker Grafiektema Graph settings heading for the theme options Altyd lig Graph settings option to set graph to light theme Pas by toepassingstema Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Altyd lig This is the automation name text for the Graph settings option to set graph to light theme Pas by toepassingstema This is the automation name text for the Graph settings option to set graph to match the app theme Funksie verwyder Announcement used in Graphing Calculator when a function is removed from the function list Funksie-ontledingsvergelykingblokkie This is the automation name text for the equation box in the function analysis panel Gelyk aan Screen reader prompt for the equal button on the graphing calculator operator keypad Minder as Screen reader prompt for the Less than button Minder as of gelyk aan Screen reader prompt for the Less than or equal button Gelyk Screen reader prompt for the Equal button Groter as of gelyk aan Screen reader prompt for the Greater than or equal button Groter as Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Dien in Screen reader prompt for the submit button on the graphing calculator operator keypad Funksie-ontleding Screen reader prompt for the function analysis grid Grafiek-opsies Screen reader prompt for the graph options panel Geskiedenis- en geheuelyste Automation name for the group of controls for history and memory lists. Geheuelys Automation name for the group of controls for memory list. Geheue-gleuf %1 skoongemaak {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Sakrekenaar is altyd bo Announcement to indicate calculator window is always shown on top. Sakrekenaar is terug na volle aansig Announcement to indicate calculator window is now back to full view. Rekenkundige verskuiwing is gekies Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logiese verskuiwing is gekies Label for a radio button that toggles logical shift behavior for the shift operations. Draai sirkelverskuiwing is gekies Label for a radio button that toggles rotate circular behavior for the shift operations. Draai deur dra-sirkelverskuiwing gekies Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Instellings Header text of Settings page Voorkoms Subtitle of appearance setting on Settings page Toepassingtema Title of App theme expander Kies watter toepassingtema om te vertoon Description of App theme expander Lig Lable for light theme option Donker Lable for dark theme option Gebruik stelselinstelling Lable for the app theme option to use system setting Terug Screen reader prompt for the Back button in title bar to back to main page Instellingsbladsy Announcement used when Settings page is opened Maak die kontekskieslys oop vir beskikbare aksies Screen reader prompt for the context menu of the expression box Goed The text of OK button to dismiss an error dialog. Kon nie hierdie skermskoot teruglaai nie. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/am-ET/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ልክ ያልኾነ ግቤት Error message shown when the input makes a function fail, like log(-1) ውጤት ያልተገለጸ ነው Error message shown when there's no possible value for a function. በቂ ማኅደረ ትውስታ የለም Error message shown when we run out of memory during a calculation. መትረፍረፍ Error message shown when there's an overflow during the calculation. ውጤት አልተገለጸም Same as 101 ውጤት አልተገለጸም Same 101 መትረፍረፍ Same as 107 መትረፍረፍ Same 107 በዜሮ ሊካፈል አይችልም Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/am-ET/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ማስሊያ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. ማስሊያ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows ማስሊያ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows ማስሊያ [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. ማስሊያ {@Appx_Description@} This description is used for the official application when published through Windows Store. ማስሊያ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. ቅዳ Copy context menu string ለጥፍ Paste context menu string እኩል ገደማ ነው ከ The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1፣ ዋጋ %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 ቢት {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63ኛ Sub-string used in automation name for 63 bit in bit flip 62ኛ Sub-string used in automation name for 62 bit in bit flip 61ኛ Sub-string used in automation name for 61 bit in bit flip 60ኛ Sub-string used in automation name for 60 bit in bit flip 59ኛ Sub-string used in automation name for 59 bit in bit flip 58ኛ Sub-string used in automation name for 58 bit in bit flip 57ኛ Sub-string used in automation name for 57 bit in bit flip 56ኛ Sub-string used in automation name for 56 bit in bit flip 55ኛ Sub-string used in automation name for 55 bit in bit flip 54ኛ Sub-string used in automation name for 54 bit in bit flip 53ኛ Sub-string used in automation name for 53 bit in bit flip 52ኛ Sub-string used in automation name for 52 bit in bit flip 51ኛ Sub-string used in automation name for 51 bit in bit flip 50ኛ Sub-string used in automation name for 50 bit in bit flip 49ኛ Sub-string used in automation name for 49 bit in bit flip 48ኛ Sub-string used in automation name for 48 bit in bit flip 47ኛ Sub-string used in automation name for 47 bit in bit flip 46ኛ Sub-string used in automation name for 46 bit in bit flip 45ኛ Sub-string used in automation name for 45 bit in bit flip 44ኛ Sub-string used in automation name for 44 bit in bit flip 43ኛ Sub-string used in automation name for 43 bit in bit flip 42ኛ Sub-string used in automation name for 42 bit in bit flip 41ኛ Sub-string used in automation name for 41 bit in bit flip 40ኛ Sub-string used in automation name for 40 bit in bit flip 39ኛ Sub-string used in automation name for 39 bit in bit flip 38ኛ Sub-string used in automation name for 38 bit in bit flip 37ኛ Sub-string used in automation name for 37 bit in bit flip 36ኛ Sub-string used in automation name for 36 bit in bit flip 35ኛ Sub-string used in automation name for 35 bit in bit flip 34ኛ Sub-string used in automation name for 34 bit in bit flip 33ኛ Sub-string used in automation name for 33 bit in bit flip 32ኛ Sub-string used in automation name for 32 bit in bit flip 31ኛ Sub-string used in automation name for 31 bit in bit flip 30ኛ Sub-string used in automation name for 30 bit in bit flip 29ኛ Sub-string used in automation name for 29 bit in bit flip 28ኛ Sub-string used in automation name for 28 bit in bit flip 27ኛ Sub-string used in automation name for 27 bit in bit flip 26ኛ Sub-string used in automation name for 26 bit in bit flip 25ኛ Sub-string used in automation name for 25 bit in bit flip 24ኛ Sub-string used in automation name for 24 bit in bit flip 23ኛ Sub-string used in automation name for 23 bit in bit flip 22ኛ Sub-string used in automation name for 22 bit in bit flip 21ኛ Sub-string used in automation name for 21 bit in bit flip 20ኛ Sub-string used in automation name for 20 bit in bit flip 19ኛ Sub-string used in automation name for 19 bit in bit flip 18ኛ Sub-string used in automation name for 18 bit in bit flip 17ኛ Sub-string used in automation name for 17 bit in bit flip 16ኛ Sub-string used in automation name for 16 bit in bit flip 15ኛ Sub-string used in automation name for 15 bit in bit flip 14ኛ Sub-string used in automation name for 14 bit in bit flip 13ኛ Sub-string used in automation name for 13 bit in bit flip 12ኛ Sub-string used in automation name for 12 bit in bit flip 11ኛ Sub-string used in automation name for 11 bit in bit flip 10ኛ Sub-string used in automation name for 10 bit in bit flip 9ኛ Sub-string used in automation name for 9 bit in bit flip 8ኛ Sub-string used in automation name for 8 bit in bit flip 7ኛ Sub-string used in automation name for 7 bit in bit flip 6ኛ Sub-string used in automation name for 6 bit in bit flip 5ኛ Sub-string used in automation name for 5 bit in bit flip 4ኛ Sub-string used in automation name for 4 bit in bit flip 3ኛ Sub-string used in automation name for 3 bit in bit flip 2ኛ Sub-string used in automation name for 2 bit in bit flip 1ኛ Sub-string used in automation name for 1 bit in bit flip አነስተኛ ክብደት ያለው ቢት Used to describe the first bit of a binary number. Used in bit flip ትውስታ ፍላይአውት ክፈት This is the automation name and label for the memory button when the memory flyout is closed. ትውስታ ፍላይአውት ዝጋ This is the automation name and label for the memory button when the memory flyout is open. ከላይ ያቆዩ This is the tool tip automation name for the always-on-top button when out of always-on-top mode. ወደ ሙሉ ዕይታ ይመለሱ This is the tool tip automation name for the always-on-top button when in always-on-top mode. ማኅደረ ትውስታ This is the tool tip automation name for the memory button. ታሪክ (Ctrl+H) This is the tool tip automation name for the history button. የቢት መቀያየሪያ የቁልፍ ፓድ This is the tool tip automation name for the bitFlip button. ሙሉ ቁልፍ መደብ This is the tool tip automation name for the numberPad button. ሁሉንም ማህደረ ትውስታ ያጽዱ (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. ማኅደረ ትውስታ The text that shows as the header for the memory list ማኅደረ ትውስታ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ታሪክ The text that shows as the header for the history list ታሪክ The automation name for the History pivot item that is shown when Calculator is in wide layout. ለዋጭ Label for a control that activates the unit converter mode. ሳይንሳዊ Label for a control that activates scientific mode calculator layout መደበኛ Label for a control that activates standard mode calculator layout. የቀያሪ ሁነታ Screen reader prompt for a control that activates the unit converter mode. ሳይንሳዊ ሁነታ Screen reader prompt for a control that activates scientific mode calculator layout መደበኛ ሁነታ Screen reader prompt for a control that activates standard mode calculator layout. ሁሉንም ታሪክ አጽዳ "ClearHistory" used on the calculator history pane that stores the calculation history. ሁሉንም ታሪክ አጽዳ This is the tool tip automation name for the Clear History button. ደብቅ "HideHistory" used on the calculator history pane that stores the calculation history. መደበኛ The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. ሳይንሳዊ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. ፕሮግራመር The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. ለዋጭ The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". ማስሊያ The text that shows in the dropdown navigation control for the calculator group. ለዋጭ The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". ማስሊያ The text that shows in the dropdown navigation control for the calculator group in upper case. መለወጫዎች Pluralized version of the converter group text, used for the screen reader prompt. ማስሊያዎች Pluralized version of the calculator group text, used for the screen reader prompt. ማሳያ %1 ነው {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". የሒሳብ ሓረግ %1፣ አሁን ያለው ግቤት %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ማሳያ %1 ነጥብ ነው {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. አገላለጽ %1 ነው {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". የእይታ እሴቱ ወደ ቅንጥብ ሰሌዳ ተቀድቷል Screen reader prompt for the Calculator display copy button, when the button is invoked. ታሪክ Screen reader prompt for the history flyout ማኅደረ ትውስታ Screen reader prompt for the memory flyout አስራስድስትዮሽ %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". አስርዮሽ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ስምንትዮሽ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ሁለትዮሽ %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". ሁሉንም ታሪክ አጽዳ Screen reader prompt for the Calculator History Clear button ታሪክ ጸድቷል Screen reader prompt for the Calculator History Clear button, when the button is invoked. ታሪክን ደብቅ Screen reader prompt for the Calculator History Hide button ታሪክ ፍላይአውት ክፈት Screen reader prompt for the Calculator History button, when the flyout is closed. ታሪክ ፍላይአውት ዝጋ Screen reader prompt for the Calculator History button, when the flyout is open. የማህደረ ትውስታ ማከማቻ Screen reader prompt for the Calculator Memory button የትውስታ ማከማቻ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. ሁሉንም ማህደረ ትውስታ ያጽዱ Screen reader prompt for the Calculator Clear Memory button ማህደረ ትውስታ ጸድቷል Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. የማኅደረ ትውስታ ጥሪ Screen reader prompt for the Calculator Memory Recall button ከትውስታ አስታውስ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. የማኅደረ ትውስታ መደመር Screen reader prompt for the Calculator Memory Add button ከትውስታ ደምር (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. የማኅደረ ትውስታ መቀነስ Screen reader prompt for the Calculator Memory Subtract button ከትውስታ ቀንስ (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. የትውስታ ንጥል አጽዳ Screen reader prompt for the Calculator Clear Memory button የትውስታ ንጥል አጽዳ This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. ወደ ትውስታ ንጥል ደምር Screen reader prompt for the Calculator Memory Add button in the Memory list ወደ ትውስታ ንጥል ደምር This is the tool tip automation name for the Calculator Memory Add button in the Memory list ከማህደረ ትውስታ ንጥል ነገር ይቀንሱ Screen reader prompt for the Calculator Memory Subtract button in the Memory list ከማህደረ ትውስታ ንጥል ነገር ይቀንሱ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list የትውስታ ንጥል አጽዳ Screen reader prompt for the Calculator Clear Memory button የትውስታ ንጥል አጽዳ Text string for the Calculator Clear Memory option in the Memory list context menu ወደ ትውስታ ንጥል ደምር Screen reader prompt for the Calculator Memory Add swipe button in the Memory list ወደ ትውስታ ንጥል ደምር Text string for the Calculator Memory Add option in the Memory list context menu ከማህደረ ትውስታ ንጥል ነገር ይቀንሱ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list ከማህደረ ትውስታ ንጥል ነገር ይቀንሱ Text string for the Calculator Memory Subtract option in the Memory list context menu ሰርዝ Text string for the Calculator Delete swipe button in the History list ይቅዱ Text string for the Calculator Copy option in the History list context menu ሰርዝ Text string for the Calculator Delete option in the History list context menu የታሪክ ንጥል ነገር ይሰርዙ Screen reader prompt for the Calculator Delete swipe button in the History list የታሪክ ንጥል ነገር ይሰርዙ Screen reader prompt for the Calculator Delete option in the History list context menu የኋሊት ደምሳሽ Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button ዜሮ Screen reader prompt for the Calculator number "0" button አንድ Screen reader prompt for the Calculator number "1" button ሁለት Screen reader prompt for the Calculator number "2" button ሶስት Screen reader prompt for the Calculator number "3" button አራት Screen reader prompt for the Calculator number "4" button አምስት Screen reader prompt for the Calculator number "5" button ስድስት Screen reader prompt for the Calculator number "6" button ሰባት Screen reader prompt for the Calculator number "7" button ስምንት Screen reader prompt for the Calculator number "8" button ዘጠኝ Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button እና Screen reader prompt for the Calculator And button ወይም Screen reader prompt for the Calculator Or button አይደለም Screen reader prompt for the Calculator Not button በግራ በኩል አሽከርክር Screen reader prompt for the Calculator ROL button በቀኝ በኩል አሽከርክር Screen reader prompt for the Calculator ROR button ግራ shift Screen reader prompt for the Calculator LSH button ቀኝ shift Screen reader prompt for the Calculator RSH button የማያጠቃልል ወይም Screen reader prompt for the Calculator XOR button ባለአራት ቃል መቀያየሪያ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". ድርብ ቃል መቀያየሪያ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". ቃል Screen reader prompt for the Calculator word button. Should read as "Word toggle button". ባይት መቀያየሪያ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". የቢት መቀያየሪያ የቁልፍ ፓድ Screen reader prompt for the Calculator bitFlip button ሙሉ ቁልፍ መደብ Screen reader prompt for the Calculator numberPad button የክፍልፋይ መለያ Screen reader prompt for the "." button ምዝግብ አጽዳ Screen reader prompt for the "CE" button አጽዳ Screen reader prompt for the "C" button ሲካፈል በ Screen reader prompt for the divide button on the number pad ሲባዛ Screen reader prompt for the multiply button on the number pad ይሆናል Screen reader prompt for the equals button on the scientific operator keypad ቅልብስ ቀመር Screen reader prompt for the shift button on the number pad in scientific mode. ሲቀነስ Screen reader prompt for the minus button on the number pad ሲቀነስ We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 ሲደመር Screen reader prompt for the plus button on the number pad ዳግም ዘር Screen reader prompt for the square root button on the scientific operator keypad መቶኛ Screen reader prompt for the percent button on the scientific operator keypad አወንታዊ አሉታዊ Screen reader prompt for the negate button on the scientific operator keypad አወንታዊ አሉታዊ Screen reader prompt for the negate button on the converter operator keypad ተገላቢጦሽ Screen reader prompt for the invert button on the scientific operator keypad የግራ ቅንፍ Screen reader prompt for the Calculator "(" button on the scientific operator keypad የግራ ቅንፍ፣ የክፍት ቅንፍ ቁጥር %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". የቀኝ ቅንፍ Screen reader prompt for the Calculator ")" button on the scientific operator keypad የክፍት ቅንፎች ብዛት %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ምንም የሚዘጋ ክፍት ቅንፍ የለም። {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". ሳይንሳዊ እሳቤ Screen reader prompt for the Calculator F-E the scientific operator keypad ሃይፐርቦሊክ ተግባር Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad ሳይን Screen reader prompt for the Calculator sin button on the scientific operator keypad ኮዚን Screen reader prompt for the Calculator cos button on the scientific operator keypad ሰዓት Screen reader prompt for the Calculator tan button on the scientific operator keypad ሃይፐርቦሊክ ሳይን Screen reader prompt for the Calculator sinh button on the scientific operator keypad ሃይፐርቦሊክ ኮሳይን Screen reader prompt for the Calculator cosh button on the scientific operator keypad ሃይፐርቦሊክ ታንጀንት Screen reader prompt for the Calculator tanh button on the scientific operator keypad ካሬ Screen reader prompt for the x squared on the scientific operator keypad. ኪዩብ Screen reader prompt for the x cubed on the scientific operator keypad. አርክ ሲን Screen reader prompt for the inverted sin on the scientific operator keypad. አርክ ኮዚን Screen reader prompt for the inverted cos on the scientific operator keypad. አርክ ሰያፍ Screen reader prompt for the inverted tan on the scientific operator keypad. ሃይፐርቦሊክ አርክ ኮዚን Screen reader prompt for the inverted sinh on the scientific operator keypad. ሃይፐርቦሊክ አርክ ኮዚን Screen reader prompt for the inverted cosh on the scientific operator keypad. ሃይፐርቦሊክ አርክ ሰያፍ Screen reader prompt for the inverted tanh on the scientific operator keypad. «X» ወደ አርቢ Screen reader prompt for x power y button on the scientific operator keypad. አስርኛ ወደ አርቢ Screen reader prompt for the 10 power x button on the scientific operator keypad. «e» ወደ አርቢ Screen reader for the e power x on the scientific operator keypad. 'y' ራዲካል 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. ግንድ Screen reader for the log base 10 on the scientific operator keypad ተፈጥሮዋዊ ግንድ Screen reader for the log base e on the scientific operator keypad ሞዱሎ Screen reader for the mod button on the scientific operator keypad አርቢ ቁጥር Screen reader for the exp button on the scientific operator keypad ዲግሪ ደቂቃ ሰከንድ Screen reader for the exp button on the scientific operator keypad ዲግሪዎች Screen reader for the exp button on the scientific operator keypad ኢንቲጀር ክፍል Screen reader for the int button on the scientific operator keypad ክፍልፋይ ክፍል Screen reader for the frac button on the scientific operator keypad ብዜት Screen reader for the factorial button on the basic operator keypad ዲግሪዎች መቀያየሪያ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". ግራዲያንስ መቀያየሪያ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". ራዲያንስ መቀያየሪያ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". የሁነታ ተቆልቋይ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. የምድቦች ተቆልቋይ Screen reader prompt for the Categories dropdown field. ከላይ ያቆዩ Screen reader prompt for the Always-on-Top button when in normal mode. ወደ ሙሉ ዕይታ ይመለሱ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. ከላይ ያቆዩ (Alt+ወደላይ) This is the tool tip automation name for the Always-on-Top button when in normal mode. ወደ ሙሉ ዕይታ ይመለሱ (Alt+ወደታች) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. ከ%1 %2 ይቀይሩ Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. ከ%1 ነጥብ %2 ይቀይሩ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. ወደ %1 %2 ይቀይራል Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 %3 %4 ነው Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. የግቤት አሃድ Screen reader prompt for the Unit Converter Units1 i.e. top units field. የውጤት አሃድ Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. አካባቢ Unit conversion category name called Area (eg. area of a sports field in square meters) ውሂብ Unit conversion category name called Data ጉልበት Unit conversion category name called Energy. (eg. the energy in a battery or in food) ርዝመት Unit conversion category name called Length ኃይል Unit conversion category name called Power (eg. the power of an engine or a light bulb) ፍጥነት Unit conversion category name called Speed ጊዜ Unit conversion category name called Time የድምጽ መጠን Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) ሙቀት Unit conversion category name called Temperature ክብደት እና ግዝፈት Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ግፊት Unit conversion category name called Pressure ማዕዘን Unit conversion category name called Angle ምንዛሬ Unit conversion category name called Currency ፈሳሽ አውንስ (ዩኬ) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume ፈሳሽ አውንስ (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume ጋሎን (ዩኬ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጋል (ዩ ኬ) An abbreviation for a measurement unit of volume ጋሎን (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጋል (ዩ ኤስ) An abbreviation for a measurement unit of volume ሊትር A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume ሚሊሊትር A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሚሊ An abbreviation for a measurement unit of volume ፒንት (እንግሊዝ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ነጥብ (ዩኬ) An abbreviation for a measurement unit of volume ፒንት (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ነጥብ (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume የሾርባ ማንኪያ (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume የሻይ ማንኪያ (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume የሾርባ ማንኪያ (እንግሊዝ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (ዩኬ) An abbreviation for a measurement unit of volume የሻይ ማንኪያ (እንግሊዝ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (ዩኬ) An abbreviation for a measurement unit of volume ኳርት (እንግሊዝ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኩንታል (ዩኬ) An abbreviation for a measurement unit of volume ኳርት (ዩናይትድ ስቴትስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኩንታል (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume ዋንጫዎች (ዩ ኤስ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኩባያ (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data ካሎሪ An abbreviation for a measurement unit of energy ሳሜ An abbreviation for a measurement unit of length ሳሜ/ሰከንድ An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ጫ³ An abbreviation for a measurement unit of volume ኢን³ An abbreviation for a measurement unit of volume ሜ³ An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy An abbreviation for a measurement unit of length ጫማ/ሰከንድ An abbreviation for a measurement unit of speed ጫማ•ፓውንድ An abbreviation for a measurement unit of energy ጊባ An abbreviation for a measurement unit of data ጊባ An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area የፈረስ ጉልበት (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of power ሰዓ An abbreviation for a measurement unit of time ኢን An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy ኪዋሰ An abbreviation for a measurement unit of electricity consumption An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data ኪሎ ካሎሪ An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy ኪሜ An abbreviation for a measurement unit of length ኪሜ/ሰ An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data An abbreviation for a measurement unit of length ሜትር/ሰ An abbreviation for a measurement unit of speed ማይክሮ ሜትር An abbreviation for a measurement unit of length ማይክሮ ሰከንድ An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed ሚሜ An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time ደቂ An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ጫማ•ፓውንድ/ደቂቃ An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time ሳሜ² An abbreviation for a measurement unit of area ጫ² An abbreviation for a measurement unit of area ኢን² An abbreviation for a measurement unit of area ኪሜ² An abbreviation for a measurement unit of area ሜ² An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area ሚሊሜትር² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time ያር An abbreviation for a measurement unit of length An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የብሪታኒያ ተርማል አሀዶች A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቢቲዩዎች/ደቂቃ A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ተርማል ካሎሪ A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሴንቲ ሜትሮች A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሳንቲሜትር በሰከንድ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜንቲሜትር ኪዩብ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጫማ ኪዩብ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኢንች ኪዩብ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜትር ኪዩብ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ያርዶች ኪዩብ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቀናት A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሴሊሸስ An option in the unit converter to select degrees Celsius ፋራሃናይት An option in the unit converter to select degrees Fahrenheit ኤሌክትሮን ቮልቶች A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጫማ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጫማ በሰከንድ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጫማ-ፓውንድዎች A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጫማ-ፓውንድዎች/በሰከንድ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጊጋቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጊጋባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሄክታር A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የፈረስ ጉልበት (ዩናይትድ ስቴትስ) A measurement unit for power ሰዓታት A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኢንች A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጁውል A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎዋት-ሰዓቶች A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኬልቪን An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". ኪሎቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የምግብ ካሎሪ A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎጁውል A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎሜትር A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎሜትር በሰአት A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎዋት A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኖትስ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ማች A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) ሜጋቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜጋባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜትር A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜትር በሰከንድ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ማይክሮንስ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ማይክሮሰከንድ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ማይል A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ማይል በሰአት A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሚሊሜትር A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሚሊሰከንድ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ደቂቃዎች A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኒብል A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ናኖሜትር A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የመርከበኛ ማይሎች A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፔታቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፔታባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሰከንዶች A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ሳንቲሜትር A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ጫማ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ኢንች A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ኪሎሜትር A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ሜትር A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ማይል A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ሚሊሜትር A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካሬ ክንድ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቴራቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቴራባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዋት A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሳምንታት A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ክንድ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዓመታት A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight ዲግሪ An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight ዳግ An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight An abbreviation for a measurement unit of weight ሄግ An abbreviation for a measurement unit of weight ኪግ An abbreviation for a measurement unit of weight ቶን (ዩኬ) An abbreviation for a measurement unit of weight ሚግ An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight ፓው An abbreviation for a measurement unit of weight ቶን (ዩናይትድ ስቴትስ) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight ካራቶች A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዲግሪዎች A measurement unit for Angle. ራዲያንስ A measurement unit for Angle. ግራዲያንስ A measurement unit for Angle. ከባቢ አየር A measurement unit for Pressure. አሞሌዎች A measurement unit for Pressure. ኪሎ ፓስካል A measurement unit for Pressure. የሜርኩሪ ሚሊሊትሮች A measurement unit for Pressure. ፓስካል A measurement unit for Pressure. ፓውንድ በስክዌር ኢንች A measurement unit for Pressure. ሴንቲግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዴካግራም A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዴሲግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሄክቶግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኪሎግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሎንግ ቶን (ዩኬ) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሚሊግራም A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) አውንስ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፓውንድ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) አጭር ቶን (ዩናይትድ ስቴትስ) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ስቶን A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜትሪክ ቶን A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሲዲዎች A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሲዲዎች A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የኳስ ሜዳዎች A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የኳስ ሜዳዎች A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፍሎፒ ዲስኮች A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፍሎፒ ዲስኮች A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዲቪዲዎች A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዲቪዲዎች A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ባትሪዎች AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ባትሪዎች AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ወረቀት ማስያዣዎች A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ወረቀት ማስያዣዎች A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጃምቦ ጀቶች A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጃምቦ ጀቶች A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የመብራት አምፑሎች A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የመብራት አምፑሎች A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፈረሶች A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፈረሶች A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) መታጠቢያ ገንዳዎች A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) መታጠቢያ ገንዳዎች A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ደቃቅ በረዶዎች A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ደቃቅ በረዶዎች A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዝሆኖች An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዝሆኖች An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዔሊዎች A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዔሊዎች A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጀቶች A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጀቶች A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዓሳነባሪዎች A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዓሳነባሪዎች A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የቡና ስኒዎች A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የቡና ስኒዎች A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) መዋኛ ገንዳዎች An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) መዋኛ ገንዳዎች An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) እጆች A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) እጆች A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ነጠላ ወረቀቶች A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ነጠላ ወረቀቶች A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካስሎች A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ካስሎች A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሙዞች A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሙዞች A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የኬክ ቁራሾች A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የኬክ ቁራሾች A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የባቡር ሞተርዎች A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የባቡር ሞተርዎች A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የእግር ኳስ ኳሶች A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የእግር ኳስ ኳሶች A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የማኅደረ ትውስታ ንጥል ነገር Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) ተመለስ Screen reader prompt for the About panel back button ተመለስ Content of tooltip being displayed on AboutControlBackButton የMicrosoft ሶፍትዌር የፈቃድ ውሎች Displayed on a link to the Microsoft Software License Terms on the About panel ቅድመ ዕይታ Label displayed next to upcoming features የ Microsoft ግላዊነት መግለጫ Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. ሁሉም መብቶች በህግ የተከበሩ ናቸው። {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) ለ Windows ማስሊያ እንዴት ማበርከት እንደሚችሉ ለማወቅ ፕሮጀክቱን %HL%GitHub%HL% ላይ ይመልከቱ ። {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel ስለ Subtitle of about message on Settings page ግብረመልስ ላክ The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app እስካሁን ምንም ታሪክ የለም። The text that shows as the header for the history list በማህደረ ትውስታ ውስጥ የተቀመጠ ምንም ነገር የለም። The text that shows as the header for the memory list ማኅደረ ትውስታ Screen reader prompt for the negate button on the converter operator keypad ይህ አገላለጽ ሊለጠፍ አይችልም The paste operation cannot be performed, if the expression is invalid. ጊቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ጊቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኬቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኬቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ሜቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፔቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ፔቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቴቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ቴቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኤግዛቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኤግዛባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኤክስቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ኤክስቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዜታቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዜታባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዜቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዜቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዩታቢትስ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዮታባይትስ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዮቢቢቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ዮቢባይቶች A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) የቀን ስሌት የስሌት ሁነታ Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". አክል Add toggle button text ቀናትን ይደምሩ ወይም ይቀንሱ Add or Subtract days option ቀን Date result label በቀናት መካከል ያለ ልዩነት Date difference option ቀናት Add/Subtract Days label ልዩነት Difference result label From Date Header for Difference Date Picker ወራት Add/Subtract Months label ቀንስ Subtract toggle button text እስከ To Date Header for Difference Date Picker ዓመታት Add/Subtract Years label ቀኑ ከገድብ አልፏል Out of bound message shown as result when the date calculation exceeds the bounds ቀን ቀናት ወር ወራት ተመሳሳይ ቀናት ሳምንት ሳምንታት ዓመት ዓመታት ልዩነት %1 Automation name for reading out the date difference. %1 = Date difference የሚሰጠው ቀን %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 አስሊ ሁነታ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 ቀያሪ ሁነታ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. የቀን ስሌት ሁነታ Automation name for when the mode header is focused and the current mode is Date calculation. ታሪክ እና የማህደረ ትውስታ ዝርዝሮች Automation name for the group of controls for history and memory lists. የትውስታ መቆጣጠሪያዎች Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) መደበኛ ቀመሮች Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) የማሳያ መቆጣጠሪያዎች Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) መደበኛ ስሌቶች Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) የቁጥር መደብ Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) የማዕዘን ስሌቶች Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) ሳይንሳዊ ስሌቶች Automation name for the group of Scientific functions. ራዲክስ መረጣ Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix የፕሮግራመር አከናዋኞች Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). የግቤት ሁኔታ ምርጫ Automation name for the group of input mode toggling buttons. ቢት መምረጫ ቁልፍ ሰሌዳ Automation name for the group of bit toggling buttons. አገላለጽ ወደ ግራ ሸብልል Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. አገላለጽ ወደ ቀኝ ሸብልል Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. ከከፍተኛው የአሃዞች ብዛት ተደርሷል። %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 ወደ የማህደረ ትውስታ ተቀምጧል {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". የማህደረ ትውስታ ማስገቢያ %1 %2 ነው {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". የማህደረ ትውስታ ማስገቢያ %1 ጸድቷል {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". ሲካፈል Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ሲባዛ Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ሲቀነስ Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. ሲደመር Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ኃይል Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y ሩት Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. ሞድ Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ወደግራ ማቀያየር Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. ወደቀኝ ማቀያየር Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ወይም Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ወይም Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. እና Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. የዘመነው %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" የዝማኔ ፍጥነቶች The text displayed for a hyperlink button that refreshes currency converter ratios. የውሂብ ወጪዎች ተግባራዊ ሊሆኑ ይችላሉ። The text displayed when users are on a metered connection and using currency converter. አዳዲስ ተመኖችን ማግኘት አልተቻለም። ቆይተው እንደገና ይሞክሩ። The text displayed when currency ratio data fails to load. ከመስመር ውጭ። እባክዎ የእርስዎን %HL%የአውታረ መረብ የክንውን አውዶች%HL% ይፈትሹ Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} የምንዛሬ ተመኖችን በማዘመን ላይ This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. የምንዛሬ ተመኖች ዘምነዋል This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. ተመኖችን ማዘመን አልተቻለም This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} ሁሉንም ማህደረ ትውስታ ያጽዱ (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. ሁሉንም ማህደረ ትውስታ ያጽዱ Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ሳይን ዲግሪዎች Name for the sine function in degrees mode. Used by screen readers. ሳይን ራዲያኖች Name for the sine function in radians mode. Used by screen readers. ሳይን ግራዲያኖች Name for the sine function in gradians mode. Used by screen readers. ኢንቨርስ ሳይን ዲግሪዎች Name for the inverse sine function in degrees mode. Used by screen readers. ኢንቨርስ ሳይን ራዲያኖች Name for the inverse sine function in radians mode. Used by screen readers. ኢንቨርስ ሳይን ግራዲያኖች Name for the inverse sine function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ሳይን Name for the hyperbolic sine function. Used by screen readers. ኢንቨርስ ሃይፐርቦሊክ ሳይን Name for the inverse hyperbolic sine function. Used by screen readers. ኮሳይን ዲግሪዎች Name for the cosine function in degrees mode. Used by screen readers. ኮሳይን ራዲያንስ Name for the cosine function in radians mode. Used by screen readers. ኮሳይን ግራዲያንስ Name for the cosine function in gradians mode. Used by screen readers. ኢንቨርስ ኮሳይን ዲግሪዎች Name for the inverse cosine function in degrees mode. Used by screen readers. ኢንቨርስ ኮሳይን ራዲያንዎች Name for the inverse cosine function in radians mode. Used by screen readers. ኢንቨርስ ኮሳይን ግራዲያንዎች Name for the inverse cosine function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ኮሳይን Name for the hyperbolic cosine function. Used by screen readers. ኢንቨርስ ሃይፐርቦሊክ ኮሳይን Name for the inverse hyperbolic cosine function. Used by screen readers. ታንጀንት ዲግሪዎች Name for the tangent function in degrees mode. Used by screen readers. ታንጀንት ራዲያኖች Name for the tangent function in radians mode. Used by screen readers. ታንጀንት ግራዲያኖች Name for the tangent function in gradians mode. Used by screen readers. ኢንቨርስ ታንጀንት ዲግሪዎች Name for the inverse tangent function in degrees mode. Used by screen readers. ኢንቨርስ ታንጀንት ራዲያኖች Name for the inverse tangent function in radians mode. Used by screen readers. ኢንቨርስ ታንጀንት ግራዲያኖች Name for the inverse tangent function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ታንጀንት Name for the hyperbolic tangent function. Used by screen readers. ኢንቨርስ ሃይፐርቦሊክ ታንጀንት Name for the inverse hyperbolic tangent function. Used by screen readers. ሴካንት ዲግሪ Name for the secant function in degrees mode. Used by screen readers. ሴካንት ራዲያን Name for the secant function in radians mode. Used by screen readers. ሴካንት ግራዲያን Name for the secant function in gradians mode. Used by screen readers. ግልባጭ ሴካንት ዲግሪ Name for the inverse secant function in degrees mode. Used by screen readers. ግልባጭ ሴካንት ራዲያን Name for the inverse secant function in radians mode. Used by screen readers. ግልባጭ ሴካንት ግራዲያን Name for the inverse secant function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ሴካንት Name for the hyperbolic secant function. Used by screen readers. ግልባጭ ሃይፐርቦሊክ ሴካንት Name for the inverse hyperbolic secant function. Used by screen readers. ኮሴካንት ዲግሪ Name for the cosecant function in degrees mode. Used by screen readers. ኮሴካንት ራዲያን Name for the cosecant function in radians mode. Used by screen readers. ኮሴካንት ግራዲያን Name for the cosecant function in gradians mode. Used by screen readers. ግልባጭ ኮሴካንት ዲግሪ Name for the inverse cosecant function in degrees mode. Used by screen readers. ግልባጭ ኮሴካንት ራዲያን Name for the inverse cosecant function in radians mode. Used by screen readers. ግልባጭ ኮሴካንት ግራዲያን Name for the inverse cosecant function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ኮሴካንት Name for the hyperbolic cosecant function. Used by screen readers. ግልባጭ ሃይፐርቦሊክ ኮሴካንት Name for the inverse hyperbolic cosecant function. Used by screen readers. ኮታንጀንት ዲግሪ Name for the cotangent function in degrees mode. Used by screen readers. ኮታንጀንት ራዲያን Name for the cotangent function in radians mode. Used by screen readers. ኮታንጀንት ግራዲያን Name for the cotangent function in gradians mode. Used by screen readers. ግልባጭ ኮታንጀንት ዲግሪ Name for the inverse cotangent function in degrees mode. Used by screen readers. ግልባጭ ኮታንጀንት ራዲያን Name for the inverse cotangent function in radians mode. Used by screen readers. ግልባጭ ኮታንጀንት ግራዲያን Name for the inverse cotangent function in gradians mode. Used by screen readers. ሃይፐርቦሊክ ኮታንጀንት Name for the hyperbolic cotangent function. Used by screen readers. ግልባጭ ሃይፐርቦሊክ ኮታንጀንት Name for the inverse hyperbolic cotangent function. Used by screen readers. ኪዩብ ሩት Name for the cube root function. Used by screen readers. የመዝገብ ማስታወሻ መሠረት Name for the logbasey function. Used by screen readers. ፍጹም እሴት Name for the absolute value function. Used by screen readers. ወደግራ ማቀያየር Name for the programmer function that shifts bits to the left. Used by screen readers. ወደቀኝ ማቀያየር Name for the programmer function that shifts bits to the right. Used by screen readers. ፋክቶሪያል Name for the factorial function. Used by screen readers. ዲግሪ ደቂቃ ሰከንድ Name for the degree minute second (dms) function. Used by screen readers. ተፈጥሯዊ ሎግ Name for the natural log (ln) function. Used by screen readers. ካሬ Name for the square function. Used by screen readers. y ሩት Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 ምድብ {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". የ Microsoft አገልግሎቶች ስምምነት Displayed on a link to the Microsoft Services Agreement in the about this app information ፒዮንግ An abbreviation for a measurement unit of area. ፒዮንግ A measurement unit for area. From Date Header for AddSubtract Date Picker የስሌት ውጤቱን ወደ ግራ ይሸብልሉ Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. የስሌት ውጤቱን ወደ ቀኝ ይሸብልሉ Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. ማስላት አልተሳካም Text displayed when the application is not able to do a calculation የመዝገብ ማስታወሻ መሠረት Y Screen reader prompt for the logBaseY button ትሪጎኖሜትሪ Displayed on the button that contains a flyout for the trig functions in scientific mode. ተግባር Displayed on the button that contains a flyout for the general functions in scientific mode. እኩል ያለመሆን Displayed on the button that contains a flyout for the inequality functions. እኩል ያለመሆን Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. ቢት መለወጥ Displayed on the button that contains a flyout for the bit shift functions in programmer mode. ቅልብስ ቀመር Screen reader prompt for the shift button in the trig flyout in scientific mode. ሃይፐርቦሊክ ተግባር Screen reader prompt for the Calculator button HYP in the scientific flyout keypad ሴካንት Screen reader prompt for the Calculator button sec in the scientific flyout keypad ሃይፐርቦሊክ ሴካንት Screen reader prompt for the Calculator button sech in the scientific flyout keypad አርክ ሴካንት Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ሃይፐርቦሊክ አርክ ሴካንት Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ኮሴካንት Screen reader prompt for the Calculator button csc in the scientific flyout keypad ሃይፐርቦሊክ ኮሴካንት Screen reader prompt for the Calculator button csch in the scientific flyout keypad አርክ ኮሴካንት Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ሃይፐርቦሊክ አርክ ኮሴካንት Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ኮታንጀንት Screen reader prompt for the Calculator button cot in the scientific flyout keypad ሃይፐርቦሊክ ኮታንጀንት Screen reader prompt for the Calculator button coth in the scientific flyout keypad አርክ ኮታንጀንት Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ሃይፐርቦሊክ አርክ ኮታንጀንት Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ወለል Screen reader prompt for the Calculator button floor in the scientific flyout keypad ጣሪያ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ዘፈቀደ Screen reader prompt for the Calculator button random in the scientific flyout keypad ፍጹም እሴት Screen reader prompt for the Calculator button abs in the scientific flyout keypad ዩለር ቁጥር Screen reader prompt for the Calculator button e in the scientific flyout keypad ሁለተኛ ወደ አርቢ Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. አይደለም Screen reader prompt for the Calculator button nor in the scientific flyout keypad አይደለም Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. በመሸከም በግራ በኩል አሽከርክር Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad በመሸከም በቀን በኩል አሽከርክር Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad ግራ ማቀያየር Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad የግራ ማቀያየር Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. ቀኝ መለወጥ Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad የቀኝ ማቀያየር Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. አርትሜቲክ መለወጥ Label for a radio button that toggles arithmetic shift behavior for the shift operations. ምክንያታዊ መለወጥ Label for a radio button that toggles logical shift behavior for the shift operations. በክበባዊ ማቀያየር ያሽከርክሩ Label for a radio button that toggles rotate circular behavior for the shift operations. በተላላፊ ክበባዊ ማቀያየር ያሽከርክሩ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ኪዩብ ሩት Screen reader prompt for the cube root button on the scientific operator keypad ትሪጎኖሜትሪ Screen reader prompt for the square root button on the scientific operator keypad ተግባሮች Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad የሳይንሳዊ ከዋኝ ፓነሎች Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad የፕሮግራመር ከዋኝ ፓነሎች Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ከፍተኛ ክብደት ያለው ቢት Used to describe the last bit of a binary number. Used in bit flip በግራፍ መግለፅ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. ንድፍ Screen reader prompt for the plot button on the graphing calculator operator keypad በራስ ሰር የታደሰ እይታ (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. የግራፍ እይታ Screen reader prompt for the graph view button. የራስ ሰር የበለጠ ልክ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set በእጅ ማስተካከያ Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set የግራፍ እይታ ዳግም ተጀምሯል Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph አጉላ (Ctrl + መደመር) This is the tool tip automation name for the Calculator zoom in button. አጉላ Screen reader prompt for the zoom in button. አሳንስ (Ctrl + መቀነስ) This is the tool tip automation name for the Calculator zoom out button. አሳንስ Screen reader prompt for the zoom out button. እኩልታ አክል Placeholder text for the equation input button በዚህ ጊዜ ለማጋራት አልተቻለም። If there is an error in the sharing action will display a dialog with this text. እሺ Used on the dismiss button of the share action error dialog. በWindows ማስሊያ ምን ግራፍ እንዳደረኩ ተመልከት Sent as part of the shared content. The title for the share. እኩልታዎች Header that appears over the equations section when sharing ተለዋዋጮች Header that appears over the variables section when sharing እኩልታዎች ያሉት ግራፍ ምስል Alt text for the graph image when output via Share ተለዋዋጮች Header text for variables area ደረጃ Label text for the step text box ዝቅተኛ Label text for the min text box ከፍተኛ Label text for the max text box ቀለም Label for the Line Color section of the style picker ቅጥ Label for the Line Style section of the style picker የተግባር ትንታኔ Title for KeyGraphFeatures Control ተግባር ምንም አግዳሚ ተጠጊ አይነኬዎች የሉትም። Message displayed when the graph does not have any horizontal asymptotes ተግባር ምንም ጉርብ ነጥቦች የሉትም። Message displayed when the graph does not have any inflection points ተግባር ምንም ከፍተኛ ነጥቦች የሉትም። Message displayed when the graph does not have any maxima ተግባር ምንም ዝቅተኛ ነጥቦች የሉትም። Message displayed when the graph does not have any minima ወጥ String describing constant monotonicity of a function የሚቀንስ String describing decreasing monotonicity of a function የተግባሩን አንድ አይነትነት ማወቅ አልተቻለም። Error displayed when monotonicity cannot be determined የሚጨምር String describing increasing monotonicity of a function የተግባሩ አንድ አይነትነት አይታወቅም። Error displayed when monotonicity is unknown ተግባር ምንም ገዳዳ ተጠጊ አይነኬዎች የለውም። Message displayed when the graph does not have any oblique asymptotes የተግባሩን አቻነት ማወቅ አልተቻለም። Error displayed when parity is cannot be determined ተግባሩ ሙሉ ነው Message displayed with the function parity is even ተግባሩ ሙሉም ጎዶሎም አይደለም። Message displayed with the function parity is neither even nor odd ተግባሩ ጎዶሎ ነው። Message displayed with the function parity is odd የተግባሩ አቻነት አይታወቅም። Error displayed when parity is unknown ለዚህ ተግባር ድግግሞሽ አይደገፍም። Error displayed when periodicity is not supported ተግባሩ ተደጋጋሚ አይደለም። Message displayed with the function periodicity is not periodic የተግባሩ ድግግሞች አይታወቅም። Message displayed with the function periodicity is unknown እነዚህ ባህሪያት በማስሊያ ለማስላት በጣም ውስብስብ ናቸው፦ Error displayed when analysis features cannot be calculated ተግባር ምንም ቋሚ ተጠጊ አይነኬዎች የሉትም። Message displayed when the graph does not have any vertical asymptotes ተግባር ምንም x-ማቋረጫዎች የሉትም። Message displayed when the graph does not have any x-intercepts ተግባር ምንም y-ማቋረጫዎች የሉትም። Message displayed when the graph does not have any y-intercepts ጎራ Title for KeyGraphFeatures Domain Property አግዳሚ ተጠጊ አይነኬዎች Title for KeyGraphFeatures Horizontal aysmptotes Property ጉርብ ነጥቦች Title for KeyGraphFeatures Inflection points Property ትንታኔ ለዚህ ተግባር የሚደገፍ አይደለም። Error displayed when graph analysis is not supported or had an error. ትንታኔ የሚደገፈው በ f(x) ቅርጸት ብቻ ላሉት ተግባራት ብቻ ነው፡፡ ለምሳሌ:- y=x Error displayed when graph analysis detects the function format is not f(x). ከፍተኛ Title for KeyGraphFeatures Maxima Property ዝቅተኛ Title for KeyGraphFeatures Minima Property አንድ አይነትነት Title for KeyGraphFeatures Monotonicity Property ሰያፍ ተጠጊ አይነኬዎች Title for KeyGraphFeatures Oblique asymptotes Property አቻነት Title for KeyGraphFeatures Parity Property ነጥብ Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. ክልል Title for KeyGraphFeatures Range Property ቋሚ ተጠጊ አይነኬዎች Title for KeyGraphFeatures Vertical asymptotes Property X-ማቋረጫ Title for KeyGraphFeatures XIntercept Property Y-ማቋረጫ Title for KeyGraphFeatures YIntercept Property ትንታኔ ለተግባሩ ሊፈጸም አይችልም። ለዚህ ተግባር ጎራ ማስላት አልተቻለም። Error displayed when Domain is not returned from the analyzer. ለዚህ ተግባር ክልል ማስላት አልተቻለም። Error displayed when Range is not returned from the analyzer. ከመጠን በላይ (ቁጥሩ በጣም ትልቅ ነው) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ይህንን እኩልታ ግራፍ ለማድረግ ራዲያንት ሞድ ያስፈልጋል። Error that occurs during graphing when radians is required. ይህንን ተግባር ግራፍ ለማድረግ በጣም ውስብስብ ነው Error that occurs during graphing when the equation is too complex. ይህ ይህንን እኩልታ ግራፍ ለማድረግ ዲግሪ ሞድ ያስፈልጋል Error that occurs during graphing when degrees is required የብዜት ተግባር ልክ ያልሆነ ክርክር አለው Error that occurs during graphing when a factorial function has an invalid argument. የተግባር ብዜት ግራፍ ለማድረግ ብጣም ትልቅ ክርክር አለው Error that occurs during graphing when a factorial has a large n ሞዱሎን ከሙሉ ቁጥሮች ጋር ብቻ መጠቀም ይቻላል Error that occurs during graphing when modulo is used with a float. እኩልታው መፍትሔ የለውም Error that occurs during graphing when the equation has no solution. በዜሮ ሊካፈል አይችልም Error that occurs during graphing when a divison by zero occurs. እኩልታው በጋራ የተለዩ ምክኒያታዊ ሁኔታዎችን ይዟል Error that occurs during graphing when mutually exclusive conditions are used. እኩልታ ከጎራ ውጪ ነው Error that occurs during graphing when the equation is out of domain. ይህንን ቀመር በግራፍ መገልፅ አይደገፍም Error that occurs during graphing when the equation is not supported. እኩልታው መክፈቻ ቅንፍ የለውም Error that occurs during graphing when the equation is missing a ( እኩልታው መዝጊያ ቅንፍ የለውም Error that occurs during graphing when the equation is missing a ) በቁጥሩ ውስጥ በጣም ብዙ አስርዮሽ ነጥቦች አሉ Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 አስርዮሽ ነጥብ አሃዞች የሉትም Error that occurs during graphing with a decimal point without digits ያልተጠበቀ የገለፃ ማክተሚያ Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* በገለፃው ውስጥ ያልተጠበቁ ቁምፊዎች Error that occurs during graphing when there is an unexpected token. በገለፃው ውስጥ የማያገለግሉ ቁምፊዎች Error that occurs during graphing when there is an invalid token. በጣም ብዙ የእኩል ይሆናል ምልክቶች አሉ Error that occurs during graphing when there are too many equals. ተግባሩ ቢያንስ x ወይም y ተለዋጮች መያዝ አለበት። Error that occurs during graphing when the equation is missing x or y. ልክ ያልሆነ ገለፃ Error that occurs during graphing when an invalid syntax is used. ገለፃው ባዶ ነው Error that occurs during graphing when the expression is empty እኩል ይሆናል ከእኩልታ ውጪ ጥቅም ላይ ውሏል Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ከተግባር ስም በኋላ ቅንፍ የለም Error that occurs during graphing when parenthesis are missing after a function. የሒሳብ ቀመር የተሳሳተ የቁጥር ግቤት አለው Error that occurs during graphing when a function has the wrong number of parameters የተለዋጭ ስም ልክ ያልሆነ ነው Error that occurs during graphing when a variable name is invalid. እኩልታው መክፈቻ ቅንፍ የለውም Error that occurs during graphing when a { is missing እኩልታው መዝጊያ ቅንፍ የለውም Error that occurs during graphing when a } is missing. “i”እና ”I” ን እንደ ተለዋጭ ስም መጠቀም አይቻልም Error that occurs during graphing when i or I is used. እኩልታው ግራፍ ሊደረግ አልቻለም General error that occurs during graphing. አስርዮሹ በተሰጠው መሰረት ሊፈታ አይችልም Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). መሰረቱ ከ2 መብለጥ እና ከ36 ማነስ አለበት Error that occurs during graphing when the base is out of range. አንድ የሒሳብ ክወና ከግቤቶቹ አንዱ ተለዋዋጭ እንዲሆን ይፈለጋል Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. እኩልታ ምክኒያታዊ እና ሚዛናዊ አንቀሳቃሾችን በመቀላቀል ላይ ነው Error that occurs during graphing when operands are mixed. Such as true and 1. x ወይም y ን በላይ ወይም በታች ወሰን መጠቀም አይቻልም Error that occurs during graphing when x or y is used in integral upper limits. በውስን ነጥቡ ላይ x ወይም y ን መጠቀም አይቻልም Error that occurs during graphing when x or y is used in the limit point. ውስብስብ እልቀ ቢስ መጠቀም አይቻልም Error that occurs during graphing when complex infinity is used በእኩል አይደለም ውስጥ ውስብስብ ቁጥሮች መጠቀም አይቻልም Error that occurs during graphing when complex numbers are used in inequalities. ወደ ስራ ዝርዝር ተመለስ This is the tooltip for the back button in the equation analysis page in the graphing calculator ወደ ስራ ዝርዝር ተመለስ This is the automation name for the back button in the equation analysis page in the graphing calculator የትንታኔ ተግባር This is the tooltip for the analyze function button የትንታኔ ተግባር This is the automation name for the analyze function button የትንታኔ ተግባር This is the text for the for the analyze function context menu command እኩልታ አስወግድ This is the tooltip for the graphing calculator remove equation buttons እኩልታ አስወግድ This is the automation name for the graphing calculator remove equation buttons እኩልታ አስወግድ This is the text for the for the remove equation context menu command አጋራ This is the automation name for the graphing calculator share button. አጋራ This is the tooltip for the graphing calculator share button. የእኩልታ ቅጥ ለውጥ This is the tooltip for the graphing calculator equation style button የእኩልታ ቅጥ ለውጥ This is the automation name for the graphing calculator equation style button የእኩልታ ቅጥ ለውጥ This is the text for the for the equation style context menu command እኩልታን አሳይ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. እኩልታን ደብቅ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. እኩልታ %1 አሳይ {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. እኩልታ %1 ደብቅ {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ክትትል አቁም This is the tooltip/automation name for the graphing calculator stop tracing button ክትትል ጀምር This is the tooltip/automation name for the graphing calculator start tracing button ግራፍ ማያ መስኮት፣ ሸ-ዘንግ በ %1 እና %2 መካከል፣ ቀ-ዘንግ በ %3 እና %4 መካከል፣ %5 እኩልታዎችን በማሳየት ላይ {Locked="%1","%2", "%3", "%4", "%5"}. ተንሸራታቹን አዋቅር This is the tooltip text for the slider options button in Graphing Calculator ተንሸራታቹን አዋቅር This is the automation name text for the slider options button in Graphing Calculator ወደ እኩልታ ሁኔታ ይቀይሩ Used in Graphing Calculator to switch the view to the equation mode ወደ ግራፍ ሁኔታ ይቀይሩ Used in Graphing Calculator to switch the view to the graph mode ወደ እኩልታ ሁኔታ ይቀይሩ Used in Graphing Calculator to switch the view to the equation mode አሁን ያለው ሁኔታ የእኩልታ ሁኔታ ነው Announcement used in Graphing Calculator when switching to the equation mode አሁን ያለው ሁኔታ የግራፍ ሁኔታ ነው Announcement used in Graphing Calculator when switching to the graph mode መስኮት Heading for window extents on the settings ዲግሪዎች Degrees mode on settings page ግራዲያንስ Gradian mode on settings page ራዲያንስ Radians mode on settings page አሃዶች Heading for Unit's on the settings ዕይታን ዳግም አስጀምር Hyperlink button to reset the view of the graph X-ከፍተኛ X maximum value header X-ዝቅተኛ X minimum value header Y-ከፍተኛ Y Maximum value header Y-ዝቅተኛ Y minimum value header የግራፍ አማራጮች This is the tooltip text for the graph options button in Graphing Calculator የግራፍ አማራጮች This is the automation name text for the graph options button in Graphing Calculator የግራፍ አማራጮች Heading for the Graph options flyout in Graphing mode. የሚለዋወጡ አማራጮች Screen reader prompt for the variable settings toggle button ተለዋዋጭ አማራጮችን ቀያይር Tool tip for the variable settings toggle button የመስመር ውፍረት Heading for the Graph options flyout in Graphing mode. የመስመር አማራጮች Heading for the equation style flyout in Graphing mode. ትንሽ የመስመር ስፋት Automation name for line width setting መካከለኛ የመስመር ስፋት Automation name for line width setting ትልቅ የመስመር ስፋት Automation name for line width setting በጣም ትልቅ የመስመር ስፋት Automation name for line width setting የሒሳብ ሓረግ ያስገቡ this is the placeholder text used by the textbox to enter an equation ይቅዱ Copy menu item for the graph context menu ቁረጥ Cut menu item from the Equation TextBox ገልብጥ Copy menu item from the Equation TextBox ለጥፍ Paste menu item from the Equation TextBox መልስ Undo menu item from the Equation TextBox ሁሉንም ይምረጡ Select all menu item from the Equation TextBox የተግባር ግቤት The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. የተግባር ግቤት The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. የሂሳብ ተግባር ማስገቢያ መቃን The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. ተለዋዋጭ መቃን The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. ተለዋዋጭ ዝርዝር The automation name for the Variable ListView that is shown when Calculator is in graphing mode. ተለዋዋጭ %1 ንጥል ነገር ዝርዝር The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. ተለዋዋጭ የዋጋ የፅሑፍ ሳጥን The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. ተለዋዋጭ የዋጋ ተንሸራታች The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. ተለዋዋጭ ትንሹ የዋጋ ጽሁፍ ሳጥን The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. ተለዋዋጭ የደረጃ ዋጋ የጽሁፍ ሳጥን The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. ተለዋዋጭ ከፍተኛው ዋጋ የፅሑፍ ሳጥን The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ድፍን መስመር ቅጥ Name of the solid line style for a graphed equation ነጥብ የመስመር ቅጥ Name of the dotted line style for a graphed equation ሰረዝ መስመር ቅጥ Name of the dashed line style for a graphed equation የባሕር ኃይል ሰማያዊ Name of color in the color picker የባህር አረፋ Name of color in the color picker ወይን ጠጅ Name of color in the color picker አረንጓዴ Name of color in the color picker ፈዛዛ አረንጓዴ Name of color in the color picker ደማቅ አረንጓዴ Name of color in the color picker እርሳስ Name of color in the color picker ቀይ Name of color in the color picker ፕላም ፈዛዛ Name of color in the color picker ወይናማ ቀይ Name of color in the color picker ቢጫ ወርቃማ Name of color in the color picker ብርቱካናማ ብሩህ Name of color in the color picker ቡናማ Name of color in the color picker ጥቁር Name of color in the color picker ነጭ Name of color in the color picker ቀለም 1 Name of color in the color picker ቀለም 2 Name of color in the color picker ቀለም 3 Name of color in the color picker ቀለም 4 Name of color in the color picker የግራፍ ገጽታ Graph settings heading for the theme options ሁልጊዜ ፈዛዛ Graph settings option to set graph to light theme ተዛማጅ መተግበሪያ ገጽታ Graph settings option to set graph to match the app theme ገጽታ This is the automation name text for the Graph settings heading for the theme options ሁልጊዜ ፈዛዛ This is the automation name text for the Graph settings option to set graph to light theme ተዛማጅ መተግበሪያ ገጽታ This is the automation name text for the Graph settings option to set graph to match the app theme ስራው ተወግዷል Announcement used in Graphing Calculator when a function is removed from the function list የሂሳብ ተግባር መተንተኛ የእኩልታ ሳጥን This is the automation name text for the equation box in the function analysis panel ይሆናል Screen reader prompt for the equal button on the graphing calculator operator keypad ያንሳል ከ Screen reader prompt for the Less than button ያንሳል ወይም እኩል ይሆናል Screen reader prompt for the Less than or equal button እኩል Screen reader prompt for the Equal button የበለጠ ወይም እኩል የሆነ Screen reader prompt for the Greater than or equal button ይበልጣል ከ Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad አስረክብ Screen reader prompt for the submit button on the graphing calculator operator keypad የተግባር ትንታኔ Screen reader prompt for the function analysis grid የግራፍ አማራጮች Screen reader prompt for the graph options panel ታሪክ እና የማህደረ ትውስታ ዝርዝሮች Automation name for the group of controls for history and memory lists. የማህደረ ትውስታ ዝርዝር Automation name for the group of controls for memory list. የታሪክ ማስገቢያ %1 ጸድቷል {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". የስሌት ማሽን ሁልጊዜም ከአናት ላይ Announcement to indicate calculator window is always shown on top. የስሌት ማሽን ወደ ሙሉ ዕይታ ተመልሷል Announcement to indicate calculator window is now back to full view. የአርቲሜቲክ ማቀያየር ተመርጧል Label for a radio button that toggles arithmetic shift behavior for the shift operations. ምክንያታዊ ማቀያየር ተመርጧል Label for a radio button that toggles logical shift behavior for the shift operations. በክበባዊ ማቀያየር ያሽከርክሩ ተመርጧል Label for a radio button that toggles rotate circular behavior for the shift operations. በተሸካሚ ክበባዊ ማቀያየር በኩል ያሽከርክሩ ተመርጧል Label for a radio button that toggles rotate circular with carry behavior for the shift operations. የክንውን አውዶች Header text of Settings page ገጽታ Subtitle of appearance setting on Settings page የመተግበሪያ ፈትለ ነገር Title of App theme expander የትኛው የመተግበሪያ ፈትለ ነገር ለእይታ እንደሚቀርብ ይምረጡ Description of App theme expander ብርሃን Lable for light theme option ጨለማ Lable for dark theme option የስርዓት ቅንብሮችን ይጠቀሙ Lable for the app theme option to use system setting ተመለስ Screen reader prompt for the Back button in title bar to back to main page የክንውን አውዶች ገጽ Announcement used when Settings page is opened ላሉት ድርጊቶች የአውድ ምናሌውን ይክፈቱ Screen reader prompt for the context menu of the expression box እሺ The text of OK button to dismiss an error dialog. ይህን ቅጽበታዊ ገጽ እይታ ወደነበረበት መመለስ አልተቻለም። The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ar-SA/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 إدخال غير صالح Error message shown when the input makes a function fail, like log(-1) نتيجة غير معرّفة Error message shown when there's no possible value for a function. الذاكرة غير كافية Error message shown when we run out of memory during a calculation. تجاوز سعة Error message shown when there's an overflow during the calculation. لم يتم تحديد النتيجة Same as 101 النتيجة غير محددة Same 101 تجاوز سعة Same as 107 تجاوز سعة Same 107 تتعذر القسمة على صفر Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ar-SA/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 الحاسبة {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. حاسبة [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. الحاسبة في Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. الحاسبة في Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. الحاسبة {@Appx_Description@} This description is used for the official application when published through Windows Store. حاسبة [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. نسخ Copy context menu string لصق Paste context menu string تساوي حوالي The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1، القيمة %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) بت %1 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) الثالث والستون Sub-string used in automation name for 63 bit in bit flip الثاني والستون Sub-string used in automation name for 62 bit in bit flip الحادي والستون Sub-string used in automation name for 61 bit in bit flip الستون Sub-string used in automation name for 60 bit in bit flip التاسع والخمسون Sub-string used in automation name for 59 bit in bit flip الثامن والخمسون Sub-string used in automation name for 58 bit in bit flip السابع والخمسون Sub-string used in automation name for 57 bit in bit flip السادس والخمسون Sub-string used in automation name for 56 bit in bit flip الخامس والخمسون Sub-string used in automation name for 55 bit in bit flip الرابع والخمسون Sub-string used in automation name for 54 bit in bit flip الثالث والخمسون Sub-string used in automation name for 53 bit in bit flip الثاني والخمسون Sub-string used in automation name for 52 bit in bit flip الحادي والخمسون Sub-string used in automation name for 51 bit in bit flip الخمسون Sub-string used in automation name for 50 bit in bit flip التاسع والأربعون Sub-string used in automation name for 49 bit in bit flip الثامن والأربعون Sub-string used in automation name for 48 bit in bit flip السابع والأربعون Sub-string used in automation name for 47 bit in bit flip السادس والأربعون Sub-string used in automation name for 46 bit in bit flip الخامس والأربعون Sub-string used in automation name for 45 bit in bit flip الرابع والأربعون Sub-string used in automation name for 44 bit in bit flip الثالث والأربعون Sub-string used in automation name for 43 bit in bit flip الثاني والأربعون Sub-string used in automation name for 42 bit in bit flip الحادي والأربعون Sub-string used in automation name for 41 bit in bit flip الأربعون Sub-string used in automation name for 40 bit in bit flip التاسع والثلاثون Sub-string used in automation name for 39 bit in bit flip الثامن والثلاثون Sub-string used in automation name for 38 bit in bit flip السابع والثلاثون Sub-string used in automation name for 37 bit in bit flip السادس والثلاثون Sub-string used in automation name for 36 bit in bit flip الخامس والثلاثون Sub-string used in automation name for 35 bit in bit flip الرابع والثلاثون Sub-string used in automation name for 34 bit in bit flip الثالث والثلاثون Sub-string used in automation name for 33 bit in bit flip الثاني والثلاثون Sub-string used in automation name for 32 bit in bit flip الحادي والثلاثون Sub-string used in automation name for 31 bit in bit flip الثلاثون Sub-string used in automation name for 30 bit in bit flip التاسع والعشرون Sub-string used in automation name for 29 bit in bit flip الثامن والعشرون Sub-string used in automation name for 28 bit in bit flip السابع والعشرون Sub-string used in automation name for 27 bit in bit flip السادس والعشرون Sub-string used in automation name for 26 bit in bit flip الخامس والعشرون Sub-string used in automation name for 25 bit in bit flip الرابع والعشرون Sub-string used in automation name for 24 bit in bit flip الثالث والعشرون Sub-string used in automation name for 23 bit in bit flip الثاني والعشرون Sub-string used in automation name for 22 bit in bit flip الحادي والعشرون Sub-string used in automation name for 21 bit in bit flip العشرون Sub-string used in automation name for 20 bit in bit flip التاسع عشر Sub-string used in automation name for 19 bit in bit flip الثامن عشر Sub-string used in automation name for 18 bit in bit flip السابع عشر Sub-string used in automation name for 17 bit in bit flip السادس عشر Sub-string used in automation name for 16 bit in bit flip الخامس عشر Sub-string used in automation name for 15 bit in bit flip الرابع عشر Sub-string used in automation name for 14 bit in bit flip الثالث عشر Sub-string used in automation name for 13 bit in bit flip الثاني عشر Sub-string used in automation name for 12 bit in bit flip الحادي عشر Sub-string used in automation name for 11 bit in bit flip العاشر Sub-string used in automation name for 10 bit in bit flip التاسع Sub-string used in automation name for 9 bit in bit flip الثامن Sub-string used in automation name for 8 bit in bit flip السابع Sub-string used in automation name for 7 bit in bit flip السادس Sub-string used in automation name for 6 bit in bit flip الخامس Sub-string used in automation name for 5 bit in bit flip الرابع Sub-string used in automation name for 4 bit in bit flip الثالث Sub-string used in automation name for 3 bit in bit flip الثاني Sub-string used in automation name for 2 bit in bit flip الأول Sub-string used in automation name for 1 bit in bit flip البت الأقل أهمية Used to describe the first bit of a binary number. Used in bit flip فتح قائمة الذاكرة المنبثقة This is the automation name and label for the memory button when the memory flyout is closed. إغلاق قائمة الذاكرة المنبثقة This is the automation name and label for the memory button when the memory flyout is open. الاستمرار في المتابعة This is the tool tip automation name for the always-on-top button when out of always-on-top mode. العودة إلى طريقة العرض الكاملة This is the tool tip automation name for the always-on-top button when in always-on-top mode. الذاكرة This is the tool tip automation name for the memory button. المحفوظات (Ctrl+H) This is the tool tip automation name for the history button. لوحة المفاتيح الرقمية لتبديل البت This is the tool tip automation name for the bitFlip button. لوحة المفاتيح الرقمية الكاملة This is the tool tip automation name for the numberPad button. مسح الذاكرة بالكامل (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. الذاكرة The text that shows as the header for the memory list الذاكرة The automation name for the Memory pivot item that is shown when Calculator is in wide layout. المحفوظات The text that shows as the header for the history list المحفوظات The automation name for the History pivot item that is shown when Calculator is in wide layout. محول Label for a control that activates the unit converter mode. علمي Label for a control that activates scientific mode calculator layout قياسي Label for a control that activates standard mode calculator layout. وضع المحول Screen reader prompt for a control that activates the unit converter mode. الوضع العلمي Screen reader prompt for a control that activates scientific mode calculator layout الوضع القياسي Screen reader prompt for a control that activates standard mode calculator layout. مسح المحفوظات بالكامل "ClearHistory" used on the calculator history pane that stores the calculation history. مسح المحفوظات بالكامل This is the tool tip automation name for the Clear History button. إخفاء "HideHistory" used on the calculator history pane that stores the calculation history. قياسي The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. علمي The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. مبرمج The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. المحول The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". الحاسبة The text that shows in the dropdown navigation control for the calculator group. المحول The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". الحاسبة The text that shows in the dropdown navigation control for the calculator group in upper case. المحولات Pluralized version of the converter group text, used for the screen reader prompt. الحاسبات Pluralized version of the calculator group text, used for the screen reader prompt. الناتج %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". التعبير هو %1، الإدخال الحالي هو %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". العرض هو %1 نقطة {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. التعبير %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". تم نسخ قيمة العرض إلى الحافظة Screen reader prompt for the Calculator display copy button, when the button is invoked. المحفوظات Screen reader prompt for the history flyout الذاكرة Screen reader prompt for the memory flyout سداسي عشري %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". عشري %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ثماني %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ثنائي %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". مسح المحفوظات بالكامل Screen reader prompt for the Calculator History Clear button تم مسح المحفوظات Screen reader prompt for the Calculator History Clear button, when the button is invoked. إخفاء المحفوظات Screen reader prompt for the Calculator History Hide button فتح قائمة سجل الويب المنبثقة Screen reader prompt for the Calculator History button, when the flyout is closed. إغلاق قائمة سجل الويب المنبثقة Screen reader prompt for the Calculator History button, when the flyout is open. التخزين بالذاكرة Screen reader prompt for the Calculator Memory button التخزين بالذاكرة (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. مسح الذاكرة بالكامل Screen reader prompt for the Calculator Clear Memory button تم مسح الذاكرة Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. استدعاء الذاكرة Screen reader prompt for the Calculator Memory Recall button استرجاع الذاكرة (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. إضافة إلى الذاكرة Screen reader prompt for the Calculator Memory Add button إضافة إلى الذاكرة (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. حذف من الذاكرة Screen reader prompt for the Calculator Memory Subtract button حذف من الذاكرة (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. مسح عنصر الذاكرة Screen reader prompt for the Calculator Clear Memory button مسح عنصر الذاكرة This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. إضافة إلى عنصر ذاكرة Screen reader prompt for the Calculator Memory Add button in the Memory list إضافة إلى عنصر ذاكرة This is the tool tip automation name for the Calculator Memory Add button in the Memory list حذف من عنصر الذاكرة Screen reader prompt for the Calculator Memory Subtract button in the Memory list حذف من عنصر الذاكرة This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list مسح عنصر الذاكرة Screen reader prompt for the Calculator Clear Memory button مسح عنصر الذاكرة Text string for the Calculator Clear Memory option in the Memory list context menu إضافة إلى عنصر ذاكرة Screen reader prompt for the Calculator Memory Add swipe button in the Memory list إضافة إلى عنصر ذاكرة Text string for the Calculator Memory Add option in the Memory list context menu حذف من عنصر الذاكرة Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list حذف من عنصر الذاكرة Text string for the Calculator Memory Subtract option in the Memory list context menu حذف Text string for the Calculator Delete swipe button in the History list النسخ Text string for the Calculator Copy option in the History list context menu حذف Text string for the Calculator Delete option in the History list context menu حذف عنصر المحفوظات Screen reader prompt for the Calculator Delete swipe button in the History list حذف عنصر المحفوظات Screen reader prompt for the Calculator Delete option in the History list context menu مسافة للخلف Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button صفر Screen reader prompt for the Calculator number "0" button واحد Screen reader prompt for the Calculator number "1" button اثنان Screen reader prompt for the Calculator number "2" button ثلاثة Screen reader prompt for the Calculator number "3" button أربعة Screen reader prompt for the Calculator number "4" button خمسة Screen reader prompt for the Calculator number "5" button ستة Screen reader prompt for the Calculator number "6" button سبعة Screen reader prompt for the Calculator number "7" button ثمانية Screen reader prompt for the Calculator number "8" button تسعة Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button ب Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button و Screen reader prompt for the Calculator And button أو Screen reader prompt for the Calculator Or button ليس Screen reader prompt for the Calculator Not button تدوير إلى اليسار Screen reader prompt for the Calculator ROL button استدارة إلى اليمين Screen reader prompt for the Calculator ROR button shift الأيسر Screen reader prompt for the Calculator LSH button shift الأيمن Screen reader prompt for the Calculator RSH button حصري أو Screen reader prompt for the Calculator XOR button تبديل الكلمة الرباعية Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". تبديل الكلمة المزدوجة Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". تبديل الكلمة Screen reader prompt for the Calculator word button. Should read as "Word toggle button". تبديل البايت Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". لوحة مفاتيح تبديل البت Screen reader prompt for the Calculator bitFlip button لوحة المفاتيح الرقمية الكاملة Screen reader prompt for the Calculator numberPad button فاصل عشري Screen reader prompt for the "." button مسح الإدخال Screen reader prompt for the "CE" button مسح Screen reader prompt for the "C" button قسمة Screen reader prompt for the divide button on the number pad مضروب في Screen reader prompt for the multiply button on the number pad يعادل Screen reader prompt for the equals button on the scientific operator keypad الدالة المعكوسة Screen reader prompt for the shift button on the number pad in scientific mode. علامة الطرح Screen reader prompt for the minus button on the number pad علامة الطرح We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 علامة الجمع Screen reader prompt for the plus button on the number pad الجذر التربيعي Screen reader prompt for the square root button on the scientific operator keypad نسبة مئوية Screen reader prompt for the percent button on the scientific operator keypad سالب موجب Screen reader prompt for the negate button on the scientific operator keypad سالب موجب Screen reader prompt for the negate button on the converter operator keypad معكوس Screen reader prompt for the invert button on the scientific operator keypad أقواس يسرى Screen reader prompt for the Calculator "(" button on the scientific operator keypad القوس الأيسر، عدد الأقواس المفتوحة %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". أقواس يمنى Screen reader prompt for the Calculator ")" button on the scientific operator keypad عدد الأقواس المفتوحة %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". لا توجد أي أقواس مفتوحة لإغلاقها. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". رموز علمية Screen reader prompt for the Calculator F-E the scientific operator keypad دالة زائدية Screen reader prompt for the Calculator button HYP in the scientific operator keypad باي Screen reader prompt for the Calculator pi button on the scientific operator keypad جيب Screen reader prompt for the Calculator sin button on the scientific operator keypad جيب التمام Screen reader prompt for the Calculator cos button on the scientific operator keypad الظل Screen reader prompt for the Calculator tan button on the scientific operator keypad جيب الزاوية الزائدي Screen reader prompt for the Calculator sinh button on the scientific operator keypad جيب التمام الزائدي Screen reader prompt for the Calculator cosh button on the scientific operator keypad ظل الزاوية الزائدي Screen reader prompt for the Calculator tanh button on the scientific operator keypad مربع Screen reader prompt for the x squared on the scientific operator keypad. مكعب Screen reader prompt for the x cubed on the scientific operator keypad. مقابل الجيب Screen reader prompt for the inverted sin on the scientific operator keypad. مقابل جيب التمام Screen reader prompt for the inverted cos on the scientific operator keypad. مقابل الظل Screen reader prompt for the inverted tan on the scientific operator keypad. مقابل الجيب الزائدي Screen reader prompt for the inverted sinh on the scientific operator keypad. مقابل جيب التمام الزائدي Screen reader prompt for the inverted cosh on the scientific operator keypad. مقابل الظل الزائدي Screen reader prompt for the inverted tanh on the scientific operator keypad. ’X‘ مرفوعة إلى الأس Screen reader prompt for x power y button on the scientific operator keypad. عشرة مرفوعة إلى الأس Screen reader prompt for the 10 power x button on the scientific operator keypad. ’e‘ مرفوعة إلى الأس Screen reader for the e power x on the scientific operator keypad. y جذر x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. تسجيل Screen reader for the log base 10 on the scientific operator keypad لوغاريتم عادي Screen reader for the log base e on the scientific operator keypad باقي القسمة Screen reader for the mod button on the scientific operator keypad أسي Screen reader for the exp button on the scientific operator keypad درجة دقيقة ثانية Screen reader for the exp button on the scientific operator keypad درجات Screen reader for the exp button on the scientific operator keypad الجزء الصحيح Screen reader for the int button on the scientific operator keypad جزء كسري Screen reader for the frac button on the scientific operator keypad مضروب Screen reader for the factorial button on the basic operator keypad تبديل الدرجات This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". تبديل وحدات غراد This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". تبديل التقدير الدائري This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". قائمة الوضع المنسدلة Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. قائمة الفئات المنسدلة Screen reader prompt for the Categories dropdown field. الاستمرار في المتابعة Screen reader prompt for the Always-on-Top button when in normal mode. العودة إلى طريقة العرض الكاملة Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. دومًا في المقدمة (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. العودة إلى طريقة العرض الكاملة (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. تحويل من %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. تحويل من %1نقطة %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. تحويل إلى %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 يعادل %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. وحدة الإدخال Screen reader prompt for the Unit Converter Units1 i.e. top units field. وحدة الناتج Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. المساحة Unit conversion category name called Area (eg. area of a sports field in square meters) البيانات Unit conversion category name called Data طاقة Unit conversion category name called Energy. (eg. the energy in a battery or in food) الطول Unit conversion category name called Length القوة Unit conversion category name called Power (eg. the power of an engine or a light bulb) السرعة Unit conversion category name called Speed الوقت Unit conversion category name called Time الحجم Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) حرارة Unit conversion category name called Temperature الوزن والكتلة Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ضغط Unit conversion category name called Pressure الزاوية Unit conversion category name called Angle العملة Unit conversion category name called Currency أونصة السوائل (المملكة المتحدة) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أونصة سائلة (المملكة المتحدة) An abbreviation for a measurement unit of volume أونصة السوائل (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أونصة سائلة (الولايات المتحدة) An abbreviation for a measurement unit of volume غالون (المملكة المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جالون (المملكة المتحدة) An abbreviation for a measurement unit of volume غالون (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جالون (الولايات المتحدة) An abbreviation for a measurement unit of volume لتر A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) لتر An abbreviation for a measurement unit of volume مللي لتر A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملليلتر An abbreviation for a measurement unit of volume ثمن جالون (المملكة المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثمن غالون (المملكة المتحدة) An abbreviation for a measurement unit of volume ثمن جالون (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثمن غالون (الولايات المتحدة) An abbreviation for a measurement unit of volume ملعقة كبيرة (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعقة كبيرة (الولايات المتحدة) An abbreviation for a measurement unit of volume من الملاعق الصغيرة (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعقة صغيرة (الولايات المتحدة) An abbreviation for a measurement unit of volume ملعقة كبيرة (المملكة المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعقة كبيرة (المملكة المتحدة) An abbreviation for a measurement unit of volume ملعقة صغيرة (المملكة المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعقة صغيرة (المملكة المتحدة) An abbreviation for a measurement unit of volume من الكوارت (المملكة المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كوارت (المملكة المتحدة) An abbreviation for a measurement unit of volume كوارت (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كوارت (الولايات المتحدة) An abbreviation for a measurement unit of volume فنجان (الولايات المتحدة) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كوب (الولايات المتحدة) An abbreviation for a measurement unit of volume أنغ An abbreviation for a measurement unit of length التيار المتردد An abbreviation for a measurement unit of volume بت An abbreviation for a measurement unit of data وحدة حرارية بريطانية An abbreviation for a measurement unit of volume من الوحدات الحرارية البريطانية/دقيقة An abbreviation for a measurement unit of power ب An abbreviation for a measurement unit of data سُعر حراري An abbreviation for a measurement unit of energy سم An abbreviation for a measurement unit of length سنتيمتر/ثانية An abbreviation for a measurement unit of speed سم٣ An abbreviation for a measurement unit of volume قدم٣ An abbreviation for a measurement unit of volume بوصة٣ An abbreviation for a measurement unit of volume م³ An abbreviation for a measurement unit of volume ياردة٣ An abbreviation for a measurement unit of volume يوم An abbreviation for a measurement unit of time °سيلزيوس An abbreviation for "degrees Celsius" درجة فهرنهايت An abbreviation for a "degrees Fahrenheit" إلكترون فولت An abbreviation for a measurement unit of energy قدم An abbreviation for a measurement unit of length قدم/ثانية An abbreviation for a measurement unit of speed رِطل•قدم An abbreviation for a measurement unit of energy غيغابايت An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data هكتار An abbreviation for a measurement unit of area حصان (الولايات المتحدة) An abbreviation for a measurement unit of power ساعة An abbreviation for a measurement unit of time بوصة An abbreviation for a measurement unit of length جول An abbreviation for a measurement unit of energy كيلوواط ساعة An abbreviation for a measurement unit of electricity consumption كلفن An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) كيلوبايت An abbreviation for a measurement unit of data كيلوبايت An abbreviation for a measurement unit of data كيلو سُعر حراري An abbreviation for a measurement unit of energy كيلوجول An abbreviation for a measurement unit of energy كيلومتر An abbreviation for a measurement unit of length كم/ساعة An abbreviation for a measurement unit of speed كيلو واط An abbreviation for a measurement unit of power عقدة An abbreviation for a measurement unit of speed ماخ An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) ميغابايت An abbreviation for a measurement unit of data ميغابايت An abbreviation for a measurement unit of data م An abbreviation for a measurement unit of length متر/ثانية An abbreviation for a measurement unit of speed µميكرون An abbreviation for a measurement unit of length ميكرو ثانية An abbreviation for a measurement unit of time ميل An abbreviation for a measurement unit of length ميل/س An abbreviation for a measurement unit of speed ملليمتر An abbreviation for a measurement unit of length مللي ثانية An abbreviation for a measurement unit of time دقيقة An abbreviation for a measurement unit of time نانومتر An abbreviation for a measurement unit of length ميل بحري An abbreviation for a measurement unit of length بيتا بايت An abbreviation for a measurement unit of data بيتا بايت An abbreviation for a measurement unit of data قدم•رطل/دقيقة An abbreviation for a measurement unit of power ث An abbreviation for a measurement unit of time سم² An abbreviation for a measurement unit of area قدم٢ An abbreviation for a measurement unit of area بوصة٢ An abbreviation for a measurement unit of area كيلومتر٢ An abbreviation for a measurement unit of area م² An abbreviation for a measurement unit of area ميل٢ An abbreviation for a measurement unit of area ملليمتر٢ An abbreviation for a measurement unit of area يارد² An abbreviation for a measurement unit of area ترليون بايت An abbreviation for a measurement unit of data ترليون بايت An abbreviation for a measurement unit of data واط An abbreviation for a measurement unit of power أسبوع An abbreviation for a measurement unit of time ياردة An abbreviation for a measurement unit of length س An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data كيلوبايت An abbreviation for a measurement unit of data ميل An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data نايبل An abbreviation for a measurement unit of data باي An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data تيرا An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data إكسابايت An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data زيتابايت An abbreviation for a measurement unit of data زيبي بايت An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data يي An abbreviation for a measurement unit of data يوبيبايت An abbreviation for a measurement unit of data فدان A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) وحدة حرارية بريطانية A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) وحدة حرارية بريطانية/دقيقة A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سُعرات حرارية A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنتيمترات A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنتيمتر في الثانية A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنتيمتر مكعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قدم مكعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بوصة مكعبة A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر مكعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ياردة مكعبة A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أيام A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) درجة مئوية An option in the unit converter to select degrees Celsius فهرنهايت An option in the unit converter to select degrees Fahrenheit فُولْت إلكتروني A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقدام A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قدم في الثانية A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) رطل/قدم A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) رطل - قدم/دقيقة A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) غيغابت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) غيغابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) هكتار A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حصان (الولايات المتحدة) A measurement unit for power ساعة A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من البوصات A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جول A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلو واط/ساعة A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كلفن An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". كيلوبت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلوبايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) السعرات الحرارية للأطعمة A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلوجول A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) الكيلومترات A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلومتر في الساعة A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلوواط A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من العقد A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ماخ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) ميغابت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميغابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أمتار A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) م/ث A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميكرون A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميكرو ثانية A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميل A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من الأميال في الساعة A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملليمتر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مللي ثانية A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دقيقة A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نايبل A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نانومتر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من وحدات أنغستروم A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) الأميال البحرية A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بيتابت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بيتابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثانية A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنتيمتر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قدم مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من البوصات المربعة A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلومتر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميل مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميليمتر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ياردة مربعة A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تيرابت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تيرابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) واط A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أسبوع A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ياردة A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنة A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قرص مضغوط An abbreviation for a measurement unit of weight درجة An abbreviation for a measurement unit of Angle من أنصاف الأقطار An abbreviation for a measurement unit of Angle مدرّج An abbreviation for a measurement unit of Angle جهاز صراف آلي An abbreviation for a measurement unit of Pressure بار An abbreviation for a measurement unit of Pressure كيلو باسكال An abbreviation for a measurement unit of Pressure ملم زئبق An abbreviation for a measurement unit of Pressure باسكال An abbreviation for a measurement unit of Pressure باوند لكل بوصة مربعة An abbreviation for a measurement unit of Pressure سنتيغرام An abbreviation for a measurement unit of weight ديكا جرام An abbreviation for a measurement unit of weight ديسيغرام An abbreviation for a measurement unit of weight ج An abbreviation for a measurement unit of weight هيكتوغرام An abbreviation for a measurement unit of weight كيلوغرام An abbreviation for a measurement unit of weight طن (المملكة المتحدة) An abbreviation for a measurement unit of weight مللي غرام An abbreviation for a measurement unit of weight أونصة An abbreviation for a measurement unit of weight رطل An abbreviation for a measurement unit of weight طن (أمريكي) An abbreviation for a measurement unit of weight ستون An abbreviation for a measurement unit of weight طن An abbreviation for a measurement unit of weight قيراط A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) درجات A measurement unit for Angle. تقدير دائري A measurement unit for Angle. وحدات غراد A measurement unit for Angle. الجو A measurement unit for Pressure. المقاهي A measurement unit for Pressure. كيلو باسكال A measurement unit for Pressure. مللي متر من الزئبق A measurement unit for Pressure. باسكال A measurement unit for Pressure. رطل لكل بوصة مربعة A measurement unit for Pressure. سنتيغرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ديكاغرام A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ديسيغرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) غرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) هيكتوغرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيلوغرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طن إمبراطوري (المملكة المتحدة) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملليغرام A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من الأونصات A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من الأرطال A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طن أمريكي (الولايات المتحدة) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ستون A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طن متري A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقراص مضغوطة A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من الأقراص المضغوطة A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعب كرة قدم A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ملعب كرة قدم A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقراص مرنة A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقراص مرنة A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقراص DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أقراص DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من البطاريات AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بطاريات AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مشبك ورق A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مشبك ورق A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طائرة جامبو نفاثة A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طائرة جامبو نفاثة A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مصباح A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مصباح A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حصان A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حصان A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حوض استحمام A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من أحواض الاستحمام A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثلج A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثلج A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أفيال An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أفيال An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سلحفاة A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) من السلاحف A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طائرة نفاثة A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) طائرة نفاثة A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حوت A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حوت A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فنجان قهوة A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فنجان قهوة A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حمام سباحة An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حمام سباحة An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أيدي A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أيدي A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أوراق A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) أوراق A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قلعة A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قلعة A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موزة A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موزة A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) شريحة كعك A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) شريحة كعك A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) محرك قطار A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) محرك قطار A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كرة قدم A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كرة قدم A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) عنصر الذاكرة Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) الخلف Screen reader prompt for the About panel back button الخلف Content of tooltip being displayed on AboutControlBackButton شروط ترخيص برامج Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel معاينة Label displayed next to upcoming features بيان خصوصية Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel حقوق النشر © محفوظة لشركة Microsoft لعام %1. جميع الحقوق محفوظة. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) لمعرفه كيف يمكنك المساهمة في "حاسبه Windows" ، قم بسحب المشروع علي %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel حول Subtitle of about message on Settings page إرسال ملاحظات The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app لا توجد محفوظات بعد. The text that shows as the header for the history list لا يوجد شيء محفوظ في الذاكرة. The text that shows as the header for the memory list الذاكرة Screen reader prompt for the negate button on the converter operator keypad لا يمكن لصق هذا التعبير The paste operation cannot be performed, if the expression is invalid. جيبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جيبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) كيبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ميبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بيبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بيبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تيبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تيبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) إكسا بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) إكسا بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) إكسبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) إكسبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زيتابت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زيتابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زيبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زيبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) يوتابيت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) يوتابايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) يوبي بت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) يوبي بايت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حساب التاريخ وضع الحساب Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". إضافة Add toggle button text إضافة أيام أو طرحها Add or Subtract days option التاريخ Date result label الاختلاف بين التواريخ Date difference option أيام Add/Subtract Days label الاختلاف Difference result label من From Date Header for Difference Date Picker شهور Add/Subtract Months label طرح Subtract toggle button text إلى To Date Header for Difference Date Picker سنين Add/Subtract Years label التاريخ خارج الحد Out of bound message shown as result when the date calculation exceeds the bounds يوم أيام شهر أشهر نفس التواريخ أسبوع أسابيع سنة سنين الاختلاف %1 Automation name for reading out the date difference. %1 = Date difference تاريخ الناتج %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date وضع الحاسبة %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. وضع المحول %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. وضع حساب التاريخ Automation name for when the mode header is focused and the current mode is Date calculation. قوائم الذاكرة والمحفوظات Automation name for the group of controls for history and memory lists. عناصر تحكم الذاكرة Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) وظائف قياسية Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) عناصر التحكم بالعرض Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) عوامل قياسية Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) لوحة الأرقام Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) عوامل الزاوية Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) الدالات العلمية Automation name for the group of Scientific functions. تحديد الرقم الأساس Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix عوامل المبرمج Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). تحديد وضع الإدخال Automation name for the group of input mode toggling buttons. لوحة مفاتيح تبديل البت Automation name for the group of bit toggling buttons. تمرير التعبير إلى اليسار Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. تمرير التعبير إلى اليمين Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. تم الوصول إلى الحد الأقصى من الأرقام. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". تم حفظ %1 في الذاكرة {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". فتحة الذاكرة %1 هي %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". تم مسح %1 من فتحة بطاقة الذاكرة {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". مقسوم على Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. مرات Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. علامة الطرح Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. زائد Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. أُس Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y جذر Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. المعامل Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. Shift الأيسر Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. Shift الأيمن Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. أو Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x or Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. و Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. تم تحديث %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" تحديث الأسعار The text displayed for a hyperlink button that refreshes currency converter ratios. قد يتم فرض رسوم على البيانات. The text displayed when users are on a metered connection and using currency converter. تعذر الحصول على أسعار جديدة. حاول مرة أخرى لاحقاً. The text displayed when currency ratio data fails to load. غير متصل بالإنترنت. الرجاء التحقق من%HL%إعدادات الشبكة%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} جارٍ تحديث أسعار العملات This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. تم تحديث أسعار صرف العملات This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. تعذر تحديث سعر الصرف This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} مسح الذاكرة بالكامل (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. مسح الذاكرة بالكامل Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} درجات جيب الزاوية Name for the sine function in degrees mode. Used by screen readers. زوايا نصف قطرية لجيب الزاوية Name for the sine function in radians mode. Used by screen readers. وحدات غراد جيب الزاوية Name for the sine function in gradians mode. Used by screen readers. درجات جيب الزاوية المعكوسة Name for the inverse sine function in degrees mode. Used by screen readers. زوايا نصف قطرية لجيب الزاوية المعكوسة Name for the inverse sine function in radians mode. Used by screen readers. وحدات غراد جيب الزاوية المعكوسة Name for the inverse sine function in gradians mode. Used by screen readers. الجيب الزائدي Name for the hyperbolic sine function. Used by screen readers. جيب الزاوية الزائدي المعكوس Name for the inverse hyperbolic sine function. Used by screen readers. درجات جيب التمام Name for the cosine function in degrees mode. Used by screen readers. زوايا نصف قطرية لجيب التمام Name for the cosine function in radians mode. Used by screen readers. وحدات غراد جيب التمام Name for the cosine function in gradians mode. Used by screen readers. درجات جيب التمام المعكوسة Name for the inverse cosine function in degrees mode. Used by screen readers. زوايا نصف قطرية لجيب التمام المعكوسة Name for the inverse cosine function in radians mode. Used by screen readers. وحدات غراد جيب التمام المعكوسة Name for the inverse cosine function in gradians mode. Used by screen readers. جيب التمام الزائدي Name for the hyperbolic cosine function. Used by screen readers. جيب التمام الزائدي المعكوس Name for the inverse hyperbolic cosine function. Used by screen readers. درجات ظل الزاوية Name for the tangent function in degrees mode. Used by screen readers. زوايا نصف قطرية لظل الزاوية Name for the tangent function in radians mode. Used by screen readers. من وحدات غراد للظل Name for the tangent function in gradians mode. Used by screen readers. درجات ظل الزاوية المعكوسة Name for the inverse tangent function in degrees mode. Used by screen readers. زوايا نصف قطرية لظل الزاوية المعكوسة Name for the inverse tangent function in radians mode. Used by screen readers. وحدات غراد ظل الزاوية المعكوسة Name for the inverse tangent function in gradians mode. Used by screen readers. ظل الزاوية الزائدي Name for the hyperbolic tangent function. Used by screen readers. ظل الزاوية الزائدي المعكوس Name for the inverse hyperbolic tangent function. Used by screen readers. درجات القاطع Name for the secant function in degrees mode. Used by screen readers. راديان القاطع Name for the secant function in radians mode. Used by screen readers. غراد القاطع Name for the secant function in gradians mode. Used by screen readers. درجات مقابل القاطع Name for the inverse secant function in degrees mode. Used by screen readers. راديان مقابل القاطع Name for the inverse secant function in radians mode. Used by screen readers. غراد مقابل القاطع Name for the inverse secant function in gradians mode. Used by screen readers. القاطع الزائدي Name for the hyperbolic secant function. Used by screen readers. مقابل القاطع الزائدي Name for the inverse hyperbolic secant function. Used by screen readers. درجات قاطع التمام Name for the cosecant function in degrees mode. Used by screen readers. راديان قاطع التمام Name for the cosecant function in radians mode. Used by screen readers. غراد قاطع التمام Name for the cosecant function in gradians mode. Used by screen readers. درجات مقابل قاطع التمام Name for the inverse cosecant function in degrees mode. Used by screen readers. راديان مقابل قاطع التمام Name for the inverse cosecant function in radians mode. Used by screen readers. غراد مقابل قاطع التمام Name for the inverse cosecant function in gradians mode. Used by screen readers. قاطع التمام الزائدي Name for the hyperbolic cosecant function. Used by screen readers. مقابل قاطع التمام الزائدي Name for the inverse hyperbolic cosecant function. Used by screen readers. درجات ظل التمام Name for the cotangent function in degrees mode. Used by screen readers. راديان ظل التمام Name for the cotangent function in radians mode. Used by screen readers. غراد ظل التمام Name for the cotangent function in gradians mode. Used by screen readers. درجات مقابل ظل التمام Name for the inverse cotangent function in degrees mode. Used by screen readers. راديان مقابل ظل التمام Name for the inverse cotangent function in radians mode. Used by screen readers. غراد مقابل ظل التمام Name for the inverse cotangent function in gradians mode. Used by screen readers. ظل التمام الزائدي Name for the hyperbolic cotangent function. Used by screen readers. مقابل ظل التمام الزائدي Name for the inverse hyperbolic cotangent function. Used by screen readers. جذر تكعيبي Name for the cube root function. Used by screen readers. القاعدة الخوارزمية Name for the logbasey function. Used by screen readers. قيمة مطلقة Name for the absolute value function. Used by screen readers. Shift الأيسر Name for the programmer function that shifts bits to the left. Used by screen readers. Shift الأيمن Name for the programmer function that shifts bits to the right. Used by screen readers. مضروب Name for the factorial function. Used by screen readers. درجة دقيقة ثانية Name for the degree minute second (dms) function. Used by screen readers. لوغاريتم عادي Name for the natural log (ln) function. Used by screen readers. مربع Name for the square function. Used by screen readers. y جذر Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". الفئة %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". اتفاقية خدمات Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information بيونغ An abbreviation for a measurement unit of area. بيونغ A measurement unit for area. من From Date Header for AddSubtract Date Picker تمرير نتيجة الحساب لليسار Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. تمرير نتيجة الحساب لليمين Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. فشل الحساب Text displayed when the application is not able to do a calculation قاعدة خوارزمية للص Screen reader prompt for the logBaseY button حساب المثلثات Displayed on the button that contains a flyout for the trig functions in scientific mode. الدالة Displayed on the button that contains a flyout for the general functions in scientific mode. المتباينات Displayed on the button that contains a flyout for the inequality functions. المتباينات Screen reader prompt for the Inequalities button البت Displayed on the button that contains a flyout for the bitwise functions in programmer mode. إزاحة بت Displayed on the button that contains a flyout for the bit shift functions in programmer mode. الدالة المعكوسة Screen reader prompt for the shift button in the trig flyout in scientific mode. الدالة الزائدية Screen reader prompt for the Calculator button HYP in the scientific flyout keypad القاطع Screen reader prompt for the Calculator button sec in the scientific flyout keypad القاطع الزائدي Screen reader prompt for the Calculator button sech in the scientific flyout keypad القوس القاطع Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad قوس القاطع الزائدي Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad قاطع تمام Screen reader prompt for the Calculator button csc in the scientific flyout keypad قاطع التمام الزائدي Screen reader prompt for the Calculator button csch in the scientific flyout keypad قوس قاطع التمام Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad قوس قاطع التمام الزائدي Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ظل التمام Screen reader prompt for the Calculator button cot in the scientific flyout keypad ظل التمام الزائدي Screen reader prompt for the Calculator button coth in the scientific flyout keypad قوس ظل التمام Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad قوس ظل التمام الزائدي Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad الحد الأدنى Screen reader prompt for the Calculator button floor in the scientific flyout keypad الحد الأقصى Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad عشوائية Screen reader prompt for the Calculator button random in the scientific flyout keypad قيمة مطلقة Screen reader prompt for the Calculator button abs in the scientific flyout keypad عدد أويلر Screen reader prompt for the Calculator button e in the scientific flyout keypad أس اثنين Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. الاستدارة إلى اليسار مع الحمل Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad الاستدارة إلى اليمين مع الحمل Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad إزاحة إلى اليسار Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad الإزاحة إلى اليسار Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. إزاحة لليمين Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad الإزاحة إلى اليمين Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. إزاحة حسابية Label for a radio button that toggles arithmetic shift behavior for the shift operations. إزاحة منطقية Label for a radio button that toggles logical shift behavior for the shift operations. تدوير إزاحة دائرية Label for a radio button that toggles rotate circular behavior for the shift operations. تدوير من خلال إزاحة دائرية للحمل Label for a radio button that toggles rotate circular with carry behavior for the shift operations. جذر تكعيبي Screen reader prompt for the cube root button on the scientific operator keypad حساب المثلثات Screen reader prompt for the square root button on the scientific operator keypad الدالات Screen reader prompt for the square root button on the scientific operator keypad البت Screen reader prompt for the square root button on the scientific operator keypad إزاحة البت Screen reader prompt for the square root button on the scientific operator keypad لوحات عوامل التشغيل العلمية Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad لوحات عوامل التشغيل المبرمجة Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad البت الأكثر أهمية Used to describe the last bit of a binary number. Used in bit flip تخطيط المنحنى البياني Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. رسم Screen reader prompt for the plot button on the graphing calculator operator keypad تحديث طريقة العرض تلقائيًا (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. طريقة عرض رسومية Screen reader prompt for the graph view button. الاحتواء الأفضل التلقائي Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set ضبط يدوي Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set تمت إعادة ضبط طريقة عرض الرسم البياني Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph تكبير (Ctrl + علامة الجمع) This is the tool tip automation name for the Calculator zoom in button. تكبير Screen reader prompt for the zoom in button. تصغير (Ctrl + علامة الطرح) This is the tool tip automation name for the Calculator zoom out button. تصغير Screen reader prompt for the zoom out button. إضافة معادلة Placeholder text for the equation input button تتعذر المشاركة في الوقت الحالي. If there is an error in the sharing action will display a dialog with this text. موافق Used on the dismiss button of the share action error dialog. البحث عما رسمته بيانياً باستخدام حاسبة Windows Sent as part of the shared content. The title for the share. معادلات Header that appears over the equations section when sharing المتغيرات Header that appears over the variables section when sharing صورة رسم بياني بالمعادلات Alt text for the graph image when output via Share المتغيرات Header text for variables area خطوة Label text for the step text box الحد الأدنى Label text for the min text box الحد الأقصى Label text for the max text box اللون Label for the Line Color section of the style picker النمط Label for the Line Style section of the style picker تحليل الدالة Title for KeyGraphFeatures Control لا تحتوي الدالة على أي خطوط مقاربة أفقية. Message displayed when the graph does not have any horizontal asymptotes لا تتضمن الدالة أي نقاط تصريف. Message displayed when the graph does not have any inflection points لا تتضمن الدالة أي نقاط نهايات قصوى. Message displayed when the graph does not have any maxima لا تتضمن الدالة أي نقاط نهايات دُنيا. Message displayed when the graph does not have any minima ثابت String describing constant monotonicity of a function ينقص String describing decreasing monotonicity of a function تعذر تحديد رتيبة الدالة. Error displayed when monotonicity cannot be determined يزيد String describing increasing monotonicity of a function رتيبة الدالة غير معروفة. Error displayed when monotonicity is unknown لا تتضمن الدالة أي خطوط مقاربة منحدرة. Message displayed when the graph does not have any oblique asymptotes تعذر تحديد تماثل الدالة. Error displayed when parity is cannot be determined الدالة زوجية. Message displayed with the function parity is even الدالة ليست زوجية ولا فردية. Message displayed with the function parity is neither even nor odd الدالة فردية. Message displayed with the function parity is odd تماثل الدالة غير معروف. Error displayed when parity is unknown الدورية غير معتمدة لهذه الدالة. Error displayed when periodicity is not supported الدالة ليست دورية. Message displayed with the function periodicity is not periodic دورية الدالة غير معروفة. Message displayed with the function periodicity is unknown هذه الميزات معقدة جداً ولا يمكن للحاسبة حسابها: Error displayed when analysis features cannot be calculated لا تتضمن الدالة أي خطوط مقاربة عمودية. Message displayed when the graph does not have any vertical asymptotes لا تتضمن الدالة أياً من تقاطعات x. Message displayed when the graph does not have any x-intercepts لا تتضمن الدالة أياً من تقاطعات y. Message displayed when the graph does not have any y-intercepts المجال Title for KeyGraphFeatures Domain Property خطوط مقاربة أفقية Title for KeyGraphFeatures Horizontal aysmptotes Property نقاط التصريف Title for KeyGraphFeatures Inflection points Property التحليل غير معتمد لهذه الدالة. Error displayed when graph analysis is not supported or had an error. يتوفر دعم التحليل فقط للدالات بتنسيق f(x). مثال: y=x Error displayed when graph analysis detects the function format is not f(x). القيمة القصوى Title for KeyGraphFeatures Maxima Property القيمة الدنيا Title for KeyGraphFeatures Minima Property الرتيبة Title for KeyGraphFeatures Monotonicity Property خطوط مقاربة منحدرة Title for KeyGraphFeatures Oblique asymptotes Property التماثل Title for KeyGraphFeatures Parity Property الدورة Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. النطاق Title for KeyGraphFeatures Range Property خطوط مقاربة عمودية Title for KeyGraphFeatures Vertical asymptotes Property تقاطع X Title for KeyGraphFeatures XIntercept Property تقاطع Y Title for KeyGraphFeatures YIntercept Property تعذر إجراء تحليل للدالة. تعذر حساب المجال لهذه الدالة. Error displayed when Domain is not returned from the analyzer. يتعذر حساب النطاق لهذه الدالة. Error displayed when Range is not returned from the analyzer. تجاوز الحد المسموح به (الرقم كبير جداً) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. وضع التقدير الدائري مطلوب لرسم هذه المعادلة. Error that occurs during graphing when radians is required. يتعذر رسم هذه الدالة لأنها معقدة Error that occurs during graphing when the equation is too complex. وضع الدرجات مطلوب لرسم هذه الدالة Error that occurs during graphing when degrees is required تتضمن دالة مضروب وسيطة غير صالحة Error that occurs during graphing when a factorial function has an invalid argument. لدى دالة مضروب وسيطة يتعذر رسمها لأنها كبيرة جداً Error that occurs during graphing when a factorial has a large n يمكن حساب باقي القسمة فقط مع الأرقام الصحيحة Error that occurs during graphing when modulo is used with a float. المعادلة بلا حل Error that occurs during graphing when the equation has no solution. تتعذر القسمة على صفر Error that occurs during graphing when a divison by zero occurs. تتضمن المعادلة شروط منطقية متنافية Error that occurs during graphing when mutually exclusive conditions are used. المعادلة خارج المجال Error that occurs during graphing when the equation is out of domain. تخطيط المنحنى البياني لهذه المعادلة غير مدعم Error that occurs during graphing when the equation is not supported. تفتقد المعادلة إلى قوس الفتح Error that occurs during graphing when the equation is missing a ( تفتقد المعادلة إلى قوس الإغلاق Error that occurs during graphing when the equation is missing a ) هناك نقاط عشرية كثيرة جداً في رقم Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 تفتقد النقطة العشرية إلى أرقام Error that occurs during graphing with a decimal point without digits نهاية التعبير غير متوقعة Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* هناك أحرف غير متوقعة في هذا التعبير Error that occurs during graphing when there is an unexpected token. هناك أحرف غير صالحة في هذا التعبير Error that occurs during graphing when there is an invalid token. يوجد عدد كبير جداً من علامات التساوي Error that occurs during graphing when there are too many equals. يجب أن تتضمن الدالة على الأقل س أو ص واحد صالح Error that occurs during graphing when the equation is missing x or y. التعبير غير صالح. Error that occurs during graphing when an invalid syntax is used. هذا التعبير فارغ Error that occurs during graphing when the expression is empty تم استخدام علامة التساوي دون معادلة Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) أحد الأقواس مفقود بعد اسم الدالة Error that occurs during graphing when parenthesis are missing after a function. لدى العملية الحسابية عدد غير صحيح من المعلمات Error that occurs during graphing when a function has the wrong number of parameters اسم المتغير غير صالح Error that occurs during graphing when a variable name is invalid. تفتقد المعادلة إلى قوس الفتح المربع Error that occurs during graphing when a { is missing تفتقد المعادلة إلى قوس الإغلاق المربع Error that occurs during graphing when a } is missing. يتعذر استخدام "i" و"I" كأسماء متغّيرات Error that occurs during graphing when i or I is used. يتعذر رسم المعادلة General error that occurs during graphing. يتعذر حل الرقم للقاعدة المعطاة Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). يجب أن تكون القاعدة أكبر من 2 وأقل من 36 Error that occurs during graphing when the base is out of range. تتطلب العملية الرياضية أن تكون إحدى معلماتها متغيرا Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. تخلط المعادلة بين المُعامل المنطقية والرقمية Error that occurs during graphing when operands are mixed. Such as true and 1. يتعذر استخدام س أو ص في الحدود السفلية Error that occurs during graphing when x or y is used in integral upper limits. لا يمكن استخدام س أو ص في نقطة الحد Error that occurs during graphing when x or y is used in the limit point. يتعذر استخدام قيم لا نهاية معقدة Error that occurs during graphing when complex infinity is used يتعذر استخدام الأعداد المركبة في المتباينات Error that occurs during graphing when complex numbers are used in inequalities. رجوع إلى قائمة الدالات This is the tooltip for the back button in the equation analysis page in the graphing calculator رجوع إلى قائمة الدالات This is the automation name for the back button in the equation analysis page in the graphing calculator تحليل الدالة This is the tooltip for the analyze function button تحليل الدالة This is the automation name for the analyze function button تحليل الدالة This is the text for the for the analyze function context menu command إزالة المعادلة This is the tooltip for the graphing calculator remove equation buttons إزالة المعادلة This is the automation name for the graphing calculator remove equation buttons إزالة المعادلة This is the text for the for the remove equation context menu command مشاركة This is the automation name for the graphing calculator share button. مشاركة This is the tooltip for the graphing calculator share button. تغيير نمط المعادلة This is the tooltip for the graphing calculator equation style button تغيير نمط المعادلة This is the automation name for the graphing calculator equation style button تغيير نمط المعادلة This is the text for the for the equation style context menu command إظهار المعادلة This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. إخفاء المعادلة This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. إظهار المعادلة %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. إخفاء المعادلة %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. إيقاف التتبع This is the tooltip/automation name for the graphing calculator stop tracing button بدء التتبع This is the tooltip/automation name for the graphing calculator start tracing button نافذة عرض الرسم البياني، المحور س محدود بواسطة %1 و%2، المحور ص محدود بواسطة %3 و%4، مع عرض معادلات %5 {Locked="%1","%2", "%3", "%4", "%5"}. تكوين شريط التمرير This is the tooltip text for the slider options button in Graphing Calculator تكوين شريط التمرير This is the automation name text for the slider options button in Graphing Calculator تبديل إلى وضع المعادلة Used in Graphing Calculator to switch the view to the equation mode تبديل إلى وضع الرسم البياني Used in Graphing Calculator to switch the view to the graph mode تبديل إلى وضع المعادلة Used in Graphing Calculator to switch the view to the equation mode الوضع الحالي هو وضع المعادلة Announcement used in Graphing Calculator when switching to the equation mode الوضع الحالي هو وضع الرسم البياني Announcement used in Graphing Calculator when switching to the graph mode النافذة Heading for window extents on the settings درجات Degrees mode on settings page وحدات غراد Gradian mode on settings page وحدات راديان Radians mode on settings page وحدات Heading for Unit's on the settings إعادة تعيين طريقة العرض Hyperlink button to reset the view of the graph الحد الأقصى X X maximum value header الحد الأدنى X X minimum value header الحد الأقصى Y Y Maximum value header الحد الأدنى Y Y minimum value header خيارات الرسم البياني This is the tooltip text for the graph options button in Graphing Calculator خيارات الرسم البياني This is the automation name text for the graph options button in Graphing Calculator خيارات الرسم البياني Heading for the Graph options flyout in Graphing mode. خيارات متغيرة Screen reader prompt for the variable settings toggle button زر تبديل الخيارات المتنوعة Tool tip for the variable settings toggle button سمك الخط Heading for the Graph options flyout in Graphing mode. خيارات الخط Heading for the equation style flyout in Graphing mode. عرض خط صغير Automation name for line width setting عرض خط متوسط Automation name for line width setting عرض خط كبير Automation name for line width setting عرض خط كبير جدا Automation name for line width setting إدخال تعبير this is the placeholder text used by the textbox to enter an equation النسخ Copy menu item for the graph context menu قص Cut menu item from the Equation TextBox نسخ Copy menu item from the Equation TextBox لصق Paste menu item from the Equation TextBox تراجع Undo menu item from the Equation TextBox تحديد الكل Select all menu item from the Equation TextBox إدخال الدالة The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. إدخال الدالة The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. لوحة إدخال الدالة The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. لوحة المتغيرات The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. قائمة المتغيرات The automation name for the Variable ListView that is shown when Calculator is in graphing mode. عنصر قائمة المتغير %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. مربع نص القيمة المتغيرة The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. شريط تمرير القيمة المتغيرة The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. مربع نص الحد الأدنى للقيمة المتغيرة The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. مربع نص قيمة الخطوة المتغيرة The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. مربع نص الحد الأقصى للقيمة المتغيرة The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. نمط خط الرسم متصل Name of the solid line style for a graphed equation نمط خط الرسم مُنقط Name of the dotted line style for a graphed equation نمط خط الرسم متقطع Name of the dashed line style for a graphed equation أزرق داكن Name of color in the color picker رغوة البحر Name of color in the color picker بنفسجي Name of color in the color picker أخضر Name of color in the color picker أخضر نعناعي Name of color in the color picker أخضر داكن Name of color in the color picker فحمي Name of color in the color picker أحمر Name of color in the color picker أرجواني فاتح مائل للزرقة Name of color in the color picker أحمر أرجواني Name of color in the color picker ذهبي مائل للصفرة Name of color in the color picker برتقالي فاتح Name of color in the color picker بني Name of color in the color picker أسود Name of color in the color picker أبيض Name of color in the color picker لون 1 Name of color in the color picker لون 2 Name of color in the color picker اللون 3 Name of color in the color picker اللون 4 Name of color in the color picker نسق الرسم البياني Graph settings heading for the theme options فاتح دائماً Graph settings option to set graph to light theme مطابقة لون خلفية التطبيق Graph settings option to set graph to match the app theme لون الخلفية This is the automation name text for the Graph settings heading for the theme options فاتح دائماً This is the automation name text for the Graph settings option to set graph to light theme مطابقة لون خلفية التطبيق This is the automation name text for the Graph settings option to set graph to match the app theme تمت إزالة الدالة Announcement used in Graphing Calculator when a function is removed from the function list مربع معادلة تحليل الدالة This is the automation name text for the equation box in the function analysis panel يساوي Screen reader prompt for the equal button on the graphing calculator operator keypad أقل من Screen reader prompt for the Less than button أصغر من أو يساوي Screen reader prompt for the Less than or equal button يساوي Screen reader prompt for the Equal button أكبر من أو يساوي Screen reader prompt for the Greater than or equal button الأكبر من Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad إرسال Screen reader prompt for the submit button on the graphing calculator operator keypad تحليل الدالة Screen reader prompt for the function analysis grid خيارات الرسم البياني Screen reader prompt for the graph options panel قوائم الذاكرة والمحفوظات Automation name for the group of controls for history and memory lists. قائمة الذاكرة Automation name for the group of controls for memory list. تم مسح فتحة المحفوظات %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". الحاسبة دائماً في المقدمة Announcement to indicate calculator window is always shown on top. عادت الحاسبة إلى وضع العرض الكامل Announcement to indicate calculator window is now back to full view. تم تحديد إزاحة حسابية Label for a radio button that toggles arithmetic shift behavior for the shift operations. تم تحديد إزاحة منطقية Label for a radio button that toggles logical shift behavior for the shift operations. تم تحديد استدارة إزاحة دائرية Label for a radio button that toggles rotate circular behavior for the shift operations. تم تحديد استدارة من خلال إزاحة دائرية للحمل Label for a radio button that toggles rotate circular with carry behavior for the shift operations. إعدادات Header text of Settings page المظهر Subtitle of appearance setting on Settings page نسق التطبيق Title of App theme expander تحديد نسق التطبيق المطلوب عرضه Description of App theme expander فاتحة Lable for light theme option داكنة Lable for dark theme option استخدام إعداد النظام Lable for the app theme option to use system setting الخلف Screen reader prompt for the Back button in title bar to back to main page صفحة الإعدادات Announcement used when Settings page is opened فتح قائمة السياق للإجراءات المتوفرة Screen reader prompt for the context menu of the expression box موافق The text of OK button to dismiss an error dialog. تعذرت استعادة هذه اللقطة. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/az-Latn-AZ/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Yanlış daxiletmə Error message shown when the input makes a function fail, like log(-1) Nəticə təyin edilməyib Error message shown when there's no possible value for a function. Kifayət qədər yaddaş yoxdur Error message shown when we run out of memory during a calculation. Dolub daşır Error message shown when there's an overflow during the calculation. Nəticə təyin edilməyib Same as 101 Nəticə təyin edilməyib Same 101 Dolub daşır Same as 107 Dolub daşır Same 107 Sıfra bölmək mümkün deyil Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/az-Latn-AZ/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulyator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulyator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkulyator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkulyator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulyator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulyator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Köçür Copy context menu string Əlavə et Paste context menu string Təqribi bərabərdir The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, dəyər %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-cü Sub-string used in automation name for 63 bit in bit flip 62-ci Sub-string used in automation name for 62 bit in bit flip 61-ci Sub-string used in automation name for 61 bit in bit flip 60-cı Sub-string used in automation name for 60 bit in bit flip 59-cu Sub-string used in automation name for 59 bit in bit flip 58-ci Sub-string used in automation name for 58 bit in bit flip 57-ci Sub-string used in automation name for 57 bit in bit flip 56-cı Sub-string used in automation name for 56 bit in bit flip 55-ci Sub-string used in automation name for 55 bit in bit flip 54-cü Sub-string used in automation name for 54 bit in bit flip 53-cü Sub-string used in automation name for 53 bit in bit flip 52-ci Sub-string used in automation name for 52 bit in bit flip 51-ci Sub-string used in automation name for 51 bit in bit flip 50-ci Sub-string used in automation name for 50 bit in bit flip 49-cu Sub-string used in automation name for 49 bit in bit flip 48-ci Sub-string used in automation name for 48 bit in bit flip 47-ci Sub-string used in automation name for 47 bit in bit flip 46-cı Sub-string used in automation name for 46 bit in bit flip 45-ci Sub-string used in automation name for 45 bit in bit flip 44-cü Sub-string used in automation name for 44 bit in bit flip 43-cü Sub-string used in automation name for 43 bit in bit flip 42-ci Sub-string used in automation name for 42 bit in bit flip 41-ci Sub-string used in automation name for 41 bit in bit flip 40-cı Sub-string used in automation name for 40 bit in bit flip 39-cu Sub-string used in automation name for 39 bit in bit flip 38-ci Sub-string used in automation name for 38 bit in bit flip 37-ci Sub-string used in automation name for 37 bit in bit flip 36-cı Sub-string used in automation name for 36 bit in bit flip 35-ci Sub-string used in automation name for 35 bit in bit flip 34-cü Sub-string used in automation name for 34 bit in bit flip 33-cü Sub-string used in automation name for 33 bit in bit flip 32-ci Sub-string used in automation name for 32 bit in bit flip 31-ci Sub-string used in automation name for 31 bit in bit flip 30-cu Sub-string used in automation name for 30 bit in bit flip 29-cu Sub-string used in automation name for 29 bit in bit flip 28-ci Sub-string used in automation name for 28 bit in bit flip 27-ci Sub-string used in automation name for 27 bit in bit flip 26-cı Sub-string used in automation name for 26 bit in bit flip 25-ci Sub-string used in automation name for 25 bit in bit flip 24-cü Sub-string used in automation name for 24 bit in bit flip 23-cü Sub-string used in automation name for 23 bit in bit flip 22-ci Sub-string used in automation name for 22 bit in bit flip 21-ci Sub-string used in automation name for 21 bit in bit flip 20-ci Sub-string used in automation name for 20 bit in bit flip 19-cu Sub-string used in automation name for 19 bit in bit flip 18-ci Sub-string used in automation name for 18 bit in bit flip 17-ci Sub-string used in automation name for 17 bit in bit flip 16-cı Sub-string used in automation name for 16 bit in bit flip 15-ci Sub-string used in automation name for 15 bit in bit flip 14-cü Sub-string used in automation name for 14 bit in bit flip 13-cü Sub-string used in automation name for 13 bit in bit flip 12-ci Sub-string used in automation name for 12 bit in bit flip 11-ci Sub-string used in automation name for 11 bit in bit flip 10-cu Sub-string used in automation name for 10 bit in bit flip 9-cu Sub-string used in automation name for 9 bit in bit flip 8-ci Sub-string used in automation name for 8 bit in bit flip 7-ci Sub-string used in automation name for 7 bit in bit flip 6-cı Sub-string used in automation name for 6 bit in bit flip 5-ci Sub-string used in automation name for 5 bit in bit flip 4-cü Sub-string used in automation name for 4 bit in bit flip 3-cü Sub-string used in automation name for 3 bit in bit flip 2-ci Sub-string used in automation name for 2 bit in bit flip 1-ci Sub-string used in automation name for 1 bit in bit flip ən az əhəmiyyətli bit Used to describe the first bit of a binary number. Used in bit flip Yaddaş menyusunu aç This is the automation name and label for the memory button when the memory flyout is closed. Yaddaş menyusunu bağla This is the automation name and label for the memory button when the memory flyout is open. Digər pəncərələrin üzərində saxla This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Tam görünüşə qayıt This is the tool tip automation name for the always-on-top button when in always-on-top mode. Yaddaş This is the tool tip automation name for the memory button. Tarixçə (Ctrl+H) This is the tool tip automation name for the history button. İkili dəyişdirici klaviatura This is the tool tip automation name for the bitFlip button. Tam klaviatura This is the tool tip automation name for the numberPad button. Bütün yaddaşı təmizlə (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Yaddaş The text that shows as the header for the memory list Yaddaş The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Tarixçə The text that shows as the header for the history list Tarixçə The automation name for the History pivot item that is shown when Calculator is in wide layout. Çevirici Label for a control that activates the unit converter mode. Elmi Label for a control that activates scientific mode calculator layout Standart Label for a control that activates standard mode calculator layout. Çevirici rejimi Screen reader prompt for a control that activates the unit converter mode. Elmi rejim Screen reader prompt for a control that activates scientific mode calculator layout Standart rejim Screen reader prompt for a control that activates standard mode calculator layout. Bütün tarixçəni təmizlə "ClearHistory" used on the calculator history pane that stores the calculation history. Bütün tarixçəni təmizlə This is the tool tip automation name for the Clear History button. Gizlət "HideHistory" used on the calculator history pane that stores the calculation history. Standart The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Elmi The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Proqramçı The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Çevirici The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulyator The text that shows in the dropdown navigation control for the calculator group. Çevirici The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulyator The text that shows in the dropdown navigation control for the calculator group in upper case. Çeviricilər Pluralized version of the converter group text, used for the screen reader prompt. Kalkulyatorlar Pluralized version of the calculator group text, used for the screen reader prompt. Displey: %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". İfadə %1, Cari daxiletmə %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Displey %1 xaldır {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. İfadə: %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Displey dəyəri mübadilə buferinə köçürüldü Screen reader prompt for the Calculator display copy button, when the button is invoked. Tarixçə Screen reader prompt for the history flyout Yaddaş Screen reader prompt for the memory flyout Onaltılıq %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Onluq %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Səkkizbucaqlı %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". İkili %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Bütün tarixçəni təmizlə Screen reader prompt for the Calculator History Clear button Tarixçə təmizləndi Screen reader prompt for the Calculator History Clear button, when the button is invoked. Tarixçəni gizlət Screen reader prompt for the Calculator History Hide button Tarixçə menyusunu aç Screen reader prompt for the Calculator History button, when the flyout is closed. Tarixçə menyusunu bağla Screen reader prompt for the Calculator History button, when the flyout is open. Yaddaş mağazası Screen reader prompt for the Calculator Memory button Yaddaş anbarı (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Bütün yaddaşı təmizlə Screen reader prompt for the Calculator Clear Memory button Yaddaş təmizləndi Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Yaddaş xatırlatması Screen reader prompt for the Calculator Memory Recall button Yaddaşın geri çağırılması (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Yaddaş əlavəsi Screen reader prompt for the Calculator Memory Add button Yaddaş əlavəsi (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Yaddaş çıxarışı Screen reader prompt for the Calculator Memory Subtract button Yaddaş çıxarışı (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Yaddaş elementini təmizlə Screen reader prompt for the Calculator Clear Memory button Yaddaş elementini təmizlə This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Yaddaş elementinə əlavə et Screen reader prompt for the Calculator Memory Add button in the Memory list Yaddaş elementinə əlavə et This is the tool tip automation name for the Calculator Memory Add button in the Memory list Yaddaş elementindən çıxar Screen reader prompt for the Calculator Memory Subtract button in the Memory list Yaddaş elementindən çıxar This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Yaddaş elementini təmizlə Screen reader prompt for the Calculator Clear Memory button Yaddaş elementini təmizlə Text string for the Calculator Clear Memory option in the Memory list context menu Yaddaş elementinə əlavə et Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Yaddaş elementinə əlavə et Text string for the Calculator Memory Add option in the Memory list context menu Yaddaş elementindən çıxar Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Yaddaş elementindən çıxar Text string for the Calculator Memory Subtract option in the Memory list context menu Sil Text string for the Calculator Delete swipe button in the History list Köçür Text string for the Calculator Copy option in the History list context menu Sil Text string for the Calculator Delete option in the History list context menu Tarixçə elementini sil Screen reader prompt for the Calculator Delete swipe button in the History list Tarixçə elementini sil Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Sıfır Screen reader prompt for the Calculator number "0" button Bir Screen reader prompt for the Calculator number "1" button İki Screen reader prompt for the Calculator number "2" button Üç Screen reader prompt for the Calculator number "3" button Dörd Screen reader prompt for the Calculator number "4" button Beş Screen reader prompt for the Calculator number "5" button Altı Screen reader prompt for the Calculator number "6" button Yeddi Screen reader prompt for the Calculator number "7" button Səkkiz Screen reader prompt for the Calculator number "8" button Doqquz Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Screen reader prompt for the Calculator And button Yaxud Screen reader prompt for the Calculator Or button Deyil Screen reader prompt for the Calculator Not button Sola döndər Screen reader prompt for the Calculator ROL button Sağa döndər Screen reader prompt for the Calculator ROR button Sola keçir Screen reader prompt for the Calculator LSH button Sağa keçir Screen reader prompt for the Calculator RSH button Müstəsna və ya Screen reader prompt for the Calculator XOR button Dördlü Söz dəyişdiricisi Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". İkili söz dəyişdiricisi Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Söz dəyişdirici Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Bayt dəyişdiricisi Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". İkili dəyişdirici klaviatura Screen reader prompt for the Calculator bitFlip button Tam klaviatura Screen reader prompt for the Calculator numberPad button Onluq ayırıcısı Screen reader prompt for the "." button Daxiletməni təmizlə Screen reader prompt for the "CE" button Təmizlə Screen reader prompt for the "C" button Böl Screen reader prompt for the divide button on the number pad Vur Screen reader prompt for the multiply button on the number pad Bərabərdir Screen reader prompt for the equals button on the scientific operator keypad Tərs funksiya Screen reader prompt for the shift button on the number pad in scientific mode. Çıx Screen reader prompt for the minus button on the number pad Çıx We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Üstəgəl Screen reader prompt for the plus button on the number pad Kvadrat kök Screen reader prompt for the square root button on the scientific operator keypad Faiz Screen reader prompt for the percent button on the scientific operator keypad Müsbət mənfi Screen reader prompt for the negate button on the scientific operator keypad Müsbət mənfi Screen reader prompt for the negate button on the converter operator keypad Tərs qiymət Screen reader prompt for the invert button on the scientific operator keypad Sol mötərizə Screen reader prompt for the Calculator "(" button on the scientific operator keypad Sol mötərizə, açıq mötərizənin sayı %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Sağ mötərizə Screen reader prompt for the Calculator ")" button on the scientific operator keypad Açıq mötərizənin sayı %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Bağlamaq üçün açıq mötərizələr yoxdur. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Eksponensial format Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolik funksiya Screen reader prompt for the Calculator button HYP in the scientific operator keypad pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolik sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolik kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolik tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kub Screen reader prompt for the x cubed on the scientific operator keypad. Arksinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkkosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arktangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolik arksinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolik arkkosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperbolik arktangens Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' üstü Screen reader prompt for x power y button on the scientific operator keypad. On üstü Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' üstü Screen reader for the e power x on the scientific operator keypad. 'x'-in 'y' kökü Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Qeyd Screen reader for the log base 10 on the scientific operator keypad Natural loqarifm Screen reader for the log base e on the scientific operator keypad Əmsal Screen reader for the mod button on the scientific operator keypad Eksponensial Screen reader for the exp button on the scientific operator keypad Dərəcə dəqiqə saniyə Screen reader for the exp button on the scientific operator keypad Dərəcələr Screen reader for the exp button on the scientific operator keypad Tam hissə Screen reader for the int button on the scientific operator keypad Kəsir hissəsi Screen reader for the frac button on the scientific operator keypad Faktorial Screen reader for the factorial button on the basic operator keypad Dərəcə dəyişdiricisi This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Qrad dəyişdiricisi This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radian dəyişdiricisi This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Rejim üzrə aşağıaçılan sahə Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kateqoriyalar üzrə aşağıaçılan sahə Screen reader prompt for the Categories dropdown field. Digər pəncərələrin üzərində saxla Screen reader prompt for the Always-on-Top button when in normal mode. Tam görünüşə qayıt Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Digər pəncərələrin üzərində saxla (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Tam görünüşə qayıt (Alt+Aşağı ox) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 dəyərindən çevir Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 tam %2 dəyərindən çevir {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 dəyərinə çevirir Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 = %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Daxiletmə vahidi Screen reader prompt for the Unit Converter Units1 i.e. top units field. Çıxış vahidi Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Ərazi Unit conversion category name called Area (eg. area of a sports field in square meters) Verilənlər Unit conversion category name called Data Enerji Unit conversion category name called Energy. (eg. the energy in a battery or in food) Müddət Unit conversion category name called Length İşəsalma Unit conversion category name called Power (eg. the power of an engine or a light bulb) Sürət Unit conversion category name called Speed Vaxt Unit conversion category name called Time Həcm Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatur Unit conversion category name called Temperature Çəki və kütlə Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Təzyiq Unit conversion category name called Pressure Bucaq Unit conversion category name called Angle Valyuta Unit conversion category name called Currency Maye unsiya (BK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (BK) An abbreviation for a measurement unit of volume Maye unsiya (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (ABŞ) An abbreviation for a measurement unit of volume Qallon (BK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (BK) An abbreviation for a measurement unit of volume Qallon (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (ABŞ) An abbreviation for a measurement unit of volume Litr A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilitr A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pint (BK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (BK) An abbreviation for a measurement unit of volume Pint (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (ABŞ) An abbreviation for a measurement unit of volume Xörək qaşığı (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (ABŞ) An abbreviation for a measurement unit of volume Çay qaşığı (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (ABŞ) An abbreviation for a measurement unit of volume Xörək qaşığı (BK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (BK) An abbreviation for a measurement unit of volume Çay qaşığı (BK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (BK) An abbreviation for a measurement unit of volume Kvart (BK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (BK) An abbreviation for a measurement unit of volume Kvart (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (ABŞ) An abbreviation for a measurement unit of volume Fincan (ABŞ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fincan (ABŞ) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/dəq An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy sm An abbreviation for a measurement unit of length sm/san An abbreviation for a measurement unit of speed sm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume düym³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/san An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (ABŞ) An abbreviation for a measurement unit of power saat An abbreviation for a measurement unit of time düym An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kVs An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kkal An abbreviation for a measurement unit of energy kC An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/s An abbreviation for a measurement unit of speed kV An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/san An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time dəq An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/dəq An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time sm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area düym² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power hf An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length il An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Ar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britaniyanın istilik vahidləri A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU-lar/dəqiqə A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Termal kalorilər A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Santimetr A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bir saniyədə santimetr A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kub santimetr A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kub fut A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kub düym A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kub metr A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kub yard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gün A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Selsi An option in the unit converter to select degrees Celsius Farengeyt An option in the unit converter to select degrees Fahrenheit Elektron-volt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fut A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bir saniyədə fut A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fut-funt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fut-funt/dəqiqə A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Giqabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Giqabayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) At gücü (ABŞ) A measurement unit for power Saat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Düym A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Coul A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovat-saat A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Qida kalorisi A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilocoul A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometr A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometr/saat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovat A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Düyün A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Səs sürəti A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Meqabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meqabayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metr A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metr/saniyə A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosaniyələr A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil/saat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimetr A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisaniyə A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dəqiqə A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometr A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anqstrom A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dəniz milləri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Saniyə A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat santimetr A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat fut A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat düym A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat kilometr A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat metr A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat mil A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat millimetr A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrat yard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabayt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vat A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Həftə A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) İl A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle qrad An abbreviation for a measurement unit of Angle ATM An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kq An abbreviation for a measurement unit of weight ton (BK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (ABŞ) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dərəcələr A measurement unit for Angle. Radian A measurement unit for Angle. Qrad A measurement unit for Angle. Atmosfer A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopaskal A measurement unit for Pressure. Civə millimetr A measurement unit for Pressure. Paskallar A measurement unit for Pressure. Bir kvadrat düymə funt A measurement unit for Pressure. Sentiqram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekaqram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Desiqram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Qram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektoqram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kiloqram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Böyük ton (BK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milliqram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unsiya A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Funt A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Qısa ton (ABŞ) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Daş A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metr ton A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-lər A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-lər A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol sahələri A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol sahələri A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketlər A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketlər A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-lər A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-lər A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batareyalar AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batareyalar AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kağız qısqacları A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kağız qısqacları A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektrik lampaları A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektrik lampaları A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) at gücü A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) at gücü A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pivə qədəhi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pivə qədəhi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Qar dənəcikləri A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qar dənəcikləri A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) düym (kağız formatı) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) düym (kağız formatı) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tısbağa A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tısbağa A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balinalar A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balinalar A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kofe fincanları A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kofe fincanları A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) çimərlik hovuzları An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) çimərlik hovuzları An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) əllər A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) əllər A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kağız vərəqləri A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kağız vərəqləri A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qalalar A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qalalar A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banan A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banan A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortun dilimləri A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortun dilimləri A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qatar mühərrikləri A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qatar mühərrikləri A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol topları A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol topları A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yaddaş elementi Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Geri Screen reader prompt for the About panel back button Geri Content of tooltip being displayed on AboutControlBackButton Microsoft Proqramının Lisenziya Şərtləri Displayed on a link to the Microsoft Software License Terms on the About panel Önbaxış Label displayed next to upcoming features Microsoft Məxfilik Bildirişi Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Bütün hüquqlar qorunur. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows Kalkulyatora necə töhfə verməyi öyrənmək üçün layihəni %HL%GitHub%HL%-da yoxlayın. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Haqqında Subtitle of about message on Settings page Əks-əlaqə göndər The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Hələlik tarixçə yoxdur. The text that shows as the header for the history list Yaddaşda heç nə saxlanmayıb. The text that shows as the header for the memory list Yaddaş Screen reader prompt for the negate button on the converter operator keypad Bu ifadəni yerləşdirmək olmur The paste operation cannot be performed, if the expression is invalid. Gibibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibitlər A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibaytlar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tarix hesablanması Hesablama rejimi Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Əlavə et Add toggle button text Günlər əlavə et və ya çıxart Add or Subtract days option Tarix Date result label Tarixlər arasında fərq Date difference option Gün Add/Subtract Days label Fərq Difference result label Bu vaxtdan From Date Header for Difference Date Picker Aylar Add/Subtract Months label Çıxar Subtract toggle button text Bu vaxta kimi To Date Header for Difference Date Picker İl Add/Subtract Years label Tarix Hüdudlarından Kənarda Out of bound message shown as result when the date calculation exceeds the bounds gün günlər ay aylar Eyni tarixlər həftə həftələr il illər Fərq %1 Automation name for reading out the date difference. %1 = Date difference Nəticə tarixi %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Kalkulyator rejimi {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Çevirici rejimi {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Tarixin hesablanması rejimi Automation name for when the mode header is focused and the current mode is Date calculation. Tarixçə və Yaddaş siyahıları Automation name for the group of controls for history and memory lists. Yaddaşın idarə elementləri Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standart funksiyalar Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Displeyi idarə elementləri Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standart operatorlar Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Nömrə paneli Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Bucaq operatorları Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Elmi funksiyalar Automation name for the group of Scientific functions. Kök seçimi Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Proqramçı operatorları Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Daxiletmə rejimi seçimi Automation name for the group of input mode toggling buttons. İkili dəyişdirici klaviatura Automation name for the group of bit toggling buttons. İfadəni sola sürüşdür Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. İfadəni sağa sürüşdür Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maksimum rəqəm sayına çatıb. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 yaddaşda saxlandı {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". %1 yaddaş slotu budur: %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Yaddaş slotu %1 təmizləndi {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". bölünür Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. dəfə Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. çıx Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. üstəgəl Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. dərəcə Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y kökü Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. səviyyə Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. sola keçir Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. sağa keçir Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. yaxud Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x, yaxud Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Yeniləndi: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Tarifləri yeniləyin The text displayed for a hyperlink button that refreshes currency converter ratios. Məlumat xərcləri tətbiq oluna bilər. The text displayed when users are on a metered connection and using currency converter. Yeni tarifləri əldə etmək mümkün olmadı. Daha sonra yenidən cəhd edin. The text displayed when currency ratio data fails to load. Oflayn. %HL%Şəbəkə Parametrlərinizi%HL% yoxlayın Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Valyuta tarifləri yenilənir This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valyuta tarifləri yeniləndi This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Tarifləri yeniləmək mümkün olmadı This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Bütün yaddaşı təmizlə (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Bütün yaddaşı təmizlə Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus dərəcələri Name for the sine function in degrees mode. Used by screen readers. sinus radianları Name for the sine function in radians mode. Used by screen readers. sinus qradları Name for the sine function in gradians mode. Used by screen readers. geri sinus dərəcələri Name for the inverse sine function in degrees mode. Used by screen readers. geri sinus radianları Name for the inverse sine function in radians mode. Used by screen readers. geri sinus qradları Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolik sinus Name for the hyperbolic sine function. Used by screen readers. geri hiperbolik sinus Name for the inverse hyperbolic sine function. Used by screen readers. kosinus dərəcələri Name for the cosine function in degrees mode. Used by screen readers. kosinus radianları Name for the cosine function in radians mode. Used by screen readers. kosinus qradları Name for the cosine function in gradians mode. Used by screen readers. geri kosinus dərəcələri Name for the inverse cosine function in degrees mode. Used by screen readers. geri kosinus radianları Name for the inverse cosine function in radians mode. Used by screen readers. geri kosinus qradları Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolik kosinus Name for the hyperbolic cosine function. Used by screen readers. geri hiperbolik kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens dərəcələri Name for the tangent function in degrees mode. Used by screen readers. tangens radianları Name for the tangent function in radians mode. Used by screen readers. tangens qradları Name for the tangent function in gradians mode. Used by screen readers. geri tangens dərəcələri Name for the inverse tangent function in degrees mode. Used by screen readers. geri tangens radianları Name for the inverse tangent function in radians mode. Used by screen readers. geri tangens qradları Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolik tangens Name for the hyperbolic tangent function. Used by screen readers. geri hiperbolik tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekans dərəcələri Name for the secant function in degrees mode. Used by screen readers. sekans radianları Name for the secant function in radians mode. Used by screen readers. sekans qradianları Name for the secant function in gradians mode. Used by screen readers. arksekans dərəcələri Name for the inverse secant function in degrees mode. Used by screen readers. arksekans radianları Name for the inverse secant function in radians mode. Used by screen readers. arksekans qradianları Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolik sekans Name for the hyperbolic secant function. Used by screen readers. hiperbolik arksekans Name for the inverse hyperbolic secant function. Used by screen readers. kosekans dərəcələri Name for the cosecant function in degrees mode. Used by screen readers. kosekans radianları Name for the cosecant function in radians mode. Used by screen readers. kosekans qradianlar Name for the cosecant function in gradians mode. Used by screen readers. arkkosekans dərəcələri Name for the inverse cosecant function in degrees mode. Used by screen readers. arkkosekans radianları Name for the inverse cosecant function in radians mode. Used by screen readers. arkkosekans qradianları Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolik kosekans Name for the hyperbolic cosecant function. Used by screen readers. hiperbolik arkkosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangens dərəcələri Name for the cotangent function in degrees mode. Used by screen readers. Kotangens radianları Name for the cotangent function in radians mode. Used by screen readers. kotangens qradianları Name for the cotangent function in gradians mode. Used by screen readers. arkkotangens dərəcələri Name for the inverse cotangent function in degrees mode. Used by screen readers. arkkotangens radianları Name for the inverse cotangent function in radians mode. Used by screen readers. arkkotangens qradianları Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolik kotangens Name for the hyperbolic cotangent function. Used by screen readers. hiperbolik arkkotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kub kök Name for the cube root function. Used by screen readers. Loqarifm əsası Name for the logbasey function. Used by screen readers. Mütləq dəyər Name for the absolute value function. Used by screen readers. sola keçir Name for the programmer function that shifts bits to the left. Used by screen readers. sağa keçir Name for the programmer function that shifts bits to the right. Used by screen readers. faktorial Name for the factorial function. Used by screen readers. dərəcə dəqiqə saniyə Name for the degree minute second (dms) function. Used by screen readers. təbii loqarifm Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. y kökü Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kateqoriyası {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft Xidmət Müqaviləsi Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Bu vaxtdan From Date Header for AddSubtract Date Picker Hesablama nəticəsini sola sürüşdür Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Hesablama nəticəsini sağa sürüşdür Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Hesablama uğursuz oldu Text displayed when the application is not able to do a calculation Loqarifm əsası Y Screen reader prompt for the logBaseY button Triqonometriya Displayed on the button that contains a flyout for the trig functions in scientific mode. Funksiya Displayed on the button that contains a flyout for the general functions in scientific mode. Bərabərsizliklər Displayed on the button that contains a flyout for the inequality functions. Bərabərsizliklər Screen reader prompt for the Inequalities button Bit üzrə Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit yerdəyişməsi Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Tərs funksiya Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolik funksiya Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolik sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arksekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolik arksekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolik kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkkosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolik arkkosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolik kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkkotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolik arkkotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Maksimal tam ədəd Screen reader prompt for the Calculator button floor in the scientific flyout keypad Minimal tam ədəd Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Təsadüfi Screen reader prompt for the Calculator button random in the scientific flyout keypad Mütləq dəyər Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eyler ədədi Screen reader prompt for the Calculator button e in the scientific flyout keypad İki dərəcə əmsalı Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Köçürmə ilə sola döndər Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Köçürmə ilə sağa döndər Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Sola doğru yerdəyişmə Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Sola yerdəyişmə Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Sağa doğru yerdəyişmə Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Sağa yerdəyişmə Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Arifmetik yerdəyişmə Label for a radio button that toggles arithmetic shift behavior for the shift operations. Məntiqi yerdəyişmə Label for a radio button that toggles logical shift behavior for the shift operations. Dairəvi yerdəyişməni döndər Label for a radio button that toggles rotate circular behavior for the shift operations. Dairəvi yerdəyişmə köçürməsi ilə döndər Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kub kök Screen reader prompt for the cube root button on the scientific operator keypad Triqonometriya Screen reader prompt for the square root button on the scientific operator keypad Funksiyalar Screen reader prompt for the square root button on the scientific operator keypad Bit üzrə Screen reader prompt for the square root button on the scientific operator keypad Bit yerdəyişməsi Screen reader prompt for the square root button on the scientific operator keypad Elmi operator panelləri Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Proqramçı operator panelləri Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ən əhəmiyyətli bit Used to describe the last bit of a binary number. Used in bit flip Kalkulyatorda qrafikin qurulması Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Qrafik Screen reader prompt for the plot button on the graphing calculator operator keypad Görünüşü avtomatik yenilə (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Qrafik görünüşü Screen reader prompt for the graph view button. Avtomatik ən yaxşı uyğunlaşma Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Əl ilə tənzimləmə Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Qrafik görünüşü ilkin vəziyyətinə bərpa edildi Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Böyüt (Ctrl + plyus) This is the tool tip automation name for the Calculator zoom in button. Böyüt Screen reader prompt for the zoom in button. Kiçilt (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Kiçilt Screen reader prompt for the zoom out button. Tənlik əlavə et Placeholder text for the equation input button Bu dəfə paylaşmaq mümkün deyil. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Windows Kalkulyator ilə yaratdığım qrafikə baxın Sent as part of the shared content. The title for the share. Tənliklər Header that appears over the equations section when sharing Dəyişənlər Header that appears over the variables section when sharing Tənlikləri olan qrafik təsviri Alt text for the graph image when output via Share Dəyişənlər Header text for variables area Addım Label text for the step text box Min Label text for the min text box Maks Label text for the max text box Rəng Label for the Line Color section of the style picker Üslub Label for the Line Style section of the style picker Funksiya təhlili Title for KeyGraphFeatures Control Funksiyada hər hansı bir üfüqi asimptot yoxdur. Message displayed when the graph does not have any horizontal asymptotes Funksiyada hər hansı bir əyilmə nöqtəsi yoxdur. Message displayed when the graph does not have any inflection points Funksiyada hər hansı bir maksimum nöqtəsi yoxdur. Message displayed when the graph does not have any maxima Funksiyada hər hansı bir minimum nöqtəsi yoxdur. Message displayed when the graph does not have any minima Sabit String describing constant monotonicity of a function Azalan String describing decreasing monotonicity of a function Funksiyanın monotonluğunu müəyyənləşdirmək mümkün deyil. Error displayed when monotonicity cannot be determined Artan String describing increasing monotonicity of a function Funksiyanın monotonluğu məlum deyil. Error displayed when monotonicity is unknown Funksiyada hər hansı bir maili asimptotu yoxdur. Message displayed when the graph does not have any oblique asymptotes Funksiyanın bərabərliyini müəyyən etmək mümkün deyil. Error displayed when parity is cannot be determined Funksiya cütdür. Message displayed with the function parity is even Funksiya nə cüt, nə də tək deyil. Message displayed with the function parity is neither even nor odd Funksiya təkdir. Message displayed with the function parity is odd Funksiyanın bərabərliyi naməlumdur. Error displayed when parity is unknown Dövrilik bu funksiya üçün dəstəklənmir. Error displayed when periodicity is not supported Funksiya dövri deyil. Message displayed with the function periodicity is not periodic Funksiyanın dövriliyi naməlumdur. Message displayed with the function periodicity is unknown Bu xüsusiyyətlər Kalkulyator ilə hesablanmaq üçün çox mürəkkəbdir: Error displayed when analysis features cannot be calculated Funksiyada hər hansı bir şaquli asimptot yoxdur. Message displayed when the graph does not have any vertical asymptotes Funksiyada hər hansı bir x kəsişməsi yoxdur. Message displayed when the graph does not have any x-intercepts Funksiyada hər hansı bir y kəsişməsi yoxdur. Message displayed when the graph does not have any y-intercepts Domen Title for KeyGraphFeatures Domain Property Üfüqi asimptotlar Title for KeyGraphFeatures Horizontal aysmptotes Property Əyilmə nöqtəsi Title for KeyGraphFeatures Inflection points Property Bu funksiya üçün təhlil dəstəklənmir. Error displayed when graph analysis is not supported or had an error. Təhlillər yalnız f(x) formatında olan funksiyalar üçün dəstəklənir. Məsələn: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimum Title for KeyGraphFeatures Maxima Property Minimum Title for KeyGraphFeatures Minima Property Monotonluq Title for KeyGraphFeatures Monotonicity Property Maili asimptotlar Title for KeyGraphFeatures Oblique asymptotes Property Bərabərlik Title for KeyGraphFeatures Parity Property Dövrilik Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Diapazon Title for KeyGraphFeatures Range Property Şaquli asimptotlar Title for KeyGraphFeatures Vertical asymptotes Property X kəsişməsi Title for KeyGraphFeatures XIntercept Property Y kəsişməsi Title for KeyGraphFeatures YIntercept Property Funksiya üçün təhlilini icra etmək mümkün olmadı. Bu funksiya üçün domeni hesablamaq mümkün deyil. Error displayed when Domain is not returned from the analyzer. Bu funksiya üçün diapazonu hesablamaq mümkün deyil. Error displayed when Range is not returned from the analyzer. Kənara çıxma (rəqəm çox böyükdür) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Bu tənliyin qrafikini çəkmək üçün radianlar rejimi tələb olunur. Error that occurs during graphing when radians is required. Bu funksiya qrafikinin çəkilməsi üçün çox mürəkkəbdir Error that occurs during graphing when the equation is too complex. Bu tənliyin qrafikini çəkmək üçün dərəcələr rejimi tələb olunur. Error that occurs during graphing when degrees is required Faktorial funksiyada yanlış arqument var Error that occurs during graphing when a factorial function has an invalid argument. Faktorial funksiyada qrafikinin çəkilməsi üçün çox böyük olan arqument var Error that occurs during graphing when a factorial has a large n Modul yalnız bütün rəqəmlərlə istifadə edilə bilər Error that occurs during graphing when modulo is used with a float. Tənliyin həlli yoxdur Error that occurs during graphing when the equation has no solution. Sıfra bölmək mümkün deyil Error that occurs during graphing when a divison by zero occurs. Tənlikdə qarşılıqlı müstəsna olan məntiqi şərtlər var Error that occurs during graphing when mutually exclusive conditions are used. Tənlik domen xaricindədir Error that occurs during graphing when the equation is out of domain. Kalkulyatorda bu tənliyin qrafikinin qurulması dəstəklənmir Error that occurs during graphing when the equation is not supported. Tənlikdə dairəvi açılış mötərizəsi yoxdur Error that occurs during graphing when the equation is missing a ( Tənlikdə dairəvi bağlanan mötərizə yoxdur Error that occurs during graphing when the equation is missing a ) Rəqəmdə həddindən çox onluq nöqtəsi var Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Onluq nöqtədə rəqəm çatışmır Error that occurs during graphing with a decimal point without digits İfadənin gözlənilməz sonluğu var Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* İfadədə gözlənilməz simvollar var Error that occurs during graphing when there is an unexpected token. İfadədə yanlış simvollar var Error that occurs during graphing when there is an invalid token. Həddindən çox bərabər işarəsi var Error that occurs during graphing when there are too many equals. Funksiyada minimum bir x və ya y dəyişəni olmalıdır Error that occurs during graphing when the equation is missing x or y. Invalid expression Error that occurs during graphing when an invalid syntax is used. İfadə boşdur Error that occurs during graphing when the expression is empty Tənlik bərabər işarəsi olmadan istifadə edilib Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Funksiya adından sonra dairəvi mötərizə yoxdur Error that occurs during graphing when parenthesis are missing after a function. Riyazi əməliyyatın yanlış sayda parametri var Error that occurs during graphing when a function has the wrong number of parameters Dəyişən adı yanlışdır Error that occurs during graphing when a variable name is invalid. Tənlikdə açılış mötərizəsi yoxdur Error that occurs during graphing when a { is missing Tənlikdə bağlanan mötərizə yoxdur Error that occurs during graphing when a } is missing. “i” və “I” dəyişən adları kimi istifadə edilə bilməz Error that occurs during graphing when i or I is used. Tənliyin qrafikini çəkmək alınmadı General error that occurs during graphing. Rəqəm verilən əsasla həll edilə bilmədi Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Əsası 2-dən böyük, 36-dan kiçik olmalıdır Error that occurs during graphing when the base is out of range. Riyazi əməliyyat parametrlərindən birinin dəyişən olmasını tələb edir Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Tənlik məntiqi və skalyar operandları qarışdırır Error that occurs during graphing when operands are mixed. Such as true and 1. x və ya y yuxarı və ya aşağı limitlərdə istifadə edilə bilməz Error that occurs during graphing when x or y is used in integral upper limits. x və ya y limit punktunda istifadə edilə bilməz Error that occurs during graphing when x or y is used in the limit point. Kompleks sonsuzluq istifadə edilə bilməz Error that occurs during graphing when complex infinity is used Bərabərsizliklərdə kompleks ədədlər istifadə etmək olmaz Error that occurs during graphing when complex numbers are used in inequalities. Funksiya siyahısına qayıt This is the tooltip for the back button in the equation analysis page in the graphing calculator Funksiya siyahısına qayıt This is the automation name for the back button in the equation analysis page in the graphing calculator Funksiyanı təhlil et This is the tooltip for the analyze function button Funksiyanı təhlil et This is the automation name for the analyze function button Funksiyanı təhlil et This is the text for the for the analyze function context menu command Tənliyi sil This is the tooltip for the graphing calculator remove equation buttons Tənliyi sil This is the automation name for the graphing calculator remove equation buttons Tənliyi sil This is the text for the for the remove equation context menu command Paylaş This is the automation name for the graphing calculator share button. Paylaş This is the tooltip for the graphing calculator share button. Tənlik üslubunu dəyiş This is the tooltip for the graphing calculator equation style button Tənlik üslubunu dəyiş This is the automation name for the graphing calculator equation style button Tənlik üslubunu dəyiş This is the text for the for the equation style context menu command Tənliyi göstər This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Tənliyi gizlət This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 tənliyini göstər {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. %1 tənliyini gizlət {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. İzləməni dayandır This is the tooltip/automation name for the graphing calculator stop tracing button İzləməni başlat This is the tooltip/automation name for the graphing calculator start tracing button Qrafikə baxış pəncərəsi, x oxu %1 və %2 ilə məhdudlaşdırılıb, y oxu %3 və %4 ilə məhdudlaşdırılıb, %5 tənlik göstərilir {Locked="%1","%2", "%3", "%4", "%5"}. Sürüngəci konfiqurasiya et This is the tooltip text for the slider options button in Graphing Calculator Sürüngəci konfiqurasiya et This is the automation name text for the slider options button in Graphing Calculator Tənlik rejiminə keç Used in Graphing Calculator to switch the view to the equation mode Qrafik rejiminə keç Used in Graphing Calculator to switch the view to the graph mode Tənlik rejiminə keç Used in Graphing Calculator to switch the view to the equation mode Cari rejim tənlik rejimidir Announcement used in Graphing Calculator when switching to the equation mode Cari rejim qrafik rejimidir Announcement used in Graphing Calculator when switching to the graph mode Pəncərə Heading for window extents on the settings Dərəcə Degrees mode on settings page Qrad Gradian mode on settings page Radian Radians mode on settings page Vahidlər Heading for Unit's on the settings Görünüşü sıfırla Hyperlink button to reset the view of the graph X-Maks X maximum value header X-Min X minimum value header Y-Maks Y Maximum value header Y-Min Y minimum value header Qrafik seçimləri This is the tooltip text for the graph options button in Graphing Calculator Qrafik seçimləri This is the automation name text for the graph options button in Graphing Calculator Qrafik seçimləri Heading for the Graph options flyout in Graphing mode. Dəyişən seçimləri Screen reader prompt for the variable settings toggle button Dəyişən seçimlərini dəyiş Tool tip for the variable settings toggle button Xəttin qalınlığı Heading for the Graph options flyout in Graphing mode. Xətt seçimləri Heading for the equation style flyout in Graphing mode. Kiçik xəttin eni Automation name for line width setting Orta xəttin eni Automation name for line width setting Böyük xəttin eni Automation name for line width setting Ekstra böyük xəttin eni Automation name for line width setting İfadə daxil edin this is the placeholder text used by the textbox to enter an equation Köçür Copy menu item for the graph context menu Kəs Cut menu item from the Equation TextBox Köçür Copy menu item from the Equation TextBox Əlavə et Paste menu item from the Equation TextBox Qaytar Undo menu item from the Equation TextBox Hamısını seç Select all menu item from the Equation TextBox Funksiya daxiletməsi The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funksiya daxiletməsi The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funksiyanın daxiletmə paneli The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Dəyişən panel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Dəyişən siyahı The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Dəyişən %1 siyahı elementi The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Dəyişən qiymət üzrə mətn qutusu The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Dəyişən qiymət sürüngəci The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Dəyişən minimum qiymət üzrə mətn qutusu The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Dəyişən addım qiyməti üzrə mətn qutusu The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Dəyişən maksimum qiyməti üzrə mətn qutusu The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Bütöv xətt üslubu Name of the solid line style for a graphed equation Nöqtəli xətt üslubu Name of the dotted line style for a graphed equation Ştrix-punktirli xətt üslubu Name of the dashed line style for a graphed equation Dəniz mavisi Name of color in the color picker Dəniz köpüyü Name of color in the color picker Bənövşəyi Name of color in the color picker Yaşıl Name of color in the color picker Nanə yaşılı Name of color in the color picker Tünd yaşıl Name of color in the color picker Kömür Name of color in the color picker Qırmızı Name of color in the color picker Açıq bənövşəyi Name of color in the color picker Al-qırmızı Name of color in the color picker Sarı qızılı Name of color in the color picker Parlaq narıncı Name of color in the color picker Qəhvəyi Name of color in the color picker Qara Name of color in the color picker Name of color in the color picker Rəng 1 Name of color in the color picker Rəng 2 Name of color in the color picker Rəng 3 Name of color in the color picker Rəng 4 Name of color in the color picker Qrafik mövzusu Graph settings heading for the theme options Həmişə açıq Graph settings option to set graph to light theme Proqram mövzusuna uyğun Graph settings option to set graph to match the app theme Mövzu This is the automation name text for the Graph settings heading for the theme options Həmişə açıq This is the automation name text for the Graph settings option to set graph to light theme Proqram mövzusuna uyğun This is the automation name text for the Graph settings option to set graph to match the app theme Funksiya silindi Announcement used in Graphing Calculator when a function is removed from the function list Funksiyanın təhlili üçün tənlik qutusu This is the automation name text for the equation box in the function analysis panel Bərabərdir Screen reader prompt for the equal button on the graphing calculator operator keypad Kiçik Screen reader prompt for the Less than button Kiçik və ya bərabər Screen reader prompt for the Less than or equal button Bərabər Screen reader prompt for the Equal button Böyük və ya bərabər Screen reader prompt for the Greater than or equal button Böyük Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Göndər Screen reader prompt for the submit button on the graphing calculator operator keypad Funksiya təhlili Screen reader prompt for the function analysis grid Qrafik seçimləri Screen reader prompt for the graph options panel Tarixçə və Yaddaş siyahıları Automation name for the group of controls for history and memory lists. Yaddaş siyahısı Automation name for the group of controls for memory list. Tarixçə slotu %1 silindi {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulyator həmişə yuxarıdadır Announcement to indicate calculator window is always shown on top. Kalkulyator tam görünüşə qayıdıb Announcement to indicate calculator window is now back to full view. Arifmetik yerdəyişmə seçildi Label for a radio button that toggles arithmetic shift behavior for the shift operations. Məntiqi yerdəyişmə seçildi Label for a radio button that toggles logical shift behavior for the shift operations. Dairəvi yerdəyişməni döndər seçimi edildi Label for a radio button that toggles rotate circular behavior for the shift operations. Dairəvi yerdəyişmə köçürməsi ilə döndər seçimi edildi Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Parametrlər Header text of Settings page Görünüş Subtitle of appearance setting on Settings page Proqramın mövzusu Title of App theme expander Göstəriləcək proqramın mövzusunu seçin Description of App theme expander Açıq Lable for light theme option Tünd Lable for dark theme option Sistem parametrindən istifadə et Lable for the app theme option to use system setting Geri Screen reader prompt for the Back button in title bar to back to main page Parametrlər səhifəsi Announcement used when Settings page is opened Mövcud fəaliyyətlər üçün kontekst menyunu açın Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Bu ani görüntünü bərpa etmək mümkün olmadı. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/bg-BG/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Невалидно въвеждане Error message shown when the input makes a function fail, like log(-1) Недефиниран резултат Error message shown when there's no possible value for a function. Недостатъчна памет Error message shown when we run out of memory during a calculation. Препълване Error message shown when there's an overflow during the calculation. Резултатът не е дефиниран Same as 101 Резултатът не е дефиниран Same 101 Препълване Same as 107 Препълване Same 107 Няма деление на нула Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/bg-BG/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Калкулатор {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Калкулатор [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Калкулатор на Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Калкулатор на Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Калкулатор {@Appx_Description@} This description is used for the official application when published through Windows Store. Калкулатор [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Копиране Copy context menu string Поставяне Paste context menu string Приблизително равно на The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, стойност %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 бит {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-ти Sub-string used in automation name for 63 bit in bit flip 62-ри Sub-string used in automation name for 62 bit in bit flip 61-ви Sub-string used in automation name for 61 bit in bit flip 60-и Sub-string used in automation name for 60 bit in bit flip 59-и Sub-string used in automation name for 59 bit in bit flip 58-и Sub-string used in automation name for 58 bit in bit flip 57-и Sub-string used in automation name for 57 bit in bit flip 56-и Sub-string used in automation name for 56 bit in bit flip 55-и Sub-string used in automation name for 55 bit in bit flip 54-ти Sub-string used in automation name for 54 bit in bit flip 53-ти Sub-string used in automation name for 53 bit in bit flip 52-ри Sub-string used in automation name for 52 bit in bit flip 51-ви Sub-string used in automation name for 51 bit in bit flip 50-и Sub-string used in automation name for 50 bit in bit flip 49-и Sub-string used in automation name for 49 bit in bit flip 48-и Sub-string used in automation name for 48 bit in bit flip 47-и Sub-string used in automation name for 47 bit in bit flip 46-и Sub-string used in automation name for 46 bit in bit flip 45-и Sub-string used in automation name for 45 bit in bit flip 44-ти Sub-string used in automation name for 44 bit in bit flip 43-ти Sub-string used in automation name for 43 bit in bit flip 42-ри Sub-string used in automation name for 42 bit in bit flip 41-ви Sub-string used in automation name for 41 bit in bit flip 40-ти Sub-string used in automation name for 40 bit in bit flip 39-и Sub-string used in automation name for 39 bit in bit flip 38-и Sub-string used in automation name for 38 bit in bit flip 37-и Sub-string used in automation name for 37 bit in bit flip 36-и Sub-string used in automation name for 36 bit in bit flip 35-и Sub-string used in automation name for 35 bit in bit flip 34-ти Sub-string used in automation name for 34 bit in bit flip 33-ти Sub-string used in automation name for 33 bit in bit flip 32-ри Sub-string used in automation name for 32 bit in bit flip 31-ви Sub-string used in automation name for 31 bit in bit flip 30-и Sub-string used in automation name for 30 bit in bit flip 29-и Sub-string used in automation name for 29 bit in bit flip 28-и Sub-string used in automation name for 28 bit in bit flip 27-и Sub-string used in automation name for 27 bit in bit flip 26-и Sub-string used in automation name for 26 bit in bit flip 25-и Sub-string used in automation name for 25 bit in bit flip 24-ти Sub-string used in automation name for 24 bit in bit flip 23-ти Sub-string used in automation name for 23 bit in bit flip 22-ри Sub-string used in automation name for 22 bit in bit flip 21-ви Sub-string used in automation name for 21 bit in bit flip 20-и Sub-string used in automation name for 20 bit in bit flip 19-и Sub-string used in automation name for 19 bit in bit flip 18-и Sub-string used in automation name for 18 bit in bit flip 17-и Sub-string used in automation name for 17 bit in bit flip 16-и Sub-string used in automation name for 16 bit in bit flip 15-и Sub-string used in automation name for 15 bit in bit flip 14-и Sub-string used in automation name for 14 bit in bit flip 13-и Sub-string used in automation name for 13 bit in bit flip 12-и Sub-string used in automation name for 12 bit in bit flip 11-и Sub-string used in automation name for 11 bit in bit flip 10-и Sub-string used in automation name for 10 bit in bit flip 9-и Sub-string used in automation name for 9 bit in bit flip 8-и Sub-string used in automation name for 8 bit in bit flip 7-и Sub-string used in automation name for 7 bit in bit flip 6-и Sub-string used in automation name for 6 bit in bit flip 5-и Sub-string used in automation name for 5 bit in bit flip 4-ти Sub-string used in automation name for 4 bit in bit flip 3-ти Sub-string used in automation name for 3 bit in bit flip 2-ри Sub-string used in automation name for 2 bit in bit flip 1-ви Sub-string used in automation name for 1 bit in bit flip бит с най-малко значение Used to describe the first bit of a binary number. Used in bit flip Отваряне на допълнителното меню за памет This is the automation name and label for the memory button when the memory flyout is closed. Затваряне на допълнителното меню за памет This is the automation name and label for the memory button when the memory flyout is open. Задържане отгоре This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Обратно към пълния изглед This is the tool tip automation name for the always-on-top button when in always-on-top mode. Памет This is the tool tip automation name for the memory button. Хронология (Ctrl+H) This is the tool tip automation name for the history button. Клавиатура за превключване на битове This is the tool tip automation name for the bitFlip button. Пълна клавиатура This is the tool tip automation name for the numberPad button. Изчистване на цялата памет (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Памет The text that shows as the header for the memory list Памет The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Хронология The text that shows as the header for the history list Хронология The automation name for the History pivot item that is shown when Calculator is in wide layout. Конвертор Label for a control that activates the unit converter mode. Научен Label for a control that activates scientific mode calculator layout Стандартен Label for a control that activates standard mode calculator layout. Режим на конвертор Screen reader prompt for a control that activates the unit converter mode. Научен режим Screen reader prompt for a control that activates scientific mode calculator layout Стандартен режим Screen reader prompt for a control that activates standard mode calculator layout. Изчистване на цялата хронология "ClearHistory" used on the calculator history pane that stores the calculation history. Изчистване на цялата хронология This is the tool tip automation name for the Clear History button. Скриване "HideHistory" used on the calculator history pane that stores the calculation history. Стандартен The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Научен The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Програмист The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Конвертор The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Калкулатор The text that shows in the dropdown navigation control for the calculator group. Конвертор The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Калкулатор The text that shows in the dropdown navigation control for the calculator group in upper case. Конвертори Pluralized version of the converter group text, used for the screen reader prompt. Калкулатори Pluralized version of the calculator group text, used for the screen reader prompt. Изгледът е %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Изразът е %1, текущите входни данни са %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Показва се в запетая до %1 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Изразът е %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Показаната стойност е копирана в клипборда Screen reader prompt for the Calculator display copy button, when the button is invoked. Хронология Screen reader prompt for the history flyout Памет Screen reader prompt for the memory flyout Шестнадесетична %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Десетично %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Осмична %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Двоична %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Изчистване на цялата хронология Screen reader prompt for the Calculator History Clear button Хронологията е изчистена Screen reader prompt for the Calculator History Clear button, when the button is invoked. Скриване на хронологията Screen reader prompt for the Calculator History Hide button Отваряне на допълнителното меню за хронология Screen reader prompt for the Calculator History button, when the flyout is closed. Затваряне на допълнителното меню за хронология Screen reader prompt for the Calculator History button, when the flyout is open. Съхраняване в паметта Screen reader prompt for the Calculator Memory button Съхраняване в паметта (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Изчистване на цялата памет Screen reader prompt for the Calculator Clear Memory button Паметта е изчистена Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Извличане от паметта Screen reader prompt for the Calculator Memory Recall button Извличане от паметта (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Добавяне в паметта Screen reader prompt for the Calculator Memory Add button Добавяне в паметта (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Изваждане от паметта Screen reader prompt for the Calculator Memory Subtract button Изваждане от паметта (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Изчистване на елемент от паметта Screen reader prompt for the Calculator Clear Memory button Изчистване на елемент от паметта This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Добавяне към елемент от паметта Screen reader prompt for the Calculator Memory Add button in the Memory list Добавяне към елемент от паметта This is the tool tip automation name for the Calculator Memory Add button in the Memory list Изваждане от елемент от паметта Screen reader prompt for the Calculator Memory Subtract button in the Memory list Изваждане от елемент от паметта This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Изчистване на елемент от паметта Screen reader prompt for the Calculator Clear Memory button Изчистване на елемент от паметта Text string for the Calculator Clear Memory option in the Memory list context menu Добавяне към елемент от паметта Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Добавяне към елемент от паметта Text string for the Calculator Memory Add option in the Memory list context menu Изваждане от елемент от паметта Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Изваждане от елемент от паметта Text string for the Calculator Memory Subtract option in the Memory list context menu Изтриване Text string for the Calculator Delete swipe button in the History list Копиране Text string for the Calculator Copy option in the History list context menu Изтриване Text string for the Calculator Delete option in the History list context menu Изтриване на елемент от хронологията Screen reader prompt for the Calculator Delete swipe button in the History list Изтриване на елемент от хронологията Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Нула Screen reader prompt for the Calculator number "0" button Едно Screen reader prompt for the Calculator number "1" button Две Screen reader prompt for the Calculator number "2" button Три Screen reader prompt for the Calculator number "3" button Четири Screen reader prompt for the Calculator number "4" button Пет Screen reader prompt for the Calculator number "5" button Шест Screen reader prompt for the Calculator number "6" button Седем Screen reader prompt for the Calculator number "7" button Осем Screen reader prompt for the Calculator number "8" button Девет Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button И Screen reader prompt for the Calculator And button Или Screen reader prompt for the Calculator Or button Не Screen reader prompt for the Calculator Not button Завъртане наляво Screen reader prompt for the Calculator ROL button Завъртане надясно Screen reader prompt for the Calculator ROR button Изместване наляво Screen reader prompt for the Calculator LSH button Изместване надясно Screen reader prompt for the Calculator RSH button Изключващо или Screen reader prompt for the Calculator XOR button Превключвател за четворни думи Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Превключвател за двойни думи Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Превключвател за думи Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Превключвател за байтове Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Клавиатура за превключване на битове Screen reader prompt for the Calculator bitFlip button Пълна клавиатура Screen reader prompt for the Calculator numberPad button Десетичен разделител Screen reader prompt for the "." button Изчистване на записа Screen reader prompt for the "CE" button Изчисти Screen reader prompt for the "C" button Деление на Screen reader prompt for the divide button on the number pad Умножено по Screen reader prompt for the multiply button on the number pad Равно на Screen reader prompt for the equals button on the scientific operator keypad Обратна функция Screen reader prompt for the shift button on the number pad in scientific mode. Минус Screen reader prompt for the minus button on the number pad Минус We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Плюс Screen reader prompt for the plus button on the number pad Корен квадратен Screen reader prompt for the square root button on the scientific operator keypad Процент Screen reader prompt for the percent button on the scientific operator keypad Положително, отрицателно Screen reader prompt for the negate button on the scientific operator keypad Положително, отрицателно Screen reader prompt for the negate button on the converter operator keypad Реципрочно Screen reader prompt for the invert button on the scientific operator keypad Лява скоба Screen reader prompt for the Calculator "(" button on the scientific operator keypad Лява скоба, брой на отваряща скоба %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Дясна скоба Screen reader prompt for the Calculator ")" button on the scientific operator keypad Брой отворени скоби: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Няма отворени скоби за затваряне. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Експоненциален запис Screen reader prompt for the Calculator F-E the scientific operator keypad Хиперболична функция Screen reader prompt for the Calculator button HYP in the scientific operator keypad Пи Screen reader prompt for the Calculator pi button on the scientific operator keypad Синус Screen reader prompt for the Calculator sin button on the scientific operator keypad Косинус Screen reader prompt for the Calculator cos button on the scientific operator keypad Тангенс Screen reader prompt for the Calculator tan button on the scientific operator keypad Хиперболичен синус Screen reader prompt for the Calculator sinh button on the scientific operator keypad Хиперболичен косинус Screen reader prompt for the Calculator cosh button on the scientific operator keypad Хиперболичен тангенс Screen reader prompt for the Calculator tanh button on the scientific operator keypad Квадрат Screen reader prompt for the x squared on the scientific operator keypad. Куб Screen reader prompt for the x cubed on the scientific operator keypad. Аркуссинус Screen reader prompt for the inverted sin on the scientific operator keypad. Аркускосинус Screen reader prompt for the inverted cos on the scientific operator keypad. Аркустангенс Screen reader prompt for the inverted tan on the scientific operator keypad. Хиперболичен аркуссинус Screen reader prompt for the inverted sinh on the scientific operator keypad. Хиперболичен аркускосинус Screen reader prompt for the inverted cosh on the scientific operator keypad. Хиперболичен аркустангенс Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' на степен Screen reader prompt for x power y button on the scientific operator keypad. Десет на степен Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' на степен Screen reader for the e power x on the scientific operator keypad. 'y' от 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Логаритъм Screen reader for the log base 10 on the scientific operator keypad Естествен логаритъм Screen reader for the log base e on the scientific operator keypad По модул Screen reader for the mod button on the scientific operator keypad Експоненциална функция Screen reader for the exp button on the scientific operator keypad Градуси, минути, секунди Screen reader for the exp button on the scientific operator keypad Градуси Screen reader for the exp button on the scientific operator keypad Цяла част Screen reader for the int button on the scientific operator keypad Дробна част Screen reader for the frac button on the scientific operator keypad Факториел Screen reader for the factorial button on the basic operator keypad Превключвател за степени This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Превключвател за градуси This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Превключвател за радиани This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Падащо меню за режим Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Падащо меню за категории Screen reader prompt for the Categories dropdown field. Задържане отгоре Screen reader prompt for the Always-on-Top button when in normal mode. Обратно към пълния изглед Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Задържане отгоре (Alt + стрелка нагоре) This is the tool tip automation name for the Always-on-Top button when in normal mode. Обратно към пълния изглед (Alt + стрелка надолу) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Конвертиране от %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Конвертиране от %1 цяло и %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Конвертиране в %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 е %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Единица за въвеждане Screen reader prompt for the Unit Converter Units1 i.e. top units field. Изходна единица Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Площ Unit conversion category name called Area (eg. area of a sports field in square meters) Данни Unit conversion category name called Data Енергия Unit conversion category name called Energy. (eg. the energy in a battery or in food) Дължина Unit conversion category name called Length Мощност Unit conversion category name called Power (eg. the power of an engine or a light bulb) Скорост Unit conversion category name called Speed Време Unit conversion category name called Time Обем Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Температура Unit conversion category name called Temperature Тегло и маса Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Налягане Unit conversion category name called Pressure Ъгъл Unit conversion category name called Angle Валута Unit conversion category name called Currency Течни унции (Обединеното кралство) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) течни унции (Обединеното кралство) An abbreviation for a measurement unit of volume Течни унции (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) течни унции (САЩ) An abbreviation for a measurement unit of volume Галона (Обединеното кралство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галона (Обединеното кралство) An abbreviation for a measurement unit of volume Галона (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галона (САЩ) An abbreviation for a measurement unit of volume Литра A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume милилитра A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мл An abbreviation for a measurement unit of volume пинти (Обединеното кралство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (Обединеното кралство) An abbreviation for a measurement unit of volume пинти (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (САЩ) An abbreviation for a measurement unit of volume с. л. (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) с. л. (САЩ) An abbreviation for a measurement unit of volume ч. л. (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ч. л. (САЩ) An abbreviation for a measurement unit of volume с. л. (Обединеното кралство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) с. л. (Обединеното кралство) An abbreviation for a measurement unit of volume ч. л. (Обединеното кралство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ч. л. (Обединеното кралство) An abbreviation for a measurement unit of volume Кварти (Обединеното кралство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварти (Обединеното кралство) An abbreviation for a measurement unit of volume Кварти (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварта (САЩ) An abbreviation for a measurement unit of volume Чаши (САЩ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) чаши (САЩ) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length акра An abbreviation for a measurement unit of volume бит An abbreviation for a measurement unit of data BTU (британска топлинна единица) An abbreviation for a measurement unit of volume BTU/мин An abbreviation for a measurement unit of power Байт An abbreviation for a measurement unit of data калории An abbreviation for a measurement unit of energy сантиметра An abbreviation for a measurement unit of length см/сек An abbreviation for a measurement unit of speed см³ An abbreviation for a measurement unit of volume фута³ An abbreviation for a measurement unit of volume инч³ An abbreviation for a measurement unit of volume м³ An abbreviation for a measurement unit of volume ярд³ An abbreviation for a measurement unit of volume дни An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" електронволта An abbreviation for a measurement unit of energy фута An abbreviation for a measurement unit of length фута/сек An abbreviation for a measurement unit of speed фут-фунта An abbreviation for a measurement unit of energy Гбит An abbreviation for a measurement unit of data ГБ An abbreviation for a measurement unit of data хектара An abbreviation for a measurement unit of area к.с. (САЩ) An abbreviation for a measurement unit of power часа An abbreviation for a measurement unit of time инча An abbreviation for a measurement unit of length джаула An abbreviation for a measurement unit of energy КВт/ч An abbreviation for a measurement unit of electricity consumption келвина An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Кбит An abbreviation for a measurement unit of data КБ An abbreviation for a measurement unit of data килокалории An abbreviation for a measurement unit of energy килоджаула An abbreviation for a measurement unit of energy км An abbreviation for a measurement unit of length км/ч An abbreviation for a measurement unit of speed киловата An abbreviation for a measurement unit of power възела An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мбит An abbreviation for a measurement unit of data МБ An abbreviation for a measurement unit of data метра An abbreviation for a measurement unit of length м/сек An abbreviation for a measurement unit of speed микрометра An abbreviation for a measurement unit of length микросекунди An abbreviation for a measurement unit of time мили An abbreviation for a measurement unit of length мили/час An abbreviation for a measurement unit of speed мм An abbreviation for a measurement unit of length милисекунди An abbreviation for a measurement unit of time минути An abbreviation for a measurement unit of time нанометра An abbreviation for a measurement unit of length морски мили An abbreviation for a measurement unit of length Пбит An abbreviation for a measurement unit of data ПБ An abbreviation for a measurement unit of data фут-фунта/мин An abbreviation for a measurement unit of power сек An abbreviation for a measurement unit of time см² An abbreviation for a measurement unit of area фута² An abbreviation for a measurement unit of area инч² An abbreviation for a measurement unit of area км² An abbreviation for a measurement unit of area м² An abbreviation for a measurement unit of area мили² An abbreviation for a measurement unit of area мм² An abbreviation for a measurement unit of area ярда² An abbreviation for a measurement unit of area Tбита An abbreviation for a measurement unit of data An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power седмици An abbreviation for a measurement unit of time ярда An abbreviation for a measurement unit of length години An abbreviation for a measurement unit of time Ги An abbreviation for a measurement unit of data ГиБ An abbreviation for a measurement unit of data Ки An abbreviation for a measurement unit of data КиБ An abbreviation for a measurement unit of data Ми An abbreviation for a measurement unit of data МиБ An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Пи An abbreviation for a measurement unit of data ПиБ An abbreviation for a measurement unit of data Ти An abbreviation for a measurement unit of data ТиБ An abbreviation for a measurement unit of data Е An abbreviation for a measurement unit of data ЕБ An abbreviation for a measurement unit of data Еи An abbreviation for a measurement unit of data ЕиБ An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Зи An abbreviation for a measurement unit of data ЗиБ An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data ЙБ An abbreviation for a measurement unit of data Йи An abbreviation for a measurement unit of data ЙиБ An abbreviation for a measurement unit of data Акра A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Бита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Британски термични единици A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/минута A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Байта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Топлинни калории A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметра A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметра в секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубични сантиметра A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубични фута A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубични инча A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубични метра A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубични ярда A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дни A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Целзий An option in the unit converter to select degrees Celsius Фаренхайт An option in the unit converter to select degrees Fahrenheit Електронволта A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фута A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фута в секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут-фунта A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут-фунта/минута A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гигабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гигабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Хектара A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) конски сили (САЩ) A measurement unit for power часа A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Инча A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) джаула A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловат-часа A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Келвина An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Килобита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) килобайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Хранителни калории A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килоджаула A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) километра A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) километра в час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловата A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Възела A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мах A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) мегабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мегабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метра A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) метра в секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Микрона A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) микросекунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мили A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мили в час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) милиметра A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) милисекунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) минути A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гризане A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нанометра A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ангстрьоми A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Морски мили A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) петабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) секунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни сантиметра A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни фута A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни инча A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратни километра A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратни метра A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратни мили A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни милиметра A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни ярда A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) вата A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Седмици A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ярда A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) години A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) карата An abbreviation for a measurement unit of weight гр. An abbreviation for a measurement unit of Angle рад. An abbreviation for a measurement unit of Angle градиана An abbreviation for a measurement unit of Angle атм. An abbreviation for a measurement unit of Pressure бара An abbreviation for a measurement unit of Pressure кПа An abbreviation for a measurement unit of Pressure мм ж. ст. An abbreviation for a measurement unit of Pressure Па An abbreviation for a measurement unit of Pressure фунтa/квадратен инч An abbreviation for a measurement unit of Pressure сантиграма An abbreviation for a measurement unit of weight декаграма An abbreviation for a measurement unit of weight дециграма An abbreviation for a measurement unit of weight грама An abbreviation for a measurement unit of weight хектограма An abbreviation for a measurement unit of weight кг An abbreviation for a measurement unit of weight тона (Обединеното кралство) An abbreviation for a measurement unit of weight мг An abbreviation for a measurement unit of weight унции An abbreviation for a measurement unit of weight фунта An abbreviation for a measurement unit of weight тона (САЩ) An abbreviation for a measurement unit of weight стоуна An abbreviation for a measurement unit of weight тона An abbreviation for a measurement unit of weight Карата A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Градуса A measurement unit for Angle. радиана A measurement unit for Angle. Градиана A measurement unit for Angle. Атмосфери A measurement unit for Pressure. Бара A measurement unit for Pressure. килопаскала A measurement unit for Pressure. милиметра живаченстълб A measurement unit for Pressure. паскала A measurement unit for Pressure. паунда на квадратен инч A measurement unit for Pressure. Сантиграма A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Декаграма A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дециграма A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) грама A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Хектограма A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килограма A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) англ. тона (Обединеното кралство) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) милиграма A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Унции A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фунта A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) американски тона (САЩ) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) стоуна A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) метрични тона A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD диска A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD диска A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футболни терена A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футболни терена A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискети A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискети A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD диска A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD диска A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батерии AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батерии AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кламера A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кламери A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) широкофюзелажни самолета A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) широкофюзелажни самолета A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) електрически крушки A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) електрически крушки A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) коня A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) коня A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) вани A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) вани A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снежинки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снежинки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слона An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слона An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) костенурки A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) костенурки A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивни самолета A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивни самолета A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кита A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кита A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кафени чаши A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кафени чаши A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) плувни басейна An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) плувни басейна An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ръце A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ръце A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листа хартия A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листа хартия A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) замъка A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) замъка A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банана A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банана A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) парчета торта A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) парчета торта A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) локомотивни двигателя A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) локомотивни двигателя A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футболни топки A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футболни топки A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Елемент от паметта Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Назад Screen reader prompt for the About panel back button Назад Content of tooltip being displayed on AboutControlBackButton Лицензионни условия за софтуер от Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Предварителен преглед Label displayed next to upcoming features Декларация за поверителност на Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Всички права запазени. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) За да научите как можете да участвате в калкулатора на Windows, прегледайте проекта на %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Относно Subtitle of about message on Settings page Изпращане на обратна връзка The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Все още няма хронология. The text that shows as the header for the history list В паметта не е записано нищо. The text that shows as the header for the memory list Памет Screen reader prompt for the negate button on the converter operator keypad Този израз не може да бъде поставен The paste operation cannot be performed, if the expression is invalid. гибибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гибибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мебибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пебибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) тебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тебибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Екзабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Екзабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексбибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексбибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зетабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зетабайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зебибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йотабити A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йотабайти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) йобибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йобибайта A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Изчисляване на дата Режим на изчисляване Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Добавяне Add toggle button text Добавяне или изваждане на дни Add or Subtract days option Дата Date result label Разлика между датите Date difference option Дни Add/Subtract Days label Разлика Difference result label От From Date Header for Difference Date Picker Месеци Add/Subtract Months label Изваждане Subtract toggle button text До To Date Header for Difference Date Picker години Add/Subtract Years label Датата е извън лимит Out of bound message shown as result when the date calculation exceeds the bounds ден дни месец месеци Еднакви дати седмица седмици година години Разлика %1 Automation name for reading out the date difference. %1 = Date difference Получена дата %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Режим на калкулатор %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Режим на конвертор %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Режим на изчисляване на дата Automation name for when the mode header is focused and the current mode is Date calculation. Хронология и списъци с памет Automation name for the group of controls for history and memory lists. Контроли за памет Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Стандартни функции Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Контроли за изглед Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Стандартни оператори Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Цифрова клавиатура Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Оператори за ъгъл Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Научни функции Automation name for the group of Scientific functions. Избор на основа Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Оператори за програмисти Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Избор на режим на въвеждане Automation name for the group of input mode toggling buttons. Побитова клавиатура Automation name for the group of bit toggling buttons. Превъртане на израза наляво Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Превъртане на израза надясно Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Достигнат брой максимални цифри. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 е записано в паметта {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Слотът за памет %1 е %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Слотът за памет %1 е изчистен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". разделено на Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. пъти Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. минус Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. плюс Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. на степен Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y корен Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. изместване наляво Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. изместване надясно Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. или Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x или Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. и Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Актуализирано на %1 в %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Актуализиране на обменни курсове The text displayed for a hyperlink button that refreshes currency converter ratios. Може да се прилагат такси за данни. The text displayed when users are on a metered connection and using currency converter. Неуспешно получаване на нови обменни курсове. Опитайте отново по-късно. The text displayed when currency ratio data fails to load. Офлайн. Проверете вашите%HL%Мрежови настройки%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Актуализиране на валутни курсове This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Валутните курсове са актуализирани This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Неуспешна актуализация на обменни курсове This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} Е AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Изчистване на цялата памет (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Изчистване на цялата памет Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} синус в градуси Name for the sine function in degrees mode. Used by screen readers. синус в радиани Name for the sine function in radians mode. Used by screen readers. синус в гради Name for the sine function in gradians mode. Used by screen readers. обратен синус в градуси Name for the inverse sine function in degrees mode. Used by screen readers. обратен синус в радиани Name for the inverse sine function in radians mode. Used by screen readers. обратен синус в гради Name for the inverse sine function in gradians mode. Used by screen readers. хиперболичен синус Name for the hyperbolic sine function. Used by screen readers. обратен хиперболичен синус Name for the inverse hyperbolic sine function. Used by screen readers. косинус в градуси Name for the cosine function in degrees mode. Used by screen readers. косинус в радиани Name for the cosine function in radians mode. Used by screen readers. косинус в гради Name for the cosine function in gradians mode. Used by screen readers. обратен косинус в градуси Name for the inverse cosine function in degrees mode. Used by screen readers. обратен косинус в радиани Name for the inverse cosine function in radians mode. Used by screen readers. обратен косинус в гради Name for the inverse cosine function in gradians mode. Used by screen readers. хиперболичен косинус Name for the hyperbolic cosine function. Used by screen readers. обратен хиперболичен косинус Name for the inverse hyperbolic cosine function. Used by screen readers. тангенс в градуси Name for the tangent function in degrees mode. Used by screen readers. тангенс в радиани Name for the tangent function in radians mode. Used by screen readers. тангенс в гради Name for the tangent function in gradians mode. Used by screen readers. обратен тангенс в градуси Name for the inverse tangent function in degrees mode. Used by screen readers. обратен тангенс в радиани Name for the inverse tangent function in radians mode. Used by screen readers. обратен тангенс в гради Name for the inverse tangent function in gradians mode. Used by screen readers. хиперболичен тангенс Name for the hyperbolic tangent function. Used by screen readers. обратен хиперболичен тангенс Name for the inverse hyperbolic tangent function. Used by screen readers. секанс в градуси Name for the secant function in degrees mode. Used by screen readers. секанс в радиани Name for the secant function in radians mode. Used by screen readers. секанс в градове Name for the secant function in gradians mode. Used by screen readers. обратен секанс в градуси Name for the inverse secant function in degrees mode. Used by screen readers. обратен секанс в радиани Name for the inverse secant function in radians mode. Used by screen readers. обратен секанс в градове Name for the inverse secant function in gradians mode. Used by screen readers. хиперболичен секанс Name for the hyperbolic secant function. Used by screen readers. обратен хиперболичен секанс Name for the inverse hyperbolic secant function. Used by screen readers. косеканс в градуси Name for the cosecant function in degrees mode. Used by screen readers. косеканс в радиани Name for the cosecant function in radians mode. Used by screen readers. косеканс в градове Name for the cosecant function in gradians mode. Used by screen readers. обратен косеканс в градуси Name for the inverse cosecant function in degrees mode. Used by screen readers. обратен косеканс в радиани Name for the inverse cosecant function in radians mode. Used by screen readers. обратен косеканс в градове Name for the inverse cosecant function in gradians mode. Used by screen readers. хиперболичен косеканс Name for the hyperbolic cosecant function. Used by screen readers. обратен хиперболичен косеканс Name for the inverse hyperbolic cosecant function. Used by screen readers. котагенс в градуси Name for the cotangent function in degrees mode. Used by screen readers. Котангенс в радиани Name for the cotangent function in radians mode. Used by screen readers. котангенс в градове Name for the cotangent function in gradians mode. Used by screen readers. обратен котангенс в градуси Name for the inverse cotangent function in degrees mode. Used by screen readers. обратен котангенс в радиани Name for the inverse cotangent function in radians mode. Used by screen readers. обратен котангенс в градове Name for the inverse cotangent function in gradians mode. Used by screen readers. хиперболичен котангенс Name for the hyperbolic cotangent function. Used by screen readers. обратен хиперболичен котангенс Name for the inverse hyperbolic cotangent function. Used by screen readers. Корен трети Name for the cube root function. Used by screen readers. Основа на логаритъм Name for the logbasey function. Used by screen readers. Абсолютна стойност Name for the absolute value function. Used by screen readers. изместване наляво Name for the programmer function that shifts bits to the left. Used by screen readers. изместване надясно Name for the programmer function that shifts bits to the right. Used by screen readers. факториел Name for the factorial function. Used by screen readers. градус минута секунда Name for the degree minute second (dms) function. Used by screen readers. естествен логаритъм Name for the natural log (ln) function. Used by screen readers. квадрат Name for the square function. Used by screen readers. y корен Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Категория %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Споразумение за услуги на Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. От From Date Header for AddSubtract Date Picker Превъртане наляво на резултата от изчислението Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Превъртане надясно на резултата от изчислението Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Изчислението е неуспешно Text displayed when the application is not able to do a calculation Основа на логаритъм Y Screen reader prompt for the logBaseY button Тригонометрия Displayed on the button that contains a flyout for the trig functions in scientific mode. Функция Displayed on the button that contains a flyout for the general functions in scientific mode. Неравенства Displayed on the button that contains a flyout for the inequality functions. Неравенства Screen reader prompt for the Inequalities button Побитови Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Битова смяна Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Обратна функция Screen reader prompt for the shift button in the trig flyout in scientific mode. Хиперболична функция Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Секанс Screen reader prompt for the Calculator button sec in the scientific flyout keypad Хиперболичен секанс Screen reader prompt for the Calculator button sech in the scientific flyout keypad Аркуссеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Хиперболичен аркуссеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Косеканс Screen reader prompt for the Calculator button csc in the scientific flyout keypad Хиперболичен косеканс Screen reader prompt for the Calculator button csch in the scientific flyout keypad Аркускосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Хиперболичен аркускосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Котангенс Screen reader prompt for the Calculator button cot in the scientific flyout keypad Хиперболичен котангенс Screen reader prompt for the Calculator button coth in the scientific flyout keypad Аркускотангенс Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Хиперболичен аркускотангенс Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Закръгляване надолу Screen reader prompt for the Calculator button floor in the scientific flyout keypad Закръгляване нагоре Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Случайни Screen reader prompt for the Calculator button random in the scientific flyout keypad Абсолютна стойност Screen reader prompt for the Calculator button abs in the scientific flyout keypad Число на Ойлер Screen reader prompt for the Calculator button e in the scientific flyout keypad Две на степен Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Нито Screen reader prompt for the Calculator button nor in the scientific flyout keypad Нито Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Завъртане отляво с пренасяне Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Завъртане отдясно с пренасяне Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Изместване наляво Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Изместване наляво Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Изместване надясно Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Изместване надясно Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Аритметична смяна Label for a radio button that toggles arithmetic shift behavior for the shift operations. Логическа смяна Label for a radio button that toggles logical shift behavior for the shift operations. Завъртане за кръгова смяна Label for a radio button that toggles rotate circular behavior for the shift operations. Завъртане чрез кръгова смяна за пренасяне Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Корен трети Screen reader prompt for the cube root button on the scientific operator keypad Тригонометрия Screen reader prompt for the square root button on the scientific operator keypad Функции Screen reader prompt for the square root button on the scientific operator keypad Побитови Screen reader prompt for the square root button on the scientific operator keypad Битова смяна Screen reader prompt for the square root button on the scientific operator keypad Панели за научни оператори Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Панели на оператори за програмист Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad най-значим бит Used to describe the last bit of a binary number. Used in bit flip Графично изразяване Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Чертане Screen reader prompt for the plot button on the graphing calculator operator keypad Автоматично обновяване на изгледа (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Графичен изглед Screen reader prompt for the graph view button. Автоматично най-добро побиране Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ръчна корекция Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Изгледът на графика е нулиран Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Увеличаване (Ctrl + плюс) This is the tool tip automation name for the Calculator zoom in button. Увеличаване Screen reader prompt for the zoom in button. Намаляване (Ctrl + минус) This is the tool tip automation name for the Calculator zoom out button. Намаляване Screen reader prompt for the zoom out button. Добавяне на уравнение Placeholder text for the equation input button В момента не може да се сподели. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Вижте какво начертах с калкулатора на Windows Sent as part of the shared content. The title for the share. Уравнения Header that appears over the equations section when sharing Променливи Header that appears over the variables section when sharing Изображение на графика с уравнения Alt text for the graph image when output via Share Променливи Header text for variables area Стъпка Label text for the step text box Мин. Label text for the min text box Макс. Label text for the max text box Цвят Label for the Line Color section of the style picker Стил Label for the Line Style section of the style picker Анализ на функция Title for KeyGraphFeatures Control Функцията няма хоризонтални асимптоти. Message displayed when the graph does not have any horizontal asymptotes Функцията няма инфлексни точки. Message displayed when the graph does not have any inflection points Функцията няма максимуми. Message displayed when the graph does not have any maxima Функцията няма минимуми. Message displayed when the graph does not have any minima Константна String describing constant monotonicity of a function Намаляваща String describing decreasing monotonicity of a function Монотонността на функцията не може да бъде определена. Error displayed when monotonicity cannot be determined Нарастваща String describing increasing monotonicity of a function Монотонността на функцията е неизвестна. Error displayed when monotonicity is unknown Функцията няма наклонени асимптоти. Message displayed when the graph does not have any oblique asymptotes Четността на функцията не може да бъде определена. Error displayed when parity is cannot be determined Функцията е четна. Message displayed with the function parity is even Функцията не е нито четна, нито нечетна. Message displayed with the function parity is neither even nor odd Функцията е нечетна. Message displayed with the function parity is odd Четността на функцията е неизвестна. Error displayed when parity is unknown Периодичността не се поддържа за тази функция. Error displayed when periodicity is not supported Функцията не е периодична. Message displayed with the function periodicity is not periodic Периодичността на функцията е неизвестна. Message displayed with the function periodicity is unknown Тези функции са твърде сложни за изчисляване от калкулатора: Error displayed when analysis features cannot be calculated Функцията няма вертикални асимптоти. Message displayed when the graph does not have any vertical asymptotes Функцията няма пресечни точки на x. Message displayed when the graph does not have any x-intercepts Функцията няма пресечни точки на y. Message displayed when the graph does not have any y-intercepts Дефиниционно множество Title for KeyGraphFeatures Domain Property Хоризонтални асимптоти Title for KeyGraphFeatures Horizontal aysmptotes Property Инфлексни точки Title for KeyGraphFeatures Inflection points Property Анализът не се поддържа за тази функция. Error displayed when graph analysis is not supported or had an error. Анализът се поддържа само за функции във формат f(x). Пример: y=x Error displayed when graph analysis detects the function format is not f(x). Максимум Title for KeyGraphFeatures Maxima Property Минимум Title for KeyGraphFeatures Minima Property Монотонност Title for KeyGraphFeatures Monotonicity Property Наклонени асимптоти Title for KeyGraphFeatures Oblique asymptotes Property Четност Title for KeyGraphFeatures Parity Property Цикъл Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Множеството от стойности Title for KeyGraphFeatures Range Property Вертикални асимптоти Title for KeyGraphFeatures Vertical asymptotes Property Пресечна точка на X Title for KeyGraphFeatures XIntercept Property Пресечна точка на Y Title for KeyGraphFeatures YIntercept Property Неуспешно анализиране на функцията. Не може да се изчисли дефиниционното множество на тази функция. Error displayed when Domain is not returned from the analyzer. Не може да се изчисли множеството от стойности за тази функция. Error displayed when Range is not returned from the analyzer. Препълване (числото е твърде голямо) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Режимът „Радиани“ е задължителен, за да се представи графично това уравнение. Error that occurs during graphing when radians is required. Тази функция е твърде сложна за графично представяне Error that occurs during graphing when the equation is too complex. За графичното представяне на тази функция е необходим режим „Градуси“ Error that occurs during graphing when degrees is required Функцията „Факториел“ има невалиден аргумент Error that occurs during graphing when a factorial function has an invalid argument. Функцията „Факториел“ има аргумент, който е твърде голям за графично представяне Error that occurs during graphing when a factorial has a large n Модул може да се използва само с цели числа Error that occurs during graphing when modulo is used with a float. Формулата няма решение Error that occurs during graphing when the equation has no solution. Няма деление на нула Error that occurs during graphing when a divison by zero occurs. Формулата съдържа логически състояния, които са взаимно изключващи се Error that occurs during graphing when mutually exclusive conditions are used. Уравнението е извън областта Error that occurs during graphing when the equation is out of domain. Графичното изразяване за това уравнение не се поддържа Error that occurs during graphing when the equation is not supported. В уравнението липсва отваряща скоба Error that occurs during graphing when the equation is missing a ( В уравнението липсва затваряща скоба Error that occurs during graphing when the equation is missing a ) Има твърде много десетични знаци в число Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 След десетичната запетая липсват цифри Error that occurs during graphing with a decimal point without digits Неочакван край на израз Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Неочаквани знаци в израза Error that occurs during graphing when there is an unexpected token. Невалидни знаци в израза Error that occurs during graphing when there is an invalid token. Има твърде много знаци за равенство Error that occurs during graphing when there are too many equals. Функцията трябва да съдържа поне една променлива x или y Error that occurs during graphing when the equation is missing x or y. Невалиден израз Error that occurs during graphing when an invalid syntax is used. Изразът е празен Error that occurs during graphing when the expression is empty Знака за равно е използван без уравнение Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Липсваща скоба след име на функция Error that occurs during graphing when parenthesis are missing after a function. Математическата операция има неправилен брой параметри Error that occurs during graphing when a function has the wrong number of parameters Името на променлива е невалидно Error that occurs during graphing when a variable name is invalid. В уравнението липсва отваряща скоба Error that occurs during graphing when a { is missing В уравнението липсва затваряща скоба Error that occurs during graphing when a } is missing. "i" и "I" не могат да се използват като имена на променливи Error that occurs during graphing when i or I is used. Формулата не може да бъде представена графично General error that occurs during graphing. Цифрите не могат да бъдат решени за дадената база Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Базата трябва да е по-голяма от 2 и по-малка от 36 Error that occurs during graphing when the base is out of range. Математическата операция изисква един от параметрите да бъде променлива Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Уравнението смесва логически и скаларни операнди Error that occurs during graphing when operands are mixed. Such as true and 1. x или y не могат да се използват в горните или долните граници Error that occurs during graphing when x or y is used in integral upper limits. x или y не може да се използва в граничната точка Error that occurs during graphing when x or y is used in the limit point. Не може да се използва комплексна безкрайност Error that occurs during graphing when complex infinity is used Не могат да се използват сложни числа за неравенства Error that occurs during graphing when complex numbers are used in inequalities. Обратно към списъка с функции This is the tooltip for the back button in the equation analysis page in the graphing calculator Обратно към списъка с функции This is the automation name for the back button in the equation analysis page in the graphing calculator Анализиране на функция This is the tooltip for the analyze function button Анализиране на функция This is the automation name for the analyze function button Анализиране на функция This is the text for the for the analyze function context menu command Премахване на уравнение This is the tooltip for the graphing calculator remove equation buttons Премахване на уравнение This is the automation name for the graphing calculator remove equation buttons Премахване на уравнение This is the text for the for the remove equation context menu command Споделяне This is the automation name for the graphing calculator share button. Споделяне This is the tooltip for the graphing calculator share button. Промяна на стила на уравнение This is the tooltip for the graphing calculator equation style button Промяна на стила на уравнение This is the automation name for the graphing calculator equation style button Промяна на стила на уравнение This is the text for the for the equation style context menu command Показване на уравнение This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Скриване на уравнение This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Показване на уравнение %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Скриване на уравнение %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Спиране на проследяването This is the tooltip/automation name for the graphing calculator stop tracing button Стартиране на проследяването This is the tooltip/automation name for the graphing calculator start tracing button Прозорец за преглед на графика, ос x, ограничена от %1 и %2, оста y, ограничена от %3 и %4, показваща %5 уравнения {Locked="%1","%2", "%3", "%4", "%5"}. Конфигуриране на плъзгача This is the tooltip text for the slider options button in Graphing Calculator Конфигуриране на плъзгача This is the automation name text for the slider options button in Graphing Calculator Превключване към режим на уравнение Used in Graphing Calculator to switch the view to the equation mode Превключване към режим на графика Used in Graphing Calculator to switch the view to the graph mode Превключване към режим на уравнение Used in Graphing Calculator to switch the view to the equation mode Текущият режим е режим на уравнение Announcement used in Graphing Calculator when switching to the equation mode Текущият режим е режим на графика Announcement used in Graphing Calculator when switching to the graph mode Прозорец Heading for window extents on the settings Градуси Degrees mode on settings page Гради Gradian mode on settings page Радиани Radians mode on settings page Единици Heading for Unit's on the settings Нулиране на изгледа Hyperlink button to reset the view of the graph Максимална стойност на X X maximum value header Минимална стойност на X X minimum value header Максимална стойност на Y Y Maximum value header Минимална стойност на Y Y minimum value header Графични опции This is the tooltip text for the graph options button in Graphing Calculator Графични опции This is the automation name text for the graph options button in Graphing Calculator Графични опции Heading for the Graph options flyout in Graphing mode. Опции за променлива Screen reader prompt for the variable settings toggle button Превключване на опции за променлива Tool tip for the variable settings toggle button Дебелина на линия Heading for the Graph options flyout in Graphing mode. Опции на линия Heading for the equation style flyout in Graphing mode. Малка ширина на линия Automation name for line width setting Средна ширина на линия Automation name for line width setting Голяма ширина на линия Automation name for line width setting Много голяма ширина на линия Automation name for line width setting Въведете израз this is the placeholder text used by the textbox to enter an equation Копиране Copy menu item for the graph context menu Изрязване Cut menu item from the Equation TextBox Копиране Copy menu item from the Equation TextBox Поставяне Paste menu item from the Equation TextBox Отменяне Undo menu item from the Equation TextBox Избери всички Select all menu item from the Equation TextBox Въвеждане на функция The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Въвеждане на функция The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Панел за въвеждане на функция The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Променлив панел The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Списък на променливите The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Променлив %1 елемент от списък The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Текстово поле с променлива стойност The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Плъзгач за променлива стойност The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Текстово поле за променлива минимална стойност The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Текстово поле за променлива стойност на стъпка The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Текстово поле за променлива максимална стойност The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Стил "плътна линия" Name of the solid line style for a graphed equation Стил „пунктирана линия с точки“ Name of the dotted line style for a graphed equation Стил „пунктирана линия с тирета“ Name of the dashed line style for a graphed equation Морско синьо Name of color in the color picker Тюркоазен Name of color in the color picker Виолетов Name of color in the color picker Зелен Name of color in the color picker Ментовозелено Name of color in the color picker Тъмнозелено Name of color in the color picker Тъмносив Name of color in the color picker Червен Name of color in the color picker Бледовиолетово Name of color in the color picker Магента Name of color in the color picker Жълто злато Name of color in the color picker Яркооранжево Name of color in the color picker Кафяв Name of color in the color picker Черен Name of color in the color picker Бяло Name of color in the color picker Цвят 1 Name of color in the color picker Цвят 2 Name of color in the color picker Цвят 3 Name of color in the color picker Цвят 4 Name of color in the color picker Графична тема Graph settings heading for the theme options Винаги светъл Graph settings option to set graph to light theme Съвпадение на темата на приложението Graph settings option to set graph to match the app theme Тема This is the automation name text for the Graph settings heading for the theme options Винаги светъл This is the automation name text for the Graph settings option to set graph to light theme Съвпадение на темата на приложението This is the automation name text for the Graph settings option to set graph to match the app theme Функцията е премахната Announcement used in Graphing Calculator when a function is removed from the function list Поле за уравнение на анализ на функция This is the automation name text for the equation box in the function analysis panel Равно Screen reader prompt for the equal button on the graphing calculator operator keypad По-малко от Screen reader prompt for the Less than button По-малко или равно на Screen reader prompt for the Less than or equal button Равно Screen reader prompt for the Equal button По-голямо или равно на Screen reader prompt for the Greater than or equal button По-голямо от Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Подай Screen reader prompt for the submit button on the graphing calculator operator keypad Анализ на функция Screen reader prompt for the function analysis grid Графични опции Screen reader prompt for the graph options panel Хронология и списъци с памет Automation name for the group of controls for history and memory lists. Списък с памет Automation name for the group of controls for memory list. Слот за хронология %1 е изчистен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Калкулаторът винаги е отгоре Announcement to indicate calculator window is always shown on top. Калкулатор обратно към пълния изглед Announcement to indicate calculator window is now back to full view. Избрана е аритметична смяна Label for a radio button that toggles arithmetic shift behavior for the shift operations. Избрана е логическа смяна Label for a radio button that toggles logical shift behavior for the shift operations. Избрано завъртане за кръгова смяна Label for a radio button that toggles rotate circular behavior for the shift operations. Избрано превключване чрез кръгова смяна Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Настройки Header text of Settings page Облик Subtitle of appearance setting on Settings page Тема на приложението Title of App theme expander Изберете коя тема на приложение да се показва Description of App theme expander Светла Lable for light theme option Тъмна Lable for dark theme option Използване на системната настройка Lable for the app theme option to use system setting Назад Screen reader prompt for the Back button in title bar to back to main page Страница с настройки Announcement used when Settings page is opened Отваряне на контекстното меню за наличните действия Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Неуспешно възстановяване на тази моментна снимка. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ca-ES/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 L'entrada no és vàlida. Error message shown when the input makes a function fail, like log(-1) El resultat no està definit. Error message shown when there's no possible value for a function. No hi ha prou memòria. Error message shown when we run out of memory during a calculation. Desbordament Error message shown when there's an overflow during the calculation. El resultat no està definit. Same as 101 El resultat no està definit. Same 101 Desbordament Same as 107 Desbordament Same 107 No es pot dividir entre zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ca-ES/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora del Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora del Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copia Copy context menu string Enganxa Paste context menu string Aproximadament igual que The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63è Sub-string used in automation name for 63 bit in bit flip 62è Sub-string used in automation name for 62 bit in bit flip 61è Sub-string used in automation name for 61 bit in bit flip 60è Sub-string used in automation name for 60 bit in bit flip 59è Sub-string used in automation name for 59 bit in bit flip 58è Sub-string used in automation name for 58 bit in bit flip 57è Sub-string used in automation name for 57 bit in bit flip 56è Sub-string used in automation name for 56 bit in bit flip 55è Sub-string used in automation name for 55 bit in bit flip 54è Sub-string used in automation name for 54 bit in bit flip 53è Sub-string used in automation name for 53 bit in bit flip 52è Sub-string used in automation name for 52 bit in bit flip 51è Sub-string used in automation name for 51 bit in bit flip 50è Sub-string used in automation name for 50 bit in bit flip 49è Sub-string used in automation name for 49 bit in bit flip 48è Sub-string used in automation name for 48 bit in bit flip 47è Sub-string used in automation name for 47 bit in bit flip 46è Sub-string used in automation name for 46 bit in bit flip 45è Sub-string used in automation name for 45 bit in bit flip 44è Sub-string used in automation name for 44 bit in bit flip 43è Sub-string used in automation name for 43 bit in bit flip 42è Sub-string used in automation name for 42 bit in bit flip 41è Sub-string used in automation name for 41 bit in bit flip 40è Sub-string used in automation name for 40 bit in bit flip 39è Sub-string used in automation name for 39 bit in bit flip 38è Sub-string used in automation name for 38 bit in bit flip 37è Sub-string used in automation name for 37 bit in bit flip 36è Sub-string used in automation name for 36 bit in bit flip 35è Sub-string used in automation name for 35 bit in bit flip 34è Sub-string used in automation name for 34 bit in bit flip 33è Sub-string used in automation name for 33 bit in bit flip 32è Sub-string used in automation name for 32 bit in bit flip 31è Sub-string used in automation name for 31 bit in bit flip 30è Sub-string used in automation name for 30 bit in bit flip 29è Sub-string used in automation name for 29 bit in bit flip 28è Sub-string used in automation name for 28 bit in bit flip 27è Sub-string used in automation name for 27 bit in bit flip 26è Sub-string used in automation name for 26 bit in bit flip 25è Sub-string used in automation name for 25 bit in bit flip 24è Sub-string used in automation name for 24 bit in bit flip 23è Sub-string used in automation name for 23 bit in bit flip 22è Sub-string used in automation name for 22 bit in bit flip 21è Sub-string used in automation name for 21 bit in bit flip 20è Sub-string used in automation name for 20 bit in bit flip 19è Sub-string used in automation name for 19 bit in bit flip 18è Sub-string used in automation name for 18 bit in bit flip 17è Sub-string used in automation name for 17 bit in bit flip 16è Sub-string used in automation name for 16 bit in bit flip 15è Sub-string used in automation name for 15 bit in bit flip 14è Sub-string used in automation name for 14 bit in bit flip 13è Sub-string used in automation name for 13 bit in bit flip 12è Sub-string used in automation name for 12 bit in bit flip 11è Sub-string used in automation name for 11 bit in bit flip 10è Sub-string used in automation name for 10 bit in bit flip Sub-string used in automation name for 9 bit in bit flip Sub-string used in automation name for 8 bit in bit flip Sub-string used in automation name for 7 bit in bit flip Sub-string used in automation name for 6 bit in bit flip Sub-string used in automation name for 5 bit in bit flip 4t Sub-string used in automation name for 4 bit in bit flip 3r Sub-string used in automation name for 3 bit in bit flip 2n Sub-string used in automation name for 2 bit in bit flip 1r Sub-string used in automation name for 1 bit in bit flip bit menys significatiu Used to describe the first bit of a binary number. Used in bit flip Obre el desplegable de memòria This is the automation name and label for the memory button when the memory flyout is closed. Tanca el desplegable de memòria This is the automation name and label for the memory button when the memory flyout is open. Mantén visible This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Torna a la visualització completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memòria This is the tool tip automation name for the memory button. Historial (Ctrl+H) This is the tool tip automation name for the history button. Teclat numèric de commutació de bits This is the tool tip automation name for the bitFlip button. Teclat numèric complet This is the tool tip automation name for the numberPad button. Esborra tota la memòria (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memòria The text that shows as the header for the memory list Memòria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historial The text that shows as the header for the history list Historial The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertidor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Estàndard Label for a control that activates standard mode calculator layout. Mode de convertidor Screen reader prompt for a control that activates the unit converter mode. Mode científic Screen reader prompt for a control that activates scientific mode calculator layout Mode estàndard Screen reader prompt for a control that activates standard mode calculator layout. Esborra tot l'historial "ClearHistory" used on the calculator history pane that stores the calculation history. Esborra tot l'historial This is the tool tip automation name for the Clear History button. Amaga-ho "HideHistory" used on the calculator history pane that stores the calculation history. Estàndard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertidor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Convertidor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Convertidors Pluralized version of the converter group text, used for the screen reader prompt. Calculadores Pluralized version of the calculator group text, used for the screen reader prompt. La visualització és %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". L'expressió és %1, l'entrada actual és %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". La pantalla mostra %1 coma. {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. L'expressió és %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Mostra el valor copiat al porta-retalls Screen reader prompt for the Calculator display copy button, when the button is invoked. Historial Screen reader prompt for the history flyout Memòria Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binari %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Esborra tot l'historial Screen reader prompt for the Calculator History Clear button S'ha esborrat l'historial Screen reader prompt for the Calculator History Clear button, when the button is invoked. Amaga l'historial Screen reader prompt for the Calculator History Hide button Obre el desplegable d'historial Screen reader prompt for the Calculator History button, when the flyout is closed. Tanca el desplegable d'historial Screen reader prompt for the Calculator History button, when the flyout is open. Magatzem de memòria Screen reader prompt for the Calculator Memory button Magatzem de memòria (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Esborra tota la memòria Screen reader prompt for the Calculator Clear Memory button S'ha esborrat la memòria Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Recuperació de memòria Screen reader prompt for the Calculator Memory Recall button Recuperació de memòria (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Addició de memòria Screen reader prompt for the Calculator Memory Add button Addició de memòria (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Eliminació de memòria Screen reader prompt for the Calculator Memory Subtract button Eliminació de memòria (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Esborra l'element de memòria Screen reader prompt for the Calculator Clear Memory button Esborra l'element de memòria This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Afegeix a l'element de memòria Screen reader prompt for the Calculator Memory Add button in the Memory list Afegeix a l'element de memòria This is the tool tip automation name for the Calculator Memory Add button in the Memory list Resta-ho de l'element de memòria Screen reader prompt for the Calculator Memory Subtract button in the Memory list Resta-ho de l'element de memòria This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Esborra l'element de memòria Screen reader prompt for the Calculator Clear Memory button Esborra l'element de memòria Text string for the Calculator Clear Memory option in the Memory list context menu Afegeix a l'element de memòria Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Afegeix a l'element de memòria Text string for the Calculator Memory Add option in the Memory list context menu Resta-ho de l'element de memòria Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Resta-ho de l'element de memòria Text string for the Calculator Memory Subtract option in the Memory list context menu Suprimeix Text string for the Calculator Delete swipe button in the History list Copia Text string for the Calculator Copy option in the History list context menu Suprimeix Text string for the Calculator Delete option in the History list context menu Suprimeix l'element de l'historial Screen reader prompt for the Calculator Delete swipe button in the History list Suprimeix l'element de l'historial Screen reader prompt for the Calculator Delete option in the History list context menu Retrocés Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Un Screen reader prompt for the Calculator number "1" button Dos Screen reader prompt for the Calculator number "2" button Tres Screen reader prompt for the Calculator number "3" button Quatre Screen reader prompt for the Calculator number "4" button Cinc Screen reader prompt for the Calculator number "5" button Sis Screen reader prompt for the Calculator number "6" button Set Screen reader prompt for the Calculator number "7" button Vuit Screen reader prompt for the Calculator number "8" button Nou Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button I Screen reader prompt for the Calculator And button O Screen reader prompt for the Calculator Or button No Screen reader prompt for the Calculator Not button Gira a l'esquerra Screen reader prompt for the Calculator ROL button Gira a la dreta Screen reader prompt for the Calculator ROR button Maj esquerra Screen reader prompt for the Calculator LSH button Maj dreta Screen reader prompt for the Calculator RSH button Exclusiu o Screen reader prompt for the Calculator XOR button Commutador de paraules quàdruples Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Commutador de paraules dobles Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Commutador de paraules Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Commutador de bytes Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclat numèric de commutació de bits Screen reader prompt for the Calculator bitFlip button Teclat numèric complet Screen reader prompt for the Calculator numberPad button Separador decimal: Screen reader prompt for the "." button Esborra l'entrada Screen reader prompt for the "CE" button Esborra Screen reader prompt for the "C" button Divideix entre Screen reader prompt for the divide button on the number pad Multiplica per Screen reader prompt for the multiply button on the number pad És igual a Screen reader prompt for the equals button on the scientific operator keypad Funció inversa Screen reader prompt for the shift button on the number pad in scientific mode. Menys Screen reader prompt for the minus button on the number pad Menys We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Més Screen reader prompt for the plus button on the number pad Arrel quadrada Screen reader prompt for the square root button on the scientific operator keypad Per cent Screen reader prompt for the percent button on the scientific operator keypad Positiu negatiu Screen reader prompt for the negate button on the scientific operator keypad Positiu negatiu Screen reader prompt for the negate button on the converter operator keypad Recíproc Screen reader prompt for the invert button on the scientific operator keypad Parèntesi d'obertura Screen reader prompt for the Calculator "(" button on the scientific operator keypad Parèntesi d'obertura, recompte de parèntesis d'obertura %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parèntesi de tancament Screen reader prompt for the Calculator ")" button on the scientific operator keypad Recompte de parèntesis oberts: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". No hi ha cap parèntesi obert per tancar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notació científica Screen reader prompt for the Calculator F-E the scientific operator keypad Funció hiperbòlica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangent Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperbòlic Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hiperbòlic Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangent hiperbòlica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Quadrat Screen reader prompt for the x squared on the scientific operator keypad. Cub Screen reader prompt for the x cubed on the scientific operator keypad. Arc sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arc cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arc tangent Screen reader prompt for the inverted tan on the scientific operator keypad. Arc sinus hiperbòlic Screen reader prompt for the inverted sinh on the scientific operator keypad. Arc cosinus hiperbòlic Screen reader prompt for the inverted cosh on the scientific operator keypad. Arc tangent hiperbòlic Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" a l'exponent Screen reader prompt for x power y button on the scientific operator keypad. Deu a l'exponent Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" a l'exponent Screen reader for the e power x on the scientific operator keypad. arrel "y" de "x" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritme Screen reader for the log base 10 on the scientific operator keypad Logaritme natural Screen reader for the log base e on the scientific operator keypad Mòdul Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grau minut segon Screen reader for the exp button on the scientific operator keypad Graus Screen reader for the exp button on the scientific operator keypad Part d'enter Screen reader for the int button on the scientific operator keypad Part fraccionària Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Commutador de graus This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Commutador de graus centesimals This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Commutador de radians This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Desplegable de mode Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Desplegable de categories Screen reader prompt for the Categories dropdown field. Mantén visible Screen reader prompt for the Always-on-Top button when in normal mode. Torna a la visualització completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mantén visible (Alt+Amunt) This is the tool tip automation name for the Always-on-Top button when in normal mode. Torna a la visualització completa (Alt+Avall) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converteix de %1 %2. Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converteix de %1 coma %2. {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Es converteix a %1 %2. Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 és %3 %4. Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unitat d'entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unitat de sortida Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Àrea Unit conversion category name called Area (eg. area of a sports field in square meters) Dades Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Longitud Unit conversion category name called Length Potència Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocitat Unit conversion category name called Speed Temps Unit conversion category name called Time Volum Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Pes i massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressió Unit conversion category name called Pressure Angle Unit conversion category name called Angle Moneda Unit conversion category name called Currency Unces líquides (Regne Unit) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Regne Unit) An abbreviation for a measurement unit of volume Unces líquides (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EUA) An abbreviation for a measurement unit of volume Galons (Regne Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Regne Unit) An abbreviation for a measurement unit of volume Galons (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EUA) An abbreviation for a measurement unit of volume Litres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mil·lilitres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pintes (Regne Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Regne Unit) An abbreviation for a measurement unit of volume Pintes (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EUA) An abbreviation for a measurement unit of volume Cullerades (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (cullerada) (EUA) An abbreviation for a measurement unit of volume Culleradetes (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (cullereta) (EUA) An abbreviation for a measurement unit of volume Cullerades (Regne Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (cullerada) (Regne Unit) An abbreviation for a measurement unit of volume Culleradetes (Regne Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (cullereta) (Regne Unit) An abbreviation for a measurement unit of volume Quarts (Regne Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Regne Unit) An abbreviation for a measurement unit of volume Quarts (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EUA) An abbreviation for a measurement unit of volume Tasses (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tassa (EUA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/minut An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (EUA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power setm. An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length any An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unitats tèrmiques britàniques A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calories A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetres per segon A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetres cúbics A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Peus cúbics A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polzades cúbiques A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres cúbics A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardes cúbiques A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dies A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electró-volts A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Peus A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Peus per segon A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lliures peu A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lliures peu/minut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectàrees A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cavalls de vapor (EUA) A measurement unit for power Hores A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polzades A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatts-hora A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calories alimentàries A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilòmetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilòmetres per hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nusos A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres per segon A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microns A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsegons A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles per hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil·límetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil·lisegons A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuts A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanòmetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Àngstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles nàutiques A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segons A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetres quadrats A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Peus quadrats A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polzades quadrades A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilòmetres quadrats A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres quadrats A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles quadrades A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil·límetres quadrats A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardes quadrades A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Setmanes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardes A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anys A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CT An abbreviation for a measurement unit of weight ° An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (Regne Unit) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tona (EUA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quirats A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graus A measurement unit for Angle. Radians A measurement unit for Angle. Gradians A measurement unit for Angle. Atmosferes A measurement unit for Pressure. mBars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Mil·límetres de mercuri A measurement unit for Pressure. Pascals A measurement unit for Pressure. Lliures per polzada quadrada (PSI) A measurement unit for Pressure. Centigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagrams A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tones llargues (Regne Unit) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil·ligrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lliures A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tones curtes (EUA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pedres A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tones mètriques A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) camps de futbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) camps de futbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquets A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquets A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avions de fuselatge ample A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avions de fuselatge ample A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bombetes A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bombetes A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalls A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalls A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banyeres A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banyeres A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocs de neu A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocs de neu A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugues A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugues A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avions de reacció A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avions de reacció A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balenes A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balenes A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasses de cafè A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasses de cafè A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscines An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscines An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mans A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mans A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fulls de paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fulls de paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castells A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castells A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plàtans A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plàtans A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trossos de pastís A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trossos de pastís A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotores A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotores A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilotes de futbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilotes de futbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Element de memòria Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Enrere Screen reader prompt for the About panel back button Enrere Content of tooltip being displayed on AboutControlBackButton Termes de llicència per al programari de Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Visualització prèvia Label displayed next to upcoming features Declaració de privadesa de Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Tots els drets reservats. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Per obtenir informació sobre com podeu contribuir a la Calculadora del Windows, doneu una ullada al projecte al %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Quant a Subtitle of about message on Settings page Envia comentaris The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Encara no hi ha historial. The text that shows as the header for the history list No hi ha res desat a la memòria. The text that shows as the header for the memory list Memòria Screen reader prompt for the negate button on the converter operator keypad Aquesta expressió no es pot enganxar The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Càlcul de dates Mode de càlcul Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Afegeix Add toggle button text Afegeix o resta dies Add or Subtract days option Data Date result label Diferència entre les dates Date difference option Dies Add/Subtract Days label Diferència Difference result label De From Date Header for Difference Date Picker Mesos Add/Subtract Months label Resta Subtract toggle button text Per a To Date Header for Difference Date Picker Anys Add/Subtract Years label Data fora del marc Out of bound message shown as result when the date calculation exceeds the bounds dia dies mes mesos Les mateixes dates setmana setmanes any anys Diferència %1 Automation name for reading out the date difference. %1 = Date difference Data resultant %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Mode de calculadora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Mode de convertidor %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mode de càlcul de dates Automation name for when the mode header is focused and the current mode is Date calculation. Llistes de memòria i historial Automation name for the group of controls for history and memory lists. Controls de memòria Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funcions estàndard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controls de visualització Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadors estàndard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclat numèric Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadors d'angles Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funcions científiques Automation name for the group of Scientific functions. Selecció de base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadors de programador Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selecció del mode d'entrada Automation name for the group of input mode toggling buttons. Teclat numèric de commutació de bits Automation name for the group of bit toggling buttons. Desplaça l'expressió cap a l'esquerra Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Desplaça l'expressió cap a la dreta Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. S'ha arribat a la quantitat màxima de dígits. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 s'ha desat a la memòria {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". La ranura de memòria %1 és %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". S'ha esborrat la ranura de memòria %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividit per Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. multiplicat Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menys Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. més Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. elevat a Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. arrel y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. residu Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. desplaça a l'esquerra Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. desplaça a la dreta Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. o Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x o Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. i Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Data d'actualització: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Actualitza les tarifes The text displayed for a hyperlink button that refreshes currency converter ratios. Pot ser que es produeixin càrrecs per l'ús de dades. The text displayed when users are on a metered connection and using currency converter. No s'han pogut obtenir les tarifes noves. Torna-ho a provar més tard. The text displayed when currency ratio data fails to load. Fora de línia. Comprova la%HL%Configuració de la xarxa%HL%. Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} S'estan actualitzant els tipus de canvi This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. S'han actualitzat els tipus de canvi This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. No s'han pogut actualitzar els tipus This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Esborra tota la memòria (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Esborra tota la memòria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} Sinus (graus) Name for the sine function in degrees mode. Used by screen readers. Sinus (radians) Name for the sine function in radians mode. Used by screen readers. Sinus (graus centesimals) Name for the sine function in gradians mode. Used by screen readers. Sinus invers (graus) Name for the inverse sine function in degrees mode. Used by screen readers. Sinus invers (radians) Name for the inverse sine function in radians mode. Used by screen readers. Sinus invers (graus centesimals) Name for the inverse sine function in gradians mode. Used by screen readers. Sinus hiperbòlic Name for the hyperbolic sine function. Used by screen readers. Sinus hiperbòlic invers Name for the inverse hyperbolic sine function. Used by screen readers. Cosinus (graus) Name for the cosine function in degrees mode. Used by screen readers. Cosinus (radians) Name for the cosine function in radians mode. Used by screen readers. Cosinus (graus centesimals) Name for the cosine function in gradians mode. Used by screen readers. Cosinus invers (graus) Name for the inverse cosine function in degrees mode. Used by screen readers. Cosinus invers (radians) Name for the inverse cosine function in radians mode. Used by screen readers. Cosinus invers (graus centesimals) Name for the inverse cosine function in gradians mode. Used by screen readers. Cosinus hiperbòlic Name for the hyperbolic cosine function. Used by screen readers. Cosinus hiperbòlic invers Name for the inverse hyperbolic cosine function. Used by screen readers. Tangent (graus) Name for the tangent function in degrees mode. Used by screen readers. Tangent (radians) Name for the tangent function in radians mode. Used by screen readers. Tangent (graus centesimals) Name for the tangent function in gradians mode. Used by screen readers. Tangent inversa (graus) Name for the inverse tangent function in degrees mode. Used by screen readers. Tangent inversa (radians) Name for the inverse tangent function in radians mode. Used by screen readers. Tangent inversa (graus centesimals) Name for the inverse tangent function in gradians mode. Used by screen readers. Tangent hiperbòlica Name for the hyperbolic tangent function. Used by screen readers. Tangent hiperbòlica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. graus de secant Name for the secant function in degrees mode. Used by screen readers. radians de secant Name for the secant function in radians mode. Used by screen readers. graus centesimals de secant Name for the secant function in gradians mode. Used by screen readers. graus de secant inversa Name for the inverse secant function in degrees mode. Used by screen readers. radians de secant inversa Name for the inverse secant function in radians mode. Used by screen readers. graus centesimals de secant inversa Name for the inverse secant function in gradians mode. Used by screen readers. secant hiperbòlica Name for the hyperbolic secant function. Used by screen readers. secant hiperbòlica inversa Name for the inverse hyperbolic secant function. Used by screen readers. graus de cosecant Name for the cosecant function in degrees mode. Used by screen readers. radians de cosecant Name for the cosecant function in radians mode. Used by screen readers. graus centesimals de cosecant Name for the cosecant function in gradians mode. Used by screen readers. graus de cosecant inversa Name for the inverse cosecant function in degrees mode. Used by screen readers. radians de cosecant inversa Name for the inverse cosecant function in radians mode. Used by screen readers. graus centesimals de cosecant inversa Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecant hiperbòlica Name for the hyperbolic cosecant function. Used by screen readers. cosecant hiperbòlica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. graus de cotangent Name for the cotangent function in degrees mode. Used by screen readers. Radians de cotangent Name for the cotangent function in radians mode. Used by screen readers. graus centesimals de cotangent Name for the cotangent function in gradians mode. Used by screen readers. graus de cotangent inversa Name for the inverse cotangent function in degrees mode. Used by screen readers. radians de cotangent inversa Name for the inverse cotangent function in radians mode. Used by screen readers. graus centesimals de cotangent inversa Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangent hiperbòlica Name for the hyperbolic cotangent function. Used by screen readers. cotangent hiperbòlica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Arrel cúbica Name for the cube root function. Used by screen readers. Logaritme en base Name for the logbasey function. Used by screen readers. Valor absolut Name for the absolute value function. Used by screen readers. desplaça a l'esquerra Name for the programmer function that shifts bits to the left. Used by screen readers. desplaça a la dreta Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. grau minut segon Name for the degree minute second (dms) function. Used by screen readers. logaritme natural Name for the natural log (ln) function. Used by screen readers. quadrat Name for the square function. Used by screen readers. arrel y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contracte de serveis de Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. De From Date Header for AddSubtract Date Picker Desplaça el resultat del càlcul a l'esquerra Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Desplaça el resultat del càlcul a la dreta Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. No s'ha pogut calcular Text displayed when the application is not able to do a calculation Logaritme en base Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funció Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualtats Displayed on the button that contains a flyout for the inequality functions. Desigualtats Screen reader prompt for the Inequalities button Bit a bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Desplaçament de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Funció inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Funció hiperbòlica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secant Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secant hiperbòlica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arc secant hiperbòlic Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecant Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecant hiperbòlica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arc cosecant hiperbòlic Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangent Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangent hiperbòlica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangent Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arc cotangent hiperbòlic Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Terra Screen reader prompt for the Calculator button floor in the scientific flyout keypad Sostre Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatori Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absolut Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número d'Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dos a l'exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Gira a l'esquerra amb ròssec Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Gira a la dreta amb ròssec Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Desplaçament a l'esquerra Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Desplaçament a l'esquerra Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplaçament a la dreta Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Desplaçament a la dreta Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplaçament aritmètic Label for a radio button that toggles arithmetic shift behavior for the shift operations. Desplaçament lògic Label for a radio button that toggles logical shift behavior for the shift operations. Gir amb desplaçament circular Label for a radio button that toggles rotate circular behavior for the shift operations. Gir amb desplaçament circular de ròssec Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Arrel cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funcions Screen reader prompt for the square root button on the scientific operator keypad Bit a bit Screen reader prompt for the square root button on the scientific operator keypad Desplaçament de bits Screen reader prompt for the square root button on the scientific operator keypad Taulers d'operadors científics Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Taulers d'operadors de programador Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit més significatiu Used to describe the last bit of a binary number. Used in bit flip Calculadora gràfica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Traçat Screen reader prompt for the plot button on the graphing calculator operator keypad Actualitza la visualització automàticament (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Visualització del gràfic Screen reader prompt for the graph view button. Ajustament perfecte automàtic Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajustament manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set S'ha reinicialitzat la visualització del gràfic Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Amplia (Control+més) This is the tool tip automation name for the Calculator zoom in button. Amplia Screen reader prompt for the zoom in button. Redueix (Control+menys) This is the tool tip automation name for the Calculator zoom out button. Redueix Screen reader prompt for the zoom out button. Afegeix una equació Placeholder text for the equation input button No es pot compartir en aquest moment. If there is an error in the sharing action will display a dialog with this text. D'acord Used on the dismiss button of the share action error dialog. Mira el gràfic que he fet amb la Calculadora del Windows Sent as part of the shared content. The title for the share. Equacions Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Imatge d'un gràfic amb equacions Alt text for the graph image when output via Share Variables Header text for variables area Pas Label text for the step text box Mín. Label text for the min text box Màx. Label text for the max text box Color Label for the Line Color section of the style picker Estil Label for the Line Style section of the style picker Anàlisi de funcions Title for KeyGraphFeatures Control La funció no té cap asímptota horitzontal. Message displayed when the graph does not have any horizontal asymptotes La funció no té cap punt d'inflexió. Message displayed when the graph does not have any inflection points La funció no té cap punt màxim. Message displayed when the graph does not have any maxima La funció no té cap punt mínim. Message displayed when the graph does not have any minima Constant String describing constant monotonicity of a function Decreixent String describing decreasing monotonicity of a function No es pot determinar la monotonia de la funció. Error displayed when monotonicity cannot be determined Creixent String describing increasing monotonicity of a function La monotonia de la funció és desconeguda. Error displayed when monotonicity is unknown La funció no té cap asímptota obliqua. Message displayed when the graph does not have any oblique asymptotes No es pot determinar la paritat de la funció. Error displayed when parity is cannot be determined La funció és parella. Message displayed with the function parity is even La funció no és parella ni imparella. Message displayed with the function parity is neither even nor odd La funció és imparella. Message displayed with the function parity is odd La paritat de la funció és desconeguda. Error displayed when parity is unknown La periodicitat no és compatible amb aquesta funció. Error displayed when periodicity is not supported La funció no és periòdica. Message displayed with the function periodicity is not periodic La periodicitat de la funció és desconeguda. Message displayed with the function periodicity is unknown Aquestes característiques són massa complexes per a la Calculadora: Error displayed when analysis features cannot be calculated La funció no té cap asímptota vertical. Message displayed when the graph does not have any vertical asymptotes La funció no té cap intersecció x. Message displayed when the graph does not have any x-intercepts La funció no té cap intersecció y. Message displayed when the graph does not have any y-intercepts Domini Title for KeyGraphFeatures Domain Property Asímptotes horitzontals Title for KeyGraphFeatures Horizontal aysmptotes Property Punts d'inflexió Title for KeyGraphFeatures Inflection points Property L'anàlisi no és compatible amb aquesta funció. Error displayed when graph analysis is not supported or had an error. L'anàlisi només és compatible amb les funcions del format f(x). Exemple: y=x Error displayed when graph analysis detects the function format is not f(x). Màxims Title for KeyGraphFeatures Maxima Property Mínims Title for KeyGraphFeatures Minima Property Monotonia Title for KeyGraphFeatures Monotonicity Property Asímptotes obliqües Title for KeyGraphFeatures Oblique asymptotes Property Paritat Title for KeyGraphFeatures Parity Property Període Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Interval Title for KeyGraphFeatures Range Property Asímptotes verticals Title for KeyGraphFeatures Vertical asymptotes Property Intersecció X Title for KeyGraphFeatures XIntercept Property Intersecció Y Title for KeyGraphFeatures YIntercept Property No s'ha pogut realitzar l'anàlisi per a la funció. No es pot calcular el domini per a aquesta funció. Error displayed when Domain is not returned from the analyzer. No es pot calcular l'interval d'aquesta funció. Error displayed when Range is not returned from the analyzer. Sobreeiximent (el nombre és massa gran) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Es requereix el mode radians per crear el gràfic d'aquesta equació. Error that occurs during graphing when radians is required. Aquesta funció és massa complexa per poder crear-ne un gràfic Error that occurs during graphing when the equation is too complex. El mode de graus és necessari per crear el gràfic d'aquesta funció Error that occurs during graphing when degrees is required La funció factorial té un argument no vàlid Error that occurs during graphing when a factorial function has an invalid argument. La funció factorial té un argument massa gran per poder-ne crear un gràfic Error that occurs during graphing when a factorial has a large n El mòdul només es pot utilitzar amb nombres enters Error that occurs during graphing when modulo is used with a float. L'equació no té solució Error that occurs during graphing when the equation has no solution. No es pot dividir per zero Error that occurs during graphing when a divison by zero occurs. L'equació conté condicions lògiques que són mútuament excloents Error that occurs during graphing when mutually exclusive conditions are used. L'equació està fora de domini Error that occurs during graphing when the equation is out of domain. No es pot representar aquesta equació a la calculadora gràfica Error that occurs during graphing when the equation is not supported. Falta un parèntesi d'obertura a l'equació Error that occurs during graphing when the equation is missing a ( Falta un parèntesi de tancament a l'equació Error that occurs during graphing when the equation is missing a ) Hi ha un número amb massa punts decimals Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Falten xifres al punt decimal Error that occurs during graphing with a decimal point without digits Final d'expressió inesperat Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Hi ha caràcters inesperats en l'expressió Error that occurs during graphing when there is an unexpected token. Caràcters no vàlids en l'expressió Error that occurs during graphing when there is an invalid token. Hi ha massa signes d'igual Error that occurs during graphing when there are too many equals. La funció ha de contenir com a mínim una variable x o y Error that occurs during graphing when the equation is missing x or y. Expressió no vàlida Error that occurs during graphing when an invalid syntax is used. L'expressió és buida Error that occurs during graphing when the expression is empty S'ha fet servir un signe d'igual sense una equació Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Falta un parèntesi després del nom de la funció Error that occurs during graphing when parenthesis are missing after a function. Una operació matemàtica té el nombre de paràmetres incorrecte Error that occurs during graphing when a function has the wrong number of parameters Un nom de variable no és vàlid Error that occurs during graphing when a variable name is invalid. Falta una clau d'obertura a l'equació Error that occurs during graphing when a { is missing Falta una clau de tancament a l'equació Error that occurs during graphing when a } is missing. no es poden utilitzar "i" i "I" com a noms de variables Error that occurs during graphing when i or I is used. No s'ha pogut crear un gràfic de l'equació General error that occurs during graphing. No s'ha pogut resoldre el dígit per a la base donada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base ha de ser superior a 2 i menor que 36 Error that occurs during graphing when the base is out of range. Una operació matemàtica requereix que un dels seus paràmetres sigui una variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. L'equació està barrejant operands lògics i escalars Error that occurs during graphing when operands are mixed. Such as true and 1. x o y no es poden utilitzar en els límits superior o inferior Error that occurs during graphing when x or y is used in integral upper limits. no es pot utilitzar "x" o "y" en el punt límit Error that occurs during graphing when x or y is used in the limit point. No es pot utilitzar l'infinit complex Error that occurs during graphing when complex infinity is used No es poden utilitzar nombres complexos en desigualtats Error that occurs during graphing when complex numbers are used in inequalities. Torna a la llista de funcions This is the tooltip for the back button in the equation analysis page in the graphing calculator Torna a la llista de funcions This is the automation name for the back button in the equation analysis page in the graphing calculator Analitza la funció This is the tooltip for the analyze function button Analitza la funció This is the automation name for the analyze function button Analitza la funció This is the text for the for the analyze function context menu command Suprimeix l'equació This is the tooltip for the graphing calculator remove equation buttons Suprimeix l'equació This is the automation name for the graphing calculator remove equation buttons Suprimeix l'equació This is the text for the for the remove equation context menu command Comparteix This is the automation name for the graphing calculator share button. Comparteix This is the tooltip for the graphing calculator share button. Canvia l'estil d'equació This is the tooltip for the graphing calculator equation style button Canvia l'estil d'equació This is the automation name for the graphing calculator equation style button Canvia l'estil d'equació This is the text for the for the equation style context menu command Mostra l'equació This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Amaga l'equació This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostra l'equació %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Amaga l'equació %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Atura el seguiment This is the tooltip/automation name for the graphing calculator stop tracing button Inicia el seguiment This is the tooltip/automation name for the graphing calculator start tracing button Finestra de visualització de grafs, eix x limitada per %1 i %2, eix y limitat per %3 i %4, que Mostra equacions %5 {Locked="%1","%2", "%3", "%4", "%5"}. Configura el control lliscant This is the tooltip text for the slider options button in Graphing Calculator Configura el control lliscant This is the automation name text for the slider options button in Graphing Calculator Canvia al mode d'equació Used in Graphing Calculator to switch the view to the equation mode Canvia al mode de gràfic Used in Graphing Calculator to switch the view to the graph mode Canvia al mode d'equació Used in Graphing Calculator to switch the view to the equation mode El mode actual és el mode d'equació Announcement used in Graphing Calculator when switching to the equation mode El mode actual és el mode de gràfic Announcement used in Graphing Calculator when switching to the graph mode Finestra Heading for window extents on the settings Graus Degrees mode on settings page Graus centesimals Gradian mode on settings page Radians Radians mode on settings page Unitats Heading for Unit's on the settings Restableix la visualització Hyperlink button to reset the view of the graph Valor X màx. X maximum value header Valor X mín. X minimum value header Valor Y màx. Y Maximum value header Valor Y mín. Y minimum value header Opcions del gràfic This is the tooltip text for the graph options button in Graphing Calculator Opcions del gràfic This is the automation name text for the graph options button in Graphing Calculator Opcions del gràfic Heading for the Graph options flyout in Graphing mode. Opcions variables Screen reader prompt for the variable settings toggle button Commuta les opcions variables Tool tip for the variable settings toggle button Gruix de la línia Heading for the Graph options flyout in Graphing mode. Opcions de línia Heading for the equation style flyout in Graphing mode. Amplada de línia petita Automation name for line width setting Amplada de línia mitjana Automation name for line width setting Amplada de línia gran Automation name for line width setting Amplada de línia extragran Automation name for line width setting Introdueix una expressió this is the placeholder text used by the textbox to enter an equation Copia Copy menu item for the graph context menu Retalla Cut menu item from the Equation TextBox Copia Copy menu item from the Equation TextBox Enganxa Paste menu item from the Equation TextBox Desfés Undo menu item from the Equation TextBox Selecciona-ho tot Select all menu item from the Equation TextBox Entrada de funció The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada de funció The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Tauler d'entrada de funcions The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Tauler de variables The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Llista de variables The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Element de la llista %1 de la variable The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Quadre de text del valor de la variable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Control lliscant del valor de la variable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Quadre de text del valor mínim de la variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Quadre de text del valor de pas de la variable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Quadre de text del valor màxim de la variable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estil de la línia contínua Name of the solid line style for a graphed equation Estil de la línia de punts Name of the dotted line style for a graphed equation Estil de la línia amb guions Name of the dashed line style for a graphed equation Blau marí Name of color in the color picker Verd d'espuma de mar Name of color in the color picker Violeta Name of color in the color picker Verd Name of color in the color picker Verd menta Name of color in the color picker Verd fosc Name of color in the color picker Carbó Name of color in the color picker Vermell Name of color in the color picker Pruna clar Name of color in the color picker Magenta Name of color in the color picker Or groc Name of color in the color picker Taronja brillant Name of color in the color picker Marró Name of color in the color picker Negre Name of color in the color picker Blanc Name of color in the color picker Color 1 Name of color in the color picker Color 2 Name of color in the color picker Color 3 Name of color in the color picker Color 4 Name of color in the color picker Tema del gràfic Graph settings heading for the theme options Sempre clar Graph settings option to set graph to light theme Coincideix amb el tema de l'aplicació Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Sempre clar This is the automation name text for the Graph settings option to set graph to light theme Coincideix amb el tema de l'aplicació This is the automation name text for the Graph settings option to set graph to match the app theme Funció eliminada Announcement used in Graphing Calculator when a function is removed from the function list Quadre d'equació d'anàlisi de funcions This is the automation name text for the equation box in the function analysis panel És igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menys de Screen reader prompt for the Less than button Més petit o igual que Screen reader prompt for the Less than or equal button Igual Screen reader prompt for the Equal button Més gran o igual que Screen reader prompt for the Greater than or equal button És més gran que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Envia Screen reader prompt for the submit button on the graphing calculator operator keypad Anàlisi de funcions Screen reader prompt for the function analysis grid Opcions del gràfic Screen reader prompt for the graph options panel Llistes de memòria i historial Automation name for the group of controls for history and memory lists. Llista de memòria Automation name for the group of controls for memory list. S'ha esborrat la ranura històrica %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". La calculadora està sempre visible Announcement to indicate calculator window is always shown on top. La calculadora torna al mode de visualització completa Announcement to indicate calculator window is now back to full view. L'opció "Desplaçament aritmètic" està seleccionada Label for a radio button that toggles arithmetic shift behavior for the shift operations. L'opció "Desplaçament lògic" està seleccionada Label for a radio button that toggles logical shift behavior for the shift operations. L'opció "Gir amb desplaçament circular" està seleccionada Label for a radio button that toggles rotate circular behavior for the shift operations. L'opció "Gir amb desplaçament circular de ròssec" està seleccionada Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Configuració Header text of Settings page Aparença Subtitle of appearance setting on Settings page Tema de l'aplicació Title of App theme expander Selecciona el tema de l'aplicació vols que es mostri. Description of App theme expander Clar Lable for light theme option Fosc Lable for dark theme option Utilitza la configuració del sistema Lable for the app theme option to use system setting Enrere Screen reader prompt for the Back button in title bar to back to main page Pàgina de configuració Announcement used when Settings page is opened Obriu el menú contextual per a les accions disponibles Screen reader prompt for the context menu of the expression box D'acord The text of OK button to dismiss an error dialog. No s'ha pogut restaurar aquesta instantània. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/cs-CZ/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Neplatné zadání Error message shown when the input makes a function fail, like log(-1) Nedefinovaný výsledek Error message shown when there's no possible value for a function. Nedostatek paměti Error message shown when we run out of memory during a calculation. Přetečení Error message shown when there's an overflow during the calculation. Nedefinovaný výsledek Same as 101 Nedefinovaný výsledek Same 101 Přetečení Same as 107 Přetečení Same 107 Nulou se nedá dělit. Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/cs-CZ/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulačka {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulačka [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkulačka {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkulačka [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulačka {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulačka [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopírovat Copy context menu string Vložit Paste context menu string Rovná se přibližně The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, hodnota %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip nejméně významný bit Used to describe the first bit of a binary number. Used in bit flip Otevřít informační rámeček paměti This is the automation name and label for the memory button when the memory flyout is closed. Zavřít informační rámeček paměti This is the automation name and label for the memory button when the memory flyout is open. Vždy navrchu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Zpět do úplného zobrazení This is the tool tip automation name for the always-on-top button when in always-on-top mode. Paměť This is the tool tip automation name for the memory button. Historie (Ctrl+H) This is the tool tip automation name for the history button. Klávesnice algoritmické manipulace s bity This is the tool tip automation name for the bitFlip button. Celá číselná klávesnice This is the tool tip automation name for the numberPad button. Vymazat celou paměť (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Paměť The text that shows as the header for the memory list Paměť The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historie The text that shows as the header for the history list Historie The automation name for the History pivot item that is shown when Calculator is in wide layout. Převodník Label for a control that activates the unit converter mode. Vědecký Label for a control that activates scientific mode calculator layout Standardní Label for a control that activates standard mode calculator layout. Režim převodníku Screen reader prompt for a control that activates the unit converter mode. Vědecký režim Screen reader prompt for a control that activates scientific mode calculator layout Standardní režim Screen reader prompt for a control that activates standard mode calculator layout. Vymazat celou historii "ClearHistory" used on the calculator history pane that stores the calculation history. Vymazat celou historii This is the tool tip automation name for the Clear History button. Skrýt "HideHistory" used on the calculator history pane that stores the calculation history. Standardní The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Vědecká The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programátorská The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Převodník The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulačka The text that shows in the dropdown navigation control for the calculator group. Převodník The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulačka The text that shows in the dropdown navigation control for the calculator group in upper case. Převodníky Pluralized version of the converter group text, used for the screen reader prompt. Kalkulačky Pluralized version of the calculator group text, used for the screen reader prompt. Zobrazuje se %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Výraz: %1. Aktuální vstup: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Zobrazuje se %1 bod {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Výraz je %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Zobrazená hodnota byla zkopírována do schránky. Screen reader prompt for the Calculator display copy button, when the button is invoked. Historie Screen reader prompt for the history flyout Paměť Screen reader prompt for the memory flyout Šestnáctkový %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desetinné číslo %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Osmičkový %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binární %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Vymazat celou historii Screen reader prompt for the Calculator History Clear button Historie vymazána Screen reader prompt for the Calculator History Clear button, when the button is invoked. Skrýt historii Screen reader prompt for the Calculator History Hide button Otevřít informační rámeček historie Screen reader prompt for the Calculator History button, when the flyout is closed. Zavřít informační rámeček historie Screen reader prompt for the Calculator History button, when the flyout is open. Uložit do paměti Screen reader prompt for the Calculator Memory button Uložit do paměti (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Vymazat celou paměť Screen reader prompt for the Calculator Clear Memory button Paměť vymazána Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Vyvolat paměť Screen reader prompt for the Calculator Memory Recall button Vyvolat paměť (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Přičíst k paměti Screen reader prompt for the Calculator Memory Add button Přičíst k paměti (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Odečíst od paměti Screen reader prompt for the Calculator Memory Subtract button Odečíst od paměti (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Vymazat položku z paměti Screen reader prompt for the Calculator Clear Memory button Vymazat položku z paměti This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Přičíst k položce v paměti Screen reader prompt for the Calculator Memory Add button in the Memory list Přičíst k položce v paměti This is the tool tip automation name for the Calculator Memory Add button in the Memory list Odečíst od položky v paměti Screen reader prompt for the Calculator Memory Subtract button in the Memory list Odečíst od položky v paměti This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Vymazat položku z paměti Screen reader prompt for the Calculator Clear Memory button Vymazat položku z paměti Text string for the Calculator Clear Memory option in the Memory list context menu Přičíst k položce v paměti Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Přičíst k položce v paměti Text string for the Calculator Memory Add option in the Memory list context menu Odečíst od položky v paměti Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Odečíst od položky v paměti Text string for the Calculator Memory Subtract option in the Memory list context menu Odstranit Text string for the Calculator Delete swipe button in the History list Kopírovat Text string for the Calculator Copy option in the History list context menu Odstranit Text string for the Calculator Delete option in the History list context menu Odstranit položku historie Screen reader prompt for the Calculator Delete swipe button in the History list Odstranit položku historie Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nula Screen reader prompt for the Calculator number "0" button Jedna Screen reader prompt for the Calculator number "1" button Dva Screen reader prompt for the Calculator number "2" button Tři Screen reader prompt for the Calculator number "3" button Čtyři Screen reader prompt for the Calculator number "4" button Pět Screen reader prompt for the Calculator number "5" button Šest Screen reader prompt for the Calculator number "6" button Sedm Screen reader prompt for the Calculator number "7" button Osm Screen reader prompt for the Calculator number "8" button Devět Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button A Screen reader prompt for the Calculator And button Nebo Screen reader prompt for the Calculator Or button Není Screen reader prompt for the Calculator Not button Bitová rotace doleva Screen reader prompt for the Calculator ROL button Bitová rotace doprava Screen reader prompt for the Calculator ROR button Bitový posun doleva Screen reader prompt for the Calculator LSH button Bitový posun doprava Screen reader prompt for the Calculator RSH button Exkluzivní disjunkce Screen reader prompt for the Calculator XOR button Přepnout na čtyřnásobné slovo Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Přepnout na dvojité slovo Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Přepnout na slovo Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Přepnout na bajt Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Klávesnice algoritmické manipulace s bity Screen reader prompt for the Calculator bitFlip button Celá číselná klávesnice Screen reader prompt for the Calculator numberPad button Oddělovač desetinných míst Screen reader prompt for the "." button Vymazat položku Screen reader prompt for the "CE" button Vymazat Screen reader prompt for the "C" button Dělit hodnotou Screen reader prompt for the divide button on the number pad Násobit hodnotou Screen reader prompt for the multiply button on the number pad Rovná se Screen reader prompt for the equals button on the scientific operator keypad Inverzní funkce Screen reader prompt for the shift button on the number pad in scientific mode. Mínus Screen reader prompt for the minus button on the number pad Mínus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Druhá odmocnina Screen reader prompt for the square root button on the scientific operator keypad Procenta Screen reader prompt for the percent button on the scientific operator keypad Kladné, záporné Screen reader prompt for the negate button on the scientific operator keypad Kladné, záporné Screen reader prompt for the negate button on the converter operator keypad Převrácená hodnota Screen reader prompt for the invert button on the scientific operator keypad Levá závorka Screen reader prompt for the Calculator "(" button on the scientific operator keypad Levá závorka, počet otevřených závorek %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Pravá závorka Screen reader prompt for the Calculator ")" button on the scientific operator keypad Počet levých okrouhlých závorek %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nenašly se žádné levé okrouhlé závorky, ke kterým by bylo třeba přidat pravou závorku. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Vědecký zápis Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolická funkce Screen reader prompt for the Calculator button HYP in the scientific operator keypad Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolický sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolický kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolický tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Čtverec Screen reader prompt for the x squared on the scientific operator keypad. Datová krychle Screen reader prompt for the x cubed on the scientific operator keypad. Arkus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkus kosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolický arkus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolický arkus kosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolický arkus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. X na exponent Screen reader prompt for x power y button on the scientific operator keypad. Deset na exponent Screen reader prompt for the 10 power x button on the scientific operator keypad. e na exponent Screen reader for the e power x on the scientific operator keypad. y-tá odmocnina x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmus Screen reader for the log base 10 on the scientific operator keypad Přirozený logaritmus Screen reader for the log base e on the scientific operator keypad Zbytek po dělení Screen reader for the mod button on the scientific operator keypad Exponenciální Screen reader for the exp button on the scientific operator keypad Úhel minuta sekunda Screen reader for the exp button on the scientific operator keypad Stupně Screen reader for the exp button on the scientific operator keypad Celočíselná část Screen reader for the int button on the scientific operator keypad Desetinná část Screen reader for the frac button on the scientific operator keypad Faktoriál Screen reader for the factorial button on the basic operator keypad Přepnout na stupně This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Přepnout na grady This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Přepnout na radiány This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Rozevírací seznam Režim Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Rozevírací seznam Kategorie Screen reader prompt for the Categories dropdown field. Vždy navrchu Screen reader prompt for the Always-on-Top button when in normal mode. Zpět do úplného zobrazení Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Vždy navrchu (Alt+Šipka nahoru) This is the tool tip automation name for the Always-on-Top button when in normal mode. Zpět do úplného zobrazení (Alt+Šipka dolů) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Převést z %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Převést z %1 čárka %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Převést na %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 je %3 %4. Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Vstupní jednotka Screen reader prompt for the Unit Converter Units1 i.e. top units field. Výstupní jednotka Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Plocha Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Délka Unit conversion category name called Length Výkon Unit conversion category name called Power (eg. the power of an engine or a light bulb) Rychlost Unit conversion category name called Speed Čas Unit conversion category name called Time Objem Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Teplota Unit conversion category name called Temperature Hmotnost Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tlak Unit conversion category name called Pressure Úhel Unit conversion category name called Angle Měna Unit conversion category name called Currency dutých uncí (britských) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dutých uncí (britských) An abbreviation for a measurement unit of volume dutých uncí (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dutých uncí (USA) An abbreviation for a measurement unit of volume galonů (britských) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (britské) An abbreviation for a measurement unit of volume galonů (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (americké) An abbreviation for a measurement unit of volume litrů A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume mililitrů A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume pint (britských) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pint (britských) An abbreviation for a measurement unit of volume pint (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pint (USA) An abbreviation for a measurement unit of volume polévkových lžic (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lžic (USA) An abbreviation for a measurement unit of volume čajových lžiček (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lžiček (USA) An abbreviation for a measurement unit of volume polévkových lžic (britských) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lžic (britských) An abbreviation for a measurement unit of volume čajových lžiček (britských) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lžiček (britských) An abbreviation for a measurement unit of volume kvartů (britských) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvartů (britských) An abbreviation for a measurement unit of volume kvartů (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (americké) An abbreviation for a measurement unit of volume šálků (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šálků (USA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area k (USA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mil/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power týdnů An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length r. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data akrů A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) britských tepelných jednotek A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/min A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tepelných kalorií A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimetrů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimetrů za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimetrů krychlových A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stop krychlových A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palců krychlových A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metrů krychlových A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yardů krychlových A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dnů A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stupňů Celsia An option in the unit converter to select degrees Celsius stupňů Fahrenheita An option in the unit converter to select degrees Fahrenheit elektronvoltů A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stop A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stop za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) librostop A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) librostop/min A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektarů A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koňských sil (USA) A measurement unit for power hodin A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palců A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) joulů A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatthodiny A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kelvinů An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) potravinových kalorií A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilojoulů A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometrů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometrů za hodinu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowattů A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uzlů A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) machů A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) megabajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metrů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metrů za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrometry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikrosekund A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mil za hodinu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milimetrů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milisekund A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) minut A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nanometrů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstromy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Námořní míle A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sekund A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimetrů čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stop čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palců čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometrů čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metrů čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mil čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milimetrů čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yardů čtverečních A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wattů A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) týdnů A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yardů A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) let A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dkg An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tun (britských) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tun (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight karátů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stupně A measurement unit for Angle. Radiánů A measurement unit for Angle. Grady A measurement unit for Angle. Atmosféry A measurement unit for Pressure. Bary A measurement unit for Pressure. Kilopascaly A measurement unit for Pressure. Milimetry rtuti A measurement unit for Pressure. Pascalů A measurement unit for Pressure. Libry na čtvereční palec (PSI) A measurement unit for Pressure. centigramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagramů A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) decigramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektogramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) velkých tun (britských) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) miligramů A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uncí A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) liber A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) malých tun (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stonů A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metrických tun A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disků CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disků CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbalových hřišť A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbalových hřišť A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disket A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disket A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disků DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disků DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterií AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterií AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papírových sponek A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papírových sponek A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jetů A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jetů A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žárovek A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žárovek A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koní A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koní A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) van A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) van A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sněhových vloček A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sněhových vloček A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonů An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonů An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) želv A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) želv A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tryskáčů A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tryskáčů A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) velryb A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) velryb A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávových šálků A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávových šálků A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazénů An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazénů An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruk A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruk A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listů papíru A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listů papíru A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hradů A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hradů A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banánů A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banánů A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dortových řezů A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dortových řezů A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiv A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiv A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbalových míčů A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbalových míčů A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Položka v paměti Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Zpět Screen reader prompt for the About panel back button Zpět Content of tooltip being displayed on AboutControlBackButton Licenční podmínky pro software společnosti Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Preview Label displayed next to upcoming features Prohlášení společnosti Microsoft o zásadách ochrany osobních údajů Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Všechna práva vyhrazena. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Pokud se chcete dozvědět, jak můžete přispívat do Windows Kalkulačky, podívejte se na projekt na %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel O aplikaci Subtitle of about message on Settings page Poslat zpětnou vazbu The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Zatím tu není žádná historie. The text that shows as the header for the history list V paměti není nic uložené. The text that shows as the header for the memory list Paměť Screen reader prompt for the negate button on the converter operator keypad Tento výraz nejde vložit. The paste operation cannot be performed, if the expression is invalid. gibibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gibibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibitů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibajtů A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Výpočet data Režim výpočtu Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Přičíst Add toggle button text Přičíst nebo odečíst dny Add or Subtract days option Datum Date result label Rozdíl mezi daty Date difference option Dny Add/Subtract Days label Rozdíl Difference result label Od From Date Header for Difference Date Picker Měsíce Add/Subtract Months label Odečíst Subtract toggle button text Do To Date Header for Difference Date Picker Roky Add/Subtract Years label Datum mimo rozsah Out of bound message shown as result when the date calculation exceeds the bounds den dny měsíc měsíce Stejná data týden týdny rok roky Rozdíl %1 Automation name for reading out the date difference. %1 = Date difference Výsledné datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Režim kalkulačky %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Režim převodníku %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Režim výpočtu data Automation name for when the mode header is focused and the current mode is Date calculation. Seznamy historie a paměti Automation name for the group of controls for history and memory lists. Ovládací prvky paměti Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardní funkce Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Ovládací prvky zobrazení Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardní operátory Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Číselná klávesnice Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operátory úhlu Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Vědecké funkce Automation name for the group of Scientific functions. Vybrat radix Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programátorské operátory Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Výběr režimu zadávání Automation name for the group of input mode toggling buttons. Klávesnice s přepínáním bitů Automation name for the group of bit toggling buttons. Posunout výraz doleva Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Posunout výraz doprava Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Byl dosažen maximální počet číslic. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 uloženo do paměti {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Paměťový slot %1 je nyní %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Paměťový slot %1 byl vymazán. {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". děleno Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. krát Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. mínus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. mocnina Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-tá odmocnina Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. modulo Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. posun doleva Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. posun doprava Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. nebo Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x nebo Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. a Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Aktualizováno %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Aktualizovat sazby The text displayed for a hyperlink button that refreshes currency converter ratios. Můžou se účtovat poplatky za přenos dat. The text displayed when users are on a metered connection and using currency converter. Nejde načíst nové sazby. Zkuste to později. The text displayed when currency ratio data fails to load. Offline. Zkontrolujte si prosím %HL%Nastavení sítě%HL%. Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Kurzy měn se aktualizují. This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Kurzy měn byly aktualizovány. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nešlo aktualizovat kurzy. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} H AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Vymazat celou paměť (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Vymazat celou paměť Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus, stupně Name for the sine function in degrees mode. Used by screen readers. sinus, radiány Name for the sine function in radians mode. Used by screen readers. sinus, grady Name for the sine function in gradians mode. Used by screen readers. inverzní sinus, stupně Name for the inverse sine function in degrees mode. Used by screen readers. inverzní sinus, radiány Name for the inverse sine function in radians mode. Used by screen readers. inverzní sinus, grady Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolický sinus Name for the hyperbolic sine function. Used by screen readers. inverzní hyperbolický sinus Name for the inverse hyperbolic sine function. Used by screen readers. kosinus, stupně Name for the cosine function in degrees mode. Used by screen readers. kosinus, radiány Name for the cosine function in radians mode. Used by screen readers. kosinus, grady Name for the cosine function in gradians mode. Used by screen readers. inverzní kosinus, stupně Name for the inverse cosine function in degrees mode. Used by screen readers. inverzní kosinus, radiány Name for the inverse cosine function in radians mode. Used by screen readers. inverzní kosinus, grady Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolický kosinus Name for the hyperbolic cosine function. Used by screen readers. inverzní hyperbolický kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens, stupně Name for the tangent function in degrees mode. Used by screen readers. tangens, radiány Name for the tangent function in radians mode. Used by screen readers. tangens, grady Name for the tangent function in gradians mode. Used by screen readers. inverzní tangens, stupně Name for the inverse tangent function in degrees mode. Used by screen readers. inverzní tangens, radiány Name for the inverse tangent function in radians mode. Used by screen readers. inverzní tangens, grady Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolický tangens Name for the hyperbolic tangent function. Used by screen readers. inverzní hyperbolický tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekans, stupně Name for the secant function in degrees mode. Used by screen readers. sekans, radiány Name for the secant function in radians mode. Used by screen readers. sekans, grady Name for the secant function in gradians mode. Used by screen readers. inverzní sekans, stupně Name for the inverse secant function in degrees mode. Used by screen readers. inverzní sekans, radiány Name for the inverse secant function in radians mode. Used by screen readers. inverzní sekans, grady Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolický sekans Name for the hyperbolic secant function. Used by screen readers. inverzní hyperbolický sekans Name for the inverse hyperbolic secant function. Used by screen readers. kosekans, stupně Name for the cosecant function in degrees mode. Used by screen readers. kosekans, radiány Name for the cosecant function in radians mode. Used by screen readers. kosekans, grady Name for the cosecant function in gradians mode. Used by screen readers. inverzní kosekans, stupně Name for the inverse cosecant function in degrees mode. Used by screen readers. inverzní kosekans, radiány Name for the inverse cosecant function in radians mode. Used by screen readers. inverzní kosekans, grady Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolický kosekans Name for the hyperbolic cosecant function. Used by screen readers. inverzní hyperbolický kosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangens, stupně Name for the cotangent function in degrees mode. Used by screen readers. kotangens, radiány Name for the cotangent function in radians mode. Used by screen readers. kotangens, grady Name for the cotangent function in gradians mode. Used by screen readers. inverzní kotangens, stupně Name for the inverse cotangent function in degrees mode. Used by screen readers. inverzní kotangens, radiány Name for the inverse cotangent function in radians mode. Used by screen readers. inverzní kotangens, grady Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolický kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverzní hyperbolický kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Třetí odmocnina Name for the cube root function. Used by screen readers. Základní logaritmus Name for the logbasey function. Used by screen readers. Absolutní hodnota Name for the absolute value function. Used by screen readers. posun doleva Name for the programmer function that shifts bits to the left. Used by screen readers. posun doprava Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriál Name for the factorial function. Used by screen readers. stupeň minuta vteřina Name for the degree minute second (dms) function. Used by screen readers. přirozený logaritmus Name for the natural log (ln) function. Used by screen readers. čtverec Name for the square function. Used by screen readers. y-tá odmocnina Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorie %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Smlouva o poskytování služeb společnosti Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyong An abbreviation for a measurement unit of area. Pyong A measurement unit for area. Od From Date Header for AddSubtract Date Picker Posunout výsledek výpočtu doleva Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Posunout výsledek výpočtu doprava Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Neúspěšný výpočet Text displayed when the application is not able to do a calculation Základní logaritmus Y Screen reader prompt for the logBaseY button Trigonometrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkce Displayed on the button that contains a flyout for the general functions in scientific mode. Nerovnosti Displayed on the button that contains a flyout for the inequality functions. Nerovnosti Screen reader prompt for the Inequalities button Na úrovni bitů Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitový posuv Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverzní funkce Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolická funkce Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolický sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolický arkus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolický kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkus kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolický arkus kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolický kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkus kotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolický arkus kotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Dolní mez Screen reader prompt for the Calculator button floor in the scientific flyout keypad Horní mez Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Náhodné Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolutní hodnota Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerovo číslo Screen reader prompt for the Calculator button e in the scientific flyout keypad Dvě na určitý exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Otočení doleva s přenosem Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Otočení doprava s přenosem Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Posun vlevo Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Posuv doleva Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Posun vpravo Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Posuv doprava Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetický posuv Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logický posuv Label for a radio button that toggles logical shift behavior for the shift operations. Otočení s kruhovým posuvem Label for a radio button that toggles rotate circular behavior for the shift operations. Otočení s kruhovým posuvem s přenosem Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Třetí odmocnina Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrie Screen reader prompt for the square root button on the scientific operator keypad Funkce Screen reader prompt for the square root button on the scientific operator keypad Na úrovni bitů Screen reader prompt for the square root button on the scientific operator keypad Bitový posuv Screen reader prompt for the square root button on the scientific operator keypad Panely s vědeckými operátory Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panely s programátorskými operátory Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad nejvýznamnější bit Used to describe the last bit of a binary number. Used in bit flip Vytváření grafů Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Vykreslit Screen reader prompt for the plot button on the graphing calculator operator keypad Aktualizovat zobrazení automaticky (Ctrl+0) This is the tool tip automation name for the Calculator graph view button. Zobrazení grafu Screen reader prompt for the graph view button. Automatické nejlepší přizpůsobení Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ruční úprava Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Zobrazení grafu bylo resetováno. Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Přiblížit (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Přiblížit Screen reader prompt for the zoom in button. Oddálit (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Oddálit Screen reader prompt for the zoom out button. Přidat rovnici Placeholder text for the equation input button V tuto chvíli nejde sdílet. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Podívejte se, jaký graf se mi povedlo udělat s Windows Kalkulačkou Sent as part of the shared content. The title for the share. Rovnice Header that appears over the equations section when sharing Proměnné Header that appears over the variables section when sharing Obrázek grafu s rovnicemi Alt text for the graph image when output via Share Proměnné Header text for variables area Krok Label text for the step text box Minimum Label text for the min text box Maximum Label text for the max text box Barva Label for the Line Color section of the style picker Styl Label for the Line Style section of the style picker Analýza funkcí Title for KeyGraphFeatures Control Funkce nemá žádné vodorovné asymptoty. Message displayed when the graph does not have any horizontal asymptotes Funkce nemá žádné inflexní body. Message displayed when the graph does not have any inflection points Funkce nemá žádné maximální body. Message displayed when the graph does not have any maxima Funkce nemá žádné minimální body. Message displayed when the graph does not have any minima Konstantní String describing constant monotonicity of a function Klesající String describing decreasing monotonicity of a function Není možné určit monotónnost funkce. Error displayed when monotonicity cannot be determined Rostoucí String describing increasing monotonicity of a function Monotónnost funkce není známa. Error displayed when monotonicity is unknown Funkce nemá žádné šikmé asymptoty. Message displayed when the graph does not have any oblique asymptotes Není možné určit paritu funkce. Error displayed when parity is cannot be determined Funkce je sudá. Message displayed with the function parity is even Funkce není sudá ani lichá. Message displayed with the function parity is neither even nor odd Funkce je lichá. Message displayed with the function parity is odd Parita funkce není známa. Error displayed when parity is unknown Pro tuto funkci není periodicita podporována. Error displayed when periodicity is not supported Funkce není periodická. Message displayed with the function periodicity is not periodic Periodicita funkce není známa. Message displayed with the function periodicity is unknown Tyto funkce jsou pro Kalkulačku příliš složité: Error displayed when analysis features cannot be calculated Funkce nemá žádné svislé asymptoty. Message displayed when the graph does not have any vertical asymptotes Funkce nemá žádné průsečíky s osou X. Message displayed when the graph does not have any x-intercepts Funkce nemá žádné průsečíky s osou Y. Message displayed when the graph does not have any y-intercepts Definiční obor Title for KeyGraphFeatures Domain Property Vodorovné asymptoty Title for KeyGraphFeatures Horizontal aysmptotes Property Inflexní body Title for KeyGraphFeatures Inflection points Property Pro tuto funkci není analýza podporována. Error displayed when graph analysis is not supported or had an error. Analýza je podporována jen u funkcí ve formátu f(x). Příklad: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotónnost Title for KeyGraphFeatures Monotonicity Property Šikmé asymptoty Title for KeyGraphFeatures Oblique asymptotes Property Parita Title for KeyGraphFeatures Parity Property Cyklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Rozsah Title for KeyGraphFeatures Range Property Svislé asymptoty Title for KeyGraphFeatures Vertical asymptotes Property Průsečík s osou X Title for KeyGraphFeatures XIntercept Property Průsečík s osou Y Title for KeyGraphFeatures YIntercept Property Pro tuto funkci není možné provést analýzu. Pro tuto funkci není možné vypočítat definiční obor. Error displayed when Domain is not returned from the analyzer. Pro tuto funkci není možné vypočítat rozsah. Error displayed when Range is not returned from the analyzer. Přetečení (číslo je příliš velké). Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Režim radiánů je vyžadován pro vytvoření grafu z této rovnice. Error that occurs during graphing when radians is required. Tato funkce je pro grafy příliš komplexní. Error that occurs during graphing when the equation is too complex. Režim stupňů je vyžadován pro vytvoření grafu z této rovnice. Error that occurs during graphing when degrees is required Funkce faktoriál obsahuje neplatný argument. Error that occurs during graphing when a factorial function has an invalid argument. Funkce faktoriál obsahuje argument, který je příliš velký pro graf. Error that occurs during graphing when a factorial has a large n Modulo lze použít jenom s celými čísly. Error that occurs during graphing when modulo is used with a float. Rovnice nemá žádné řešení. Error that occurs during graphing when the equation has no solution. Nulou nelze dělit. Error that occurs during graphing when a divison by zero occurs. Rovnice obsahuje logické podmínky, které se vzájemně vylučují. Error that occurs during graphing when mutually exclusive conditions are used. Rovnice je mimo doménu. Error that occurs during graphing when the equation is out of domain. Vytvoření grafu z této rovnice není podporováno. Error that occurs during graphing when the equation is not supported. V rovnici chybí levá kulatá závorka. Error that occurs during graphing when the equation is missing a ( V rovnici chybí pravá kulatá závorka. Error that occurs during graphing when the equation is missing a ) Číslo obsahuje příliš mnoho desetinných čárek. Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Desetinné čárce chybí číslice. Error that occurs during graphing with a decimal point without digits Neočekávaný konec výrazu Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Neočekávané znaky ve výrazu Error that occurs during graphing when there is an unexpected token. Neplatné znaky ve výrazu Error that occurs during graphing when there is an invalid token. Příliš mnoho znaků rovná se Error that occurs during graphing when there are too many equals. Funkce musí obsahovat aspoň jednu proměnnou x nebo y. Error that occurs during graphing when the equation is missing x or y. Neplatný výraz Error that occurs during graphing when an invalid syntax is used. Výraz je prázdný. Error that occurs during graphing when the expression is empty Rovná se použito bez rovnice Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Chybějící kulatá závorka za názvem funkce Error that occurs during graphing when parenthesis are missing after a function. Matematická operace má nesprávný počet parametrů. Error that occurs during graphing when a function has the wrong number of parameters Název proměnné je neplatný. Error that occurs during graphing when a variable name is invalid. V rovnici chybí levá hranatá závorka. Error that occurs during graphing when a { is missing V rovnici chybí pravá hranatá závorka. Error that occurs during graphing when a } is missing. Znaky „i“ a „I“ nelze použít jako názvy proměnných. Error that occurs during graphing when i or I is used. Vytvoření grafu z rovnice nebylo možné. General error that occurs during graphing. Pro zadaný základ nemohla být vyřešena číslice. Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Základ musí být větší než 2 a menší než 36. Error that occurs during graphing when the base is out of range. Matematická operace vyžaduje, aby jeden z jejích parametrů byl proměnná Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Rovnice kombinuje logické a skalární operandy. Error that occurs during graphing when operands are mixed. Such as true and 1. Hodnotu x nebo y nejde použít pro horní nebo dolní mez. Error that occurs during graphing when x or y is used in integral upper limits. Hodnoty x nebo y nelze použít jako mezní bod. Error that occurs during graphing when x or y is used in the limit point. Komplexní nekonečno nelze použít. Error that occurs during graphing when complex infinity is used V nerovnicích nelze použít komplexní čísla. Error that occurs during graphing when complex numbers are used in inequalities. Zpět do seznamu funkcí This is the tooltip for the back button in the equation analysis page in the graphing calculator Zpět do seznamu funkcí This is the automation name for the back button in the equation analysis page in the graphing calculator Analyzovat funkci This is the tooltip for the analyze function button Analyzovat funkci This is the automation name for the analyze function button Analyzovat funkci This is the text for the for the analyze function context menu command Odebrat rovnici This is the tooltip for the graphing calculator remove equation buttons Odebrat rovnici This is the automation name for the graphing calculator remove equation buttons Odebrat rovnici This is the text for the for the remove equation context menu command Sdílet This is the automation name for the graphing calculator share button. Sdílet This is the tooltip for the graphing calculator share button. Změnit styl rovnice This is the tooltip for the graphing calculator equation style button Změnit styl rovnice This is the automation name for the graphing calculator equation style button Změnit styl rovnice This is the text for the for the equation style context menu command Zobrazit rovnici This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Skrýt rovnici This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Zobrazit rovnici %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Skrýt rovnici %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Zastavit trasování This is the tooltip/automation name for the graphing calculator stop tracing button Spustit trasování This is the tooltip/automation name for the graphing calculator start tracing button Okno zobrazení grafu, osa x ohraničená %1 a %2, osa y ohraničená %3 a %4, zobrazení %5 rovnic {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurovat posuvník This is the tooltip text for the slider options button in Graphing Calculator Konfigurovat posuvník This is the automation name text for the slider options button in Graphing Calculator Přepnout do režimu rovnice Used in Graphing Calculator to switch the view to the equation mode Přepnout do režimu grafu Used in Graphing Calculator to switch the view to the graph mode Přepnout do režimu rovnice Used in Graphing Calculator to switch the view to the equation mode Aktuálně se používá režim rovnice. Announcement used in Graphing Calculator when switching to the equation mode Aktuálně se používá režim grafu. Announcement used in Graphing Calculator when switching to the graph mode Okno Heading for window extents on the settings Stupně Degrees mode on settings page Grady Gradian mode on settings page Radiány Radians mode on settings page Jednotky Heading for Unit's on the settings Resetovat zobrazení Hyperlink button to reset the view of the graph X – max X maximum value header X – min X minimum value header Y – max Y Maximum value header Y – min Y minimum value header Možnosti grafu This is the tooltip text for the graph options button in Graphing Calculator Možnosti grafu This is the automation name text for the graph options button in Graphing Calculator Možnosti grafu Heading for the Graph options flyout in Graphing mode. Možnosti proměnné Screen reader prompt for the variable settings toggle button Přepnout možnosti proměnné Tool tip for the variable settings toggle button Tloušťka čáry Heading for the Graph options flyout in Graphing mode. Možnosti čáry Heading for the equation style flyout in Graphing mode. Malá tloušťka čáry Automation name for line width setting Střední tloušťka čáry Automation name for line width setting Velká tloušťka čáry Automation name for line width setting Velmi velká tloušťka čáry Automation name for line width setting Zadejte výraz. this is the placeholder text used by the textbox to enter an equation Kopírovat Copy menu item for the graph context menu Vyjmout Cut menu item from the Equation TextBox Kopírovat Copy menu item from the Equation TextBox Vložit Paste menu item from the Equation TextBox Zpět Undo menu item from the Equation TextBox Vybrat vše Select all menu item from the Equation TextBox Vstup funkce The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Vstup funkce The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel zadávaných hodnot funkcí The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel proměnných The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Seznam proměnných The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Položka seznamu %1 proměnné The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Textové pole proměnné hodnoty The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Posuvník proměnné hodnoty The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textové pole minimální hodnoty proměnné The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textové pole hodnoty kroku proměnné The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textové pole maximální hodnoty proměnné The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Styl plné čáry Name of the solid line style for a graphed equation Styl tečkované čáry Name of the dotted line style for a graphed equation Styl přerušované čáry Name of the dashed line style for a graphed equation Námořnická modrá Name of color in the color picker Mořská pěna Name of color in the color picker Fialová Name of color in the color picker Zelená Name of color in the color picker Mátová zelená Name of color in the color picker Tmavě zelená Name of color in the color picker Uhlově černá Name of color in the color picker Červená Name of color in the color picker Světlá švestková Name of color in the color picker Purpurová Name of color in the color picker Žlutozlatá Name of color in the color picker Jasná oranžová Name of color in the color picker Hnědá Name of color in the color picker Černá Name of color in the color picker Bílá Name of color in the color picker Barva 1 Name of color in the color picker Barva 2 Name of color in the color picker Barva 3 Name of color in the color picker Barva 4 Name of color in the color picker Motiv pro grafy Graph settings heading for the theme options Vždycky světlé Graph settings option to set graph to light theme Přizpůsobit motiv aplikace Graph settings option to set graph to match the app theme Motiv This is the automation name text for the Graph settings heading for the theme options Vždycky světlé This is the automation name text for the Graph settings option to set graph to light theme Přizpůsobit motiv aplikace This is the automation name text for the Graph settings option to set graph to match the app theme Funkce odebrána Announcement used in Graphing Calculator when a function is removed from the function list Pole rovnice analýzy funkce This is the automation name text for the equation box in the function analysis panel Rovná se Screen reader prompt for the equal button on the graphing calculator operator keypad Je menší než Screen reader prompt for the Less than button Je menší než nebo rovno Screen reader prompt for the Less than or equal button Je rovno Screen reader prompt for the Equal button Je větší než nebo rovno Screen reader prompt for the Greater than or equal button Je větší než Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Odeslat Screen reader prompt for the submit button on the graphing calculator operator keypad Analýza funkcí Screen reader prompt for the function analysis grid Možnosti grafu Screen reader prompt for the graph options panel Seznamy historie a paměti Automation name for the group of controls for history and memory lists. Seznam paměti Automation name for the group of controls for memory list. Slot historie %1 byl vymazán. {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulačka vždy navrchu Announcement to indicate calculator window is always shown on top. Kalkulačka zpět do úplného zobrazení Announcement to indicate calculator window is now back to full view. Vybraný Aritmetický posuv Label for a radio button that toggles arithmetic shift behavior for the shift operations. Vybraný Logický posuv Label for a radio button that toggles logical shift behavior for the shift operations. Vybráno Otočení s kruhovým posuvem Label for a radio button that toggles rotate circular behavior for the shift operations. Vybráno Otočení s kruhovým posuvem s přenosem Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Nastavení Header text of Settings page Vzhled Subtitle of appearance setting on Settings page Motiv aplikace Title of App theme expander Vyberte motiv aplikace, který se má zobrazit. Description of App theme expander Světlý Lable for light theme option Tmavý Lable for dark theme option Použít systémové nastavení Lable for the app theme option to use system setting Zpět Screen reader prompt for the Back button in title bar to back to main page Stránka Nastavení Announcement used when Settings page is opened Otevřete místní nabídku a podívejte se na dostupné akce Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Tento snímek se nepovedlo obnovit. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/da-DK/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ugyldigt input Error message shown when the input makes a function fail, like log(-1) Resultat er ikke defineret Error message shown when there's no possible value for a function. Ikke nok hukommelse Error message shown when we run out of memory during a calculation. Overløb Error message shown when there's an overflow during the calculation. Resultat er ikke defineret Same as 101 Resultat er ikke defineret Same 101 Overløb Same as 107 Overløb Same 107 Der kan ikke divideres med 0 Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/da-DK/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Lommeregner {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Lommeregner [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Lommeregner {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Lommeregner [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Lommeregner {@Appx_Description@} This description is used for the official application when published through Windows Store. Lommeregner [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiér Copy context menu string Sæt ind Paste context menu string Svarer tilnærmelsesvis til The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, værdi %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip mindst signifikante bit Used to describe the first bit of a binary number. Used in bit flip Åbn pop op-vindue med hukommelse This is the automation name and label for the memory button when the memory flyout is closed. Luk pop op-vindue med hukommelse This is the automation name and label for the memory button when the memory flyout is open. Bevar øverst This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Tilbage til fuld visning This is the tool tip automation name for the always-on-top button when in always-on-top mode. Hukommelse This is the tool tip automation name for the memory button. Historik (Ctrl+H) This is the tool tip automation name for the history button. Tastatur til bitskift This is the tool tip automation name for the bitFlip button. Fuldt tastatur This is the tool tip automation name for the numberPad button. Ryd hele hukommelsen (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Hukommelse The text that shows as the header for the memory list Hukommelse The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Oversigt The text that shows as the header for the history list Oversigt The automation name for the History pivot item that is shown when Calculator is in wide layout. Konverteringprogram Label for a control that activates the unit converter mode. Videnskabelig Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Konverteringstilstand Screen reader prompt for a control that activates the unit converter mode. Videnskabelig tilstand Screen reader prompt for a control that activates scientific mode calculator layout Standardtilstand Screen reader prompt for a control that activates standard mode calculator layout. Ryd hele oversigten "ClearHistory" used on the calculator history pane that stores the calculation history. Ryd hele oversigten This is the tool tip automation name for the Clear History button. Skjul "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Videnskabelig The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmør The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konverteringprogram The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Lommeregner The text that shows in the dropdown navigation control for the calculator group. Konverteringprogram The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Lommeregner The text that shows in the dropdown navigation control for the calculator group in upper case. Konverteringsprogrammer Pluralized version of the converter group text, used for the screen reader prompt. Lommeregnere Pluralized version of the calculator group text, used for the screen reader prompt. Skærm er %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Udtrykket er %1. Det aktuelle input er %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Resultatet er %1 komma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Udtryk er %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Den viste værdi er kopieret til udklipsholder Screen reader prompt for the Calculator display copy button, when the button is invoked. Historik Screen reader prompt for the history flyout Hukommelse Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binær %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Ryd hele oversigten Screen reader prompt for the Calculator History Clear button Oversigt er ryddet Screen reader prompt for the Calculator History Clear button, when the button is invoked. Skjul oversigt Screen reader prompt for the Calculator History Hide button Åbn pop op-vindue med oversigt Screen reader prompt for the Calculator History button, when the flyout is closed. Luk pop op-vindue med oversigt Screen reader prompt for the Calculator History button, when the flyout is open. Hukommelseslager Screen reader prompt for the Calculator Memory button Hukommelseslager (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Ryd hele hukommelsen Screen reader prompt for the Calculator Clear Memory button Hukommelse er ryddet Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Tilbagekald hukommelse Screen reader prompt for the Calculator Memory Recall button Tilbagekald hukommelse (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Tilføj hukommelse Screen reader prompt for the Calculator Memory Add button Tilføj hukommelse (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Fratræk hukommelse Screen reader prompt for the Calculator Memory Subtract button Substraher hukommelse (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Ryd hukommelsesenhed Screen reader prompt for the Calculator Clear Memory button Ryd hukommelsesenhed This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Føj til hukommelsesenhed Screen reader prompt for the Calculator Memory Add button in the Memory list Føj til hukommelsesenhed This is the tool tip automation name for the Calculator Memory Add button in the Memory list Træk fra hukommelsesenhed Screen reader prompt for the Calculator Memory Subtract button in the Memory list Træk fra hukommelsesenhed This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Ryd hukommelsesenhed Screen reader prompt for the Calculator Clear Memory button Ryd hukommelsesenhed Text string for the Calculator Clear Memory option in the Memory list context menu Føj til hukommelsesenhed Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Føj til hukommelsesenhed Text string for the Calculator Memory Add option in the Memory list context menu Træk fra hukommelsesenhed Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Træk fra hukommelsesenhed Text string for the Calculator Memory Subtract option in the Memory list context menu Slet Text string for the Calculator Delete swipe button in the History list Kopiér Text string for the Calculator Copy option in the History list context menu Slet Text string for the Calculator Delete option in the History list context menu Slet historikelement Screen reader prompt for the Calculator Delete swipe button in the History list Slet historikelement Screen reader prompt for the Calculator Delete option in the History list context menu Tilbage Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nul Screen reader prompt for the Calculator number "0" button En Screen reader prompt for the Calculator number "1" button To Screen reader prompt for the Calculator number "2" button Tre Screen reader prompt for the Calculator number "3" button Fire Screen reader prompt for the Calculator number "4" button Fem Screen reader prompt for the Calculator number "5" button Seks Screen reader prompt for the Calculator number "6" button Syv Screen reader prompt for the Calculator number "7" button Otte Screen reader prompt for the Calculator number "8" button Ni Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Og Screen reader prompt for the Calculator And button Eller Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Roter mod venstre Screen reader prompt for the Calculator ROL button Roter mod højre Screen reader prompt for the Calculator ROR button Venstre Skift Screen reader prompt for the Calculator LSH button Højre Skift Screen reader prompt for the Calculator RSH button Eksklusiv eller Screen reader prompt for the Calculator XOR button Vis/skjul firdobbelte ord Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Vis/skjul dobbelte ord Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Vis/skjul ord Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Vis/skjul byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tastatur til bitskift Screen reader prompt for the Calculator bitFlip button Fuldt tastatur Screen reader prompt for the Calculator numberPad button Decimaltegn Screen reader prompt for the "." button Ryd post Screen reader prompt for the "CE" button Ryd Screen reader prompt for the "C" button Divider med Screen reader prompt for the divide button on the number pad Multiplicer med Screen reader prompt for the multiply button on the number pad Er lig med Screen reader prompt for the equals button on the scientific operator keypad Omvendt funktion Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Kvadratrod Screen reader prompt for the square root button on the scientific operator keypad Procent Screen reader prompt for the percent button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the converter operator keypad Reciprok Screen reader prompt for the invert button on the scientific operator keypad Venstreparentes Screen reader prompt for the Calculator "(" button on the scientific operator keypad Venstre parentes, åben parentes antal %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Højreparentes Screen reader prompt for the Calculator ")" button on the scientific operator keypad Åbn parentesantal %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Der er ingen åbne parenteser at lukke. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Videnskabelig notation Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolsk funktion Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolsk sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolsk cosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolsk tangent Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kube Screen reader prompt for the x cubed on the scientific operator keypad. Arcus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arcus cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arcus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolsk arcus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolsk arcus cosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolsk arcus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' til eksponenten Screen reader prompt for x power y button on the scientific operator keypad. Ti til eksponenten Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' til eksponenten Screen reader for the e power x on the scientific operator keypad. 'y'-roden af 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logfør Screen reader for the log base 10 on the scientific operator keypad Naturlig log Screen reader for the log base e on the scientific operator keypad Modulus Screen reader for the mod button on the scientific operator keypad Eksponentiel Screen reader for the exp button on the scientific operator keypad Grad minut sekund Screen reader for the exp button on the scientific operator keypad Grader Screen reader for the exp button on the scientific operator keypad Heltalsdel Screen reader for the int button on the scientific operator keypad Procentdel Screen reader for the frac button on the scientific operator keypad Fakultet Screen reader for the factorial button on the basic operator keypad Vis/skjul grader This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Vis/skjul nygrader This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Vis/skjul radianer This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Rullelisten Tilstand Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Rullelisten Kategorier Screen reader prompt for the Categories dropdown field. Bevar øverst Screen reader prompt for the Always-on-Top button when in normal mode. Tilbage til fuld visning Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Bevar øverst (Alt+op) This is the tool tip automation name for the Always-on-Top button when in normal mode. Tilbage til fuld visning (Alt+ned) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konverteres fra %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konverteres fra %1 punkt %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konverteres til %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 er %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Inputenhed Screen reader prompt for the Unit Converter Units1 i.e. top units field. Outputenhed Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Areal Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energi Unit conversion category name called Energy. (eg. the energy in a battery or in food) Længde Unit conversion category name called Length Strøm Unit conversion category name called Power (eg. the power of an engine or a light bulb) Hastighed Unit conversion category name called Speed Tid Unit conversion category name called Time Rumfang Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatur Unit conversion category name called Temperature Vægt og masse Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tryk Unit conversion category name called Pressure Vinkel Unit conversion category name called Angle Valuta Unit conversion category name called Currency Fluid ounces (Storbritannien) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Storbritannien) An abbreviation for a measurement unit of volume Milliliter (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (USA) An abbreviation for a measurement unit of volume Gallon (Storbritannien) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Storbritannien) An abbreviation for a measurement unit of volume Gallon (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (USA) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pint (Storbritannien) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Storbritannien) An abbreviation for a measurement unit of volume Pint (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (USA) An abbreviation for a measurement unit of volume Spiseskefulde (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spsk. (USA) An abbreviation for a measurement unit of volume Teskefulde (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk. (USA) An abbreviation for a measurement unit of volume Spiseskefulde (Storbritannien) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spsk. (Storbritannien) An abbreviation for a measurement unit of volume Teskefulde (Storbritannien) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk. (Storbritannien) An abbreviation for a measurement unit of volume Quart (Storbritannien) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Storbritannien) An abbreviation for a measurement unit of volume Quart (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (USA) An abbreviation for a measurement unit of volume Cups (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (USA) An abbreviation for a measurement unit of volume Å An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data kal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume fod³ An abbreviation for a measurement unit of volume tommer³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy fod An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hk (USA) An abbreviation for a measurement unit of power time An abbreviation for a measurement unit of time tomme An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/t An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mil An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area fod² An abbreviation for a measurement unit of area tomme² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mil² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power ug An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length år An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acre (0,4 h) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britisk termisk enhed A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Termiske kalorier A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter pr. sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikcentimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikfod A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiktommer A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikmeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikyard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dage A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fødder A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fod pr. sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fod-pund A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fod-pund/minut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hestekraft (USA) A measurement unit for power Timer A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tommer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatttimer A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fødevarekalorier A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer pr. time A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knob A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter pr. sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles pr. time A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutter A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångstrøm A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sømil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratcentimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratfod A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrattommer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratkilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmil A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmillimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratyard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uger A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yards A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) År A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd An abbreviation for a measurement unit of weight grd An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Storbritannien) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grader A measurement unit for Angle. Radianer A measurement unit for Angle. Gradianer A measurement unit for Angle. Atmosfære A measurement unit for Pressure. Barer A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeter kviksølv A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pounds per square inch A measurement unit for Pressure. Centigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Long ton (Storbritannien) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pund A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Short ton (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meterton A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd'er A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd'er A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fodboldbaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fodboldbaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dvd'er A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dvd'er A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papirclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papirclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektriske pærer A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektriske pærer A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) heste A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) heste A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badekar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badekar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snefnug A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snefnug A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skildpadder A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skildpadder A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvaler A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvaler A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekopper A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekopper A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) svømmebassiner An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) svømmebassiner An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hænder A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hænder A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ark papir A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ark papir A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slotte A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slotte A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kagestykker A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kagestykker A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) togmotorer A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) togmotorer A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fodbolde A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fodbolde A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hukommelsesenhed Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Tilbage Screen reader prompt for the About panel back button Tilbage Content of tooltip being displayed on AboutControlBackButton Licensvilkår for Microsoft-software Displayed on a link to the Microsoft Software License Terms on the About panel Preview Label displayed next to upcoming features Microsofts erklæring om beskyttelse af personlige oplysninger Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Alle rettigheder forbeholdes. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Du kan få mere at vide om, hvordan du kan bidrage til Windows lommeregner, ved at tjekke projektet ud %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Om Subtitle of about message on Settings page Send feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Der er ingen historik endnu. The text that shows as the header for the history list Der er ikke gemt noget i hukommelsen. The text that shows as the header for the memory list Hukommelse Screen reader prompt for the negate button on the converter operator keypad Dette udtryk kan ikke sættes ind The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datoberegning Beregningstilstand Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Læg til Add toggle button text Læg dage til eller træk dage fra Add or Subtract days option Dato Date result label Forskel mellem datoer Date difference option Dage Add/Subtract Days label Forskel Difference result label Fra From Date Header for Difference Date Picker Måneder Add/Subtract Months label Fjern overlappende område Subtract toggle button text Til To Date Header for Difference Date Picker År Add/Subtract Years label Dato ligger uden for området Out of bound message shown as result when the date calculation exceeds the bounds dag dage måned måneder Samme datoer uge uger år år Forskel %1 Automation name for reading out the date difference. %1 = Date difference Resulterende dato %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Lommeregnertilstand {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Konverteringstilstand {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datoberegningstilstand Automation name for when the mode header is focused and the current mode is Date calculation. Oversigt og hukommelseslister Automation name for the group of controls for history and memory lists. Hukommelsescontroller Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardfunktioner Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Skærmkontroller Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardoperatorer Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerisk tastatur Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Vinkeloperatorer Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Videnskabelig funktion Automation name for the group of Scientific functions. Valg af radikand Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeringsoperatorer Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Valg af inputtilstand Automation name for the group of input mode toggling buttons. Tastatur til bit til/fra Automation name for the group of bit toggling buttons. Rul til venstre i udtryk Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Rul til højre i udtryk Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maks. antal cifre nået. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 er gemt i hukommelse {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Hukommelsesstik %1 er %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Hukommelsesstik %1 er ryddet {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". divideret med Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. gange Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. i potensen Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y rod Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. venstre skift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. højre skift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. eller Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x eller Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. og Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Opdateret %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Opdater satser The text displayed for a hyperlink button that refreshes currency converter ratios. Der kan blive pålagt datagebyrer. The text displayed when users are on a metered connection and using currency converter. De nye priser kunne ikke hentes. Prøv igen senere. The text displayed when currency ratio data fails to load. Offline. Kontrollér dine%HL%netværksindstillinger%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Opdaterer valutakurser This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valutakurserne er opdateret This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kurserne kunne ikke opdateres This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} ET AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} KO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} Ti AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Ryd hele hukommelsen (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Ryd hele hukommelsen Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinusgrader Name for the sine function in degrees mode. Used by screen readers. sinusradianer Name for the sine function in radians mode. Used by screen readers. sinusnygrader Name for the sine function in gradians mode. Used by screen readers. inverse sinusgrader Name for the inverse sine function in degrees mode. Used by screen readers. inverse sinusradianer Name for the inverse sine function in radians mode. Used by screen readers. inverse sinusnygrader Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolsk sinus Name for the hyperbolic sine function. Used by screen readers. invers hyperbolsk sinus Name for the inverse hyperbolic sine function. Used by screen readers. cosinus-grader Name for the cosine function in degrees mode. Used by screen readers. cosinus-radianer Name for the cosine function in radians mode. Used by screen readers. cosinus-nygrader Name for the cosine function in gradians mode. Used by screen readers. inverse cosinus-grader Name for the inverse cosine function in degrees mode. Used by screen readers. inverse cosinus-radianer Name for the inverse cosine function in radians mode. Used by screen readers. inverse cosinus-nygrader Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolsk cosinus Name for the hyperbolic cosine function. Used by screen readers. invers hyperbolsk cosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangensgrader Name for the tangent function in degrees mode. Used by screen readers. tangensradianer Name for the tangent function in radians mode. Used by screen readers. tangensnygrader Name for the tangent function in gradians mode. Used by screen readers. inverse tangensgrader Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangensradianer Name for the inverse tangent function in radians mode. Used by screen readers. inverse tangensnygrader Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolsk tangens Name for the hyperbolic tangent function. Used by screen readers. invers hyperbolsk tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekant-grader Name for the secant function in degrees mode. Used by screen readers. sekant-radianer Name for the secant function in radians mode. Used by screen readers. sekant-gradianer Name for the secant function in gradians mode. Used by screen readers. inverse sekant-grader Name for the inverse secant function in degrees mode. Used by screen readers. inverse sekant-radianer Name for the inverse secant function in radians mode. Used by screen readers. inverse sekant-gradianer Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolsk sekant Name for the hyperbolic secant function. Used by screen readers. invers hyperbolsk sekant Name for the inverse hyperbolic secant function. Used by screen readers. cosekant-grader Name for the cosecant function in degrees mode. Used by screen readers. cosekant-radianer Name for the cosecant function in radians mode. Used by screen readers. cosekant-gradianer Name for the cosecant function in gradians mode. Used by screen readers. inverse cosekant-grader Name for the inverse cosecant function in degrees mode. Used by screen readers. inverse cosekant-radianer Name for the inverse cosecant function in radians mode. Used by screen readers. inverse cosekant-gradianer Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolsk cosekant Name for the hyperbolic cosecant function. Used by screen readers. invers hyperbolsk cosekant Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangent-grader Name for the cotangent function in degrees mode. Used by screen readers. Cotangent-radianer Name for the cotangent function in radians mode. Used by screen readers. cotangent-gradianer Name for the cotangent function in gradians mode. Used by screen readers. inverse cotangensgrader Name for the inverse cotangent function in degrees mode. Used by screen readers. inverse cotangensradianer Name for the inverse cotangent function in radians mode. Used by screen readers. inverse cotangensgradianer Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolsk cotangens Name for the hyperbolic cotangent function. Used by screen readers. invers hyperbolsk cotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubikrod Name for the cube root function. Used by screen readers. Grundlæggende log Name for the logbasey function. Used by screen readers. Absolut værdi Name for the absolute value function. Used by screen readers. venstre skift Name for the programmer function that shifts bits to the left. Used by screen readers. højre skift Name for the programmer function that shifts bits to the right. Used by screen readers. fakultet Name for the factorial function. Used by screen readers. grad minut sekund Name for the degree minute second (dms) function. Used by screen readers. naturlig log Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. y rod Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategori {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft-serviceaftale Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Fra From Date Header for AddSubtract Date Picker Rul til venstre for beregningsresultat Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Rul til højre for beregningsresultat Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Beregning mislykkedes Text displayed when the application is not able to do a calculation Grundlæggende log Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Funktion Displayed on the button that contains a flyout for the general functions in scientific mode. Uligheder Displayed on the button that contains a flyout for the inequality functions. Uligheder Screen reader prompt for the Inequalities button Bitvis Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit-skift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Omvendt funktion Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolsk funktion Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekant Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolsk sekant Screen reader prompt for the Calculator button sech in the scientific flyout keypad Bue-sekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolsk bue-sekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosekant Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolsk cosekant Screen reader prompt for the Calculator button csch in the scientific flyout keypad Bue-cosekant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolsk bue-cosekant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangent Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolsk cotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Bue-cotangent Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolsk bue-cotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Nedrunding Screen reader prompt for the Calculator button floor in the scientific flyout keypad Oprunding Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Vilkårlig Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolut værdi Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulers nummer Screen reader prompt for the Calculator button e in the scientific flyout keypad To til eksponenten Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Roter mod venstre med mente Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Roter mod højre med mente Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Venstre Skift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Venstre skift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Højre Skift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Højre skift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetisk skift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logisk skift Label for a radio button that toggles logical shift behavior for the shift operations. Roter cirkulært skift Label for a radio button that toggles rotate circular behavior for the shift operations. Roter gennem cirkulært menteskift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubikrod Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Funktioner Screen reader prompt for the square root button on the scientific operator keypad Bitvis Screen reader prompt for the square root button on the scientific operator keypad Bitskift Screen reader prompt for the square root button on the scientific operator keypad Videnskabelige operatørpaneler Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Operatørpaneler for programmer Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad mest signifikante bit Used to describe the last bit of a binary number. Used in bit flip Grafisk afbildning Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plot Screen reader prompt for the plot button on the graphing calculator operator keypad Opdater visning automatisk (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Graf Screen reader prompt for the graph view button. Automatisk bedste match Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuel justering Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafvisning er blevet nulstillet Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom ind (Ctrl+plus) This is the tool tip automation name for the Calculator zoom in button. Zoom ind Screen reader prompt for the zoom in button. Zoom ud (Ctrl+minus) This is the tool tip automation name for the Calculator zoom out button. Zoom ud Screen reader prompt for the zoom out button. Tilføj ligning Placeholder text for the equation input button Det er ikke muligt at dele på nuværende tidspunkt. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Se, hvad jeg har afbildet med Windows Lommeregner Sent as part of the shared content. The title for the share. Ligninger Header that appears over the equations section when sharing Variabler Header that appears over the variables section when sharing Billede af en graf med ligninger Alt text for the graph image when output via Share Variabler Header text for variables area Trin Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Farve Label for the Line Color section of the style picker Typografi Label for the Line Style section of the style picker Funktionsanalyse Title for KeyGraphFeatures Control Funktionen har ikke nogen vandrette asymptoter. Message displayed when the graph does not have any horizontal asymptotes Funktionen har ikke nogen bøjningspunkter. Message displayed when the graph does not have any inflection points Funktionen har ikke nogen maksima-punkter. Message displayed when the graph does not have any maxima Funktionen har ikke nogen minima-punkter. Message displayed when the graph does not have any minima Konstant String describing constant monotonicity of a function Faldende String describing decreasing monotonicity of a function Funktionens monotonitet kunne ikke bestemmes. Error displayed when monotonicity cannot be determined Stigende String describing increasing monotonicity of a function Funktionens monotonitet er ukendt. Error displayed when monotonicity is unknown Funktionen har ikke nogen skråtstillede aysmptoter. Message displayed when the graph does not have any oblique asymptotes Funktionens paritet kan ikke bestemmes. Error displayed when parity is cannot be determined Funktionen er lige. Message displayed with the function parity is even Funktionen er hverken lige eller ulige. Message displayed with the function parity is neither even nor odd Funktionen er ulige. Message displayed with the function parity is odd Funktionens paritet er ukendt. Error displayed when parity is unknown Periodicitet understøttes ikke for denne funktion. Error displayed when periodicity is not supported Funktionen er ikke periodisk. Message displayed with the function periodicity is not periodic Funktionens periodicitet er ukendt. Message displayed with the function periodicity is unknown Disse funktioner er for komplekse til at kunne beregnes i Lommeregner: Error displayed when analysis features cannot be calculated Funktionen har ikke nogen lodrette asymptoter. Message displayed when the graph does not have any vertical asymptotes Funktionen har ikke nogen x-afbrydelser. Message displayed when the graph does not have any x-intercepts Funktionen har ikke nogen y-afbrydelser. Message displayed when the graph does not have any y-intercepts Domæne Title for KeyGraphFeatures Domain Property Vandrette asymptoter Title for KeyGraphFeatures Horizontal aysmptotes Property Bøjningspunkter Title for KeyGraphFeatures Inflection points Property Analysen understøttes ikke for denne funktion. Error displayed when graph analysis is not supported or had an error. Analyse understøttes kun for funktioner i f(x)-format. Eksempel: y=x Error displayed when graph analysis detects the function format is not f(x). Maksima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonitet Title for KeyGraphFeatures Monotonicity Property Skråtstillede asymptoter Title for KeyGraphFeatures Oblique asymptotes Property Paritet Title for KeyGraphFeatures Parity Property Cyklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Interval Title for KeyGraphFeatures Range Property Lodrette asymptoter Title for KeyGraphFeatures Vertical asymptotes Property X-skæring Title for KeyGraphFeatures XIntercept Property Y-skæring Title for KeyGraphFeatures YIntercept Property Analysen kunne ikke udføres for denne funktion. Domænet for denne funktion kan ikke beregnes. Error displayed when Domain is not returned from the analyzer. Det er ikke muligt at beregne området for denne funktion. Error displayed when Range is not returned from the analyzer. Overløb (tallet er for stort) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radiantilstanden er nødvendig for at afbilde denne ligning. Error that occurs during graphing when radians is required. Denne funktion er for kompleks til grafisk illustration Error that occurs during graphing when the equation is too complex. Gradstilstanden er nødvendig for at afbilde denne funktion Error that occurs during graphing when degrees is required Funktionen Fakultet har et ugyldigt argument Error that occurs during graphing when a factorial function has an invalid argument. Funktionen Fakultet har et argument, der er for stort til grafisk illustration Error that occurs during graphing when a factorial has a large n Modulus kan kun bruges sammen med heltal Error that occurs during graphing when modulo is used with a float. Ligningen har ingen løsning Error that occurs during graphing when the equation has no solution. Der kan ikke divideres med 0 Error that occurs during graphing when a divison by zero occurs. Ligningen indeholder logiske betingelser, der udelukker hinanden Error that occurs during graphing when mutually exclusive conditions are used. Ligningen er ude af domænet Error that occurs during graphing when the equation is out of domain. Grafisk afbildning af denne ligning understøttes ikke Error that occurs during graphing when the equation is not supported. Ligningen mangler en venstreparentes Error that occurs during graphing when the equation is missing a ( Ligningen mangler en højreparentes Error that occurs during graphing when the equation is missing a ) Der er for mange decimaler i et tal Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Et decimaltegn mangler cifre Error that occurs during graphing with a decimal point without digits Uventet slutning på udtryk Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Uventede tegn i udtrykket Error that occurs during graphing when there is an unexpected token. Ugyldige tegn i udtrykket Error that occurs during graphing when there is an invalid token. Der er for mange lighedstegn Error that occurs during graphing when there are too many equals. Funktionen skal indeholde mindst én x- eller y-variabel Error that occurs during graphing when the equation is missing x or y. Ugyldigt udtryk Error that occurs during graphing when an invalid syntax is used. Udtrykket er tomt Error that occurs during graphing when the expression is empty Lig med er brugt uden en ligning Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parentes mangler efter funktionsnavn Error that occurs during graphing when parenthesis are missing after a function. En matematisk handling har det forkerte antal parametre Error that occurs during graphing when a function has the wrong number of parameters Et variabelnavn er ugyldigt Error that occurs during graphing when a variable name is invalid. Ligningen mangler en venstreparentes Error that occurs during graphing when a { is missing Ligningen mangler en højreparentes Error that occurs during graphing when a } is missing. "i" og "I" kan ikke bruges som variabelnavne Error that occurs during graphing when i or I is used. Ligningen kunne ikke afbildes General error that occurs during graphing. Cifferet kunne ikke beregnes for den bestemte base Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Basis skal være større end 2 og mindre end 36 Error that occurs during graphing when the base is out of range. En matematisk handling kræver, at en af parametrene er en variabel Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ligningen blander logiske operander og skalaroperander Error that occurs during graphing when operands are mixed. Such as true and 1. x eller y kan ikke bruges i de øvre eller nedre grænser Error that occurs during graphing when x or y is used in integral upper limits. x eller y kan ikke bruges i grænsepunktet Error that occurs during graphing when x or y is used in the limit point. Du kan ikke bruge komplekse uendelige tal Error that occurs during graphing when complex infinity is used Der kan ikke bruges komplekse tal i uligheder Error that occurs during graphing when complex numbers are used in inequalities. Tilbage til funktionslisten This is the tooltip for the back button in the equation analysis page in the graphing calculator Tilbage til funktionslisten This is the automation name for the back button in the equation analysis page in the graphing calculator Analysefunktion This is the tooltip for the analyze function button Analysefunktion This is the automation name for the analyze function button Analysefunktion This is the text for the for the analyze function context menu command Fjern ligning This is the tooltip for the graphing calculator remove equation buttons Fjern ligning This is the automation name for the graphing calculator remove equation buttons Fjern ligning This is the text for the for the remove equation context menu command Del This is the automation name for the graphing calculator share button. Del This is the tooltip for the graphing calculator share button. Skift ligningens typografi This is the tooltip for the graphing calculator equation style button Skift ligningens typografi This is the automation name for the graphing calculator equation style button Skift ligningens typografi This is the text for the for the equation style context menu command Vis ligning This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Skjul ligning This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Vis ligning %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Skjul ligning %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stop sporing This is the tooltip/automation name for the graphing calculator stop tracing button Start sporing This is the tooltip/automation name for the graphing calculator start tracing button Diagram visnings vindue, x-akse, der er afgrænset af %1 og %2, y-aksen er afgrænset af %3 og %4, der vises %5 ligninger {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurer skyder This is the tooltip text for the slider options button in Graphing Calculator Konfigurer skyder This is the automation name text for the slider options button in Graphing Calculator Skift til ligningstilstand Used in Graphing Calculator to switch the view to the equation mode Skift til graftilstand Used in Graphing Calculator to switch the view to the graph mode Skift til ligningstilstand Used in Graphing Calculator to switch the view to the equation mode Den aktuelle tilstand er ligningstilstand Announcement used in Graphing Calculator when switching to the equation mode Den aktuelle tilstand er graftilstand Announcement used in Graphing Calculator when switching to the graph mode Vindue Heading for window extents on the settings Grader Degrees mode on settings page Nygrader Gradian mode on settings page Radianer Radians mode on settings page Enheder Heading for Unit's on the settings Nulstil visning Hyperlink button to reset the view of the graph X-maks. X maximum value header X-min. X minimum value header Y-maks. Y Maximum value header Y-min. Y minimum value header Grafindstillinger This is the tooltip text for the graph options button in Graphing Calculator Grafindstillinger This is the automation name text for the graph options button in Graphing Calculator Grafindstillinger Heading for the Graph options flyout in Graphing mode. Variable indstillinger Screen reader prompt for the variable settings toggle button Skift variable indstillinger Tool tip for the variable settings toggle button Stregtykkelse Heading for the Graph options flyout in Graphing mode. Linjeindstillinger Heading for the equation style flyout in Graphing mode. Lille stregtykkelse Automation name for line width setting Mellem stregtykkelse Automation name for line width setting Stor stregtykkelse Automation name for line width setting Ekstra stor stregtykkelse Automation name for line width setting Angiv et udtryk this is the placeholder text used by the textbox to enter an equation Kopiér Copy menu item for the graph context menu Klip Cut menu item from the Equation TextBox Kopiér Copy menu item from the Equation TextBox Sæt ind Paste menu item from the Equation TextBox Fortryd Undo menu item from the Equation TextBox Markér alle Select all menu item from the Equation TextBox Liste til funktionsindtastning The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Liste til funktionsindtastning The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel til funktionsindtastning The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panelet Variabel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Liste med variabler The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Listeelement til variabel %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Tekstfelt til variabelværdi The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Skyder til variabelværdi The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Tekstfelt til minimumværdi for variabel The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Tekstfelt til variabel trinværdi The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Tekstfelt til maksimumværdi for variabel The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Ubrudt stregtype Name of the solid line style for a graphed equation Prikket stregtype Name of the dotted line style for a graphed equation Stiplet stregtype Name of the dashed line style for a graphed equation Marineblå Name of color in the color picker Havskum Name of color in the color picker Violet Name of color in the color picker Grøn Name of color in the color picker Myntegrøn Name of color in the color picker Mørkegrøn Name of color in the color picker Koksgrå Name of color in the color picker Rød Name of color in the color picker Lys blomme Name of color in the color picker Magenta Name of color in the color picker Gul guld Name of color in the color picker Lys orange Name of color in the color picker Brun Name of color in the color picker Sort Name of color in the color picker Hvid Name of color in the color picker Farve 1 Name of color in the color picker Farve 2 Name of color in the color picker Farve 3 Name of color in the color picker Farve 4 Name of color in the color picker Graftema Graph settings heading for the theme options Altid lys Graph settings option to set graph to light theme Match app-tema Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Altid lys This is the automation name text for the Graph settings option to set graph to light theme Match app-tema This is the automation name text for the Graph settings option to set graph to match the app theme Funktionen er fjernet Announcement used in Graphing Calculator when a function is removed from the function list Ligningsfelt til funktionsanalyse This is the automation name text for the equation box in the function analysis panel Er lig med Screen reader prompt for the equal button on the graphing calculator operator keypad Mindre end Screen reader prompt for the Less than button Mindre end eller lig med Screen reader prompt for the Less than or equal button Lig med Screen reader prompt for the Equal button Større end eller lig med Screen reader prompt for the Greater than or equal button Er større end Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Send Screen reader prompt for the submit button on the graphing calculator operator keypad Funktionsanalyse Screen reader prompt for the function analysis grid Grafindstillinger Screen reader prompt for the graph options panel Oversigt og hukommelseslister Automation name for the group of controls for history and memory lists. Hukommelsesliste Automation name for the group of controls for memory list. Hukommelsen %1 er ryddet {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Lommeregner altid øverst Announcement to indicate calculator window is always shown on top. Lommeregner tilbage til fuld visning Announcement to indicate calculator window is now back to full view. Aritmetisk skift valgt Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logisk skift er valgt Label for a radio button that toggles logical shift behavior for the shift operations. Roter cirkulært skift valgt Label for a radio button that toggles rotate circular behavior for the shift operations. Roter gennem cirkulært menteskift valgt Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Indstillinger Header text of Settings page Udseende Subtitle of appearance setting on Settings page App tema Title of App theme expander Vælg, hvilket apptema der skal vises Description of App theme expander Lys Lable for light theme option Mørk Lable for dark theme option Brug systemindstilling Lable for the app theme option to use system setting Tilbage Screen reader prompt for the Back button in title bar to back to main page Siden Indstillinger Announcement used when Settings page is opened Åbn genvejsmenuen for tilgængelige handlinger Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Kunne ikke gendanne dette snapshot. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/de-DE/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ungültige Eingabe Error message shown when the input makes a function fail, like log(-1) Undefiniertes Ergebnis Error message shown when there's no possible value for a function. Nicht genügend Speicher Error message shown when we run out of memory during a calculation. Überlauf Error message shown when there's an overflow during the calculation. Ergebnis nicht definiert Same as 101 Ergebnis nicht definiert Same 101 Überlauf Same as 107 Überlauf Same 107 Teilen durch 0 nicht möglich Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/de-DE/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Rechner {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Rechner [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows-Rechner {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows-Rechner [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Rechner {@Appx_Description@} This description is used for the official application when published through Windows Store. Rechner [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopieren Copy context menu string Einfügen Paste context menu string Ungefähr gleich The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, Wert %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 Bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip Niederwertigstes Bit Used to describe the first bit of a binary number. Used in bit flip Speicher-Flyout öffnen This is the automation name and label for the memory button when the memory flyout is closed. Speicher-Flyout schließen This is the automation name and label for the memory button when the memory flyout is open. Immer im Vordergrund This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Zurück zum Vollbildmodus This is the tool tip automation name for the always-on-top button when in always-on-top mode. Speicher This is the tool tip automation name for the memory button. Verlauf (STRG+H) This is the tool tip automation name for the history button. Tastatur zum Umschalten in Bitmodus This is the tool tip automation name for the bitFlip button. Volltastatur This is the tool tip automation name for the numberPad button. Gesamten Speicher löschen (STRG+L) This is the tool tip automation name for the Clear Memory (MC) button. Speicher The text that shows as the header for the memory list Speicher The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Verlauf The text that shows as the header for the history list Verlauf The automation name for the History pivot item that is shown when Calculator is in wide layout. Konverter Label for a control that activates the unit converter mode. Wissenschaftlich Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Konvertermodus Screen reader prompt for a control that activates the unit converter mode. Wissenschaftlicher Modus Screen reader prompt for a control that activates scientific mode calculator layout Standardmodus Screen reader prompt for a control that activates standard mode calculator layout. Gesamtverlauf löschen "ClearHistory" used on the calculator history pane that stores the calculation history. Gesamtverlauf löschen This is the tool tip automation name for the Clear History button. Ausblenden "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Wissenschaftlich The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmierer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konverter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Rechner The text that shows in the dropdown navigation control for the calculator group. Konverter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Rechner The text that shows in the dropdown navigation control for the calculator group in upper case. Konverter Pluralized version of the converter group text, used for the screen reader prompt. Rechner Pluralized version of the calculator group text, used for the screen reader prompt. Die Anzeige lautet %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Ausdruck: %1, aktuelle Eingabe: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Die Anzeige lautet %1 Komma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Der Ausdruck lautet %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". In Zwischenablage kopierten Wert anzeigen Screen reader prompt for the Calculator display copy button, when the button is invoked. Verlauf Screen reader prompt for the history flyout Speicher Screen reader prompt for the memory flyout Hexadezimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Dezimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binär %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Gesamtverlauf löschen Screen reader prompt for the Calculator History Clear button Verlauf gelöscht Screen reader prompt for the Calculator History Clear button, when the button is invoked. Verlauf ausblenden Screen reader prompt for the Calculator History Hide button Verlaufserweiterung öffnen Screen reader prompt for the Calculator History button, when the flyout is closed. Verlaufserweiterung schließen Screen reader prompt for the Calculator History button, when the flyout is open. Speicher Screen reader prompt for the Calculator Memory button Speicher (STRG+M) This is the tool tip automation name for the Memory Store (MS) button. Gesamten Speicher löschen Screen reader prompt for the Calculator Clear Memory button Speicher geleert Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Speicher abrufen Screen reader prompt for the Calculator Memory Recall button Speicher abrufen (STRG+R) This is the tool tip automation name for the Memory Recall (MR) button. Gespeicherten Wert addieren Screen reader prompt for the Calculator Memory Add button Gespeicherten Wert addieren (STRG+P) This is the tool tip automation name for the Memory Add (M+) button. Gespeicherten Wert subtrahieren Screen reader prompt for the Calculator Memory Subtract button Gespeicherten Wert subtrahieren (STRG+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Element im Speicher löschen Screen reader prompt for the Calculator Clear Memory button Element im Speicher löschen This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Zum Wert im Speicher addieren Screen reader prompt for the Calculator Memory Add button in the Memory list Zum Wert im Speicher addieren This is the tool tip automation name for the Calculator Memory Add button in the Memory list Vom Wert im Speicher subtrahieren Screen reader prompt for the Calculator Memory Subtract button in the Memory list Vom Wert im Speicher subtrahieren This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Element im Speicher löschen Screen reader prompt for the Calculator Clear Memory button Element im Speicher löschen Text string for the Calculator Clear Memory option in the Memory list context menu Zum Wert im Speicher addieren Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Zum Wert im Speicher addieren Text string for the Calculator Memory Add option in the Memory list context menu Vom Wert im Speicher subtrahieren Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Vom Wert im Speicher subtrahieren Text string for the Calculator Memory Subtract option in the Memory list context menu Löschen Text string for the Calculator Delete swipe button in the History list Kopieren Text string for the Calculator Copy option in the History list context menu Löschen Text string for the Calculator Delete option in the History list context menu Verlaufselement löschen Screen reader prompt for the Calculator Delete swipe button in the History list Verlaufselement löschen Screen reader prompt for the Calculator Delete option in the History list context menu Rücktaste Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Null Screen reader prompt for the Calculator number "0" button Eins Screen reader prompt for the Calculator number "1" button Zwei Screen reader prompt for the Calculator number "2" button Drei Screen reader prompt for the Calculator number "3" button Vier Screen reader prompt for the Calculator number "4" button Fünf Screen reader prompt for the Calculator number "5" button Sechs Screen reader prompt for the Calculator number "6" button Sieben Screen reader prompt for the Calculator number "7" button Acht Screen reader prompt for the Calculator number "8" button Neun Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button UND Screen reader prompt for the Calculator And button ODER Screen reader prompt for the Calculator Or button NICHT Screen reader prompt for the Calculator Not button Nach links verschieben Screen reader prompt for the Calculator ROL button Nach rechts verschieben Screen reader prompt for the Calculator ROR button Linke Umschalttaste Screen reader prompt for the Calculator LSH button Rechte Umschalttaste Screen reader prompt for the Calculator RSH button Exklusives ODER Screen reader prompt for the Calculator XOR button Umschaltfläche für Qword Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Umschaltfläche für Doppelwort Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Umschaltfläche für Word Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Umschaltfläche für Byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tastatur zum Umschalten in Bitmodus Screen reader prompt for the Calculator bitFlip button Volltastatur Screen reader prompt for the Calculator numberPad button Dezimaltrennzeichen Screen reader prompt for the "." button Eingabe löschen Screen reader prompt for the "CE" button Löschen Screen reader prompt for the "C" button Dividieren durch Screen reader prompt for the divide button on the number pad Multiplizieren mit Screen reader prompt for the multiply button on the number pad Gleich Screen reader prompt for the equals button on the scientific operator keypad Umkehrfunktion Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Quadratwurzel Screen reader prompt for the square root button on the scientific operator keypad Prozent Screen reader prompt for the percent button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the converter operator keypad Reziprok Screen reader prompt for the invert button on the scientific operator keypad Öffnende Klammer Screen reader prompt for the Calculator "(" button on the scientific operator keypad Linke runde Klammer, Anzahl der öffnenden Klammern %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Schließende Klammer Screen reader prompt for the Calculator ")" button on the scientific operator keypad Anzahl geöffneter Klammern %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Es sind keine zu schließenden Klammern vorhanden. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Wissenschaftliche Schreibweise Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolische Funktion Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolischer Sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolischer Kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolischer Tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Quadrat Screen reader prompt for the x squared on the scientific operator keypad. Kubik Screen reader prompt for the x cubed on the scientific operator keypad. Arkussinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkuskosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkustangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolischer Arcussinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolischer Arcuscosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolischer Arcustangens Screen reader prompt for the inverted tanh on the scientific operator keypad. X-Potenz Screen reader prompt for x power y button on the scientific operator keypad. Zehnerpotenz Screen reader prompt for the 10 power x button on the scientific operator keypad. E-Potenz Screen reader for the e power x on the scientific operator keypad. 'y' Wurzel aus 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logarithmus Screen reader for the log base 10 on the scientific operator keypad Natürlicher Logarithmus Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponentiell Screen reader for the exp button on the scientific operator keypad Grad Minute Sekunde Screen reader for the exp button on the scientific operator keypad Grad Screen reader for the exp button on the scientific operator keypad Ganzzahliger Anteil Screen reader for the int button on the scientific operator keypad Bruchteil Screen reader for the frac button on the scientific operator keypad Fakultät Screen reader for the factorial button on the basic operator keypad Umschaltfläche für Grad This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Umschaltfläche für Gon This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Umschaltfläche für Bogenmaß This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Dropdownmenü „Modus“ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Dropdownmenü „Kategorien“ Screen reader prompt for the Categories dropdown field. Immer im Vordergrund Screen reader prompt for the Always-on-Top button when in normal mode. Zurück zum Vollbildmodus Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Immer im Vordergrund (ALT+NACH-OBEN) This is the tool tip automation name for the Always-on-Top button when in normal mode. Zurück zum Vollbildmodus (ALT+NACH-UNTEN) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Aus %1 %2 umwandeln Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Aus %1 Komma %2 umwandeln {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. In %1 %2 umwandeln Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ist %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Eingabeeinheit Screen reader prompt for the Unit Converter Units1 i.e. top units field. Ausgabeeinheit Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Fläche Unit conversion category name called Area (eg. area of a sports field in square meters) Daten Unit conversion category name called Data Energie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Länge Unit conversion category name called Length Leistung Unit conversion category name called Power (eg. the power of an engine or a light bulb) Geschwindigkeit Unit conversion category name called Speed Zeit Unit conversion category name called Time Volumen Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatur Unit conversion category name called Temperature Gewicht und Masse Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Druck Unit conversion category name called Pressure Winkel Unit conversion category name called Angle Währung Unit conversion category name called Currency Flüssigunzen (GB) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (GB) An abbreviation for a measurement unit of volume Flüssigunzen (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (USA) An abbreviation for a measurement unit of volume Gallonen (GB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (GB) An abbreviation for a measurement unit of volume Gallonen (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (USA) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) l An abbreviation for a measurement unit of volume Milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pint (GB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (GB) An abbreviation for a measurement unit of volume Pint (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (USA) An abbreviation for a measurement unit of volume Esslöffel (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) El (USA) An abbreviation for a measurement unit of volume Teelöffel (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (USA) An abbreviation for a measurement unit of volume Esslöffel (GB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) El (GB) An abbreviation for a measurement unit of volume Teelöffel (GB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TL (GB) An abbreviation for a measurement unit of volume Quart (GB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (GB) An abbreviation for a measurement unit of volume Quart (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (USA) An abbreviation for a measurement unit of volume Messbecher (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (USA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy GBit An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area PS (USA) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) KB An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) MBit An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length PBit An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area TBit An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power w An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data Nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Morgen A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU (British Thermal Unit) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/Minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorien (thermochemisch) A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zentimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zentimeter pro Sekunde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikzentimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikfuß A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikzoll A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikmeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikyard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tage A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronenvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fuß A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fuß pro Sekunde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-Pounds A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-Pounds/Minute A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pferdestärken (USA) A measurement unit for power Stunden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zoll A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowattstunden A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorien (Lebensmittel) A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer pro Stunde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knoten A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter pro Sekunde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekunden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meilen A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meilen pro Stunde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekunden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuten A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Seemeilen A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekunden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratzentimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratfuß A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratzoll A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratkilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratmeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratmeilen A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratmillimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quadratyard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Wochen A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jahre A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kt An abbreviation for a measurement unit of weight Grad An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gon An abbreviation for a measurement unit of Angle ATM An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure Psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight t (GB) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight t (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grad A measurement unit for Angle. Bogenmaß A measurement unit for Angle. Gon A measurement unit for Angle. Atmosphäre A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeter-Quecksilbersäule A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pfund pro Quadratzoll A measurement unit for Pressure. Zentigramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagramm A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dezigramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnen (GB) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unzen A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pfund A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnen (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnen (metrisch) A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fußballfelder A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fußballfelder A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Disketten A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Disketten A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batterien AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batterien AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Büroklammern A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Büroklammern A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Glühbirnen A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Glühbirnen A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pferde A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pferde A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Badewannen A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Badewannen A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schneeflocken A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schneeflocken A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elefanten An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elefanten An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schildkröten A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schildkröten A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Düsenflugzeuge A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Düsenflugzeuge A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Wale A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Wale A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaffeetassen A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaffeetassen A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schwimmbecken An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Schwimmbecken An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hand A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hand A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Papierbögen A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Papierbögen A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Burgen A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Burgen A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bananen A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bananen A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuchenstücke A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuchenstücke A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lokomotiven A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lokomotiven A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fußbälle A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fußbälle A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gespeicherter Wert Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Zurück Screen reader prompt for the About panel back button Zurück Content of tooltip being displayed on AboutControlBackButton Microsoft-Software-Lizenzbedingungen Displayed on a link to the Microsoft Software License Terms on the About panel Vorschau Label displayed next to upcoming features Microsoft-Datenschutzbestimmungen Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Alle Rechte vorbehalten. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Um zu erfahren, wie Sie am Windows-Rechner mitwirken können, checken Sie das Projekt auf %HL%GitHub%HL% aus. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Info Subtitle of about message on Settings page Feedback senden The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Es ist noch kein Verlauf vorhanden. The text that shows as the header for the history list Es ist nichts im Speicher gespeichert. The text that shows as the header for the memory list Speicher Screen reader prompt for the negate button on the converter operator keypad Dieser Ausdruck kann nicht eingefügt werden. The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datumsberechnung Berechnungsmodus Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Addieren Add toggle button text Tage addieren oder subtrahieren Add or Subtract days option Datum Date result label Differenz zwischen Datumsangaben Date difference option Tage Add/Subtract Days label Differenz Difference result label Von From Date Header for Difference Date Picker Monate Add/Subtract Months label Subtrahieren Subtract toggle button text Bis To Date Header for Difference Date Picker Jahre Add/Subtract Years label Datum außerhalb des gültigen Bereichs Out of bound message shown as result when the date calculation exceeds the bounds Tag Tage Monat Monate Gleiche Datumsangaben Woche Wochen Jahr Jahre Differenz %1 Automation name for reading out the date difference. %1 = Date difference Berechnetes Datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Rechnermodus: %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Konvertermodus: %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modus für Datumsberechnung Automation name for when the mode header is focused and the current mode is Date calculation. Verlaufs- und Speicherlisten Automation name for the group of controls for history and memory lists. Speichersteuerelemente Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardfunktionen Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Anzeigesteuerelemente Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardoperatoren Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Zehnertastatur Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Winkeloperatoren Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Wissenschaftliche Funktionen Automation name for the group of Scientific functions. Basisauswahl Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmieroperatoren Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Auswahl des Eingabemodus Automation name for the group of input mode toggling buttons. Tastatur zum Umschalten in Bitmodus Automation name for the group of bit toggling buttons. Bildlauf links für Ausdruck Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Bildlauf rechts für Ausdruck Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maximale Anzahl von Ziffern erreicht. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 im Speicher gespeichert {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Speichersteckplatz %1 ist %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Speichersteckplatz %1 freigegeben {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". geteilt durch Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. mal Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. Minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. Plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. hoch Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-te Wurzel von Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. Mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. Linksverschiebung Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. rechte Umschalttaste Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. oder Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x oder Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. und Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Aktualisiert: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Preise aktualisieren The text displayed for a hyperlink button that refreshes currency converter ratios. Es können Datengebühren anfallen. The text displayed when users are on a metered connection and using currency converter. Neue Preise konnten nicht abgerufen werden. Versuchen Sie es später noch einmal. The text displayed when currency ratio data fails to load. Offline. Überprüfen Sie Ihre %HL%Netzwerkeinstellungen%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Währungswechselkurse werden aktualisiert This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Währungswechselkurse aktualisiert This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kurse konnten nicht aktualisiert werden This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Gesamten Speicher löschen (STRG+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Gesamten Speicher löschen Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} Sinus (Grad) Name for the sine function in degrees mode. Used by screen readers. Sinus (Bogenmaß) Name for the sine function in radians mode. Used by screen readers. Sinus (Gon) Name for the sine function in gradians mode. Used by screen readers. Inverser Sinus (Grad) Name for the inverse sine function in degrees mode. Used by screen readers. Inverser Sinus (Bogenmaß) Name for the inverse sine function in radians mode. Used by screen readers. Inverser Sinus (Gon) Name for the inverse sine function in gradians mode. Used by screen readers. Hyperbolischer Sinus Name for the hyperbolic sine function. Used by screen readers. Inverser hyperbolischer Sinus Name for the inverse hyperbolic sine function. Used by screen readers. Kosinus (Grad) Name for the cosine function in degrees mode. Used by screen readers. Kosinus (Bogenmaß) Name for the cosine function in radians mode. Used by screen readers. Kosinus (Gon) Name for the cosine function in gradians mode. Used by screen readers. Inverser Kosinus (Grad) Name for the inverse cosine function in degrees mode. Used by screen readers. Inverser Kosinus (Bogenmaß) Name for the inverse cosine function in radians mode. Used by screen readers. Inverser Kosinus (Gon) Name for the inverse cosine function in gradians mode. Used by screen readers. Hyperbolischer Kosinus Name for the hyperbolic cosine function. Used by screen readers. Inverser hyperbolischer Kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. Tangens (Grad) Name for the tangent function in degrees mode. Used by screen readers. Tangens (Bogenmaß) Name for the tangent function in radians mode. Used by screen readers. Tangens (Gon) Name for the tangent function in gradians mode. Used by screen readers. Inverser Tangens (Grad) Name for the inverse tangent function in degrees mode. Used by screen readers. Inverser Tangens (Bogenmaß) Name for the inverse tangent function in radians mode. Used by screen readers. Inverser Tangens (Gon) Name for the inverse tangent function in gradians mode. Used by screen readers. Hyperbolischer Tangens Name for the hyperbolic tangent function. Used by screen readers. Inverser hyperbolischer Tangens Name for the inverse hyperbolic tangent function. Used by screen readers. Sekans (Grad) Name for the secant function in degrees mode. Used by screen readers. Sekans (Bogenmaß) Name for the secant function in radians mode. Used by screen readers. Sekans (Gon) Name for the secant function in gradians mode. Used by screen readers. Inverser Sekans (Grad) Name for the inverse secant function in degrees mode. Used by screen readers. Inverser Sekans (Bogenmaß) Name for the inverse secant function in radians mode. Used by screen readers. Inverser Sekans (Gon) Name for the inverse secant function in gradians mode. Used by screen readers. Hyperbolischer Sekans Name for the hyperbolic secant function. Used by screen readers. Areasekans Hyperbolicus Name for the inverse hyperbolic secant function. Used by screen readers. Kosekans (Grad) Name for the cosecant function in degrees mode. Used by screen readers. Kosekans (Bogenmaß) Name for the cosecant function in radians mode. Used by screen readers. Kosekans (Gon) Name for the cosecant function in gradians mode. Used by screen readers. Inverser Kosekans (Grad) Name for the inverse cosecant function in degrees mode. Used by screen readers. Inverser Kosekans (Bogenmaß) Name for the inverse cosecant function in radians mode. Used by screen readers. Inverser Kosekans (Gon) Name for the inverse cosecant function in gradians mode. Used by screen readers. Hyperbolischer Kosekans Name for the hyperbolic cosecant function. Used by screen readers. Areakosekans Hyperbolicus Name for the inverse hyperbolic cosecant function. Used by screen readers. Kotangens (Grad) Name for the cotangent function in degrees mode. Used by screen readers. Kotangens (Bogenmaß) Name for the cotangent function in radians mode. Used by screen readers. Kotangens (Gon) Name for the cotangent function in gradians mode. Used by screen readers. Inverser Kotangens (Grad) Name for the inverse cotangent function in degrees mode. Used by screen readers. Inverser Kotangens (Bogenmaß) Name for the inverse cotangent function in radians mode. Used by screen readers. Inverser Kotangens (Gon) Name for the inverse cotangent function in gradians mode. Used by screen readers. Hyperbolischer Kotangens Name for the hyperbolic cotangent function. Used by screen readers. Areakotangens Hyperbolicus Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubikwurzel Name for the cube root function. Used by screen readers. Logarithmische Basis Name for the logbasey function. Used by screen readers. Absoluter Wert Name for the absolute value function. Used by screen readers. Linksverschiebung Name for the programmer function that shifts bits to the left. Used by screen readers. Rechtsverschiebung Name for the programmer function that shifts bits to the right. Used by screen readers. Fakultät Name for the factorial function. Used by screen readers. Grad Minute Sekunde Name for the degree minute second (dms) function. Used by screen readers. Natürlicher Logarithmus Name for the natural log (ln) function. Used by screen readers. Quadrat Name for the square function. Used by screen readers. y-te Wurzel von Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorie %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft-Servicevertrag Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Von From Date Header for AddSubtract Date Picker Im Berechnungsergebnis nach links scrollen Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Im Berechnungsergebnis nach rechts scrollen Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Fehler bei der Berechnung Text displayed when the application is not able to do a calculation Logarithmus zur Basis Y Screen reader prompt for the logBaseY button Trigonometrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Funktion Displayed on the button that contains a flyout for the general functions in scientific mode. Ungleichheiten Displayed on the button that contains a flyout for the inequality functions. Ungleichheiten Screen reader prompt for the Inequalities button Bitweise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitweise Verschiebung Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Umkehrfunktion Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolische Funktion Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolischer Sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Bogensekante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolische Bogensekante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolischer Kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Bogenkosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolischer Bogenkosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolischer Kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkuskotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolischer Arkuskotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Abrundungsfunktion Screen reader prompt for the Calculator button floor in the scientific flyout keypad Aufrundungsfunktion Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Zufällig Screen reader prompt for the Calculator button random in the scientific flyout keypad Absoluter Wert Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulersche Zahl Screen reader prompt for the Calculator button e in the scientific flyout keypad Zweierpotenz Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NOR Screen reader prompt for the Calculator button nor in the scientific flyout keypad NOR Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Zyklische Verschiebung (links) Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Zyklische Verschiebung (rechts) Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Linke Umschalttaste Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Linksverschiebung Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Rechte Umschalttaste Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Rechtsverschiebung Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Arithmetische Verschiebung Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logische Verschiebung Label for a radio button that toggles logical shift behavior for the shift operations. Zyklische Verschiebung Label for a radio button that toggles rotate circular behavior for the shift operations. Zyklische Verschiebung mit Übertragsbit Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubikwurzel Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrie Screen reader prompt for the square root button on the scientific operator keypad Funktionen Screen reader prompt for the square root button on the scientific operator keypad Bitweise Screen reader prompt for the square root button on the scientific operator keypad Bitverschiebung Screen reader prompt for the square root button on the scientific operator keypad Wissenschaftliche Operatorbereiche Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Operatorbereiche für Programmierer Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad Wichtigstes Bit Used to describe the last bit of a binary number. Used in bit flip Diagramm Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Zeichnen Screen reader prompt for the plot button on the graphing calculator operator keypad Ansicht automatisch aktualisieren (STRG + 0) This is the tool tip automation name for the Calculator graph view button. Diagrammansicht Screen reader prompt for the graph view button. Automatische optimale Anpassung Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuelle Anpassung Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Die Diagrammansicht wurde zurückgesetzt Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Vergrößern (STRG + Plus) This is the tool tip automation name for the Calculator zoom in button. Vergrößern Screen reader prompt for the zoom in button. Verkleinern (STRG + Minus) This is the tool tip automation name for the Calculator zoom out button. Verkleinern Screen reader prompt for the zoom out button. Gleichung hinzufügen Placeholder text for the equation input button Teilen momentan nicht möglich. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Mein mit dem Windows-Rechner erstelltes Diagramm Sent as part of the shared content. The title for the share. Gleichungen Header that appears over the equations section when sharing Variablen Header that appears over the variables section when sharing Abbildung eines Diagramms mit Gleichungen Alt text for the graph image when output via Share Variablen Header text for variables area Schritt Label text for the step text box Min. Label text for the min text box Max. Label text for the max text box Farbe Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Funktionsanalyse Title for KeyGraphFeatures Control Die Funktion hat keine horizontalen Asymptoten. Message displayed when the graph does not have any horizontal asymptotes Die Funktion hat keine Wendepunkte. Message displayed when the graph does not have any inflection points Die Funktion hat keine Maxima. Message displayed when the graph does not have any maxima Die Funktion hat keine Minima. Message displayed when the graph does not have any minima Konstante String describing constant monotonicity of a function Abnehmend String describing decreasing monotonicity of a function Die Monotonie der Funktion kann nicht ermittelt werden. Error displayed when monotonicity cannot be determined Zunehmend String describing increasing monotonicity of a function Die Monotonie der Funktion ist unbekannt. Error displayed when monotonicity is unknown Die Funktion hat keine schiefen Asymptoten. Message displayed when the graph does not have any oblique asymptotes Die Parität der Funktion kann nicht ermittelt werden. Error displayed when parity is cannot be determined Die Funktion ist gerade. Message displayed with the function parity is even Die Funktion ist weder gerade noch ungerade. Message displayed with the function parity is neither even nor odd Die Funktion ist ungerade. Message displayed with the function parity is odd Die Funktionsparität ist unbekannt. Error displayed when parity is unknown Für diese Funktion wird keine Periodizität unterstützt. Error displayed when periodicity is not supported Die Funktion ist nicht periodisch. Message displayed with the function periodicity is not periodic Die Funktionsperiodizität ist unbekannt. Message displayed with the function periodicity is unknown Die folgenden Merkmale können aufgrund ihrer Komplexität nicht mit dem Rechner berechnet werden: Error displayed when analysis features cannot be calculated Die Funktion hat keine vertikalen Asymptoten. Message displayed when the graph does not have any vertical asymptotes Die Funktion hat keine x-Achsenabschnitte. Message displayed when the graph does not have any x-intercepts Die Funktion hat keine y-Achsenabschnitte. Message displayed when the graph does not have any y-intercepts Domäne Title for KeyGraphFeatures Domain Property Horizontale Asymptoten Title for KeyGraphFeatures Horizontal aysmptotes Property Wendepunkte Title for KeyGraphFeatures Inflection points Property Für diese Funktion wird keine Analyse unterstützt. Error displayed when graph analysis is not supported or had an error. Die Analyse wird nur für Funktionen im Format f(x) unterstützt. Beispiel: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonie Title for KeyGraphFeatures Monotonicity Property Schräge Asymptoten Title for KeyGraphFeatures Oblique asymptotes Property Parität Title for KeyGraphFeatures Parity Property Periode Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Bereich Title for KeyGraphFeatures Range Property Vertikale Asymptoten Title for KeyGraphFeatures Vertical asymptotes Property X-Achsenabschnitt Title for KeyGraphFeatures XIntercept Property Y-Achsenabschnitt Title for KeyGraphFeatures YIntercept Property Für die Funktion konnte keine Analyse durchgeführt werden. Die Domäne für diese Funktion kann nicht berechnet werden. Error displayed when Domain is not returned from the analyzer. Der Bereich für diese Funktion kann nicht berechnet werden. Error displayed when Range is not returned from the analyzer. Überlauf (die Zahl ist zu groß) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Der „Bogenmaß“-Modus ist erforderlich, um den Graphen dieser Gleichung darzustellen. Error that occurs during graphing when radians is required. Diese Funktion ist zu komplex für eine Darstellung ihres Graphen. Error that occurs during graphing when the equation is too complex. Der „Grad“-Modus ist erforderlich, um den Graphen dieser Gleichung darzustellen. Error that occurs during graphing when degrees is required Die Fakultät-Funktion enthält ein ungültiges Argument. Error that occurs during graphing when a factorial function has an invalid argument. Die Fakultät-Funktion enthält ein Argument, das für eine grafische Darstellung zu groß ist. Error that occurs during graphing when a factorial has a large n „Modulo“ kann nur mit ganzen Zahlen verwendet werden. Error that occurs during graphing when modulo is used with a float. Die Gleichung hat keine Lösung. Error that occurs during graphing when the equation has no solution. Division durch 0 nicht möglich. Error that occurs during graphing when a divison by zero occurs. Die Gleichung enthält logische Bedingungen, die sich gegenseitig ausschließen. Error that occurs during graphing when mutually exclusive conditions are used. Die Gleichung lieg außerhalb des Bereichs. Error that occurs during graphing when the equation is out of domain. Die Diagrammerstellung wird für diese Gleichung nicht unterstützt. Error that occurs during graphing when the equation is not supported. In der Gleichung fehlt eine öffnende Klammer. Error that occurs during graphing when the equation is missing a ( In der Gleichung fehlt eine schließende Klammer. Error that occurs during graphing when the equation is missing a ) Eine Zahl enthält zu viele Dezimalstellen Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Einem Dezimaltrennzeichen fehlen Ziffern. Error that occurs during graphing with a decimal point without digits Unerwartetes Ende des Ausdrucks Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Unerwartete Zeichen im Ausdruck. Error that occurs during graphing when there is an unexpected token. Ungültige Zeichen im Ausdruck. Error that occurs during graphing when there is an invalid token. Zu viele Gleichheitszeichen. Error that occurs during graphing when there are too many equals. Die Funktion muss mindestens eine x- oder y-Variable enthalten. Error that occurs during graphing when the equation is missing x or y. Ungültiger Ausdruck. Error that occurs during graphing when an invalid syntax is used. Der Ausdruck ist leer Error that occurs during graphing when the expression is empty „Gleich“ wurde ohne Gleichung verwendet. Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Klammer fehlt hinter Funktionsname. Error that occurs during graphing when parenthesis are missing after a function. Eine mathematischer Operation weist die falsche Anzahl von Parametern auf. Error that occurs during graphing when a function has the wrong number of parameters Ein Variablenname ist ungültig. Error that occurs during graphing when a variable name is invalid. In der Gleichung fehlt eine öffnende eckige Klammer. Error that occurs during graphing when a { is missing In der Gleichung fehlt eine schließende eckige Klammer. Error that occurs during graphing when a } is missing. „i“ und „I“ können nicht als Variablennamen verwendet werden. Error that occurs during graphing when i or I is used. Der Graph der Gleichung konnte nicht dargestellt werden. General error that occurs during graphing. Die Ziffer konnte für die angegebene Basis nicht aufgelöst werden. Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Die Basis muss größer als 2 und kleiner als 36 Error that occurs during graphing when the base is out of range. Eine mathematische Operation setzt voraus, dass einer ihrer Paramater eine Variable ist Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. In der Gleichung werden logische und skalare Operanden gemischt verwendet. Error that occurs during graphing when operands are mixed. Such as true and 1. x oder y können nicht in den Ober- oder Untergrenzen verwendet werden. Error that occurs during graphing when x or y is used in integral upper limits. x oder y können nicht im Grenzwertpunkt verwendet werden. Error that occurs during graphing when x or y is used in the limit point. Komplexe Unendlichkeit kann nicht verwendet werden. Error that occurs during graphing when complex infinity is used In Ungleichungen können keine komplexen Zahlen verwendet werden. Error that occurs during graphing when complex numbers are used in inequalities. Zurück zur Funktionsliste This is the tooltip for the back button in the equation analysis page in the graphing calculator Zurück zur Funktionsliste This is the automation name for the back button in the equation analysis page in the graphing calculator Funktion analysieren This is the tooltip for the analyze function button Funktion analysieren This is the automation name for the analyze function button Funktion analysieren This is the text for the for the analyze function context menu command Gleichung entfernen This is the tooltip for the graphing calculator remove equation buttons Gleichung entfernen This is the automation name for the graphing calculator remove equation buttons Gleichung entfernen This is the text for the for the remove equation context menu command Teilen This is the automation name for the graphing calculator share button. Teilen This is the tooltip for the graphing calculator share button. Gleichungsstil ändern This is the tooltip for the graphing calculator equation style button Gleichungsstil ändern This is the automation name for the graphing calculator equation style button Gleichungsstil ändern This is the text for the for the equation style context menu command Gleichung anzeigen This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Gleichung ausblenden This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Gleichung %1 anzeigen {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Gleichung %1 ausblenden {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Erfassung beenden This is the tooltip/automation name for the graphing calculator stop tracing button Erfassung starten This is the tooltip/automation name for the graphing calculator start tracing button Diagrammanzeigefenster, x-Achse begrenzt durch %1 und %2, y-Achse begrenzt durch %3 und %4, Anzeige von %5 Gleichungen {Locked="%1","%2", "%3", "%4", "%5"}. Schieberegler konfigurieren This is the tooltip text for the slider options button in Graphing Calculator Schieberegler konfigurieren This is the automation name text for the slider options button in Graphing Calculator In den Gleichungsmodus wechseln Used in Graphing Calculator to switch the view to the equation mode In den Diagrammmodus wechseln Used in Graphing Calculator to switch the view to the graph mode In den Gleichungsmodus wechseln Used in Graphing Calculator to switch the view to the equation mode Aktueller Modus: Gleichungsmodus Announcement used in Graphing Calculator when switching to the equation mode Aktueller Modus: Diagrammmodus Announcement used in Graphing Calculator when switching to the graph mode Fenster Heading for window extents on the settings Grad Degrees mode on settings page Gon Gradian mode on settings page Bogenmaß Radians mode on settings page Einheiten Heading for Unit's on the settings Ansicht zurücksetzen Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Diagrammoptionen This is the tooltip text for the graph options button in Graphing Calculator Diagrammoptionen This is the automation name text for the graph options button in Graphing Calculator Diagrammoptionen Heading for the Graph options flyout in Graphing mode. Variable Optionen Screen reader prompt for the variable settings toggle button Variable Optionen umschalten Tool tip for the variable settings toggle button Linienstärke Heading for the Graph options flyout in Graphing mode. Linienoptionen Heading for the equation style flyout in Graphing mode. Dünne Linienstärke Automation name for line width setting Mittlere Linienstärke Automation name for line width setting Dicke Linienstärke Automation name for line width setting Sehr dicke Linienstärke Automation name for line width setting Ausdruck eingeben this is the placeholder text used by the textbox to enter an equation Kopieren Copy menu item for the graph context menu Ausschneiden Cut menu item from the Equation TextBox Kopieren Copy menu item from the Equation TextBox Einfügen Paste menu item from the Equation TextBox Rückgängig machen Undo menu item from the Equation TextBox Alles auswählen Select all menu item from the Equation TextBox Funktionseingabe The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funktionseingabe The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funktionseingabebereich The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variablenbereich The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variablenliste The automation name for the Variable ListView that is shown when Calculator is in graphing mode. %1-Listenelement der Variablen The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Textfeld für Variablenwert The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Variablenwert-Schieberegler The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textfeld für den Variablenminimalwert The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textfeld für den Variableninkrementalwert The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textfeld für den Variablenmaximalwert The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Linienart ohne Durchschuss Name of the solid line style for a graphed equation Punktlinienart Name of the dotted line style for a graphed equation Gedankenstrichlinienart Name of the dashed line style for a graphed equation Marineblau Name of color in the color picker Gischt Name of color in the color picker Lila Name of color in the color picker Grün Name of color in the color picker Minzgrün Name of color in the color picker Dunkelgrün Name of color in the color picker Kohle Name of color in the color picker Rot Name of color in the color picker Pflaume hell Name of color in the color picker Magenta Name of color in the color picker Gelbgold Name of color in the color picker Hellorange Name of color in the color picker Braun Name of color in the color picker Schwarz Name of color in the color picker Weiß Name of color in the color picker Farbe 1 Name of color in the color picker Farbe 2 Name of color in the color picker Farbe 3 Name of color in the color picker Farbe 4 Name of color in the color picker Diagrammdesign Graph settings heading for the theme options Immer hell Graph settings option to set graph to light theme Mit App-Thema abgleichen Graph settings option to set graph to match the app theme Thema This is the automation name text for the Graph settings heading for the theme options Immer hell This is the automation name text for the Graph settings option to set graph to light theme Mit App-Thema abgleichen This is the automation name text for the Graph settings option to set graph to match the app theme Funktion entfernt Announcement used in Graphing Calculator when a function is removed from the function list Funktionsanalyse-Gleichungsfeld This is the automation name text for the equation box in the function analysis panel Gleich Screen reader prompt for the equal button on the graphing calculator operator keypad Kleiner als Screen reader prompt for the Less than button Kleiner als oder gleich Screen reader prompt for the Less than or equal button Gleich Screen reader prompt for the Equal button Größer als oder gleich Screen reader prompt for the Greater than or equal button Größer als Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Übermitteln Screen reader prompt for the submit button on the graphing calculator operator keypad Funktionsanalyse Screen reader prompt for the function analysis grid Diagrammoptionen Screen reader prompt for the graph options panel Verlaufs- und Speicherlisten Automation name for the group of controls for history and memory lists. Speicherliste Automation name for the group of controls for memory list. Verlauf des Slots %1 freigegeben {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Rechner immer im Vordergrund Announcement to indicate calculator window is always shown on top. Rechner zurück zur Vollbildanzeige Announcement to indicate calculator window is now back to full view. Arithmetische Verschiebung ausgewählt Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logische Verschiebung ausgewählt Label for a radio button that toggles logical shift behavior for the shift operations. Drehen mit kreisförmiger Verschiebung ausgewählt Label for a radio button that toggles rotate circular behavior for the shift operations. Drehen durch Zirkelverschiebung ausgewählt Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Einstellungen Header text of Settings page Darstellung Subtitle of appearance setting on Settings page App-Design Title of App theme expander Auswählen des anzuzeigenden App-Designs Description of App theme expander Hell Lable for light theme option Dunkel Lable for dark theme option Systemeinstellung verwenden Lable for the app theme option to use system setting Zurück Screen reader prompt for the Back button in title bar to back to main page Seite „Einstellungen“ Announcement used when Settings page is opened Öffnen des Kontextmenüs für verfügbare Aktionen Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Diese Momentaufnahme konnte nicht wiederhergestellt werden. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/el-GR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Μη έγκυρη τιμή εισόδου Error message shown when the input makes a function fail, like log(-1) Ακαθόριστο αποτέλεσμα Error message shown when there's no possible value for a function. Η μνήμη δεν επαρκεί Error message shown when we run out of memory during a calculation. Υπερχείλιση Error message shown when there's an overflow during the calculation. Ακαθόριστο αποτέλεσμα Same as 101 Ακαθόριστο αποτέλεσμα Same 101 Υπερχείλιση Same as 107 Υπερχείλιση Same 107 Δεν είναι δυνατή η διαίρεση με μηδέν Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/el-GR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Αριθμομηχανή {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Αριθμομηχανή [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Αριθμομηχανή των Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Αριθμομηχανή των Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Αριθμομηχανή {@Appx_Description@} This description is used for the official application when published through Windows Store. Αριθμομηχανή [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Αντιγραφή Copy context menu string Επικόλληση Paste context menu string Ισούται περίπου με The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, τιμή %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63ο Sub-string used in automation name for 63 bit in bit flip 62ο Sub-string used in automation name for 62 bit in bit flip 61ο Sub-string used in automation name for 61 bit in bit flip 60ο Sub-string used in automation name for 60 bit in bit flip 59ο Sub-string used in automation name for 59 bit in bit flip 58ο Sub-string used in automation name for 58 bit in bit flip 57ο Sub-string used in automation name for 57 bit in bit flip 56ο Sub-string used in automation name for 56 bit in bit flip 55ο Sub-string used in automation name for 55 bit in bit flip 54ο Sub-string used in automation name for 54 bit in bit flip 53ο Sub-string used in automation name for 53 bit in bit flip 52ο Sub-string used in automation name for 52 bit in bit flip 51ο Sub-string used in automation name for 51 bit in bit flip 50ο Sub-string used in automation name for 50 bit in bit flip 49ο Sub-string used in automation name for 49 bit in bit flip 48ο Sub-string used in automation name for 48 bit in bit flip 47ο Sub-string used in automation name for 47 bit in bit flip 46ο Sub-string used in automation name for 46 bit in bit flip 45ο Sub-string used in automation name for 45 bit in bit flip 44ο Sub-string used in automation name for 44 bit in bit flip 43ο Sub-string used in automation name for 43 bit in bit flip 42ο Sub-string used in automation name for 42 bit in bit flip 41ο Sub-string used in automation name for 41 bit in bit flip 40ο Sub-string used in automation name for 40 bit in bit flip 39ο Sub-string used in automation name for 39 bit in bit flip 38ο Sub-string used in automation name for 38 bit in bit flip 37ο Sub-string used in automation name for 37 bit in bit flip 36ο Sub-string used in automation name for 36 bit in bit flip 35ο Sub-string used in automation name for 35 bit in bit flip 34ο Sub-string used in automation name for 34 bit in bit flip 33ο Sub-string used in automation name for 33 bit in bit flip 32ο Sub-string used in automation name for 32 bit in bit flip 31ο Sub-string used in automation name for 31 bit in bit flip 30ο Sub-string used in automation name for 30 bit in bit flip 29ο Sub-string used in automation name for 29 bit in bit flip 28ο Sub-string used in automation name for 28 bit in bit flip 27ο Sub-string used in automation name for 27 bit in bit flip 26ο Sub-string used in automation name for 26 bit in bit flip 25ο Sub-string used in automation name for 25 bit in bit flip 24ο Sub-string used in automation name for 24 bit in bit flip 23ο Sub-string used in automation name for 23 bit in bit flip 22ο Sub-string used in automation name for 22 bit in bit flip 21ο Sub-string used in automation name for 21 bit in bit flip 20ο Sub-string used in automation name for 20 bit in bit flip 19ο Sub-string used in automation name for 19 bit in bit flip 18ο Sub-string used in automation name for 18 bit in bit flip 17ο Sub-string used in automation name for 17 bit in bit flip 16ο Sub-string used in automation name for 16 bit in bit flip 15ο Sub-string used in automation name for 15 bit in bit flip 14ο Sub-string used in automation name for 14 bit in bit flip 13ο Sub-string used in automation name for 13 bit in bit flip 12ο Sub-string used in automation name for 12 bit in bit flip 11ο Sub-string used in automation name for 11 bit in bit flip 10ο Sub-string used in automation name for 10 bit in bit flip 9ο Sub-string used in automation name for 9 bit in bit flip 8ο Sub-string used in automation name for 8 bit in bit flip 7ο Sub-string used in automation name for 7 bit in bit flip 6ο Sub-string used in automation name for 6 bit in bit flip 5ο Sub-string used in automation name for 5 bit in bit flip 4ο Sub-string used in automation name for 4 bit in bit flip 3ο Sub-string used in automation name for 3 bit in bit flip 2ο Sub-string used in automation name for 2 bit in bit flip 1ο Sub-string used in automation name for 1 bit in bit flip λιγότερο σημαντικό bit Used to describe the first bit of a binary number. Used in bit flip Άνοιγμα αναδυόμενου στοιχείου μνήμης This is the automation name and label for the memory button when the memory flyout is closed. Κλείσιμο αναδυόμενου στοιχείου μνήμης This is the automation name and label for the memory button when the memory flyout is open. Διατήρηση στην κορυφή This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Επιστροφή στην πλήρη προβολή This is the tool tip automation name for the always-on-top button when in always-on-top mode. Μνήμη This is the tool tip automation name for the memory button. Ιστορικό (Ctrl+H) This is the tool tip automation name for the history button. Πληκτρολόγιο εναλλαγής bit This is the tool tip automation name for the bitFlip button. Πλήρες πληκτρολόγιο This is the tool tip automation name for the numberPad button. Εκκαθάριση όλης της μνήμης (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Μνήμη The text that shows as the header for the memory list Μνήμη The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Ιστορικό The text that shows as the header for the history list Ιστορικό The automation name for the History pivot item that is shown when Calculator is in wide layout. Μετατροπέας Label for a control that activates the unit converter mode. Επιστημονική Label for a control that activates scientific mode calculator layout Τυπική Label for a control that activates standard mode calculator layout. Λειτουργία μετατροπέα Screen reader prompt for a control that activates the unit converter mode. Επιστημονική λειτουργία Screen reader prompt for a control that activates scientific mode calculator layout Τυπική λειτουργία Screen reader prompt for a control that activates standard mode calculator layout. Εκκαθάριση όλου του ιστορικού "ClearHistory" used on the calculator history pane that stores the calculation history. Εκκαθάριση όλου του ιστορικού This is the tool tip automation name for the Clear History button. Απόκρυψη "HideHistory" used on the calculator history pane that stores the calculation history. Τυπική The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Επιστημονική The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Προγραμματιστής The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Μετατροπέας The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Αριθμομηχανή The text that shows in the dropdown navigation control for the calculator group. Μετατροπέας The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Αριθμομηχανή The text that shows in the dropdown navigation control for the calculator group in upper case. Μετατροπείς Pluralized version of the converter group text, used for the screen reader prompt. Αριθμομηχανές Pluralized version of the calculator group text, used for the screen reader prompt. Η οθόνη δείχνει %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Η παράσταση είναι %1, η τρέχουσα είσοδος είναι %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Η προβολή δείχνει %1 κόμμα {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Η παράσταση είναι %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Η εμφανιζόμενη τιμή αντιγράφηκε στο πρόχειρο Screen reader prompt for the Calculator display copy button, when the button is invoked. Ιστορικό Screen reader prompt for the history flyout Μνήμη Screen reader prompt for the memory flyout Δεκαεξαδικό %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Δεκαδικό %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Οκταδικό %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Δυαδικό %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Εκκαθάριση όλου του ιστορικού Screen reader prompt for the Calculator History Clear button Έγινε εκκαθάριση του ιστορικού Screen reader prompt for the Calculator History Clear button, when the button is invoked. Απόκρυψη ιστορικού Screen reader prompt for the Calculator History Hide button Άνοιγμα αναδυόμενου στοιχείου ιστορικού Screen reader prompt for the Calculator History button, when the flyout is closed. Κλείσιμο αναδυόμενου στοιχείου ιστορικού Screen reader prompt for the Calculator History button, when the flyout is open. Χώρος αποθήκευσης μνήμης Screen reader prompt for the Calculator Memory button Αποθήκευση στη μνήμη (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Εκκαθάριση όλης της μνήμης Screen reader prompt for the Calculator Clear Memory button Έγινε εκκαθάριση της μνήμης Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Ανάκληση μνήμης Screen reader prompt for the Calculator Memory Recall button Ανάκληση από τη μνήμη (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Προσθήκη μνήμης Screen reader prompt for the Calculator Memory Add button Πρόσθεση στη μνήμη (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Αφαίρεση μνήμης Screen reader prompt for the Calculator Memory Subtract button Αφαίρεση στη μνήμη (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Εκκαθάριση στοιχείου μνήμης Screen reader prompt for the Calculator Clear Memory button Εκκαθάριση στοιχείου μνήμης This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Προσθήκη σε στοιχείο μνήμης Screen reader prompt for the Calculator Memory Add button in the Memory list Προσθήκη σε στοιχείο μνήμης This is the tool tip automation name for the Calculator Memory Add button in the Memory list Αφαίρεση από στοιχείο μνήμης Screen reader prompt for the Calculator Memory Subtract button in the Memory list Αφαίρεση από στοιχείο μνήμης This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Εκκαθάριση στοιχείου μνήμης Screen reader prompt for the Calculator Clear Memory button Εκκαθάριση στοιχείου μνήμης Text string for the Calculator Clear Memory option in the Memory list context menu Προσθήκη σε στοιχείο μνήμης Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Προσθήκη σε στοιχείο μνήμης Text string for the Calculator Memory Add option in the Memory list context menu Αφαίρεση από στοιχείο μνήμης Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Αφαίρεση από στοιχείο μνήμης Text string for the Calculator Memory Subtract option in the Memory list context menu Διαγραφή Text string for the Calculator Delete swipe button in the History list Αντιγραφή Text string for the Calculator Copy option in the History list context menu Διαγραφή Text string for the Calculator Delete option in the History list context menu Διαγραφή στοιχείου ιστορικού Screen reader prompt for the Calculator Delete swipe button in the History list Διαγραφή στοιχείου ιστορικού Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Μηδέν Screen reader prompt for the Calculator number "0" button Ένα Screen reader prompt for the Calculator number "1" button Δύο Screen reader prompt for the Calculator number "2" button Τρία Screen reader prompt for the Calculator number "3" button Τέσσερα Screen reader prompt for the Calculator number "4" button Πέντε Screen reader prompt for the Calculator number "5" button Έξι Screen reader prompt for the Calculator number "6" button Εφτά Screen reader prompt for the Calculator number "7" button Οχτώ Screen reader prompt for the Calculator number "8" button Εννέα Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Και Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Περιστροφή στα αριστερά Screen reader prompt for the Calculator ROL button Περιστροφή στα δεξιά Screen reader prompt for the Calculator ROR button Αριστερό πλήκτρο shift Screen reader prompt for the Calculator LSH button Δεξί πλήκτρο shift Screen reader prompt for the Calculator RSH button Αποκλειστικό Ή Screen reader prompt for the Calculator XOR button Εναλλαγή τετραπλής λέξης Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Εναλλαγή διπλής λέξης Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Εναλλαγή λέξης Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Εναλλαγή byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Πληκτρολόγιο εναλλαγής bit Screen reader prompt for the Calculator bitFlip button Πλήρες πληκτρολόγιο Screen reader prompt for the Calculator numberPad button Διαχωριστικό δεκαδικών Screen reader prompt for the "." button Απαλοιφή καταχώρησης Screen reader prompt for the "CE" button Απαλοιφή Screen reader prompt for the "C" button Διαίρεση διά του Screen reader prompt for the divide button on the number pad Πολλαπλασιασμός επί Screen reader prompt for the multiply button on the number pad Ισούται με Screen reader prompt for the equals button on the scientific operator keypad Αντίστροφη συνάρτηση Screen reader prompt for the shift button on the number pad in scientific mode. Πλην Screen reader prompt for the minus button on the number pad Πλην We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Συν Screen reader prompt for the plus button on the number pad Τετραγωνική ρίζα Screen reader prompt for the square root button on the scientific operator keypad Ποσοστό Screen reader prompt for the percent button on the scientific operator keypad Θετικός, αρνητικός Screen reader prompt for the negate button on the scientific operator keypad Θετικός, αρνητικός Screen reader prompt for the negate button on the converter operator keypad Αντίστροφο Screen reader prompt for the invert button on the scientific operator keypad Αριστερή παρένθεση Screen reader prompt for the Calculator "(" button on the scientific operator keypad Αριστερή παρένθεση, πλήθος ανοιχτών παρενθέσεων %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Δεξιά παρένθεση Screen reader prompt for the Calculator ")" button on the scientific operator keypad Πλήθος ανοιχτών παρενθέσεων %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Δεν υπάρχουν ανοιχτές παρενθέσεις για κλείσιμο. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Επιστημονική σημειογραφία Screen reader prompt for the Calculator F-E the scientific operator keypad Υπερβολική συνάρτηση Screen reader prompt for the Calculator button HYP in the scientific operator keypad π Screen reader prompt for the Calculator pi button on the scientific operator keypad Ημίτονο Screen reader prompt for the Calculator sin button on the scientific operator keypad Συνημίτονο Screen reader prompt for the Calculator cos button on the scientific operator keypad Εφαπτομένη Screen reader prompt for the Calculator tan button on the scientific operator keypad Υπερβολικό ημίτονο Screen reader prompt for the Calculator sinh button on the scientific operator keypad Υπερβολικό συνημίτονο Screen reader prompt for the Calculator cosh button on the scientific operator keypad Υπερβολική εφαπτομένη Screen reader prompt for the Calculator tanh button on the scientific operator keypad Τετράγωνο Screen reader prompt for the x squared on the scientific operator keypad. Κύβος Screen reader prompt for the x cubed on the scientific operator keypad. Τόξο ημιτόνου Screen reader prompt for the inverted sin on the scientific operator keypad. Τόξο συνηµιτόνου Screen reader prompt for the inverted cos on the scientific operator keypad. Τόξο εφαπτομένης Screen reader prompt for the inverted tan on the scientific operator keypad. Τόξο υπερβολικού ημιτόνου Screen reader prompt for the inverted sinh on the scientific operator keypad. Τόξο υπερβολικού συνημιτόνου Screen reader prompt for the inverted cosh on the scientific operator keypad. Τόξο υπερβολικής εφαπτομένης Screen reader prompt for the inverted tanh on the scientific operator keypad. 'Χ' εις τον εκθέτη Screen reader prompt for x power y button on the scientific operator keypad. Δέκα εις τον εκθέτη Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' εις τον εκθέτη Screen reader for the e power x on the scientific operator keypad. 'y' ρίζα του 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Λογάριθμος Screen reader for the log base 10 on the scientific operator keypad Φυσικός λογάριθμος Screen reader for the log base e on the scientific operator keypad Υπόλοιπο Screen reader for the mod button on the scientific operator keypad Εκθετικός Screen reader for the exp button on the scientific operator keypad Μοίρες, λεπτά, δευτερόλεπτα Screen reader for the exp button on the scientific operator keypad Μοίρες Screen reader for the exp button on the scientific operator keypad Ακέραιο μέρος Screen reader for the int button on the scientific operator keypad Κλασματικό μέρος Screen reader for the frac button on the scientific operator keypad Παραγοντικό Screen reader for the factorial button on the basic operator keypad Εναλλαγή μοιρών This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Εναλλαγή βαθμών This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Εναλλαγή ακτινίων This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Αναπτυσσόμενη λίστα λειτουργίας Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Αναπτυσσόμενη λίστα κατηγοριών Screen reader prompt for the Categories dropdown field. Διατήρηση στην κορυφή Screen reader prompt for the Always-on-Top button when in normal mode. Επιστροφή στην πλήρη προβολή Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Διατήρηση στην κορυφή (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Επιστροφή στην πλήρη προβολή (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Μετατροπή από %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Μετατροπή από %1 κόμμα %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Μετατροπή σε %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 είναι %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Μονάδα εισόδου Screen reader prompt for the Unit Converter Units1 i.e. top units field. Μονάδα εξόδου Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Εμβαδόν Unit conversion category name called Area (eg. area of a sports field in square meters) Δεδομένα Unit conversion category name called Data Ενέργεια Unit conversion category name called Energy. (eg. the energy in a battery or in food) Μήκος Unit conversion category name called Length Ισχύς Unit conversion category name called Power (eg. the power of an engine or a light bulb) Ταχύτητα Unit conversion category name called Speed Χρόνος Unit conversion category name called Time Όγκος Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Θερμοκρασία Unit conversion category name called Temperature Βάρος και μάζα Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Πίεση Unit conversion category name called Pressure Γωνία Unit conversion category name called Angle Νόμισμα Unit conversion category name called Currency Ουγγιές υγρού (Η.Β.) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Η.Β.) An abbreviation for a measurement unit of volume Ουγγιές υγρού (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Η.Π.Α.) An abbreviation for a measurement unit of volume Γαλόνια (Η.Β.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) γαλ (Η.Β.) An abbreviation for a measurement unit of volume Γαλόνια (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) γαλ. (Η.Π.Α.) An abbreviation for a measurement unit of volume Λίτρα A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Χιλιοστόλιτρα A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Πίντες (Η.Β.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Η.Β.) An abbreviation for a measurement unit of volume Πίντες (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Η.Π.Α.) An abbreviation for a measurement unit of volume Κουτάλια της σούπας (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κ.γλ. (Η.Π.Α.) An abbreviation for a measurement unit of volume Κουτάλια του γλυκού (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κ.σ. (Η.Π.Α.) An abbreviation for a measurement unit of volume Κουτάλια της σούπας (Η.Β.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κ.σ. (Η.Β.) An abbreviation for a measurement unit of volume Κουταλάκια του γλυκού (Η.Β.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κ.σ. (Η.Β.) An abbreviation for a measurement unit of volume Τέταρτα γαλονιού (Η.Β.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Η.Β.) An abbreviation for a measurement unit of volume Τέταρτα γαλονιού (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Η.Π.Α.) An abbreviation for a measurement unit of volume Φλιτζάνια (Η.Π.Α.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φλιτζ. (Η.Π.Α.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/λεπ. An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data θερμ. An abbreviation for a measurement unit of energy εκ. An abbreviation for a measurement unit of length εκ/δ An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume ημ. An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length π/δ An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data εκτ. An abbreviation for a measurement unit of area ιπ (Η.Π.Α.) An abbreviation for a measurement unit of power ώρ. An abbreviation for a measurement unit of time ίν An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy χλμ An abbreviation for a measurement unit of length χλμ/ώ An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power κομ An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data μ An abbreviation for a measurement unit of length μ/δ An abbreviation for a measurement unit of speed µ An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time μίλ. An abbreviation for a measurement unit of length χλμ ανά ώ An abbreviation for a measurement unit of speed χιλ. An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time λεπ. An abbreviation for a measurement unit of time νμ An abbreviation for a measurement unit of length ν.μίλι An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/λεπ An abbreviation for a measurement unit of power δ. An abbreviation for a measurement unit of time εκ² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area ίντσ² An abbreviation for a measurement unit of area χλμ² An abbreviation for a measurement unit of area μ² An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power εβδ. An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length έτ. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Ακρ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Βρετανικές μονάδες θερμότητας A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/λεπτό A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Θερμίδες A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Εκατοστά A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Εκατοστά ανά δευτερόλεπτο A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κυβικά εκατοστά A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κυβικά πόδια A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κυβικές ίντσες A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κυβικά μέτρα A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κυβικές γιάρδες A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ημέρες A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κελσίου An option in the unit converter to select degrees Celsius Φαρενάιτ An option in the unit converter to select degrees Fahrenheit Ηλεκτρονιοβόλτ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Πόδια A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Πόδια ανά δευτερόλεπτο A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ποδολίβρες A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ποδολίβρες/λεπτό A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Εκτάρια A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ίπποι (Η.Π.Α.) A measurement unit for power Ώρες A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ίντσες A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τζάουλ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κιλοβατώρες A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κέλβιν An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Διατροφικές θερμίδες A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κιλοτζάουλ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Χιλιόμετρα A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Χιλιόμετρα ανά ώρα A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κιλοβάτ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κόμβοι A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μαχ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μέτρα A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μέτρα ανά δευτερόλεπτο A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μικρόν A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μικροδευτερόλεπτα A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μίλια A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μίλια ανά ώρα A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Χιλιοστά A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Χιλιοστά δευτερολέπτου A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Λεπτά A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Νανόμετρα A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Άνγκστρομ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ναυτικά μίλια A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Δευτερόλεπτα A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά εκατοστά A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά πόδια A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικές ίντσες A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά χιλιόμετρα A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά μέτρα A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά μίλια A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικά χιλιοστά A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Τετραγωνικές γιάρδες A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Βατ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Εβδομάδες A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Γιάρδες A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Έτη A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CT An abbreviation for a measurement unit of weight μοίρ. An abbreviation for a measurement unit of Angle ακτ An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle ατμ An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure εκγρ An abbreviation for a measurement unit of weight δγρ An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight γρ. An abbreviation for a measurement unit of weight εκτγρ An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Η.Β.) An abbreviation for a measurement unit of weight χγλ An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight τόνος (Η.Π.Α.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight τ. An abbreviation for a measurement unit of weight Καράτια A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μοίρες A measurement unit for Angle. Ακτίνια A measurement unit for Angle. Βαθμοί A measurement unit for Angle. Ατμόσφαιρες A measurement unit for Pressure. Μπαρ A measurement unit for Pressure. Κιλοπασκάλ A measurement unit for Pressure. Χιλιοστόμετρα στήλης υδραργύρου A measurement unit for Pressure. Πασκάλ A measurement unit for Pressure. Λίβρες ανά τετραγωνική ίντσα A measurement unit for Pressure. Εκατοστόγραμμα A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Δεκάγραμμα A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Δεκατόγραμμα A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Γραμμάρια A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Εκατόγραμμα A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Κιλά A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μεγάλοι τόνοι (Η.Β.) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Χιλιοστόγραμμα A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ουγγιές A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Λίβρες A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μικροί τόνοι (Η.Π.Α.) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Μετρικοί τόνοι A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) γήπεδα ποδοσφαίρου A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) γήπεδα ποδοσφαίρου A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) δισκέτες A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) δισκέτες A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπαταρίες AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπαταρίες AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) συνδετήρες A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) συνδετήρες A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) τζάμπο τζετ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) τζάμπο τζετ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) λαμπτήρες A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) λαμπτήρες A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ίπποι A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ίπποι A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπανιέρες A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπανιέρες A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) νιφάδες χιονιού A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) νιφάδες χιονιού A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ελέφαντες An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ελέφαντες An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) χελώνες A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) χελώνες A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) τζετ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) τζετ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φάλαινες A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φάλαινες A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φλιτζάνια καφέ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φλιτζάνια καφέ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) πισίνες An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) πισίνες An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 10 εκ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 10 εκ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φύλλα χαρτιού A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φύλλα χαρτιού A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κάστρα A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) κάστρα A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπανάνες A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπανάνες A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φέτες κέικ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) φέτες κέικ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μηχανές τρένου A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μηχανές τρένου A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπάλες ποδοσφαίρου A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) μπάλες ποδοσφαίρου A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Στοιχείο μνήμης Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Πίσω Screen reader prompt for the About panel back button Πίσω Content of tooltip being displayed on AboutControlBackButton Όροι άδειας χρήσης για λογισμικό της Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Προεπισκόπηση Label displayed next to upcoming features Δήλωση προστασίας προσωπικών δεδομένων της Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Με επιφύλαξη κάθε νόμιμου δικαιώματος. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Για να μάθετε πώς μπορείτε να συμβάλλουν στην αριθμομηχανή των Windows, αναλάβετε τον έλεγχο του έργου σε %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Πληροφορίες Subtitle of about message on Settings page Αποστολή σχολίων The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Δεν υπάρχει ιστορικό ακόμα. The text that shows as the header for the history list Δεν υπάρχει τίποτα αποθηκευμένο στη μνήμη. The text that shows as the header for the memory list Μνήμη Screen reader prompt for the negate button on the converter operator keypad Δεν είναι δυνατή η επικόλληση αυτής της παράστασης The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Υπολογισμός ημερομηνίας Λειτουργία υπολογισμού Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Πρόσθεση Add toggle button text Πρόσθεση ή αφαίρεση ημερών Add or Subtract days option Ημερομηνία Date result label Διαφορά μεταξύ ημερομηνιών Date difference option Ημέρες Add/Subtract Days label Διαφορά Difference result label Από From Date Header for Difference Date Picker Μήνες Add/Subtract Months label Αφαίρεση Subtract toggle button text Προς To Date Header for Difference Date Picker Έτη Add/Subtract Years label Ημερομηνία εκτός ορίου Out of bound message shown as result when the date calculation exceeds the bounds ημέρα ημέρες μήνας μήνες Ίδιες ημερομηνίες εβδομάδα εβδομάδες έτος έτη Διαφορά %1 Automation name for reading out the date difference. %1 = Date difference Προκύπτουσα ημερομηνία %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Λειτουργία αριθμομηχανής {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Λειτουργία μετατροπέα %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Λειτουργία υπολογισμού ημερομηνίας Automation name for when the mode header is focused and the current mode is Date calculation. Λίστες ιστορικού και μνήμης Automation name for the group of controls for history and memory lists. Στοιχεία ελέγχου μνήμης Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Τυπικές συναρτήσεις Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Στοιχεία ελέγχου εμφάνισης Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Βασικοί τελεστές Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Αριθμητικό πληκτρολόγιο Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Τελεστές γωνίας Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Επιστημονικές συναρτήσεις Automation name for the group of Scientific functions. Επιλογή βάσης Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Τελεστές προγραμματιστή Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Επιλογή λειτουργίας εισόδου Automation name for the group of input mode toggling buttons. Πληκτρολόγιο εναλλαγής bit Automation name for the group of bit toggling buttons. Κύλιση παράστασης προς τα αριστερά Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Κύλιση παράστασης προς τα δεξιά Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Συμπληρώθηκε ο μέγιστος αριθμός ψηφίων. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Το %1 αποθηκεύτηκε στη μνήμη {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Η θέση μνήμης %1 είναι %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Έγινε εκκαθάριση της υποδοχής μνήμης %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". διά Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. φορές Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. πλην Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. συν Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. στη δύναμη του Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. ρίζα y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. μετακίνηση αριστερά Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. μετακίνηση δεξιά Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ή Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x or Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. και Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Ενημέρωση %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Ενημέρωση χρεώσεων The text displayed for a hyperlink button that refreshes currency converter ratios. Ενδέχεται να ισχύουν χρεώσεις δεδομένων. The text displayed when users are on a metered connection and using currency converter. Δεν ήταν δυνατή η λήψη νέων ισοτιμιών. Δοκιμάστε ξανά αργότερα. The text displayed when currency ratio data fails to load. Εκτός σύνδεσης. Ελέγξτε τις%HL%Ρυθμίσεις δικτύου%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Ενημέρωση νομισματικών ισοτιμιών This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Οι νομισματικές ισοτιμίες ενημερώθηκαν This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Δεν ήταν δυνατή η ενημέρωση των ισοτιμιών This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Εκκαθάριση όλης της μνήμης (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Εκκαθάριση όλης της μνήμης Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ημίτονο σε μοίρες Name for the sine function in degrees mode. Used by screen readers. ημίτονο σε ακτίνια Name for the sine function in radians mode. Used by screen readers. ημίτονο σε βαθμούς Name for the sine function in gradians mode. Used by screen readers. τόξο ημιτόνου σε μοίρες Name for the inverse sine function in degrees mode. Used by screen readers. τόξο ημιτόνου σε ακτίνια Name for the inverse sine function in radians mode. Used by screen readers. τόξο ημιτόνου σε βαθμούς Name for the inverse sine function in gradians mode. Used by screen readers. υπερβολικό ημίτονο Name for the hyperbolic sine function. Used by screen readers. τόξο υπερβολικού ημιτόνου Name for the inverse hyperbolic sine function. Used by screen readers. συνημίτονο σε μοίρες Name for the cosine function in degrees mode. Used by screen readers. συνημίτονο σε ακτίνια Name for the cosine function in radians mode. Used by screen readers. συνημίτονο σε βαθμούς Name for the cosine function in gradians mode. Used by screen readers. τόξο συνημιτόνου σε μοίρες Name for the inverse cosine function in degrees mode. Used by screen readers. τόξο συνημιτόνου σε ακτίνια Name for the inverse cosine function in radians mode. Used by screen readers. τόξο συνημιτόνου σε βαθμούς Name for the inverse cosine function in gradians mode. Used by screen readers. υπερβολικό συνημίτονο Name for the hyperbolic cosine function. Used by screen readers. τόξο υπερβολικού συνημιτόνου Name for the inverse hyperbolic cosine function. Used by screen readers. εφαπτομένη σε μοίρες Name for the tangent function in degrees mode. Used by screen readers. εφαπτομένη σε ακτίνια Name for the tangent function in radians mode. Used by screen readers. εφαπτομένη σε βαθμούς Name for the tangent function in gradians mode. Used by screen readers. τόξο εφαπτομένης σε μοίρες Name for the inverse tangent function in degrees mode. Used by screen readers. τόξο εφαπτομένης σε ακτίνια Name for the inverse tangent function in radians mode. Used by screen readers. τόξο εφαπτομένης σε βαθμούς Name for the inverse tangent function in gradians mode. Used by screen readers. υπερβολική εφαπτομένη Name for the hyperbolic tangent function. Used by screen readers. τόξο υπερβολικής εφαπτομένης Name for the inverse hyperbolic tangent function. Used by screen readers. μοίρες τέμνουσας Name for the secant function in degrees mode. Used by screen readers. ακτίνια τέμνουσας Name for the secant function in radians mode. Used by screen readers. βαθμοί τέμνουσας Name for the secant function in gradians mode. Used by screen readers. μοίρες αντίστροφης τέμνουσας Name for the inverse secant function in degrees mode. Used by screen readers. ακτίνια αντίστροφης τέμνουσας Name for the inverse secant function in radians mode. Used by screen readers. βαθμοί αντίστροφης τέμνουσας Name for the inverse secant function in gradians mode. Used by screen readers. υπερβολική τέμνουσα Name for the hyperbolic secant function. Used by screen readers. αντίστροφη υπερβολική τέμνουσα Name for the inverse hyperbolic secant function. Used by screen readers. μοίρες συντέμνουσας Name for the cosecant function in degrees mode. Used by screen readers. ακτίνια συντέμνουσας Name for the cosecant function in radians mode. Used by screen readers. βαθμοί συντέμνουσας Name for the cosecant function in gradians mode. Used by screen readers. μοίρες αντίστροφης συντέμνουσας Name for the inverse cosecant function in degrees mode. Used by screen readers. ακτίνια αντίστροφης συντέμνουσας Name for the inverse cosecant function in radians mode. Used by screen readers. βαθμοί αντίστροφης συντέμνουσας Name for the inverse cosecant function in gradians mode. Used by screen readers. υπερβολική συντέμνουσα Name for the hyperbolic cosecant function. Used by screen readers. αντίστροφη υπερβολική συντέμνουσα Name for the inverse hyperbolic cosecant function. Used by screen readers. μοίρες συνεφαπτομένης Name for the cotangent function in degrees mode. Used by screen readers. Ακτίνια συνεφαπτομένης Name for the cotangent function in radians mode. Used by screen readers. βαθμοί συνεφαπτομένης Name for the cotangent function in gradians mode. Used by screen readers. μοίρες αντίστροφης συνεφαπτομένης Name for the inverse cotangent function in degrees mode. Used by screen readers. ακτίνια αντίστροφης συνεφαπτομένης Name for the inverse cotangent function in radians mode. Used by screen readers. βαθμοί αντίστροφης συνεφαπτομένης Name for the inverse cotangent function in gradians mode. Used by screen readers. υπερβολική συνεφαπτομένη Name for the hyperbolic cotangent function. Used by screen readers. αντίστροφη υπερβολική συνεφαπτομένη Name for the inverse hyperbolic cotangent function. Used by screen readers. Κυβική ρίζα Name for the cube root function. Used by screen readers. Βάση λογαρίθμου Name for the logbasey function. Used by screen readers. Απόλυτη τιμή Name for the absolute value function. Used by screen readers. μετακίνηση αριστερά Name for the programmer function that shifts bits to the left. Used by screen readers. μετακίνηση δεξιά Name for the programmer function that shifts bits to the right. Used by screen readers. παραγοντικό Name for the factorial function. Used by screen readers. μοίρα, λεπτό, δευτερόλεπτο Name for the degree minute second (dms) function. Used by screen readers. φυσικός λογάριθμος Name for the natural log (ln) function. Used by screen readers. τετράγωνο Name for the square function. Used by screen readers. ρίζα y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Κατηγορία %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Σύμβαση παροχής υπηρεσιών της Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Από From Date Header for AddSubtract Date Picker Κύλιση αποτελέσματος υπολογισμού προς τα αριστερά Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Κύλιση αποτελέσματος υπολογισμού προς τα δεξιά Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Ο υπολογισμός απέτυχε Text displayed when the application is not able to do a calculation Βάση λογαρίθμου Y Screen reader prompt for the logBaseY button Τριγωνομετρία Displayed on the button that contains a flyout for the trig functions in scientific mode. Συνάρτηση Displayed on the button that contains a flyout for the general functions in scientific mode. Ανισότητες Displayed on the button that contains a flyout for the inequality functions. Ανισότητες Screen reader prompt for the Inequalities button Λειτουργία bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Μετατόπιση bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Αντίστροφη συνάρτηση Screen reader prompt for the shift button in the trig flyout in scientific mode. Υπερβολική συνάρτηση Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Τέμνουσα Screen reader prompt for the Calculator button sec in the scientific flyout keypad Υπερβολική τέμνουσα Screen reader prompt for the Calculator button sech in the scientific flyout keypad Τέμνουσα τόξου Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Υπερβολική τέμνουσα τόξου Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Συντέμνουσα Screen reader prompt for the Calculator button csc in the scientific flyout keypad Υπερβολική συντέμνουσα Screen reader prompt for the Calculator button csch in the scientific flyout keypad Συντέμνουσα τόξου Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Υπερβολική συντέμνουσα τόξου Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Συνεφαπτομένη Screen reader prompt for the Calculator button cot in the scientific flyout keypad Υπερβολική συνεφαπτομένη Screen reader prompt for the Calculator button coth in the scientific flyout keypad Συνεφαπτομένη τόξου Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Υπερβολική συνεφαπτομένη τόξου Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Δάπεδο Screen reader prompt for the Calculator button floor in the scientific flyout keypad Οροφή Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Τυχαία Screen reader prompt for the Calculator button random in the scientific flyout keypad Απόλυτη τιμή Screen reader prompt for the Calculator button abs in the scientific flyout keypad Αριθμός Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Δύο εις τον εκθέτη Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Όχι και Screen reader prompt for the Calculator button nand in the scientific flyout keypad Όχι και Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Όχι ή Screen reader prompt for the Calculator button nor in the scientific flyout keypad Όχι ή Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Περιστροφή αριστερά με μεταφορά Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Περιστροφή δεξιά με μεταφορά Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Αριστερή μετατόπιση Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Αριστερή μετατόπιση Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Δεξιά μετατόπιση Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Δεξιά μετατόπιση Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Αριθμητική μετατόπιση Label for a radio button that toggles arithmetic shift behavior for the shift operations. Λογική μετατόπιση Label for a radio button that toggles logical shift behavior for the shift operations. Περιστροφή κυκλικής μετατόπισης Label for a radio button that toggles rotate circular behavior for the shift operations. Περιστροφή μέσω κυκλικής μετατόπισης με μεταφορά Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Ρίζα κύβου Screen reader prompt for the cube root button on the scientific operator keypad Τριγωνομετρία Screen reader prompt for the square root button on the scientific operator keypad Συναρτήσεις Screen reader prompt for the square root button on the scientific operator keypad Λειτουργία bit Screen reader prompt for the square root button on the scientific operator keypad Μετατόπιση bit Screen reader prompt for the square root button on the scientific operator keypad Πίνακες επιστημονικών τελεστών Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Πίνακες τελεστών προγραμματιστή Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad περισσότερο σημαντικό bit Used to describe the last bit of a binary number. Used in bit flip Γραφική απεικόνιση Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Σχεδίαση Screen reader prompt for the plot button on the graphing calculator operator keypad Αυτόματη Ανανέωση προβολής (CTRL + 0) This is the tool tip automation name for the Calculator graph view button. Προβολή γραφικών Screen reader prompt for the graph view button. Αυτόματη βέλτιστη προσαρμογή Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Μη αυτόματη προσαρμογή Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Έχει πραγματοποιηθεί επαναφορά προβολής γραφήματος. Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Μεγέθυνση (CTRL + συν) This is the tool tip automation name for the Calculator zoom in button. Μεγέθυνση Screen reader prompt for the zoom in button. Σμίκρυνση (CTRL + μείον) This is the tool tip automation name for the Calculator zoom out button. Σμίκρυνση Screen reader prompt for the zoom out button. Προσθήκη εξίσωσης Placeholder text for the equation input button Δεν είναι δυνατή η κοινή χρήση αυτήν τη στιγμή. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Κοίτα το γράφημα που δημιούργησα με την Αριθμομηχανή των Windows Sent as part of the shared content. The title for the share. Εξισώσεις Header that appears over the equations section when sharing Μεταβλητές Header that appears over the variables section when sharing Εικόνα γραφήματος με εξισώσεις Alt text for the graph image when output via Share Μεταβλητές Header text for variables area Βήμα Label text for the step text box Ελάχιστο Label text for the min text box Μέγιστο Label text for the max text box Χρώμα Label for the Line Color section of the style picker Υπολογισμός στυλ Label for the Line Style section of the style picker Ανάλυση συνάρτησης Title for KeyGraphFeatures Control Η συνάρτηση δεν διαθέτει οριζόντιες ασύμπτωτες. Message displayed when the graph does not have any horizontal asymptotes Η συνάρτηση δεν διαθέτει σημεία καμπής. Message displayed when the graph does not have any inflection points Η συνάρτηση δεν διαθέτει σημεία μέγιστων τιμών. Message displayed when the graph does not have any maxima Η συνάρτηση δεν διαθέτει σημεία ελάχιστων τιμών. Message displayed when the graph does not have any minima Σταθερή String describing constant monotonicity of a function Μείωση String describing decreasing monotonicity of a function Δεν είναι δυνατός ο προσδιορισμός της μονοτονίας της συνάρτησης. Error displayed when monotonicity cannot be determined Αύξηση String describing increasing monotonicity of a function Η μονοτονία της συνάρτησης είναι άγνωστη. Error displayed when monotonicity is unknown Η συνάρτηση δεν έχει πλάγιες ασύμπτωτες. Message displayed when the graph does not have any oblique asymptotes Δεν είναι δυνατός ο προσδιορισμός της ισοτιμίας της συνάρτησης. Error displayed when parity is cannot be determined Η συνάρτηση είναι άρτια. Message displayed with the function parity is even Η συνάρτηση δεν είναι ούτε άρτια ούτε περιττή. Message displayed with the function parity is neither even nor odd Η συνάρτηση είναι περιττή. Message displayed with the function parity is odd Η ισοτιμία της συνάρτησης είναι άγνωστη. Error displayed when parity is unknown Η περιοδικότητα δεν υποστηρίζεται για αυτήν τη συνάρτηση. Error displayed when periodicity is not supported Η συνάρτηση δεν είναι περιοδική. Message displayed with the function periodicity is not periodic Η περιοδικότητα της συνάρτησης είναι άγνωστη. Message displayed with the function periodicity is unknown Αυτά τα χαρακτηριστικά είναι πολύ περίπλοκα για να υπολογιστούν από την Αριθμομηχανή: Error displayed when analysis features cannot be calculated Η συνάρτηση δεν έχει κατακόρυφες ασύμπτωτες. Message displayed when the graph does not have any vertical asymptotes Η συνάρτηση δεν έχει τομές x. Message displayed when the graph does not have any x-intercepts Η συνάρτηση δεν έχει τομές y. Message displayed when the graph does not have any y-intercepts Τομέας Title for KeyGraphFeatures Domain Property Οριζόντιες ασύμπτωτες Title for KeyGraphFeatures Horizontal aysmptotes Property Σημεία καμπής Title for KeyGraphFeatures Inflection points Property Η ανάλυση δεν υποστηρίζεται για αυτήν τη συνάρτηση. Error displayed when graph analysis is not supported or had an error. Η ανάλυση υποστηρίζεται μόνο για συναρτήσεις σε μορφή f(x). Παράδειγμα: y=x Error displayed when graph analysis detects the function format is not f(x). Μέγιστες τιμές Title for KeyGraphFeatures Maxima Property Ελάχιστες τιμές Title for KeyGraphFeatures Minima Property Μονοτονία Title for KeyGraphFeatures Monotonicity Property Πλάγιες ασύμπτωτες Title for KeyGraphFeatures Oblique asymptotes Property Ισοτιμία Title for KeyGraphFeatures Parity Property Περίοδος Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Περιοχή Title for KeyGraphFeatures Range Property Κατακόρυφες ασύμπτωτες Title for KeyGraphFeatures Vertical asymptotes Property Τομή X Title for KeyGraphFeatures XIntercept Property Τομή Y Title for KeyGraphFeatures YIntercept Property Δεν ήταν δυνατή η εκτέλεση της ανάλυσης για τη συνάρτηση. Δεν είναι δυνατός ο υπολογισμός του τομέα για αυτήν τη συνάρτηση. Error displayed when Domain is not returned from the analyzer. Δεν είναι δυνατός ο υπολογισμός της περιοχής για αυτήν τη συνάρτηση. Error displayed when Range is not returned from the analyzer. Πλεονασμός (ο αριθμός είναι πολύ μεγάλος) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Απαιτείται η λειτουργία σε ακτίνια για τη δημιουργία γραφικής παράστασης αυτής της εξίσωσης. Error that occurs during graphing when radians is required. Αυτή η συνάρτηση είναι πολύ σύνθετη για να απεικονιστεί σε γράφημα Error that occurs during graphing when the equation is too complex. Απαιτείται η λειτουργία σε μοίρες για τη δημιουργία γραφικής παράστασης αυτής της εξίσωσης. Error that occurs during graphing when degrees is required Η παραγοντική συνάρτηση έχει ένα μη έγκυρο όρισμα Error that occurs during graphing when a factorial function has an invalid argument. Η παραγοντική συνάρτηση έχει ένα όρισμα που είναι πολύ μεγάλο για να παρουσιαστεί σε γράφημα Error that occurs during graphing when a factorial has a large n Το υπόλοιπο διαίρεσης μπορεί να χρησιμοποιηθεί μόνο με ακέραιους αριθμούς Error that occurs during graphing when modulo is used with a float. Η εξίσωση δεν έχει λύση Error that occurs during graphing when the equation has no solution. Δεν είναι δυνατή η διαίρεση με το μηδέν Error that occurs during graphing when a divison by zero occurs. Η εξίσωση περιέχει αλληλοαποκλειόµενες λογικές συνθήκες Error that occurs during graphing when mutually exclusive conditions are used. Η εξίσωση είναι εκτός τομέα Error that occurs during graphing when the equation is out of domain. Η γραφική απεικόνιση αυτής της εξίσωσης δεν υποστηρίζεται Error that occurs during graphing when the equation is not supported. Λείπει μια παρένθεση αρχής από την εξίσωση Error that occurs during graphing when the equation is missing a ( Λείπει μια παρένθεση τέλους από την εξίσωση Error that occurs during graphing when the equation is missing a ) Υπάρχουν πάρα πολλά δεκαδικά ψηφία σε αριθμό Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Λείπουν δεκαδικά από μια υποδιαστολή Error that occurs during graphing with a decimal point without digits Μη αναμενόμενο τέλος παράστασης Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Μη αναμενόμενοι χαρακτήρες στην παράσταση Error that occurs during graphing when there is an unexpected token. Μη έγκυροι χαρακτήρες στην παράσταση Error that occurs during graphing when there is an invalid token. Υπάρχουν πάρα πολλά σύμβολα ίσον Error that occurs during graphing when there are too many equals. Η συνάρτηση πρέπει να περιέχει τουλάχιστον μία μεταβλητή x ή y Error that occurs during graphing when the equation is missing x or y. Μη έγκυρη παράσταση Error that occurs during graphing when an invalid syntax is used. Η παράσταση είναι κενή Error that occurs during graphing when the expression is empty Το ίσον χρησιμοποιήθηκε χωρίς εξίσωση Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Λείπει παρένθεση μετά το όνομα της συνάρτησης Error that occurs during graphing when parenthesis are missing after a function. Μια μαθηματική πράξη έχει εσφαλμένο αριθμό παραμέτρων Error that occurs during graphing when a function has the wrong number of parameters Το όνομα μιας μεταβλητής δεν είναι έγκυρο. Error that occurs during graphing when a variable name is invalid. Λείπει μια αγκύλη αρχής από την εξίσωση Error that occurs during graphing when a { is missing Λείπει μια αγκύλη τέλους από την εξίσωση Error that occurs during graphing when a } is missing. τα "i" και "I" δεν είναι δυνατό να χρησιμοποιηθούν ως ονόματα μεταβλητών Error that occurs during graphing when i or I is used. Δεν ήταν δυνατή η γραφική απεικόνιση της εξίσωσης General error that occurs during graphing. Δεν ήταν δυνατή η επίλυση του ψηφίου για τη συγκεκριμένη βάση Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Η βάση πρέπει να είναι μεγαλύτερη από 2 και μικρότερη από 36 Error that occurs during graphing when the base is out of range. Μια μαθηματική πράξη απαιτεί μία από τις παραμέτρους της να είναι μια μεταβλητή Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Η εξίσωση αναμιγνύει λογικούς και βαθμωτούς τελεστέους Error that occurs during graphing when operands are mixed. Such as true and 1. Δεν είναι δυνατή η χρήση των x ή y στα άνω ή κάτω όρια Error that occurs during graphing when x or y is used in integral upper limits. Δεν είναι δυνατή η χρήση των x ή y στο οριακό σημείο Error that occurs during graphing when x or y is used in the limit point. Δεν είναι δυνατή η χρήση του μιγαδικού απείρου Error that occurs during graphing when complex infinity is used Δεν είναι δυνατή η χρήση μιγαδικών αριθμών σε ανισότητες Error that occurs during graphing when complex numbers are used in inequalities. Επιστροφή στη λίστα συναρτήσεων This is the tooltip for the back button in the equation analysis page in the graphing calculator Επιστροφή στη λίστα συναρτήσεων This is the automation name for the back button in the equation analysis page in the graphing calculator Ανάλυση συνάρτησης This is the tooltip for the analyze function button Ανάλυση συνάρτησης This is the automation name for the analyze function button Ανάλυση συνάρτησης This is the text for the for the analyze function context menu command Κατάργηση εξίσωσης This is the tooltip for the graphing calculator remove equation buttons Κατάργηση εξίσωσης This is the automation name for the graphing calculator remove equation buttons Κατάργηση εξίσωσης This is the text for the for the remove equation context menu command Κοινή χρήση This is the automation name for the graphing calculator share button. Κοινή χρήση This is the tooltip for the graphing calculator share button. Αλλαγή στυλ εξίσωσης This is the tooltip for the graphing calculator equation style button Αλλαγή στυλ εξίσωσης This is the automation name for the graphing calculator equation style button Αλλαγή στυλ εξίσωσης This is the text for the for the equation style context menu command Εμφάνιση εξίσωσης This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Απόκρυψη εξίσωσης This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Εμφάνιση εξίσωσης %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Απόκρυψη εξίσωσης %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Διακοπή ανίχνευσης This is the tooltip/automation name for the graphing calculator stop tracing button Έναρξη ανίχνευσης This is the tooltip/automation name for the graphing calculator start tracing button Παράθυρο προβολής γραφήματος, άξονας x δεσμεύεται από %1 και %2, άξονα y δεσμεύεται από %3 και %4, Εμφάνιση %5 εξισώσεων {Locked="%1","%2", "%3", "%4", "%5"}. Ρύθμιση παραμέτρων ρυθμιστικού This is the tooltip text for the slider options button in Graphing Calculator Ρύθμιση παραμέτρων ρυθμιστικού This is the automation name text for the slider options button in Graphing Calculator Μετάβαση σε λειτουργία εξισώσεων Used in Graphing Calculator to switch the view to the equation mode Μετάβαση σε λειτουργία γραφημάτων Used in Graphing Calculator to switch the view to the graph mode Μετάβαση σε λειτουργία εξισώσεων Used in Graphing Calculator to switch the view to the equation mode Η τρέχουσα κατάσταση λειτουργίας είναι η λειτουργία εξισώσεων Announcement used in Graphing Calculator when switching to the equation mode Η τρέχουσα κατάσταση λειτουργίας είναι η λειτουργία γραφημάτων Announcement used in Graphing Calculator when switching to the graph mode Παράθυρο Heading for window extents on the settings Μοίρες Degrees mode on settings page Βαθμοί Gradian mode on settings page Ακτίνια Radians mode on settings page Μονάδες Heading for Unit's on the settings Επαναφορά προβολής Hyperlink button to reset the view of the graph X-μέγιστο X maximum value header X-ελάχιστο X minimum value header Y-μέγιστο Y Maximum value header Y-ελάχιστο Y minimum value header Επιλογές γραφήματος This is the tooltip text for the graph options button in Graphing Calculator Επιλογές γραφήματος This is the automation name text for the graph options button in Graphing Calculator Επιλογές γραφήματος Heading for the Graph options flyout in Graphing mode. Επιλογές μεταβλητών Screen reader prompt for the variable settings toggle button Εναλλαγή μεταβλητών επιλογών Tool tip for the variable settings toggle button Πάχος γραμμής Heading for the Graph options flyout in Graphing mode. Επιλογές γραμμής Heading for the equation style flyout in Graphing mode. Πλάτος μικρής γραμμής Automation name for line width setting Πλάτος μεσαίας γραμμής Automation name for line width setting Πλάτος μεγάλης γραμμής Automation name for line width setting Πλάτος πολύ μεγάλης γραμμής Automation name for line width setting Εισαγάγετε μια παράσταση this is the placeholder text used by the textbox to enter an equation Αντιγραφή Copy menu item for the graph context menu Αποκοπή Cut menu item from the Equation TextBox Αντιγραφή Copy menu item from the Equation TextBox Επικόλληση Paste menu item from the Equation TextBox Αναίρεση Undo menu item from the Equation TextBox Επιλογή όλων Select all menu item from the Equation TextBox Εισαγωγή συνάρτησης The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Εισαγωγή συνάρτησης The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Πίνακας εισόδου συναρτήσεων The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Πίνακας μεταβλητών The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Λίστα μεταβλητών The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Στοιχείο λίστας %1 μεταβλητής The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Πλαίσιο κειμένου τιμής μεταβλητής The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Ρυθμιστικό τιμής μεταβλητής The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Πλαίσιο κειμένου ελάχιστης τιμής μεταβλητής The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Πλαίσιο κειμένου τιμής βήματος μεταβλητής The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Πλαίσιο κειμένου μέγιστης τιμής μεταβλητής The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Στυλ συμπαγούς γραμμής Name of the solid line style for a graphed equation Στυλ γραμμής γραφήματος Name of the dotted line style for a graphed equation Στυλ γραμμής με παύλα Name of the dashed line style for a graphed equation Σκούρο μπλε Name of color in the color picker Ανοικτό πράσινο Name of color in the color picker Βιολετί Name of color in the color picker Πράσινο Name of color in the color picker Πράσινο της μέντας Name of color in the color picker Σκούρο πράσινο Name of color in the color picker Ανθρακί Name of color in the color picker Κόκκινο Name of color in the color picker Δαμασκηνί ανοιχτό Name of color in the color picker Ματζέντα Name of color in the color picker Κίτρινο χρυσαφί Name of color in the color picker Ανοικτό πορτοκαλί Name of color in the color picker Καφέ Name of color in the color picker Μαύρο Name of color in the color picker Λευκό Name of color in the color picker Χρώμα 1 Name of color in the color picker Χρώμα 2 Name of color in the color picker Χρώμα 3 Name of color in the color picker Χρώμα 4 Name of color in the color picker Θέμα γραφήματος Graph settings heading for the theme options Πάντα ανοικτόχρωμο Graph settings option to set graph to light theme Ταίριασμα θέματος εφαρμογής Graph settings option to set graph to match the app theme Θέμα This is the automation name text for the Graph settings heading for the theme options Πάντα ανοικτόχρωμο This is the automation name text for the Graph settings option to set graph to light theme Ταίριασμα θέματος εφαρμογής This is the automation name text for the Graph settings option to set graph to match the app theme Η συνάρτηση καταργήθηκε Announcement used in Graphing Calculator when a function is removed from the function list Πλαίσιο εξισώσεων "Ανάλυση συνάρτησης" This is the automation name text for the equation box in the function analysis panel Ισούται με Screen reader prompt for the equal button on the graphing calculator operator keypad Λιγότερο από Screen reader prompt for the Less than button Μικρότερο ή ίσο Screen reader prompt for the Less than or equal button Ίσον Screen reader prompt for the Equal button Μεγαλύτερο ή ίσο Screen reader prompt for the Greater than or equal button Μεγαλύτερος από Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Υποβολή Screen reader prompt for the submit button on the graphing calculator operator keypad Ανάλυση συνάρτησης Screen reader prompt for the function analysis grid Επιλογές γραφήματος Screen reader prompt for the graph options panel Λίστες ιστορικού και μνήμης Automation name for the group of controls for history and memory lists. Λίστα μνήμης Automation name for the group of controls for memory list. Έγινε εκκαθάριση της υποδοχής ιστορικού%1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Η αριθμομηχανή πάντα σε πρώτο πλάνο Announcement to indicate calculator window is always shown on top. Η αριθμομηχανή επανήλθε σε πλήρη προβολή Announcement to indicate calculator window is now back to full view. Επιλέχθηκε "Αριθμητική μετατόπιση" Label for a radio button that toggles arithmetic shift behavior for the shift operations. Επιλέχθηκε "Λογική μετατόπιση" Label for a radio button that toggles logical shift behavior for the shift operations. Επιλέχθηκε "Περιστροφή κυκλικής μετατόπισης" Label for a radio button that toggles rotate circular behavior for the shift operations. Επιλέχθηκε "Περιστροφή κυκλικής μετατόπισης μέσω μεταφοράς" Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Ρυθμίσεις Header text of Settings page Εμφάνιση Subtitle of appearance setting on Settings page Θέμα εφαρμογής Title of App theme expander Επιλέξτε το θέμα εφαρμογής που θα εμφανίζεται Description of App theme expander Ανοιχτό Lable for light theme option Σκούρο Lable for dark theme option Χρήση ρύθμισης συστήματος Lable for the app theme option to use system setting Πίσω Screen reader prompt for the Back button in title bar to back to main page Σελίδα ρυθμίσεων Announcement used when Settings page is opened Άνοιγμα του μενού περιβάλλοντος για διαθέσιμες ενέργειες Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Δεν ήταν δυνατή η επαναφορά του παρόντος στιγμιότυπου. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/en-GB/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Invalid input Error message shown when the input makes a function fail, like log(-1) Result is undefined Error message shown when there's no possible value for a function. Not enough memory Error message shown when we run out of memory during a calculation. Overflow Error message shown when there's an overflow during the calculation. Result not defined Same as 101 Result not defined Same 101 Overflow Same as 107 Overflow Same 107 Cannot divide by zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/en-GB/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Calculator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Calculator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculator {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copy Copy context menu string Paste Paste context menu string About equal to The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, value %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63rd Sub-string used in automation name for 63 bit in bit flip 62nd Sub-string used in automation name for 62 bit in bit flip 61st Sub-string used in automation name for 61 bit in bit flip 60th Sub-string used in automation name for 60 bit in bit flip 59th Sub-string used in automation name for 59 bit in bit flip 58th Sub-string used in automation name for 58 bit in bit flip 57th Sub-string used in automation name for 57 bit in bit flip 56th Sub-string used in automation name for 56 bit in bit flip 55th Sub-string used in automation name for 55 bit in bit flip 54th Sub-string used in automation name for 54 bit in bit flip 53rd Sub-string used in automation name for 53 bit in bit flip 52nd Sub-string used in automation name for 52 bit in bit flip 51st Sub-string used in automation name for 51 bit in bit flip 50th Sub-string used in automation name for 50 bit in bit flip 49th Sub-string used in automation name for 49 bit in bit flip 48th Sub-string used in automation name for 48 bit in bit flip 47th Sub-string used in automation name for 47 bit in bit flip 46th Sub-string used in automation name for 46 bit in bit flip 45th Sub-string used in automation name for 45 bit in bit flip 44th Sub-string used in automation name for 44 bit in bit flip 43rd Sub-string used in automation name for 43 bit in bit flip 42nd Sub-string used in automation name for 42 bit in bit flip 41st Sub-string used in automation name for 41 bit in bit flip 40th Sub-string used in automation name for 40 bit in bit flip 39th Sub-string used in automation name for 39 bit in bit flip 38th Sub-string used in automation name for 38 bit in bit flip 37th Sub-string used in automation name for 37 bit in bit flip 36th Sub-string used in automation name for 36 bit in bit flip 35th Sub-string used in automation name for 35 bit in bit flip 34th Sub-string used in automation name for 34 bit in bit flip 33rd Sub-string used in automation name for 33 bit in bit flip 32nd Sub-string used in automation name for 32 bit in bit flip 31st Sub-string used in automation name for 31 bit in bit flip 30th Sub-string used in automation name for 30 bit in bit flip 29th Sub-string used in automation name for 29 bit in bit flip 28th Sub-string used in automation name for 28 bit in bit flip 27th Sub-string used in automation name for 27 bit in bit flip 26th Sub-string used in automation name for 26 bit in bit flip 25th Sub-string used in automation name for 25 bit in bit flip 24th Sub-string used in automation name for 24 bit in bit flip 23rd Sub-string used in automation name for 23 bit in bit flip 22nd Sub-string used in automation name for 22 bit in bit flip 21st Sub-string used in automation name for 21 bit in bit flip 20th Sub-string used in automation name for 20 bit in bit flip 19th Sub-string used in automation name for 19 bit in bit flip 18th Sub-string used in automation name for 18 bit in bit flip 17th Sub-string used in automation name for 17 bit in bit flip 16th Sub-string used in automation name for 16 bit in bit flip 15th Sub-string used in automation name for 15 bit in bit flip 14th Sub-string used in automation name for 14 bit in bit flip 13th Sub-string used in automation name for 13 bit in bit flip 12th Sub-string used in automation name for 12 bit in bit flip 11th Sub-string used in automation name for 11 bit in bit flip 10th Sub-string used in automation name for 10 bit in bit flip 9th Sub-string used in automation name for 9 bit in bit flip 8th Sub-string used in automation name for 8 bit in bit flip 7th Sub-string used in automation name for 7 bit in bit flip 6th Sub-string used in automation name for 6 bit in bit flip 5th Sub-string used in automation name for 5 bit in bit flip 4th Sub-string used in automation name for 4 bit in bit flip 3rd Sub-string used in automation name for 3 bit in bit flip 2nd Sub-string used in automation name for 2 bit in bit flip 1st Sub-string used in automation name for 1 bit in bit flip least significant bit Used to describe the first bit of a binary number. Used in bit flip Open memory flyout This is the automation name and label for the memory button when the memory flyout is closed. Close memory flyout This is the automation name and label for the memory button when the memory flyout is open. Keep on top This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Back to full view This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memory This is the tool tip automation name for the memory button. History (Ctrl+H) This is the tool tip automation name for the history button. Bit toggling keypad This is the tool tip automation name for the bitFlip button. Full keypad This is the tool tip automation name for the numberPad button. Clear all memory (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memory The text that shows as the header for the memory list Memory The automation name for the Memory pivot item that is shown when Calculator is in wide layout. History The text that shows as the header for the history list History The automation name for the History pivot item that is shown when Calculator is in wide layout. Converter Label for a control that activates the unit converter mode. Scientific Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Converter mode Screen reader prompt for a control that activates the unit converter mode. Scientific mode Screen reader prompt for a control that activates scientific mode calculator layout Standard mode Screen reader prompt for a control that activates standard mode calculator layout. Clear all history "ClearHistory" used on the calculator history pane that stores the calculation history. Clear all history This is the tool tip automation name for the Clear History button. Hide "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientific The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Converter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group. Converter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group in upper case. Converters Pluralized version of the converter group text, used for the screen reader prompt. Calculators Pluralized version of the calculator group text, used for the screen reader prompt. Display is %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Expression is %1, Current input is %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Display is %1 point {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expression is %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Display value copied to clipboard Screen reader prompt for the Calculator display copy button, when the button is invoked. History Screen reader prompt for the history flyout Memory Screen reader prompt for the memory flyout HexaDecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binary %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Clear all history Screen reader prompt for the Calculator History Clear button History cleared Screen reader prompt for the Calculator History Clear button, when the button is invoked. Hide history Screen reader prompt for the Calculator History Hide button Open history flyout Screen reader prompt for the Calculator History button, when the flyout is closed. Close history flyout Screen reader prompt for the Calculator History button, when the flyout is open. Memory store Screen reader prompt for the Calculator Memory button Memory store (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Clear all memory Screen reader prompt for the Calculator Clear Memory button Memory cleared Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Memory recall Screen reader prompt for the Calculator Memory Recall button Memory recall (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Memory add Screen reader prompt for the Calculator Memory Add button Memory add (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Memory subtract Screen reader prompt for the Calculator Memory Subtract button Memory subtract (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Clear memory item Screen reader prompt for the Calculator Clear Memory button Clear memory item This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Add to memory item Screen reader prompt for the Calculator Memory Add button in the Memory list Add to memory item This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtract from memory item Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtract from memory item This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Clear memory item Screen reader prompt for the Calculator Clear Memory button Clear memory item Text string for the Calculator Clear Memory option in the Memory list context menu Add to memory item Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Add to memory item Text string for the Calculator Memory Add option in the Memory list context menu Subtract from memory item Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtract from memory item Text string for the Calculator Memory Subtract option in the Memory list context menu Delete Text string for the Calculator Delete swipe button in the History list Copy Text string for the Calculator Copy option in the History list context menu Delete Text string for the Calculator Delete option in the History list context menu Delete history item Screen reader prompt for the Calculator Delete swipe button in the History list Delete history item Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button One Screen reader prompt for the Calculator number "1" button Two Screen reader prompt for the Calculator number "2" button Three Screen reader prompt for the Calculator number "3" button Four Screen reader prompt for the Calculator number "4" button Five Screen reader prompt for the Calculator number "5" button Six Screen reader prompt for the Calculator number "6" button Seven Screen reader prompt for the Calculator number "7" button Eight Screen reader prompt for the Calculator number "8" button Nine Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Rotate on left Screen reader prompt for the Calculator ROL button Rotate on right Screen reader prompt for the Calculator ROR button Left shift Screen reader prompt for the Calculator LSH button Right shift Screen reader prompt for the Calculator RSH button Exclusive or Screen reader prompt for the Calculator XOR button Quadruple Word toggle Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Double Word toggle Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Word toggle Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Byte toggle Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bit toggling keypad Screen reader prompt for the Calculator bitFlip button Full keypad Screen reader prompt for the Calculator numberPad button Decimal separator Screen reader prompt for the "." button Clear entry Screen reader prompt for the "CE" button Clear Screen reader prompt for the "C" button Divide by Screen reader prompt for the divide button on the number pad Multiply by Screen reader prompt for the multiply button on the number pad Equals Screen reader prompt for the equals button on the scientific operator keypad Inverse function Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Square root Screen reader prompt for the square root button on the scientific operator keypad Percent Screen reader prompt for the percent button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the converter operator keypad Reciprocal Screen reader prompt for the invert button on the scientific operator keypad Left parenthesis Screen reader prompt for the Calculator "(" button on the scientific operator keypad Left parenthesis, open parenthesis count %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Right parenthesis Screen reader prompt for the Calculator ")" button on the scientific operator keypad Open parenthesis count %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". There are no open parentheses to close. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Scientific notation Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sine Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosine Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangent Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolic sine Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolic cosine Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolic tangent Screen reader prompt for the Calculator tanh button on the scientific operator keypad Square Screen reader prompt for the x squared on the scientific operator keypad. Cube Screen reader prompt for the x cubed on the scientific operator keypad. Arc sine Screen reader prompt for the inverted sin on the scientific operator keypad. Arc cosine Screen reader prompt for the inverted cos on the scientific operator keypad. Arc tangent Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolic arc sine Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolic arc cosine Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolic arc tangent Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' to the exponent Screen reader prompt for x power y button on the scientific operator keypad. Ten to the exponent Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' to the exponent Screen reader for the e power x on the scientific operator keypad. 'y' root of 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Natural log Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponential Screen reader for the exp button on the scientific operator keypad Degree minute second Screen reader for the exp button on the scientific operator keypad Degrees Screen reader for the exp button on the scientific operator keypad Integer part Screen reader for the int button on the scientific operator keypad Fractional part Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Degrees toggle This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradians toggle This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radians toggle This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Mode drop-down menu Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Categories drop-down menu Screen reader prompt for the Categories dropdown field. Keep on top Screen reader prompt for the Always-on-Top button when in normal mode. Back to full view Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Keep on top (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Back to full view (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convert from %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convert from %1 point %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converts into %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 is %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Input unit Screen reader prompt for the Unit Converter Units1 i.e. top units field. Output unit Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energy Unit conversion category name called Energy. (eg. the energy in a battery or in food) Length Unit conversion category name called Length Power Unit conversion category name called Power (eg. the power of an engine or a light bulb) Speed Unit conversion category name called Speed Time Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperature Unit conversion category name called Temperature Weight and mass Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressure Unit conversion category name called Pressure Angle Unit conversion category name called Angle Currency Unit conversion category name called Currency Fluid ounces (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Fluid ounces (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume Gallons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Gallons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume Litres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilitres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pints (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pints (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume Tablespoons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (US) An abbreviation for a measurement unit of volume Teaspoons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (US) An abbreviation for a measurement unit of volume Tablespoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (UK) An abbreviation for a measurement unit of volume Teaspoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (UK) An abbreviation for a measurement unit of volume Quarts (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Quarts (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume Cups (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) British thermal units A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Thermal calories A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetres per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic centimetres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic feet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic inches A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic metres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic yards A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Days A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electron volts A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Feet A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Feet per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-pounds A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-pounds/minute A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectares A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Horsepower (US) A measurement unit for power Hours A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inches A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-hours A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Food calories A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometres per hour A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knots A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metres per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microns A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microseconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles per hour A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimetres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milliseconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautical miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Seconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square centimetres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square feet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square inches A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square kilometres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square metres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square miles A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square millimetres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square yards A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Weeks A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yards A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Years A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carats A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Degrees A measurement unit for Angle. Radians A measurement unit for Angle. Gradians A measurement unit for Angle. Atmospheres A measurement unit for Pressure. Bars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Millimetres of mercury A measurement unit for Pressure. Pascals A measurement unit for Pressure. Pounds per square inch A measurement unit for Pressure. Centigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagrams A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Long tons (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pounds A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Short tons (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metric tonnes A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) football fields A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) football fields A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) floppy disks A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) floppy disks A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) light bulbs A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) light bulbs A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) horses A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) horses A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bathtubs A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bathtubs A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snowflakes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snowflakes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elephants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elephants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) turtles A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) turtles A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) whales A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) whales A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) coffee cups A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) coffee cups A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swimming pools An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swimming pools An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hands A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hands A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sheets of paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sheets of paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castles A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castles A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slices of cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slices of cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) train engines A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) train engines A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) footballs A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) footballs A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Memory item Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Back Screen reader prompt for the About panel back button Back Content of tooltip being displayed on AboutControlBackButton Microsoft Software Licence Terms Displayed on a link to the Microsoft Software License Terms on the About panel Preview Label displayed next to upcoming features Microsoft Privacy Statement Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. All rights reserved. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) To learn how you can contribute to Windows Calculator, check out the project on %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel About Subtitle of about message on Settings page Send feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app There’s no history yet. The text that shows as the header for the history list There’s nothing saved in memory. The text that shows as the header for the memory list Memory Screen reader prompt for the negate button on the converter operator keypad This expression cannot be pasted The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Date calculation Calculation mode Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Add Add toggle button text Add or subtract days Add or Subtract days option Date Date result label Difference between dates Date difference option Days Add/Subtract Days label Difference Difference result label From From Date Header for Difference Date Picker Months Add/Subtract Months label Subtract Subtract toggle button text To To Date Header for Difference Date Picker Years Add/Subtract Years label Date out of bounds Out of bound message shown as result when the date calculation exceeds the bounds day days month months Same dates week weeks year years Difference %1 Automation name for reading out the date difference. %1 = Date difference Resulting date %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Calculator mode {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Converter mode {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Date calculation mode Automation name for when the mode header is focused and the current mode is Date calculation. History and Memory lists Automation name for the group of controls for history and memory lists. Memory controls Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standard functions Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Display controls Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standard operators Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Number pad Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Angle operators Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Scientific functions Automation name for the group of Scientific functions. Radix selection Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmer operators Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Input mode selection Automation name for the group of input mode toggling buttons. Bit toggling keypad Automation name for the group of bit toggling buttons. Scroll expression left Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Scroll expression right Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Max digits reached. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 saved to memory {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Memory slot %1 is %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Memory slot %1 cleared {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". divided by Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. times Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. to the power of Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y root Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. left shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. right shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. or Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x or Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. and Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Updated %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Update rates The text displayed for a hyperlink button that refreshes currency converter ratios. Data charges may apply. The text displayed when users are on a metered connection and using currency converter. Couldn’t get new rates. Try again later. The text displayed when currency ratio data fails to load. Offline. Please check your%HL%Network Settings%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Updating currency rates This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Currency rates updated This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Could not update rates This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Clear all memory (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Clear all memory Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sine degrees Name for the sine function in degrees mode. Used by screen readers. sine radians Name for the sine function in radians mode. Used by screen readers. sine gradians Name for the sine function in gradians mode. Used by screen readers. inverse sine degrees Name for the inverse sine function in degrees mode. Used by screen readers. inverse sine radians Name for the inverse sine function in radians mode. Used by screen readers. inverse sine gradians Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolic sine Name for the hyperbolic sine function. Used by screen readers. inverse hyperbolic sine Name for the inverse hyperbolic sine function. Used by screen readers. cosine degrees Name for the cosine function in degrees mode. Used by screen readers. cosine radians Name for the cosine function in radians mode. Used by screen readers. cosine gradians Name for the cosine function in gradians mode. Used by screen readers. inverse cosine degrees Name for the inverse cosine function in degrees mode. Used by screen readers. inverse cosine radians Name for the inverse cosine function in radians mode. Used by screen readers. inverse cosine gradians Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolic cosine Name for the hyperbolic cosine function. Used by screen readers. inverse hyperbolic cosine Name for the inverse hyperbolic cosine function. Used by screen readers. tangent degrees Name for the tangent function in degrees mode. Used by screen readers. tangent radians Name for the tangent function in radians mode. Used by screen readers. tangent gradians Name for the tangent function in gradians mode. Used by screen readers. inverse tangent degrees Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangent radians Name for the inverse tangent function in radians mode. Used by screen readers. inverse tangent gradians Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolic tangent Name for the hyperbolic tangent function. Used by screen readers. inverse hyperbolic tangent Name for the inverse hyperbolic tangent function. Used by screen readers. secant degrees Name for the secant function in degrees mode. Used by screen readers. secant radians Name for the secant function in radians mode. Used by screen readers. secant gradians Name for the secant function in gradians mode. Used by screen readers. inverse secant degrees Name for the inverse secant function in degrees mode. Used by screen readers. inverse secant radians Name for the inverse secant function in radians mode. Used by screen readers. inverse secant gradians Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolic secant Name for the hyperbolic secant function. Used by screen readers. inverse hyperbolic secant Name for the inverse hyperbolic secant function. Used by screen readers. cosecant degrees Name for the cosecant function in degrees mode. Used by screen readers. cosecant radians Name for the cosecant function in radians mode. Used by screen readers. cosecant gradians Name for the cosecant function in gradians mode. Used by screen readers. inverse cosecant degrees Name for the inverse cosecant function in degrees mode. Used by screen readers. inverse cosecant radians Name for the inverse cosecant function in radians mode. Used by screen readers. inverse cosecant gradians Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolic cosecant Name for the hyperbolic cosecant function. Used by screen readers. inverse hyperbolic cosecant Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangent degrees Name for the cotangent function in degrees mode. Used by screen readers. Cotangent radians Name for the cotangent function in radians mode. Used by screen readers. cotangent gradians Name for the cotangent function in gradians mode. Used by screen readers. inverse cotangent degrees Name for the inverse cotangent function in degrees mode. Used by screen readers. inverse cotangent radians Name for the inverse cotangent function in radians mode. Used by screen readers. inverse cotangent gradians Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolic cotangent Name for the hyperbolic cotangent function. Used by screen readers. inverse hyperbolic cotangent Name for the inverse hyperbolic cotangent function. Used by screen readers. Cube root Name for the cube root function. Used by screen readers. Log base Name for the logbasey function. Used by screen readers. Absolute value Name for the absolute value function. Used by screen readers. left shift Name for the programmer function that shifts bits to the left. Used by screen readers. right shift Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. degree minute second Name for the degree minute second (dms) function. Used by screen readers. natural log Name for the natural log (ln) function. Used by screen readers. square Name for the square function. Used by screen readers. y root Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 category {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft Services Agreement Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. From From Date Header for AddSubtract Date Picker Scroll calculation result left Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Scroll calculation result right Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Calculation failed Text displayed when the application is not able to do a calculation Log base Y Screen reader prompt for the logBaseY button Trigonometry Displayed on the button that contains a flyout for the trig functions in scientific mode. Function Displayed on the button that contains a flyout for the general functions in scientific mode. Inequalities Displayed on the button that contains a flyout for the inequality functions. Inequalities Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit shift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse function Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secant Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolic secant Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolic arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecant Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolic cosecant Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolic arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangent Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolic cotangent Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangent Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolic arc cotangent Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Floor Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ceiling Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Random Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolute value Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler's number Screen reader prompt for the Calculator button e in the scientific flyout keypad Ten to the exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotate on left with carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotate on right with carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Left shift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Left shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Right shift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Right shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Arithmetic shift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logical shift Label for a radio button that toggles logical shift behavior for the shift operations. Rotate circular shift Label for a radio button that toggles rotate circular behavior for the shift operations. Rotate through carry circular shift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Cube root Screen reader prompt for the cube root button on the scientific operator keypad Trigonometry Screen reader prompt for the square root button on the scientific operator keypad Functions Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Scientific operator panels Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programmer operator panels Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad most significant bit Used to describe the last bit of a binary number. Used in bit flip Graphing Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plot Screen reader prompt for the plot button on the graphing calculator operator keypad Refresh view automatically (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Graph view Screen reader prompt for the graph view button. Automatic best fit Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manual adjustment Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Graph view has been reset Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom in (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Zoom in Screen reader prompt for the zoom in button. Zoom out (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Zoom out Screen reader prompt for the zoom out button. Add equation Placeholder text for the equation input button Unable to share at this time. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Look what I graphed with Windows Calculator Sent as part of the shared content. The title for the share. Equations Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Image of a graph with equations Alt text for the graph image when output via Share Variables Header text for variables area Step Label text for the step text box Min Label text for the min text box Max Label text for the max text box Colour Label for the Line Color section of the style picker Style Label for the Line Style section of the style picker Function analysis Title for KeyGraphFeatures Control The function does not have any horizontal asymptotes. Message displayed when the graph does not have any horizontal asymptotes The function does not have any inflection points. Message displayed when the graph does not have any inflection points The function does not have any maxima points. Message displayed when the graph does not have any maxima The function does not have any minima points. Message displayed when the graph does not have any minima Constant String describing constant monotonicity of a function Decreasing String describing decreasing monotonicity of a function Unable to determine the monotonicity of the function. Error displayed when monotonicity cannot be determined Increasing String describing increasing monotonicity of a function The monotonicity of the function is unknown. Error displayed when monotonicity is unknown The function does not have any oblique aysmptotes. Message displayed when the graph does not have any oblique asymptotes Unable to determine the parity of the function. Error displayed when parity is cannot be determined The function is even. Message displayed with the function parity is even The function is neither even nor odd. Message displayed with the function parity is neither even nor odd The function is odd. Message displayed with the function parity is odd The function parity is unknown. Error displayed when parity is unknown Periodicity is not supported for this function. Error displayed when periodicity is not supported The function is not periodic. Message displayed with the function periodicity is not periodic The function periodicity is unknown. Message displayed with the function periodicity is unknown These features are too complex for Calculator to calculate: Error displayed when analysis features cannot be calculated The function does not have any vertical asymptotes. Message displayed when the graph does not have any vertical asymptotes The function does not have any x-intercepts. Message displayed when the graph does not have any x-intercepts The function does not have any y-intercepts. Message displayed when the graph does not have any y-intercepts Domain Title for KeyGraphFeatures Domain Property Horizontal asymptotes Title for KeyGraphFeatures Horizontal aysmptotes Property Inflection points Title for KeyGraphFeatures Inflection points Property Analysis is not supported for this function. Error displayed when graph analysis is not supported or had an error. Analysis is only supported for functions in the f(x) format. Example: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonicity Title for KeyGraphFeatures Monotonicity Property Oblique asymptotes Title for KeyGraphFeatures Oblique asymptotes Property Parity Title for KeyGraphFeatures Parity Property Period Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Range Title for KeyGraphFeatures Range Property Vertical asymptotes Title for KeyGraphFeatures Vertical asymptotes Property X-Intercept Title for KeyGraphFeatures XIntercept Property Y-Intercept Title for KeyGraphFeatures YIntercept Property Analysis could not be performed for the function. Unable to calculate the domain for this function. Error displayed when Domain is not returned from the analyzer. Unable to calculate the range for this function. Error displayed when Range is not returned from the analyzer. Overflow (the number is too large) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radians mode is required to graph this equation. Error that occurs during graphing when radians is required. This function is too complex to graph Error that occurs during graphing when the equation is too complex. Degrees mode is required to graph this function Error that occurs during graphing when degrees is required The factorial function has an invalid argument Error that occurs during graphing when a factorial function has an invalid argument. The factorial function has an argument that is too large to graph Error that occurs during graphing when a factorial has a large n Modulo can only be used with whole numbers Error that occurs during graphing when modulo is used with a float. The equation has no solution Error that occurs during graphing when the equation has no solution. Cannot divide by zero Error that occurs during graphing when a divison by zero occurs. The equation contains logical conditions that are mutually exclusive Error that occurs during graphing when mutually exclusive conditions are used. Equation is out of domain Error that occurs during graphing when the equation is out of domain. Graphing this equation is not supported Error that occurs during graphing when the equation is not supported. The equation is missing an opening parenthesis Error that occurs during graphing when the equation is missing a ( The equation is missing a closing parenthesis Error that occurs during graphing when the equation is missing a ) There are too many decimal points in a number Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 A decimal point is missing digits Error that occurs during graphing with a decimal point without digits Unexpected end of expression Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Unexpected characters in the expression Error that occurs during graphing when there is an unexpected token. Invalid characters in the expression Error that occurs during graphing when there is an invalid token. There are too many equal signs Error that occurs during graphing when there are too many equals. The function must contain at least one x or y variable Error that occurs during graphing when the equation is missing x or y. Invalid expression Error that occurs during graphing when an invalid syntax is used. The expression is empty Error that occurs during graphing when the expression is empty Equal was used without an equation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parenthesis missing after function name Error that occurs during graphing when parenthesis are missing after a function. A mathematical operation has the incorrect number of parameters Error that occurs during graphing when a function has the wrong number of parameters A variable name is invalid Error that occurs during graphing when a variable name is invalid. The equation is missing an opening bracket Error that occurs during graphing when a { is missing The equation is missing a closing bracket Error that occurs during graphing when a } is missing. “i” and “I” cannot be used as variable names Error that occurs during graphing when i or I is used. The equation could not be graphed General error that occurs during graphing. The digit could not be resolved for the given base Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). The base must be greater than 2 and less than 36 Error that occurs during graphing when the base is out of range. A mathematical operation requires one of its parameters to be a variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Equation is mixing logical and scalar operands Error that occurs during graphing when operands are mixed. Such as true and 1. x or y cannot be used in the upper or lower limits Error that occurs during graphing when x or y is used in integral upper limits. x or y cannot be used in the limit point Error that occurs during graphing when x or y is used in the limit point. Cannot use complex infinity Error that occurs during graphing when complex infinity is used Cannot use complex numbers in inequalities Error that occurs during graphing when complex numbers are used in inequalities. Back to function list This is the tooltip for the back button in the equation analysis page in the graphing calculator Back to function list This is the automation name for the back button in the equation analysis page in the graphing calculator Analyse function This is the tooltip for the analyze function button Analyse function This is the automation name for the analyze function button Analyse function This is the text for the for the analyze function context menu command Remove equation This is the tooltip for the graphing calculator remove equation buttons Remove equation This is the automation name for the graphing calculator remove equation buttons Remove equation This is the text for the for the remove equation context menu command Share This is the automation name for the graphing calculator share button. Share This is the tooltip for the graphing calculator share button. Change equation style This is the tooltip for the graphing calculator equation style button Change equation style This is the automation name for the graphing calculator equation style button Change equation style This is the text for the for the equation style context menu command Show equation This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Hide equation This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Show equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Hide equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stop tracing This is the tooltip/automation name for the graphing calculator stop tracing button Start tracing This is the tooltip/automation name for the graphing calculator start tracing button Graph viewing window, x-axis bounded by %1 and %2, y-axis bounded by %3 and %4, displaying %5 equations {Locked="%1","%2", "%3", "%4", "%5"}. Configure slider This is the tooltip text for the slider options button in Graphing Calculator Configure slider This is the automation name text for the slider options button in Graphing Calculator Switch to equation mode Used in Graphing Calculator to switch the view to the equation mode Switch to graph mode Used in Graphing Calculator to switch the view to the graph mode Switch to equation mode Used in Graphing Calculator to switch the view to the equation mode Current mode is equation mode Announcement used in Graphing Calculator when switching to the equation mode Current mode is graph mode Announcement used in Graphing Calculator when switching to the graph mode Window Heading for window extents on the settings Degrees Degrees mode on settings page Gradians Gradian mode on settings page Radians Radians mode on settings page Units Heading for Unit's on the settings Reset view Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Graph options This is the tooltip text for the graph options button in Graphing Calculator Graph options This is the automation name text for the graph options button in Graphing Calculator Graph options Heading for the Graph options flyout in Graphing mode. Variable options Screen reader prompt for the variable settings toggle button Toggle variable options Tool tip for the variable settings toggle button Line thickness Heading for the Graph options flyout in Graphing mode. Line options Heading for the equation style flyout in Graphing mode. Small line width Automation name for line width setting Medium line width Automation name for line width setting Large line width Automation name for line width setting Extra large line width Automation name for line width setting Enter an expression this is the placeholder text used by the textbox to enter an equation Copy Copy menu item for the graph context menu Cut Cut menu item from the Equation TextBox Copy Copy menu item from the Equation TextBox Paste Paste menu item from the Equation TextBox Undo Undo menu item from the Equation TextBox Select all Select all menu item from the Equation TextBox Function input The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Function input The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Function input panel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variable panel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variable list The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variable %1 list item The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Variable value textbox The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Variable value slider The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Variable minimum value textbox The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Variable step value textbox The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Variable maximum value textbox The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Solid line style Name of the solid line style for a graphed equation Chart line style Name of the dotted line style for a graphed equation Dash line style Name of the dashed line style for a graphed equation Navy blue Name of color in the color picker Seafoam Name of color in the color picker Violet Name of color in the color picker Green Name of color in the color picker Mint green Name of color in the color picker Dark green Name of color in the color picker Charcoal Name of color in the color picker Red Name of color in the color picker Plum light Name of color in the color picker Magenta Name of color in the color picker Yellow gold Name of color in the color picker Orange bright Name of color in the color picker Brown Name of color in the color picker Black Name of color in the color picker White Name of color in the color picker Colour 1 Name of color in the color picker Colour 2 Name of color in the color picker Colour 3 Name of color in the color picker Colour 4 Name of color in the color picker Graph theme Graph settings heading for the theme options Always light Graph settings option to set graph to light theme Match app theme Graph settings option to set graph to match the app theme Theme This is the automation name text for the Graph settings heading for the theme options Always light This is the automation name text for the Graph settings option to set graph to light theme Match app theme This is the automation name text for the Graph settings option to set graph to match the app theme Function removed Announcement used in Graphing Calculator when a function is removed from the function list Function analysis equation box This is the automation name text for the equation box in the function analysis panel Equals Screen reader prompt for the equal button on the graphing calculator operator keypad Less than Screen reader prompt for the Less than button Less than or equal Screen reader prompt for the Less than or equal button Equal Screen reader prompt for the Equal button Greater than or equal Screen reader prompt for the Greater than or equal button Greater than Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Submit Screen reader prompt for the submit button on the graphing calculator operator keypad Function analysis Screen reader prompt for the function analysis grid Graph options Screen reader prompt for the graph options panel History and Memory lists Automation name for the group of controls for history and memory lists. Memory list Automation name for the group of controls for memory list. History slot %1 cleared {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculator always on top Announcement to indicate calculator window is always shown on top. Calculator back to full view Announcement to indicate calculator window is now back to full view. Arithmetic shift selected Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logical shift selected Label for a radio button that toggles logical shift behavior for the shift operations. Rotate circular shift selected Label for a radio button that toggles rotate circular behavior for the shift operations. Rotate through carry circular shift selected Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Settings Header text of Settings page Appearance Subtitle of appearance setting on Settings page App theme Title of App theme expander Select which app theme to display Description of App theme expander Light Lable for light theme option Dark Lable for dark theme option Use system setting Lable for the app theme option to use system setting Back Screen reader prompt for the Back button in title bar to back to main page Settings page Announcement used when Settings page is opened Open the context menu for available actions Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Couldn't restore this snapshot. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/en-US/CEngineStrings.resw ================================================ text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Rsh {Locked}The string that represents the function Invalid input Error message shown when the input makes a function fail, like log(-1) Result is undefined Error message shown when there's no possible value for a function. Not enough memory Error message shown when we run out of memory during a calculation. Overflow Error message shown when there's an overflow during the calculation. Result not defined Same as 101 ÷ {Locked}The string that represents the function Result not defined Same 101 Overflow Same as 107 × {Locked}The string that represents the function Overflow Same 107 + {Locked}The string that represents the function - {Locked}The string that represents the function Mod {Locked}The string that represents the function yroot {Locked}The string that represents the function ^ {Locked}The string that represents the function Int {Locked}The string that represents the function RoL {Locked}The string that represents the function CE {Locked}The string that represents the function RoR {Locked}The string that represents the function NOT {Locked}The string that represents the function sin {Locked}The string that represents the function cis {Locked}The string that represents the function tan {Locked}The string that represents the function sinh {Locked}The string that represents the function cosh {Locked}The string that represents the function tanh {Locked}The string that represents the function ln {Locked}The string that represents the function log {Locked}The string that represents the function {Locked}The string that represents the function dms {Locked}The string that represents the function 10^ {Locked}The string that represents the function % {Locked}The string that represents the function . {Locked}The string that represents the function Pi {Locked}The string that represents the function = {Locked}The string that represents the function Exp {Locked}The string that represents the function ( {Locked}The string that represents the function ) {Locked}The string that represents the function AND {Locked}The string that represents the function frac {Locked}The string that represents the function sin₀ {Locked}The string that represents the function cos₀ {Locked}The string that represents the function tan₀ {Locked}The string that represents the function OR {Locked}The string that represents the function sin₀⁻¹ {Locked}The string that represents the function cos₀⁻¹ {Locked}The string that represents the function tan₀⁻¹ {Locked}The string that represents the function sinᵣ {Locked}The string that represents the function cosᵣ {Locked}The string that represents the function tanᵣ {Locked}The string that represents the function sinᵣ⁻¹ {Locked}The string that represents the function cosᵣ⁻¹ {Locked}The string that represents the function tanᵣ⁻¹ {Locked}The string that represents the function sin₉ {Locked}The string that represents the function XOR {Locked}The string that represents the function cos₉ {Locked}The string that represents the function tan₉ {Locked}The string that represents the function sin₉⁻¹ {Locked}The string that represents the function cos₉⁻¹ {Locked}The string that represents the function tan₉⁻¹ {Locked}The string that represents the function sinh⁻¹ {Locked}The string that represents the function cosh⁻¹ {Locked}The string that represents the function tanh⁻¹ {Locked}The string that represents the function e^ {Locked}The string that represents the function 10^ {Locked}The string that represents the function Lsh {Locked}The string that represents the function {Locked}The string that represents the function sqr {Locked}The string that represents the function cube {Locked}The string that represents the function fact {Locked}The string that represents the function 1/ {Locked}The string that represents the function degrees {Locked}The string that represents the function negate {Locked}The string that represents the function Cannot divide by zero Error string shown when a divide by zero condition happens during the calculation sec₀ {Locked}The string that represents the function secᵣ {Locked}The string that represents the function sec₉ {Locked}The string that represents the function sec₀⁻¹ {Locked}The string that represents the function secᵣ⁻¹ {Locked}The string that represents the function sec₉⁻¹ {Locked}The string that represents the function csc₀ {Locked}The string that represents the function cscᵣ {Locked}The string that represents the function csc₉ {Locked}The string that represents the function csc₀⁻¹ {Locked}The string that represents the function cscᵣ⁻¹ {Locked}The string that represents the function csc₉⁻¹ {Locked}The string that represents the function cot₀ {Locked}The string that represents the function cotᵣ {Locked}The string that represents the function cot₉ {Locked}The string that represents the function cot₀⁻¹ {Locked}The string that represents the function cotᵣ⁻¹ {Locked}The string that represents the function cot₉⁻¹ {Locked}The string that represents the function sech {Locked}The string that represents the function sech⁻¹ {Locked}The string that represents the function csch {Locked}The string that represents the function csch⁻¹ {Locked}The string that represents the function coth {Locked}The string that represents the function coth⁻¹ {Locked}The string that represents the function 2^ {Locked}The string that represents the function log base {Locked}The string that represents the function abs {Locked}The string that represents the function ceil {Locked}The string that represents the function floor {Locked}The string that represents the function NAND {Locked}The string that represents the function NOR {Locked}The string that represents the function cuberoot {Locked}The string that represents the function % {Locked}The string that represents the function ================================================ FILE: src/Calculator/Resources/en-US/Resources.resw ================================================ text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Calculator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Calculator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculator {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. AppUpdate2 {Locked}This will Update Resources.pri File, Resource is not used in the app DEC {Locked}The Decimal button BIN {Locked}The Binary button HEX {Locked}The Hex button OCT {Locked}The Oct button Copy Copy context menu string Paste Paste context menu string About equal to The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. D {Locked}The shortcut for the clearing history contents Ctrl+Shift+D. H {Locked}This is the shortcut for hiding history Ctrl+H. M {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Escape {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Delete {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. ) {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. O {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. O {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. X {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. M {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Decimal {Locked}This is the Virtual Kez that should trigger this button. It comes from the Windows::System::VirtualKey enum. / {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. = {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Enter {Locked}This is the value from the VirtualKey enum that maps to this button ! {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. V {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. R {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. L {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. N {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. - {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. % {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. F9 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F9 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. - {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 0 {Locked}This is the character for the corresponding button. 1 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 2 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 3 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 4 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 5 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 6 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 7 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 8 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. 9 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. A {Locked}This is the character for the corresponding button. B {Locked}This is the character for the corresponding button. C {Locked}This is the character for the corresponding button. D {Locked}This is the character for the corresponding button. E {Locked}This is the character for the corresponding button. F {Locked}This is the character for the corresponding button. A {Locked}This is the character for the corresponding button. B {Locked}This is the character for the corresponding button. C {Locked}This is the character for the corresponding button. D {Locked}This is the character for the corresponding button. E {Locked}This is the character for the corresponding button. F {Locked}This is the character for the corresponding button. ( {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. % {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. P {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. + {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Y {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. ^ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. G {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. This one is in combination with the Control key. S {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. S {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. @ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. T {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. T {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Q {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. # {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Y {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. This one is in combination with the Control key. Back {Locked}When this character is received by KeyboardShortcutManager, it will cause this button to execute. This value is not localized. * {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. | {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. ~ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. & {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. < {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. > {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. ^ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. < {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. > {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. F6 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. F5 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. F7 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. F8 {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. D {Locked}The shortcut for the Deg button O {Locked}The shortcut for the inverted cos button O {Locked}The shortcut for the inverted cosh button S {Locked}This is the shortcut for the inverted sin button S {Locked}This is the shortcut for the inverted sinh button T {Locked}This is the shortcut for the inverted tan button. T {Locked}This is the shortcut for the inverted tanh button N {Locked}This is the shortcut for the power x button. C {Locked}This is the shortcut for copy, usuall CTRL+C Insert {Locked}This is the alternate shortcut for copy, CTRL+Insert V {Locked}This is the shortcut for paste, usually CTRL+V Insert {Locked}This is the alternate shortcut for paste, SHIFT+Insert %1, value %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63rd Sub-string used in automation name for 63 bit in bit flip 62nd Sub-string used in automation name for 62 bit in bit flip 61st Sub-string used in automation name for 61 bit in bit flip 60th Sub-string used in automation name for 60 bit in bit flip 59th Sub-string used in automation name for 59 bit in bit flip 58th Sub-string used in automation name for 58 bit in bit flip 57th Sub-string used in automation name for 57 bit in bit flip 56th Sub-string used in automation name for 56 bit in bit flip 55th Sub-string used in automation name for 55 bit in bit flip 54th Sub-string used in automation name for 54 bit in bit flip 53rd Sub-string used in automation name for 53 bit in bit flip 52nd Sub-string used in automation name for 52 bit in bit flip 51st Sub-string used in automation name for 51 bit in bit flip 50th Sub-string used in automation name for 50 bit in bit flip 49th Sub-string used in automation name for 49 bit in bit flip 48th Sub-string used in automation name for 48 bit in bit flip 47th Sub-string used in automation name for 47 bit in bit flip 46th Sub-string used in automation name for 46 bit in bit flip 45th Sub-string used in automation name for 45 bit in bit flip 44th Sub-string used in automation name for 44 bit in bit flip 43rd Sub-string used in automation name for 43 bit in bit flip 42nd Sub-string used in automation name for 42 bit in bit flip 41st Sub-string used in automation name for 41 bit in bit flip 40th Sub-string used in automation name for 40 bit in bit flip 39th Sub-string used in automation name for 39 bit in bit flip 38th Sub-string used in automation name for 38 bit in bit flip 37th Sub-string used in automation name for 37 bit in bit flip 36th Sub-string used in automation name for 36 bit in bit flip 35th Sub-string used in automation name for 35 bit in bit flip 34th Sub-string used in automation name for 34 bit in bit flip 33rd Sub-string used in automation name for 33 bit in bit flip 32nd Sub-string used in automation name for 32 bit in bit flip 31st Sub-string used in automation name for 31 bit in bit flip 30th Sub-string used in automation name for 30 bit in bit flip 29th Sub-string used in automation name for 29 bit in bit flip 28th Sub-string used in automation name for 28 bit in bit flip 27th Sub-string used in automation name for 27 bit in bit flip 26th Sub-string used in automation name for 26 bit in bit flip 25th Sub-string used in automation name for 25 bit in bit flip 24th Sub-string used in automation name for 24 bit in bit flip 23rd Sub-string used in automation name for 23 bit in bit flip 22nd Sub-string used in automation name for 22 bit in bit flip 21st Sub-string used in automation name for 21 bit in bit flip 20th Sub-string used in automation name for 20 bit in bit flip 19th Sub-string used in automation name for 19 bit in bit flip 18th Sub-string used in automation name for 18 bit in bit flip 17th Sub-string used in automation name for 17 bit in bit flip 16th Sub-string used in automation name for 16 bit in bit flip 15th Sub-string used in automation name for 15 bit in bit flip 14th Sub-string used in automation name for 14 bit in bit flip 13th Sub-string used in automation name for 13 bit in bit flip 12th Sub-string used in automation name for 12 bit in bit flip 11th Sub-string used in automation name for 11 bit in bit flip 10th Sub-string used in automation name for 10 bit in bit flip 9th Sub-string used in automation name for 9 bit in bit flip 8th Sub-string used in automation name for 8 bit in bit flip 7th Sub-string used in automation name for 7 bit in bit flip 6th Sub-string used in automation name for 6 bit in bit flip 5th Sub-string used in automation name for 5 bit in bit flip 4th Sub-string used in automation name for 4 bit in bit flip 3rd Sub-string used in automation name for 3 bit in bit flip 2nd Sub-string used in automation name for 2 bit in bit flip 1st Sub-string used in automation name for 1 bit in bit flip least significant bit Used to describe the first bit of a binary number. Used in bit flip Open memory flyout This is the automation name and label for the memory button when the memory flyout is closed. Close memory flyout This is the automation name and label for the memory button when the memory flyout is open. Keep on top This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Back to full view This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memory This is the tool tip automation name for the memory button. History (Ctrl+H) This is the tool tip automation name for the history button. Bit toggling keypad This is the tool tip automation name for the bitFlip button. Full keypad This is the tool tip automation name for the numberPad button. L {Locked}This is the value that comes from the VirtualKey enum that represents the keyboard shortcut combo (ctrl + L) for the clear memory button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Clear all memory (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. R {Locked}This is the value that comes from the VirtualKey enum that represents the keyboard shortcut combo (ctrl + R) for the memory recall function. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. P {Locked}This is the value that comes from the VirtualKey enum that represents the keyboard shortcut combo (ctrl + P) for the memory plus function. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Q {Locked}This is the value that comes from the VirtualKey enum that represents the keyboard shortcut combo (ctrl + Q) for the memory minus function. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Memory The text that shows as the header for the memory list Memory The automation name for the Memory pivot item that is shown when Calculator is in wide layout. History The text that shows as the header for the history list History The automation name for the History pivot item that is shown when Calculator is in wide layout. << {Locked}The chevron that shows to indicate that the expression history has overflowed the available space and is therefore trimmed. Converter Label for a control that activates the unit converter mode. Scientific Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Converter mode Screen reader prompt for a control that activates the unit converter mode. Scientific mode Screen reader prompt for a control that activates scientific mode calculator layout Standard mode Screen reader prompt for a control that activates standard mode calculator layout. Clear all history "ClearHistory" used on the calculator history pane that stores the calculation history. Clear all history This is the tool tip automation name for the Clear History button. Hide "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientific The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Converter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group. Converter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group in upper case. Converters Pluralized version of the converter group text, used for the screen reader prompt. Calculators Pluralized version of the calculator group text, used for the screen reader prompt. Display is %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Expression is %1, Current input is %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Display is %1 point {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expression is %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Display value copied to clipboard Screen reader prompt for the Calculator display copy button, when the button is invoked. History Screen reader prompt for the history flyout Memory Screen reader prompt for the memory flyout HexaDecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binary %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Clear all history Screen reader prompt for the Calculator History Clear button History cleared Screen reader prompt for the Calculator History Clear button, when the button is invoked. Hide history Screen reader prompt for the Calculator History Hide button Open history flyout Screen reader prompt for the Calculator History button, when the flyout is closed. Close history flyout Screen reader prompt for the Calculator History button, when the flyout is open. Memory store Screen reader prompt for the Calculator Memory button Memory store (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Clear all memory Screen reader prompt for the Calculator Clear Memory button Memory cleared Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Memory recall Screen reader prompt for the Calculator Memory Recall button Memory recall (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Memory add Screen reader prompt for the Calculator Memory Add button Memory add (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Memory subtract Screen reader prompt for the Calculator Memory Subtract button Memory subtract (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Clear memory item Screen reader prompt for the Calculator Clear Memory button Clear memory item This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Add to memory item Screen reader prompt for the Calculator Memory Add button in the Memory list Add to memory item This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtract from memory item Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtract from memory item This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Clear memory item Screen reader prompt for the Calculator Clear Memory button Clear memory item Text string for the Calculator Clear Memory option in the Memory list context menu Add to memory item Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Add to memory item Text string for the Calculator Memory Add option in the Memory list context menu Subtract from memory item Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtract from memory item Text string for the Calculator Memory Subtract option in the Memory list context menu Delete Text string for the Calculator Delete swipe button in the History list Copy Text string for the Calculator Copy option in the History list context menu Delete Text string for the Calculator Delete option in the History list context menu Delete history item Screen reader prompt for the Calculator Delete swipe button in the History list Delete history item Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button One Screen reader prompt for the Calculator number "1" button Two Screen reader prompt for the Calculator number "2" button Three Screen reader prompt for the Calculator number "3" button Four Screen reader prompt for the Calculator number "4" button Five Screen reader prompt for the Calculator number "5" button Six Screen reader prompt for the Calculator number "6" button Seven Screen reader prompt for the Calculator number "7" button Eight Screen reader prompt for the Calculator number "8" button Nine Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Rotate on left Screen reader prompt for the Calculator ROL button Rotate on right Screen reader prompt for the Calculator ROR button Left shift Screen reader prompt for the Calculator LSH button Right shift Screen reader prompt for the Calculator RSH button Exclusive or Screen reader prompt for the Calculator XOR button Quadruple Word toggle Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Double Word toggle Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Word toggle Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Byte toggle Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bit toggling keypad Screen reader prompt for the Calculator bitFlip button Full keypad Screen reader prompt for the Calculator numberPad button Decimal separator Screen reader prompt for the "." button Clear entry Screen reader prompt for the "CE" button Clear Screen reader prompt for the "C" button Divide by Screen reader prompt for the divide button on the number pad Multiply by Screen reader prompt for the multiply button on the number pad Equals Screen reader prompt for the equals button on the scientific operator keypad Inverse function Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Square root Screen reader prompt for the square root button on the scientific operator keypad Percent Screen reader prompt for the percent button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the converter operator keypad Reciprocal Screen reader prompt for the invert button on the scientific operator keypad Left parenthesis Screen reader prompt for the Calculator "(" button on the scientific operator keypad Left parenthesis, open parenthesis count %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Right parenthesis Screen reader prompt for the Calculator ")" button on the scientific operator keypad Open parenthesis count %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". There are no open parentheses to close. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Scientific notation Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sine Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosine Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangent Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolic sine Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolic cosine Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolic tangent Screen reader prompt for the Calculator tanh button on the scientific operator keypad Square Screen reader prompt for the x squared on the scientific operator keypad. Cube Screen reader prompt for the x cubed on the scientific operator keypad. Arc sine Screen reader prompt for the inverted sin on the scientific operator keypad. Arc cosine Screen reader prompt for the inverted cos on the scientific operator keypad. Arc tangent Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolic arc sine Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolic arc cosine Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolic arc tangent Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' to the exponent Screen reader prompt for x power y button on the scientific operator keypad. Ten to the exponent Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' to the exponent Screen reader for the e power x on the scientific operator keypad. 'y' root of 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Natural log Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponential Screen reader for the exp button on the scientific operator keypad Degree minute second Screen reader for the exp button on the scientific operator keypad Degrees Screen reader for the exp button on the scientific operator keypad Integer part Screen reader for the int button on the scientific operator keypad Fractional part Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Degrees toggle This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradians toggle This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radians toggle This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Mode dropdown Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Categories dropdown Screen reader prompt for the Categories dropdown field. Keep on top Screen reader prompt for the Always-on-Top button when in normal mode. Back to full view Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Keep on top (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Back to full view (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convert from %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convert from %1 point %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converts into %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 is %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Input unit Screen reader prompt for the Unit Converter Units1 i.e. top units field. Output unit Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energy Unit conversion category name called Energy. (eg. the energy in a battery or in food) Length Unit conversion category name called Length Power Unit conversion category name called Power (eg. the power of an engine or a light bulb) Speed Unit conversion category name called Speed Time Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperature Unit conversion category name called Temperature Weight and mass Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressure Unit conversion category name called Pressure Angle Unit conversion category name called Angle Currency Unit conversion category name called Currency Fluid ounces (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Fluid ounces (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume Gallons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Gallons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume Liters A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Milliliters A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pints (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pints (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume Tablespoons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (US) An abbreviation for a measurement unit of volume Teaspoons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (US) An abbreviation for a measurement unit of volume Tablespoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (UK) An abbreviation for a measurement unit of volume Teaspoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (UK) An abbreviation for a measurement unit of volume Quarts (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Quarts (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume Cups (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) British thermal units A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Thermal calories A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeters A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeters per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic centimeters A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic feet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic inches A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic meters A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic yards A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Days A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electron volts A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Feet A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Feet per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-pounds A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Foot-pounds/minute A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectares A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Horsepower (US) A measurement unit for power Hours A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inches A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-hours A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Food calories A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometers A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometers per hour A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knots A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meters A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meters per second A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microns A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microseconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles per hour A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeters A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milliseconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometers A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautical miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Seconds A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square centimeters A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square feet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square inches A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square kilometers A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square meters A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square miles A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square millimeters A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square yards A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Weeks A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yards A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Years A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carats A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Degrees A measurement unit for Angle. Radians A measurement unit for Angle. Gradians A measurement unit for Angle. Atmospheres A measurement unit for Pressure. Bars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Millimeters of mercury A measurement unit for Pressure. Pascals A measurement unit for Pressure. Pounds per square inch A measurement unit for Pressure. Centigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrams A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilograms A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Long tons (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pounds A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Short tons (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metric tonnes A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) soccer fields A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) soccer fields A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) floppy disks A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) floppy disks A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) light bulbs A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) light bulbs A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) horses A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) horses A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bathtubs A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bathtubs A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snowflakes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snowflakes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elephants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elephants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) turtles A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) turtles A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) whales A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) whales A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) coffee cups A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) coffee cups A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swimming pools An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) swimming pools An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hands A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hands A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sheets of paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sheets of paper A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castles A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castles A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slices of cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slices of cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) train engines A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) train engines A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) soccer balls A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) soccer balls A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) F4 {Locked}This is the shortcut for the DEG command, that sets the scientific calculator in degree mode. This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F5 {Locked}This is the shortcut for the RAD command, that sets the scientific calculator in radian mode. This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F3 {Locked}This is the shortcut for the GRAD command, that sets the scientific calculator in grad mode. This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Memory item Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Back Screen reader prompt for the About panel back button Back Content of tooltip being displayed on AboutControlBackButton Microsoft Software License Terms Displayed on a link to the Microsoft Software License Terms on the About panel Preview Label displayed next to upcoming features Microsoft Privacy Statement Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. All rights reserved. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) To learn how you can contribute to Windows Calculator, check out the project on %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel About Subtitle of about message on Settings page Send feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app RESERVED_FOR_FONTLOC {Locked}Leave as RESERVED_FOR_FONTLOC unless the font localization value provided by the WinRT LanguageFontGroup API should be overridden. In that case, enter the font family (e.g. "Segoe UI"). If any of the font overrides are modified then all of them need to be modified. RESERVED_FOR_FONTLOC {Locked}Leave as RESERVED_FOR_FONTLOC unless the font localization value provided by the WinRT LanguageFontGroup API should be overridden. In that case, enter the font Weight (e.g. "light"). If any of the font overrides are modified then all of them need to be modified. RESERVED_FOR_FONTLOC {Locked}Leave as RESERVED_FOR_FONTLOC unless the font localization value provided by the WinRT LanguageFontGroup API should be overridden. In that case, enter the font scale factor to be used as a replacement for UICaptionFont.ScaleFactor (scale factor is a specified in percentage scaling; i.e. 100 = no scaling). If any of the font overrides are modified then all of them need to be modified. RESERVED_FOR_FONTLOC {Locked}Leave as RESERVED_FOR_FONTLOC unless the font localization value provided by the WinRT LanguageFontGroup API should be overridden. In that case, enter the font scale factor to be used as a replacement for UITextFont.ScaleFactor (scale factor is a specified in percentage scaling; i.e. 100 = no scaling). If any of the font overrides are modified then all of them need to be modified. BIN {Locked}The Binary button DEC {Locked}The Decimal button HEX {Locked}The Hex button OCT {Locked}The Octal button There’s no history yet. The text that shows as the header for the history list There’s nothing saved in memory. The text that shows as the header for the memory list Memory Screen reader prompt for the negate button on the converter operator keypad This expression cannot be pasted The paste operation cannot be performed, if the expression is invalid. F4 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F2 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F12 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. F3 {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Date calculation Calculation mode Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Add Add toggle button text Add or subtract days Add or Subtract days option Date Date result label Difference between dates Date difference option Days Add/Subtract Days label Difference Difference result label From From Date Header for Difference Date Picker Months Add/Subtract Months label Subtract Subtract toggle button text To To Date Header for Difference Date Picker Years Add/Subtract Years label Date out of Bound Out of bound message shown as result when the date calculation exceeds the bounds day days month months Same dates week weeks year years Difference %1 Automation name for reading out the date difference. %1 = Date difference Resulting date %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Calculator mode {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Converter mode {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Date calculation mode Automation name for when the mode header is focused and the current mode is Date calculation. History and Memory lists Automation name for the group of controls for history and memory lists. Memory controls Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standard functions Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Display controls Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standard operators Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Number pad Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Angle operators Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Scientific functions Automation name for the group of Scientific functions. Radix selection Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmer operators Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Input mode selection Automation name for the group of input mode toggling buttons. Bit toggling keypad Automation name for the group of bit toggling buttons. Scroll expression left Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Scroll expression right Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Max digits reached. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 saved to memory {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Memory slot %1 is %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Memory slot %1 cleared {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". divided by Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. times Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. to the power of Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y root Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. left shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. right shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. or Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x or Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. and Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Updated %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Update rates The text displayed for a hyperlink button that refreshes currency converter ratios. Data charges may apply. The text displayed when users are on a metered connection and using currency converter. Couldn’t get new rates. Try again later. The text displayed when currency ratio data fails to load. Offline. Please check your%HL%Network Settings%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Updating currency rates This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Currency rates updated This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Could not update rates This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Clear all memory (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Clear all memory Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sine degrees Name for the sine function in degrees mode. Used by screen readers. sine radians Name for the sine function in radians mode. Used by screen readers. sine gradians Name for the sine function in gradians mode. Used by screen readers. inverse sine degrees Name for the inverse sine function in degrees mode. Used by screen readers. inverse sine radians Name for the inverse sine function in radians mode. Used by screen readers. inverse sine gradians Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolic sine Name for the hyperbolic sine function. Used by screen readers. inverse hyperbolic sine Name for the inverse hyperbolic sine function. Used by screen readers. cosine degrees Name for the cosine function in degrees mode. Used by screen readers. cosine radians Name for the cosine function in radians mode. Used by screen readers. cosine gradians Name for the cosine function in gradians mode. Used by screen readers. inverse cosine degrees Name for the inverse cosine function in degrees mode. Used by screen readers. inverse cosine radians Name for the inverse cosine function in radians mode. Used by screen readers. inverse cosine gradians Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolic cosine Name for the hyperbolic cosine function. Used by screen readers. inverse hyperbolic cosine Name for the inverse hyperbolic cosine function. Used by screen readers. tangent degrees Name for the tangent function in degrees mode. Used by screen readers. tangent radians Name for the tangent function in radians mode. Used by screen readers. tangent gradians Name for the tangent function in gradians mode. Used by screen readers. inverse tangent degrees Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangent radians Name for the inverse tangent function in radians mode. Used by screen readers. inverse tangent gradians Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolic tangent Name for the hyperbolic tangent function. Used by screen readers. inverse hyperbolic tangent Name for the inverse hyperbolic tangent function. Used by screen readers. secant degrees Name for the secant function in degrees mode. Used by screen readers. secant radians Name for the secant function in radians mode. Used by screen readers. secant gradians Name for the secant function in gradians mode. Used by screen readers. inverse secant degrees Name for the inverse secant function in degrees mode. Used by screen readers. inverse secant radians Name for the inverse secant function in radians mode. Used by screen readers. inverse secant gradians Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolic secant Name for the hyperbolic secant function. Used by screen readers. inverse hyperbolic secant Name for the inverse hyperbolic secant function. Used by screen readers. cosecant degrees Name for the cosecant function in degrees mode. Used by screen readers. cosecant radians Name for the cosecant function in radians mode. Used by screen readers. cosecant gradians Name for the cosecant function in gradians mode. Used by screen readers. inverse cosecant degrees Name for the inverse cosecant function in degrees mode. Used by screen readers. inverse cosecant radians Name for the inverse cosecant function in radians mode. Used by screen readers. inverse cosecant gradians Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolic cosecant Name for the hyperbolic cosecant function. Used by screen readers. inverse hyperbolic cosecant Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangent degrees Name for the cotangent function in degrees mode. Used by screen readers. Cotangent radians Name for the cotangent function in radians mode. Used by screen readers. cotangent gradians Name for the cotangent function in gradians mode. Used by screen readers. inverse cotangent degrees Name for the inverse cotangent function in degrees mode. Used by screen readers. inverse cotangent radians Name for the inverse cotangent function in radians mode. Used by screen readers. inverse cotangent gradians Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolic cotangent Name for the hyperbolic cotangent function. Used by screen readers. inverse hyperbolic cotangent Name for the inverse hyperbolic cotangent function. Used by screen readers. Cube root Name for the cube root function. Used by screen readers. Log base Name for the logbasey function. Used by screen readers. Absolute value Name for the absolute value function. Used by screen readers. left shift Name for the programmer function that shifts bits to the left. Used by screen readers. right shift Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. degree minute second Name for the degree minute second (dms) function. Used by screen readers. natural log Name for the natural log (ln) function. Used by screen readers. square Name for the square function. Used by screen readers. y root Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 category {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft Services Agreement Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. From From Date Header for AddSubtract Date Picker Scroll calculation result left Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Scroll calculation result right Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Calculation failed Text displayed when the application is not able to do a calculation Log base Y Screen reader prompt for the logBaseY button L {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Trigonometry Displayed on the button that contains a flyout for the trig functions in scientific mode. Function Displayed on the button that contains a flyout for the general functions in scientific mode. Inequalities Displayed on the button that contains a flyout for the inequality functions. Inequalities Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit shift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse function Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secant Screen reader prompt for the Calculator button sec in the scientific flyout keypad U {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Hyperbolic secant Screen reader prompt for the Calculator button sech in the scientific flyout keypad U {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad U {Locked}The shortcut for the inverted sec button Hyperbolic arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad U {Locked}The shortcut for the inverted sech button Cosecant Screen reader prompt for the Calculator button csc in the scientific flyout keypad I {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Hyperbolic cosecant Screen reader prompt for the Calculator button csch in the scientific flyout keypad I {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad I {Locked}The shortcut for the inverted sec button Hyperbolic arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad I {Locked}The shortcut for the inverted sech button Cotangent Screen reader prompt for the Calculator button cot in the scientific flyout keypad J {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Hyperbolic cotangent Screen reader prompt for the Calculator button coth in the scientific flyout keypad J {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Arc cotangent Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad J {Locked}The shortcut for the inverted sec button Hyperbolic arc cotangent Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad J {Locked}The shortcut for the inverted sech button Floor Screen reader prompt for the Calculator button floor in the scientific flyout keypad [ {Locked}The shortcut for the inverted sech button Ceiling Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ] {Locked}The shortcut for the inverted sech button Random Screen reader prompt for the Calculator button random in the scientific flyout keypad R {Locked}The shortcut for the inverted sech button Absolute value Screen reader prompt for the Calculator button abs in the scientific flyout keypad | {Locked}The shortcut for the inverted sech button Euler's number Screen reader prompt for the Calculator button e in the scientific flyout keypad E {Locked}The shortcut for the inverted sech button Two to the exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad G {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad . {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad \ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotate on left with carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad < {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Rotate on right with carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad > {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Left shift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad < {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Left shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Right shift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad > {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Right shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Arithmetic shift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logical shift Label for a radio button that toggles logical shift behavior for the shift operations. Rotate circular shift Label for a radio button that toggles rotate circular behavior for the shift operations. Rotate through carry circular shift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Cube root Screen reader prompt for the cube root button on the scientific operator keypad B {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Trigonometry Screen reader prompt for the square root button on the scientific operator keypad Functions Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Scientific operator panels Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programmer operator panels Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad most significant bit Used to describe the last bit of a binary number. Used in bit flip Graphing Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Enter {Locked}This is the value from the VirtualKey enum that maps to this button Plot Screen reader prompt for the plot button on the graphing calculator operator keypad X {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. Y {Locked}This is the value that comes from the VirtualKey enum that represents the button. This value is not localized and must be one value that comes from the Windows::System::VirtualKey enum. ^ {Locked}This is the character that should trigger this button. Note that it is a character and not a key, so it does not come from the Windows::System::VirtualKey enum. Home {Locked}This is the shortcut for the graph view button. Refresh view automatically (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Graph view Screen reader prompt for the graph view button. Automatic best fit Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manual adjustment Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Graph view has been reset Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom in (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Zoom in Screen reader prompt for the zoom in button. Zoom out (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Zoom out Screen reader prompt for the zoom out button. Add equation Placeholder text for the equation input button Unable to share at this time. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Look what I graphed with Windows Calculator Sent as part of the shared content. The title for the share. Equations Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Image of a graph with equations Alt text for the graph image when output via Share Variables Header text for variables area Step Label text for the step text box Min Label text for the min text box Max Label text for the max text box Color Label for the Line Color section of the style picker Style Label for the Line Style section of the style picker Function analysis Title for KeyGraphFeatures Control The function does not have any horizontal asymptotes. Message displayed when the graph does not have any horizontal asymptotes The function does not have any inflection points. Message displayed when the graph does not have any inflection points The function does not have any maxima points. Message displayed when the graph does not have any maxima The function does not have any minima points. Message displayed when the graph does not have any minima Constant String describing constant monotonicity of a function Decreasing String describing decreasing monotonicity of a function Unable to determine the monotonicity of the function. Error displayed when monotonicity cannot be determined Increasing String describing increasing monotonicity of a function The monotonicity of the function is unknown. Error displayed when monotonicity is unknown The function does not have any oblique aysmptotes. Message displayed when the graph does not have any oblique asymptotes Unable to determine the parity of the function. Error displayed when parity is cannot be determined The function is even. Message displayed with the function parity is even The function is neither even nor odd. Message displayed with the function parity is neither even nor odd The function is odd. Message displayed with the function parity is odd The function parity is unknown. Error displayed when parity is unknown Periodicity is not supported for this function. Error displayed when periodicity is not supported The function is not periodic. Message displayed with the function periodicity is not periodic The function periodicity is unknown. Message displayed with the function periodicity is unknown These features are too complex for Calculator to calculate: Error displayed when analysis features cannot be calculated The function does not have any vertical asymptotes. Message displayed when the graph does not have any vertical asymptotes The function does not have any x-intercepts. Message displayed when the graph does not have any x-intercepts The function does not have any y-intercepts. Message displayed when the graph does not have any y-intercepts Domain Title for KeyGraphFeatures Domain Property Horizontal asymptotes Title for KeyGraphFeatures Horizontal aysmptotes Property Inflection points Title for KeyGraphFeatures Inflection points Property Analysis is not supported for this function. Error displayed when graph analysis is not supported or had an error. Analysis is only supported for functions in the f(x) format. Example: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonicity Title for KeyGraphFeatures Monotonicity Property Oblique asymptotes Title for KeyGraphFeatures Oblique asymptotes Property Parity Title for KeyGraphFeatures Parity Property Period Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Range Title for KeyGraphFeatures Range Property Vertical asymptotes Title for KeyGraphFeatures Vertical asymptotes Property X-Intercept Title for KeyGraphFeatures XIntercept Property Y-Intercept Title for KeyGraphFeatures YIntercept Property Analysis could not be performed for the function. Unable to calculate the domain for this function. Error displayed when Domain is not returned from the analyzer. Unable to calculate the range for this function. Error displayed when Range is not returned from the analyzer. Overflow (the number is too large) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radians mode is required to graph this equation. Error that occurs during graphing when radians is required. This function is too complex to graph Error that occurs during graphing when the equation is too complex. Degrees mode is required to graph this function Error that occurs during graphing when degrees is required The factorial function has an invalid argument Error that occurs during graphing when a factorial function has an invalid argument. The factorial function has an argument that is too large to graph Error that occurs during graphing when a factorial has a large n Modulo can only be used with whole numbers Error that occurs during graphing when modulo is used with a float. The equation has no solution Error that occurs during graphing when the equation has no solution. Cannot divide by zero Error that occurs during graphing when a divison by zero occurs. The equation contains logical conditions that are mutually exclusive Error that occurs during graphing when mutually exclusive conditions are used. Equation is out of domain Error that occurs during graphing when the equation is out of domain. Graphing this equation is not supported Error that occurs during graphing when the equation is not supported. The equation is missing an opening parenthesis Error that occurs during graphing when the equation is missing a ( The equation is missing a closing parenthesis Error that occurs during graphing when the equation is missing a ) There are too many decimal points in a number Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 A decimal point is missing digits Error that occurs during graphing with a decimal point without digits Unexpected end of expression Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Unexpected characters in the expression Error that occurs during graphing when there is an unexpected token. Invalid characters in the expression Error that occurs during graphing when there is an invalid token. There are too many equal signs Error that occurs during graphing when there are too many equals. The function must contain at least one x or y variable Error that occurs during graphing when the equation is missing x or y. Invalid expression Error that occurs during graphing when an invalid syntax is used. The expression is empty Error that occurs during graphing when the expression is empty Equal was used without an equation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parenthesis missing after function name Error that occurs during graphing when parenthesis are missing after a function. A mathematical operation has the incorrect number of parameters Error that occurs during graphing when a function has the wrong number of parameters A variable name is invalid Error that occurs during graphing when a variable name is invalid. The equation is missing an opening bracket Error that occurs during graphing when a { is missing The equation is missing a closing bracket Error that occurs during graphing when a } is missing. "i" and "I" cannot be used as variable names Error that occurs during graphing when i or I is used. The equation could not be graphed General error that occurs during graphing. The digit could not be resolved for the given base Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). The base must be greater than 2 and less than 36 Error that occurs during graphing when the base is out of range. A mathematical operation requires one of its parameters to be a variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Equation is mixing logical and scalar operands Error that occurs during graphing when operands are mixed. Such as true and 1. x or y cannot be used in the upper or lower limits Error that occurs during graphing when x or y is used in integral upper limits. x or y cannot be used in the limit point Error that occurs during graphing when x or y is used in the limit point. Cannot use complex infinity Error that occurs during graphing when complex infinity is used Cannot use complex numbers in inequalities Error that occurs during graphing when complex numbers are used in inequalities. Back to function list This is the tooltip for the back button in the equation analysis page in the graphing calculator Back to function list This is the automation name for the back button in the equation analysis page in the graphing calculator Analyze function This is the tooltip for the analyze function button Analyze function This is the automation name for the analyze function button Analyze function This is the text for the for the analyze function context menu command Remove equation This is the tooltip for the graphing calculator remove equation buttons Remove equation This is the automation name for the graphing calculator remove equation buttons Remove equation This is the text for the for the remove equation context menu command Share This is the automation name for the graphing calculator share button. Share This is the tooltip for the graphing calculator share button. Change equation style This is the tooltip for the graphing calculator equation style button Change equation style This is the automation name for the graphing calculator equation style button Change equation style This is the text for the for the equation style context menu command Show equation This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Hide equation This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Show equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Hide equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stop tracing This is the tooltip/automation name for the graphing calculator stop tracing button Start tracing This is the tooltip/automation name for the graphing calculator start tracing button Graph viewing window, x-axis bounded by %1 and %2, y-axis bounded by %3 and %4, displaying %5 equations {Locked="%1","%2", "%3", "%4", "%5"}. Configure slider This is the tooltip text for the slider options button in Graphing Calculator Configure slider This is the automation name text for the slider options button in Graphing Calculator Switch to equation mode Used in Graphing Calculator to switch the view to the equation mode Switch to graph mode Used in Graphing Calculator to switch the view to the graph mode Switch to equation mode Used in Graphing Calculator to switch the view to the equation mode Current mode is equation mode Announcement used in Graphing Calculator when switching to the equation mode Current mode is graph mode Announcement used in Graphing Calculator when switching to the graph mode Window Heading for window extents on the settings Degrees Degrees mode on settings page Gradians Gradian mode on settings page Radians Radians mode on settings page Units Heading for Unit's on the settings Reset view Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Graph options This is the tooltip text for the graph options button in Graphing Calculator Graph options This is the automation name text for the graph options button in Graphing Calculator Graph options Heading for the Graph options flyout in Graphing mode. Variable options Screen reader prompt for the variable settings toggle button Toggle variable options Tool tip for the variable settings toggle button Line thickness Heading for the Graph options flyout in Graphing mode. Line options Heading for the equation style flyout in Graphing mode. Small line width Automation name for line width setting Medium line width Automation name for line width setting Large line width Automation name for line width setting Extra large line width Automation name for line width setting Enter an expression this is the placeholder text used by the textbox to enter an equation Copy Copy menu item for the graph context menu Cut Cut menu item from the Equation TextBox Copy Copy menu item from the Equation TextBox Paste Paste menu item from the Equation TextBox Undo Undo menu item from the Equation TextBox Select all Select all menu item from the Equation TextBox Function input The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Function input The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Function input panel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variable panel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variable list The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variable %1 list item The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Variable value textbox The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Variable value slider The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Variable minimum value textbox The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Variable step value textbox The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Variable maximum value textbox The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Solid line style Name of the solid line style for a graphed equation Dot line style Name of the dotted line style for a graphed equation Dash line style Name of the dashed line style for a graphed equation Navy blue Name of color in the color picker Seafoam Name of color in the color picker Violet Name of color in the color picker Green Name of color in the color picker Mint green Name of color in the color picker Dark green Name of color in the color picker Charcoal Name of color in the color picker Red Name of color in the color picker Plum light Name of color in the color picker Magenta Name of color in the color picker Yellow gold Name of color in the color picker Orange bright Name of color in the color picker Brown Name of color in the color picker Black Name of color in the color picker White Name of color in the color picker Color 1 Name of color in the color picker Color 2 Name of color in the color picker Color 3 Name of color in the color picker Color 4 Name of color in the color picker Graph theme Graph settings heading for the theme options Always light Graph settings option to set graph to light theme Match app theme Graph settings option to set graph to match the app theme Theme This is the automation name text for the Graph settings heading for the theme options Always light This is the automation name text for the Graph settings option to set graph to light theme Match app theme This is the automation name text for the Graph settings option to set graph to match the app theme Function removed Announcement used in Graphing Calculator when a function is removed from the function list Function analysis equation box This is the automation name text for the equation box in the function analysis panel Equals Screen reader prompt for the equal button on the graphing calculator operator keypad Less than Screen reader prompt for the Less than button Less than or equal Screen reader prompt for the Less than or equal button Equal Screen reader prompt for the Equal button Greater than or equal Screen reader prompt for the Greater than or equal button Greater than Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Submit Screen reader prompt for the submit button on the graphing calculator operator keypad Function analysis Screen reader prompt for the function analysis grid Graph options Screen reader prompt for the graph options panel History and Memory lists Automation name for the group of controls for history and memory lists. Memory list Automation name for the group of controls for memory list. History slot %1 cleared {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculator always on top Announcement to indicate calculator window is always shown on top. Calculator back to full view Announcement to indicate calculator window is now back to full view. Arithmetic shift selected Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logical shift selected Label for a radio button that toggles logical shift behavior for the shift operations. Rotate circular shift selected Label for a radio button that toggles rotate circular behavior for the shift operations. Rotate through carry circular shift selected Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Settings Header text of Settings page Appearance Subtitle of appearance setting on Settings page App theme Title of App theme expander Select which app theme to display Description of App theme expander Light Lable for light theme option Dark Lable for dark theme option Use system setting Lable for the app theme option to use system setting Back Screen reader prompt for the Back button in title bar to back to main page Settings page Announcement used when Settings page is opened Open the context menu for available actions Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Couldn't restore this snapshot. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/es-ES/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrada no válida Error message shown when the input makes a function fail, like log(-1) Resultado indefinido Error message shown when there's no possible value for a function. Memoria insuficiente Error message shown when we run out of memory during a calculation. Desbordamiento Error message shown when there's an overflow during the calculation. Resultado no definido Same as 101 Resultado no definido Same 101 Desbordamiento Same as 107 Desbordamiento Same 107 No se puede dividir entre cero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/es-ES/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora de Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora de Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiar Copy context menu string Pegar Paste context menu string Prácticamente igual que The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63º Sub-string used in automation name for 63 bit in bit flip 62º Sub-string used in automation name for 62 bit in bit flip 61º Sub-string used in automation name for 61 bit in bit flip 60º Sub-string used in automation name for 60 bit in bit flip 59º Sub-string used in automation name for 59 bit in bit flip 58º Sub-string used in automation name for 58 bit in bit flip 57º Sub-string used in automation name for 57 bit in bit flip 56º Sub-string used in automation name for 56 bit in bit flip 55º Sub-string used in automation name for 55 bit in bit flip 54º Sub-string used in automation name for 54 bit in bit flip 53º Sub-string used in automation name for 53 bit in bit flip 52º Sub-string used in automation name for 52 bit in bit flip 51º Sub-string used in automation name for 51 bit in bit flip 50º Sub-string used in automation name for 50 bit in bit flip 49º Sub-string used in automation name for 49 bit in bit flip 48º Sub-string used in automation name for 48 bit in bit flip 47º Sub-string used in automation name for 47 bit in bit flip 46º Sub-string used in automation name for 46 bit in bit flip 45º Sub-string used in automation name for 45 bit in bit flip 44º Sub-string used in automation name for 44 bit in bit flip 43º Sub-string used in automation name for 43 bit in bit flip 42º Sub-string used in automation name for 42 bit in bit flip 41º Sub-string used in automation name for 41 bit in bit flip 40º Sub-string used in automation name for 40 bit in bit flip 39º Sub-string used in automation name for 39 bit in bit flip 38º Sub-string used in automation name for 38 bit in bit flip 37º Sub-string used in automation name for 37 bit in bit flip 36º Sub-string used in automation name for 36 bit in bit flip 35º Sub-string used in automation name for 35 bit in bit flip 34º Sub-string used in automation name for 34 bit in bit flip 33º Sub-string used in automation name for 33 bit in bit flip 32º Sub-string used in automation name for 32 bit in bit flip 31º Sub-string used in automation name for 31 bit in bit flip 30º Sub-string used in automation name for 30 bit in bit flip 29º Sub-string used in automation name for 29 bit in bit flip 28º Sub-string used in automation name for 28 bit in bit flip 27º Sub-string used in automation name for 27 bit in bit flip 26º Sub-string used in automation name for 26 bit in bit flip 25º Sub-string used in automation name for 25 bit in bit flip 24º Sub-string used in automation name for 24 bit in bit flip 23º Sub-string used in automation name for 23 bit in bit flip 22º Sub-string used in automation name for 22 bit in bit flip 21º Sub-string used in automation name for 21 bit in bit flip 20º Sub-string used in automation name for 20 bit in bit flip 19º Sub-string used in automation name for 19 bit in bit flip 18º Sub-string used in automation name for 18 bit in bit flip 17º Sub-string used in automation name for 17 bit in bit flip 16º Sub-string used in automation name for 16 bit in bit flip 15º Sub-string used in automation name for 15 bit in bit flip 14º Sub-string used in automation name for 14 bit in bit flip 13º Sub-string used in automation name for 13 bit in bit flip 12º Sub-string used in automation name for 12 bit in bit flip 11º Sub-string used in automation name for 11 bit in bit flip 10º Sub-string used in automation name for 10 bit in bit flip Sub-string used in automation name for 9 bit in bit flip Sub-string used in automation name for 8 bit in bit flip Sub-string used in automation name for 7 bit in bit flip Sub-string used in automation name for 6 bit in bit flip Sub-string used in automation name for 5 bit in bit flip Sub-string used in automation name for 4 bit in bit flip Sub-string used in automation name for 3 bit in bit flip Sub-string used in automation name for 2 bit in bit flip Sub-string used in automation name for 1 bit in bit flip bit menos significativo Used to describe the first bit of a binary number. Used in bit flip Abrir control flotante de memoria This is the automation name and label for the memory button when the memory flyout is closed. Cerrar control flotante de memoria This is the automation name and label for the memory button when the memory flyout is open. Mantener en la parte superior This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Volver a la vista completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Historial (Ctrl+H) This is the tool tip automation name for the history button. Teclado numérico de alternancia de bits This is the tool tip automation name for the bitFlip button. Teclado numérico completo This is the tool tip automation name for the numberPad button. Borrar toda la memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historial The text that shows as the header for the history list Historial The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertidor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Estándar Label for a control that activates standard mode calculator layout. Modo Convertidor Screen reader prompt for a control that activates the unit converter mode. Modo científico Screen reader prompt for a control that activates scientific mode calculator layout Modo estándar Screen reader prompt for a control that activates standard mode calculator layout. Borrar todo el historial "ClearHistory" used on the calculator history pane that stores the calculation history. Borrar todo el historial This is the tool tip automation name for the Clear History button. Ocultar "HideHistory" used on the calculator history pane that stores the calculation history. Estándar The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertidor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Convertidor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Convertidores Pluralized version of the converter group text, used for the screen reader prompt. Calculadoras Pluralized version of the calculator group text, used for the screen reader prompt. La pantalla muestra %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". La expresión es %1, la entrada actual es %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". La pantalla muestra %1 coma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. La expresión es %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Mostrar el valor que se copió en el portapapeles Screen reader prompt for the Calculator display copy button, when the button is invoked. Historial Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binario %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Borrar todo el historial Screen reader prompt for the Calculator History Clear button Se ha borrado el historial Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ocultar historial Screen reader prompt for the Calculator History Hide button Abrir control flotante de historial Screen reader prompt for the Calculator History button, when the flyout is closed. Cerrar control flotante del historial Screen reader prompt for the Calculator History button, when the flyout is open. Almacén de memoria Screen reader prompt for the Calculator Memory button Almacenar memoria (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Borrar toda la memoria Screen reader prompt for the Calculator Clear Memory button Se ha borrado la memoria Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Recuperar memoria Screen reader prompt for the Calculator Memory Recall button Recuperar memoria (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Sumar memoria Screen reader prompt for the Calculator Memory Add button Sumar memoria (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Restar memoria Screen reader prompt for the Calculator Memory Subtract button Restar memoria (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Borrar elemento de memoria Screen reader prompt for the Calculator Clear Memory button Borrar elemento de memoria This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Sumar al elemento de memoria Screen reader prompt for the Calculator Memory Add button in the Memory list Sumar al elemento de memoria This is the tool tip automation name for the Calculator Memory Add button in the Memory list Restar al elemento de memoria Screen reader prompt for the Calculator Memory Subtract button in the Memory list Restar al elemento de memoria This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Borrar elemento de memoria Screen reader prompt for the Calculator Clear Memory button Borrar elemento de memoria Text string for the Calculator Clear Memory option in the Memory list context menu Sumar al elemento de memoria Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Sumar al elemento de memoria Text string for the Calculator Memory Add option in the Memory list context menu Restar al elemento de memoria Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Restar al elemento de memoria Text string for the Calculator Memory Subtract option in the Memory list context menu Eliminar Text string for the Calculator Delete swipe button in the History list Copiar Text string for the Calculator Copy option in the History list context menu Eliminar Text string for the Calculator Delete option in the History list context menu Eliminar elemento de historial Screen reader prompt for the Calculator Delete swipe button in the History list Eliminar elemento de historial Screen reader prompt for the Calculator Delete option in the History list context menu Retroceso Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Cero Screen reader prompt for the Calculator number "0" button Uno Screen reader prompt for the Calculator number "1" button Dos Screen reader prompt for the Calculator number "2" button Tres Screen reader prompt for the Calculator number "3" button Cuatro Screen reader prompt for the Calculator number "4" button Cinco Screen reader prompt for the Calculator number "5" button Seis Screen reader prompt for the Calculator number "6" button Siete Screen reader prompt for the Calculator number "7" button Ocho Screen reader prompt for the Calculator number "8" button Nueve Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Y Screen reader prompt for the Calculator And button O Screen reader prompt for the Calculator Or button No Screen reader prompt for the Calculator Not button Girar a la izquierda Screen reader prompt for the Calculator ROL button Girar a la derecha Screen reader prompt for the Calculator ROR button Mayús izquierda Screen reader prompt for the Calculator LSH button Mayús derecha Screen reader prompt for the Calculator RSH button O exclusivo Screen reader prompt for the Calculator XOR button Alternar palabra cuádruple Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Alternar doble palabra Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Alternar palabra Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Alternar bytes Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclado numérico de alternancia de bits Screen reader prompt for the Calculator bitFlip button Teclado numérico completo Screen reader prompt for the Calculator numberPad button Separador decimal Screen reader prompt for the "." button Borrar entrada Screen reader prompt for the "CE" button Borrar Screen reader prompt for the "C" button Dividir por Screen reader prompt for the divide button on the number pad Multiplicar por Screen reader prompt for the multiply button on the number pad Es igual a Screen reader prompt for the equals button on the scientific operator keypad Función inversa Screen reader prompt for the shift button on the number pad in scientific mode. Menos Screen reader prompt for the minus button on the number pad Menos We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Más Screen reader prompt for the plus button on the number pad Raíz cuadrada Screen reader prompt for the square root button on the scientific operator keypad Porcentaje Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Recíproco Screen reader prompt for the invert button on the scientific operator keypad Paréntesis de apertura Screen reader prompt for the Calculator "(" button on the scientific operator keypad Paréntesis de apertura, número de paréntesis abiertos %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Paréntesis de cierre Screen reader prompt for the Calculator ")" button on the scientific operator keypad Número de paréntesis abiertos %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". No hay ningún paréntesis abierto para cerrar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notación científica Screen reader prompt for the Calculator F-E the scientific operator keypad Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Coseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno hiperbólico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Coseno hiperbólico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hiperbólica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Cuadrado Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arcoseno Screen reader prompt for the inverted sin on the scientific operator keypad. Arcocoseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arcotangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arcoseno hiperbólico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arcocoseno hiperbólico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arcotangente hiperbólico Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' elevado al exponente Screen reader prompt for x power y button on the scientific operator keypad. Diez elevado al exponente Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' elevado al exponente Screen reader for the e power x on the scientific operator keypad. 'y' raíz de 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmo Screen reader for the log base 10 on the scientific operator keypad Logaritmo natural Screen reader for the log base e on the scientific operator keypad Módulo Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grado minuto segundo Screen reader for the exp button on the scientific operator keypad Grados Screen reader for the exp button on the scientific operator keypad Parte entera Screen reader for the int button on the scientific operator keypad Parte fraccionaria Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Alternar grados This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Alternar gradianes This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Alternar radianes This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista desplegable de modos Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista desplegable de categorías Screen reader prompt for the Categories dropdown field. Mantener en la parte superior Screen reader prompt for the Always-on-Top button when in normal mode. Volver a la vista completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mantener en la parte superior (Alt+Flecha arriba) This is the tool tip automation name for the Always-on-Top button when in normal mode. Volver a la vista completa (Alt+Flecha abajo) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convertir de %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convertir de %1 coma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Se convierte en %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 es %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unidad de entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unidad de salida Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Área Unit conversion category name called Area (eg. area of a sports field in square meters) Datos Unit conversion category name called Data Energía Unit conversion category name called Energy. (eg. the energy in a battery or in food) Longitud Unit conversion category name called Length Potencia Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocidad Unit conversion category name called Speed Tiempo Unit conversion category name called Time Volumen Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso y masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Presión Unit conversion category name called Pressure Ángulo Unit conversion category name called Angle Moneda Unit conversion category name called Currency Onzas fluidas (R. U.) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (R. U.) An abbreviation for a measurement unit of volume Onzas fluidas (EE. UU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EE. UU.) An abbreviation for a measurement unit of volume Galones (R. U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (R. U.) An abbreviation for a measurement unit of volume Galones (EE. UU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EE. UU.) An abbreviation for a measurement unit of volume Litros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintas (R. U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (R. U.) An abbreviation for a measurement unit of volume Pintas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EE. UU.) An abbreviation for a measurement unit of volume Cucharadas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (cucharada) (EE. UU.) An abbreviation for a measurement unit of volume Cucharaditas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (cucharadita) (EE. UU.) An abbreviation for a measurement unit of volume Cucharadas (R. U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (cucharada) (R. U.) An abbreviation for a measurement unit of volume Cucharaditas (R. U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (cucharadita) (R. U.) An abbreviation for a measurement unit of volume Cuartos de galón (R. U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (R. U.) An abbreviation for a measurement unit of volume Cuartos de galón (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EE. UU.) An abbreviation for a measurement unit of volume Tazas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (taza) (EE. UU.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/minuto An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy GB An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (EE. UU.) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas británicas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías térmicas A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Días A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electronvoltios A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras pie A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras pie/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectáreas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Caballos de fuerza (EE. UU.) A measurement unit for power Horas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Julios A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte-horas A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías alimentarias A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojulios A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatios A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nudos A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micrones A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cuarteto A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas náuticas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vatios A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semanas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Años A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight grados An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gradianes An abbreviation for a measurement unit of Angle at. An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonelada (R. U.) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonelada (EE. UU.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quilates A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grados A measurement unit for Angle. Radianes A measurement unit for Angle. Gradianes A measurement unit for Angle. Atmósferas A measurement unit for Pressure. Bares A measurement unit for Pressure. Kilopascales A measurement unit for Pressure. Milímetros de mercurio A measurement unit for Pressure. Pascales A measurement unit for Pressure. Libras por pulgada cuadrada (PSI) A measurement unit for Pressure. Centigramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagramos A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas largas (R. U.) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onzas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas cortas (EE. UU.) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas métricas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) discos A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) discos A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviones a reacción Jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviones a reacción Jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bombillas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bombillas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) caballos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) caballos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copos de nieve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copos de nieve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviones a reacción A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviones a reacción A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballenas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballenas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) manos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) manos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hojas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hojas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castillos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castillos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plátanos A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plátanos A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trozos de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trozos de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) motores de tren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) motores de tren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balones de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balones de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elemento de memoria Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atrás Screen reader prompt for the About panel back button Atrás Content of tooltip being displayed on AboutControlBackButton Términos de licencia del software de Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Vista previa Label displayed next to upcoming features Declaración de privacidad de Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Todos los derechos reservados. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para saber cómo puede contribuir a la calculadora de Windows, consulte el proyecto en %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Acerca de Subtitle of about message on Settings page Enviar comentarios The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app No hay historial todavía. The text that shows as the header for the history list No hay nada guardado en la memoria. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad La expresión no se puede pegar. The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cálculo de fecha Modo de cálculo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Sumar Add toggle button text Sumar o restar días Add or Subtract days option Fecha Date result label Diferencia entre días Date difference option Días Add/Subtract Days label Diferencia Difference result label Desde From Date Header for Difference Date Picker Meses Add/Subtract Months label Restar Subtract toggle button text Hasta To Date Header for Difference Date Picker Años Add/Subtract Years label Fecha fuera del límite Out of bound message shown as result when the date calculation exceeds the bounds día días mes meses Mismas fechas semana semanas año años Diferencia %1 Automation name for reading out the date difference. %1 = Date difference Fecha resultante %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modo calculadora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modo de convertidor %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modo de cálculo de fecha Automation name for when the mode header is focused and the current mode is Date calculation. Historial y listas de memoria Automation name for the group of controls for history and memory lists. Controles de memoria Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funciones estándar Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controles de pantalla Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadores estándar Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclado numérico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadores de ángulos Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funciones científicas Automation name for the group of Scientific functions. Selección de base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadores de programadores Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selección del modo de entrada Automation name for the group of input mode toggling buttons. Teclado numérico para la alternancia de bits Automation name for the group of bit toggling buttons. Desplazar expresión a la izquierda Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Desplazar expresión a la derecha Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Se ha alcanzado el número máximo de dígitos. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Se guardó en la memoria: %1 {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". La ranura de memoria %1 es %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Se ha borrado la ranura de memoria %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividido por Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. veces Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menos Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. más Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. a la potencia de Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y raíz Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. mayús izquierda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. mayús derecha Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. o Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x o Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. y Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Actualizado el %1 a las %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Actualizar tipos The text displayed for a hyperlink button that refreshes currency converter ratios. Pueden aplicarse cargos de datos. The text displayed when users are on a metered connection and using currency converter. No se pudieron obtener nuevos tipos. Inténtalo de nuevo más tarde. The text displayed when currency ratio data fails to load. Sin conexión. Compruebe su%HL%Configuración de red%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Actualizando las divisas This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Se actualizaron las divisas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. No se pudieron actualizar las divisas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Borrar toda la memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Borrar toda la memoria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} grados de seno Name for the sine function in degrees mode. Used by screen readers. radianes de seno Name for the sine function in radians mode. Used by screen readers. gradianes de seno Name for the sine function in gradians mode. Used by screen readers. grados de seno inverso Name for the inverse sine function in degrees mode. Used by screen readers. radianes de seno inverso Name for the inverse sine function in radians mode. Used by screen readers. gradianes de seno inverso Name for the inverse sine function in gradians mode. Used by screen readers. seno hiperbólico Name for the hyperbolic sine function. Used by screen readers. seno hiperbólico inverso Name for the inverse hyperbolic sine function. Used by screen readers. grados de coseno Name for the cosine function in degrees mode. Used by screen readers. radianes de coseno Name for the cosine function in radians mode. Used by screen readers. gradianes de coseno Name for the cosine function in gradians mode. Used by screen readers. grados de coseno inverso Name for the inverse cosine function in degrees mode. Used by screen readers. radianes de coseno inverso Name for the inverse cosine function in radians mode. Used by screen readers. gradianes de coseno inverso Name for the inverse cosine function in gradians mode. Used by screen readers. coseno hiperbólico Name for the hyperbolic cosine function. Used by screen readers. coseno hiperbólico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. grados de tangente Name for the tangent function in degrees mode. Used by screen readers. radianes de tangente Name for the tangent function in radians mode. Used by screen readers. gradianes de tangente Name for the tangent function in gradians mode. Used by screen readers. grados de tangente inversa Name for the inverse tangent function in degrees mode. Used by screen readers. radianes de tangente inversa Name for the inverse tangent function in radians mode. Used by screen readers. gradianes de tangente inversa Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hiperbólica Name for the hyperbolic tangent function. Used by screen readers. tangente hiperbólica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. grados de secante Name for the secant function in degrees mode. Used by screen readers. radianes de secante Name for the secant function in radians mode. Used by screen readers. gradianes de secante Name for the secant function in gradians mode. Used by screen readers. grados de secante inversa Name for the inverse secant function in degrees mode. Used by screen readers. radianes de secante inversa Name for the inverse secant function in radians mode. Used by screen readers. gradianes de secante inversa Name for the inverse secant function in gradians mode. Used by screen readers. secante hiperbólica Name for the hyperbolic secant function. Used by screen readers. secante hiperbólica inversa Name for the inverse hyperbolic secant function. Used by screen readers. grados de cosecante Name for the cosecant function in degrees mode. Used by screen readers. radianes de cosecante Name for the cosecant function in radians mode. Used by screen readers. gradianes de cosecante Name for the cosecant function in gradians mode. Used by screen readers. grados de cosecante inversa Name for the inverse cosecant function in degrees mode. Used by screen readers. radianes de cosecante inversa Name for the inverse cosecant function in radians mode. Used by screen readers. gradianes de cosecante inversa Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecante hiperbólica Name for the hyperbolic cosecant function. Used by screen readers. cosecante hiperbólica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. grados de cotangente Name for the cotangent function in degrees mode. Used by screen readers. Radianes de cotangente Name for the cotangent function in radians mode. Used by screen readers. gradianes de cotangente Name for the cotangent function in gradians mode. Used by screen readers. grados de cotangente inversa Name for the inverse cotangent function in degrees mode. Used by screen readers. radianes de cotangente inversa Name for the inverse cotangent function in radians mode. Used by screen readers. gradianes de cotangente inversa Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hiperbólica Name for the hyperbolic cotangent function. Used by screen readers. cotangente hiperbólica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Raíz cúbica Name for the cube root function. Used by screen readers. Logaritmo en base Name for the logbasey function. Used by screen readers. Valor absoluto Name for the absolute value function. Used by screen readers. mayús izquierda Name for the programmer function that shifts bits to the left. Used by screen readers. desplazamiento a la derecha Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. grado minuto segundo Name for the degree minute second (dms) function. Used by screen readers. registro natural Name for the natural log (ln) function. Used by screen readers. cuadrado Name for the square function. Used by screen readers. y raíz Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoría de %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrato de servicios de Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Desde From Date Header for AddSubtract Date Picker Desplazar el resultado del cálculo hacia la izquierda Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Desplazar el resultado del cálculo hacia la derecha Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Error de cálculo Text displayed when the application is not able to do a calculation Base log Y Screen reader prompt for the logBaseY button Trigonometría Displayed on the button that contains a flyout for the trig functions in scientific mode. Función Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualdades Displayed on the button that contains a flyout for the inequality functions. Desigualdades Screen reader prompt for the Inequalities button Bit a bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Desplazamiento de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Función inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante hiperbólica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Secante de arco Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Secante de arco hiperbólico Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecante hiperbólica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Cosecante de arco Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cosecante de arco hiperbólico Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hiperbólica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arco cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Cotangente de arco hiperbólico Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Suelo Screen reader prompt for the Calculator button floor in the scientific flyout keypad Techo Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatorio Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número de Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dos elevado al exponente Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Girar a la izquierda con acarreo Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Girar a la derecha con acarreo Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Desplazar a la izquierda Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Mayús izquierda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplazar a la derecha Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Mayús derecha Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplazamiento aritmético Label for a radio button that toggles arithmetic shift behavior for the shift operations. Desplazamiento lógico Label for a radio button that toggles logical shift behavior for the shift operations. Girar desplazamiento circular Label for a radio button that toggles rotate circular behavior for the shift operations. Girar con desplazamiento circular de acarreo Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Raíz cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometría Screen reader prompt for the square root button on the scientific operator keypad Funciones Screen reader prompt for the square root button on the scientific operator keypad Bit a bit Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Paneles de operadores científicos Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Paneles de operadores de programadores Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit más significativo Used to describe the last bit of a binary number. Used in bit flip Gráfica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Trazado Screen reader prompt for the plot button on the graphing calculator operator keypad Actualizar la vista automáticamente (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Vista de gráficos Screen reader prompt for the graph view button. Mejor ajuste automático Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajuste manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set La vista gráfico se ha restablecido Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Acercar (Ctrl + signo más) This is the tool tip automation name for the Calculator zoom in button. Acercar Screen reader prompt for the zoom in button. Alejar (Ctrl + signo menos) This is the tool tip automation name for the Calculator zoom out button. Alejar Screen reader prompt for the zoom out button. Sumar ecuación Placeholder text for the equation input button No se puede compartir en este momento. If there is an error in the sharing action will display a dialog with this text. Aceptar Used on the dismiss button of the share action error dialog. Mira los gráficos que he hecho con la Calculadora de Windows Sent as part of the shared content. The title for the share. Ecuaciones Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Imagen de un gráfico con ecuaciones Alt text for the graph image when output via Share Variables Header text for variables area Paso Label text for the step text box Mín. Label text for the min text box Máx. Label text for the max text box Color Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Análisis de función Title for KeyGraphFeatures Control La función no tiene ninguna asíntota horizontal. Message displayed when the graph does not have any horizontal asymptotes La función no tiene ningún punto de inflexión. Message displayed when the graph does not have any inflection points La función no tiene ningún máximo. Message displayed when the graph does not have any maxima La función no tiene ningún mínimo. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Decreciente String describing decreasing monotonicity of a function No se puede determinar la monotonía de la función. Error displayed when monotonicity cannot be determined Creciente String describing increasing monotonicity of a function Se desconoce la monotonía de la función. Error displayed when monotonicity is unknown La función no tiene ninguna asíntota oblicua. Message displayed when the graph does not have any oblique asymptotes No se puede determinar la paridad de la función. Error displayed when parity is cannot be determined La función es par. Message displayed with the function parity is even La función no es ni par ni impar. Message displayed with the function parity is neither even nor odd La función es impar. Message displayed with the function parity is odd Se desconoce la paridad de la función. Error displayed when parity is unknown La periodicidad no es compatible en esta función. Error displayed when periodicity is not supported La función no es periódica. Message displayed with the function periodicity is not periodic Se desconoce la periodicidad de la función. Message displayed with the function periodicity is unknown Estas características son demasiado complejas para que la Calculadora las calcule: Error displayed when analysis features cannot be calculated La función no tiene ninguna asíntota vertical. Message displayed when the graph does not have any vertical asymptotes La función no tiene ninguna intersección x. Message displayed when the graph does not have any x-intercepts La función no tiene ninguna intercepción y. Message displayed when the graph does not have any y-intercepts Dominio Title for KeyGraphFeatures Domain Property Asíntotas horizontales Title for KeyGraphFeatures Horizontal aysmptotes Property Puntos de inflexión Title for KeyGraphFeatures Inflection points Property Los análisis no son compatibles en esta función. Error displayed when graph analysis is not supported or had an error. El análisis solo se admite para las funciones con el formato f(x). Ejemplo: y=x Error displayed when graph analysis detects the function format is not f(x). Máxima Title for KeyGraphFeatures Maxima Property Mínima Title for KeyGraphFeatures Minima Property Función monótona Title for KeyGraphFeatures Monotonicity Property Asíntotas oblicuas Title for KeyGraphFeatures Oblique asymptotes Property Paridad Title for KeyGraphFeatures Parity Property Ciclo Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervalo Title for KeyGraphFeatures Range Property Asíntotas verticales Title for KeyGraphFeatures Vertical asymptotes Property Intersección X Title for KeyGraphFeatures XIntercept Property Intersección Y Title for KeyGraphFeatures YIntercept Property No se pudo realizar el análisis de la función. No se puede calcular el dominio de esta función. Error displayed when Domain is not returned from the analyzer. No se puede calcular el intervalo para esta función. Error displayed when Range is not returned from the analyzer. Desbordamiento (el número es demasiado grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Se necesita el modo radianes para representar gráficamente esta ecuación. Error that occurs during graphing when radians is required. Esta función es demasiado complicada para representarla gráficamente Error that occurs during graphing when the equation is too complex. Se necesita el modo de grados para representar gráficamente esta función Error that occurs during graphing when degrees is required La función factorial tiene un argumento no válido Error that occurs during graphing when a factorial function has an invalid argument. La función factorial tiene un argumento que es demasiado grande para el gráfico Error that occurs during graphing when a factorial has a large n El módulo solo se puede usar con números enteros Error that occurs during graphing when modulo is used with a float. La ecuación no tiene solución Error that occurs during graphing when the equation has no solution. No se puede dividir entre cero Error that occurs during graphing when a divison by zero occurs. La ecuación contiene condiciones lógicas que se excluyen mutuamente Error that occurs during graphing when mutually exclusive conditions are used. La ecuación está fuera del dominio Error that occurs during graphing when the equation is out of domain. No se puede realizar la gráfica de esta ecuación Error that occurs during graphing when the equation is not supported. Falta un paréntesis de apertura en la ecuación Error that occurs during graphing when the equation is missing a ( Falta un paréntesis de cierre en la ecuación Error that occurs during graphing when the equation is missing a ) Hay demasiados separadores decimales en un número Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Faltan dígitos en un separador decimal Error that occurs during graphing with a decimal point without digits Final inesperado de la expresión Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Caracteres inesperados en la expresión Error that occurs during graphing when there is an unexpected token. Los caracteres en la expresión no son válidos Error that occurs during graphing when there is an invalid token. Hay demasiados signos "igual" Error that occurs during graphing when there are too many equals. La función debe contener al menos una variable x o y. Error that occurs during graphing when the equation is missing x or y. Expresión no válida Error that occurs during graphing when an invalid syntax is used. La expresión está vacía Error that occurs during graphing when the expression is empty Se utilizó Igual sin una ecuación Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Faltan un paréntesis después del nombre de función Error that occurs during graphing when parenthesis are missing after a function. Una operación matemática tiene un número incorrecto de parámetros Error that occurs during graphing when a function has the wrong number of parameters Un nombre de variable no es válido Error that occurs during graphing when a variable name is invalid. Falta un corchete de apertura en la ecuación Error that occurs during graphing when a { is missing Falta un corchete de cierre en la ecuación Error that occurs during graphing when a } is missing. "yo" y "Yo" no se pueden usar como nombres de variables Error that occurs during graphing when i or I is used. No se pudo representar gráficamente la ecuación General error that occurs during graphing. No se pudo resolver el dígito para la base especificada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base debe ser mayor que 2 y menor que 36 Error that occurs during graphing when the base is out of range. Una operación matemática requiere que uno de los parámetros sea una variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. La ecuación está mezclado operandos escalares y lógicos Error that occurs during graphing when operands are mixed. Such as true and 1. x o y no se pueden usar en los límites superior o inferior Error that occurs during graphing when x or y is used in integral upper limits. no se puede usar x o y en el punto límite Error that occurs during graphing when x or y is used in the limit point. No se puede usar infinito complejo Error that occurs during graphing when complex infinity is used No se pueden usar números complejos en desigualdades Error that occurs during graphing when complex numbers are used in inequalities. Volver a la lista de funciones This is the tooltip for the back button in the equation analysis page in the graphing calculator Volver a la lista de funciones This is the automation name for the back button in the equation analysis page in the graphing calculator Analizar función This is the tooltip for the analyze function button Analizar función This is the automation name for the analyze function button Analizar función This is the text for the for the analyze function context menu command Quitar ecuación This is the tooltip for the graphing calculator remove equation buttons Quitar ecuación This is the automation name for the graphing calculator remove equation buttons Quitar ecuación This is the text for the for the remove equation context menu command Compartir This is the automation name for the graphing calculator share button. Compartir This is the tooltip for the graphing calculator share button. Cambiar estilo de ecuación This is the tooltip for the graphing calculator equation style button Cambiar estilo de ecuación This is the automation name for the graphing calculator equation style button Cambiar estilo de ecuación This is the text for the for the equation style context menu command Mostrar ecuación This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ocultar ecuación This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostrar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ocultar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Detener seguimiento This is the tooltip/automation name for the graphing calculator stop tracing button Iniciar seguimiento This is the tooltip/automation name for the graphing calculator start tracing button Ventana de visualización de gráficos, eje x delimitado por %1 y %2, eje y limitado por %3 y %4, mostrando %5 ecuaciones {Locked="%1","%2", "%3", "%4", "%5"}. Configurar control deslizante This is the tooltip text for the slider options button in Graphing Calculator Configurar control deslizante This is the automation name text for the slider options button in Graphing Calculator Cambiar al modo de ecuación Used in Graphing Calculator to switch the view to the equation mode Cambiar al modo de gráfico Used in Graphing Calculator to switch the view to the graph mode Cambiar al modo de ecuación Used in Graphing Calculator to switch the view to the equation mode El modo actual es el modo de ecuación Announcement used in Graphing Calculator when switching to the equation mode El modo actual es el modo de gráfico Announcement used in Graphing Calculator when switching to the graph mode Ventana Heading for window extents on the settings Grados Degrees mode on settings page Gradianes Gradian mode on settings page Radianes Radians mode on settings page Unidades Heading for Unit's on the settings Restablecer vista Hyperlink button to reset the view of the graph X-máx. X maximum value header X-mín. X minimum value header Y-máx. Y Maximum value header Y-mín. Y minimum value header Opciones de gráfico This is the tooltip text for the graph options button in Graphing Calculator Opciones de gráfico This is the automation name text for the graph options button in Graphing Calculator Opciones de gráfico Heading for the Graph options flyout in Graphing mode. Opciones de variable Screen reader prompt for the variable settings toggle button Alternar opciones de variable Tool tip for the variable settings toggle button Grosor de línea Heading for the Graph options flyout in Graphing mode. Opciones de línea Heading for the equation style flyout in Graphing mode. Ancho de línea pequeño Automation name for line width setting Ancho de línea medio Automation name for line width setting Ancho de línea grande Automation name for line width setting Ancho de línea muy grande Automation name for line width setting Escribir una expresión this is the placeholder text used by the textbox to enter an equation Copiar Copy menu item for the graph context menu Cortar Cut menu item from the Equation TextBox Copiar Copy menu item from the Equation TextBox Pegar Paste menu item from the Equation TextBox Deshacer Undo menu item from the Equation TextBox Seleccionar todo Select all menu item from the Equation TextBox Entrada de funciones The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada de funciones The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel de entrada de funciones The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel variable The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista variable The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Elemento de lista de variable %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Cuadro de texto de valor de variable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Control deslizante de valor de variable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Cuadro de texto de valor mínimo de variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Cuadro de texto de valor de paso de variable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Cuadro de texto de valor máximo de variable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estilo de línea sólida Name of the solid line style for a graphed equation Estilo de línea de puntos Name of the dotted line style for a graphed equation Estilo de línea de guiones Name of the dashed line style for a graphed equation Azul marino Name of color in the color picker Verde agua Name of color in the color picker Violeta Name of color in the color picker Verde Name of color in the color picker Verde menta Name of color in the color picker Verde oscuro Name of color in the color picker Gris marengo Name of color in the color picker Rojo Name of color in the color picker Ciruela claro Name of color in the color picker Magenta Name of color in the color picker Amarillo dorado Name of color in the color picker Naranja intenso Name of color in the color picker Marrón Name of color in the color picker Negro Name of color in the color picker Blanco Name of color in the color picker Color 1 Name of color in the color picker Color 2 Name of color in the color picker Color 3 Name of color in the color picker Color 4 Name of color in the color picker Tema de Graph Graph settings heading for the theme options Siempre claro Graph settings option to set graph to light theme Hacer coincidir el tema de la aplicación Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Siempre claro This is the automation name text for the Graph settings option to set graph to light theme Hacer coincidir el tema de la aplicación This is the automation name text for the Graph settings option to set graph to match the app theme Función quitada Announcement used in Graphing Calculator when a function is removed from the function list Cuadro de ecuación de análisis de funciones This is the automation name text for the equation box in the function analysis panel Es igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menor que Screen reader prompt for the Less than button Menor o igual que Screen reader prompt for the Less than or equal button Igual que Screen reader prompt for the Equal button Mayor o igual que Screen reader prompt for the Greater than or equal button Mayor que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Enviar Screen reader prompt for the submit button on the graphing calculator operator keypad Análisis de función Screen reader prompt for the function analysis grid Opciones de gráfico Screen reader prompt for the graph options panel Historial y listas de memoria Automation name for the group of controls for history and memory lists. Lista de memoria Automation name for the group of controls for memory list. Se ha borrado la ranura de memoria %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculadora siempre en la parte superior Announcement to indicate calculator window is always shown on top. Calculadora vuelta a vista completa Announcement to indicate calculator window is now back to full view. Giro aritmético seleccionado Label for a radio button that toggles arithmetic shift behavior for the shift operations. Giro lógico seleccionado Label for a radio button that toggles logical shift behavior for the shift operations. Girar desplazamiento circular seleccionado Label for a radio button that toggles rotate circular behavior for the shift operations. Girar con desplazamiento circular de acarreo seleccionado Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Configuración Header text of Settings page Apariencia Subtitle of appearance setting on Settings page Tema de la aplicación Title of App theme expander Seleccionar el tema de la aplicación que se va a mostrar Description of App theme expander Claro Lable for light theme option Oscuro Lable for dark theme option Usar la configuración del sistema Lable for the app theme option to use system setting Atrás Screen reader prompt for the Back button in title bar to back to main page Página de configuración Announcement used when Settings page is opened Abrir el menú contextual para ver las acciones disponibles Screen reader prompt for the context menu of the expression box Aceptar The text of OK button to dismiss an error dialog. No se pudo restaurar esta instantánea. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/es-MX/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrada no válida Error message shown when the input makes a function fail, like log(-1) Resultado indefinido Error message shown when there's no possible value for a function. Memoria insuficiente Error message shown when we run out of memory during a calculation. Desbordamiento Error message shown when there's an overflow during the calculation. Resultado no definido Same as 101 Resultado no definido Same 101 Desbordamiento Same as 107 Desbordamiento Same 107 No se puede dividir entre cero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/es-MX/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora de Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora de Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiar Copy context menu string Pegar Paste context menu string Casi igual a The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63.er Sub-string used in automation name for 63 bit in bit flip 62.º Sub-string used in automation name for 62 bit in bit flip 61.er Sub-string used in automation name for 61 bit in bit flip 60.º Sub-string used in automation name for 60 bit in bit flip 59.º Sub-string used in automation name for 59 bit in bit flip 58.º Sub-string used in automation name for 58 bit in bit flip 57.º Sub-string used in automation name for 57 bit in bit flip 56.º Sub-string used in automation name for 56 bit in bit flip 55.º Sub-string used in automation name for 55 bit in bit flip 54.º Sub-string used in automation name for 54 bit in bit flip 53.er Sub-string used in automation name for 53 bit in bit flip 52.º Sub-string used in automation name for 52 bit in bit flip 51.er Sub-string used in automation name for 51 bit in bit flip 50.º Sub-string used in automation name for 50 bit in bit flip 49.º Sub-string used in automation name for 49 bit in bit flip 48.º Sub-string used in automation name for 48 bit in bit flip 47.º Sub-string used in automation name for 47 bit in bit flip 46.º Sub-string used in automation name for 46 bit in bit flip 45.º Sub-string used in automation name for 45 bit in bit flip 44.º Sub-string used in automation name for 44 bit in bit flip 43.er Sub-string used in automation name for 43 bit in bit flip 42.º Sub-string used in automation name for 42 bit in bit flip 41.er Sub-string used in automation name for 41 bit in bit flip 40.º Sub-string used in automation name for 40 bit in bit flip 39.º Sub-string used in automation name for 39 bit in bit flip 38.º Sub-string used in automation name for 38 bit in bit flip 37.º Sub-string used in automation name for 37 bit in bit flip 36.º Sub-string used in automation name for 36 bit in bit flip 35.º Sub-string used in automation name for 35 bit in bit flip 34.º Sub-string used in automation name for 34 bit in bit flip 33.er Sub-string used in automation name for 33 bit in bit flip 32.º Sub-string used in automation name for 32 bit in bit flip 31.er Sub-string used in automation name for 31 bit in bit flip 30.º Sub-string used in automation name for 30 bit in bit flip 29.º Sub-string used in automation name for 29 bit in bit flip 28.º Sub-string used in automation name for 28 bit in bit flip 27.º Sub-string used in automation name for 27 bit in bit flip 26.º Sub-string used in automation name for 26 bit in bit flip 25.º Sub-string used in automation name for 25 bit in bit flip 24.º Sub-string used in automation name for 24 bit in bit flip 23.er Sub-string used in automation name for 23 bit in bit flip 22.º Sub-string used in automation name for 22 bit in bit flip 21.er Sub-string used in automation name for 21 bit in bit flip 20.º Sub-string used in automation name for 20 bit in bit flip 19.º Sub-string used in automation name for 19 bit in bit flip 18.º Sub-string used in automation name for 18 bit in bit flip 17.º Sub-string used in automation name for 17 bit in bit flip 16.º Sub-string used in automation name for 16 bit in bit flip 15.º Sub-string used in automation name for 15 bit in bit flip 14.º Sub-string used in automation name for 14 bit in bit flip 13.er Sub-string used in automation name for 13 bit in bit flip 12.º Sub-string used in automation name for 12 bit in bit flip 11.er Sub-string used in automation name for 11 bit in bit flip 10.º Sub-string used in automation name for 10 bit in bit flip 9.º Sub-string used in automation name for 9 bit in bit flip 8.º Sub-string used in automation name for 8 bit in bit flip 7.º Sub-string used in automation name for 7 bit in bit flip 6.º Sub-string used in automation name for 6 bit in bit flip 5.º Sub-string used in automation name for 5 bit in bit flip 4.º Sub-string used in automation name for 4 bit in bit flip 3.er Sub-string used in automation name for 3 bit in bit flip 2.º Sub-string used in automation name for 2 bit in bit flip 1.er Sub-string used in automation name for 1 bit in bit flip bit menos significativo Used to describe the first bit of a binary number. Used in bit flip Abrir control flotante de la memoria This is the automation name and label for the memory button when the memory flyout is closed. Cerrar control flotante de la memoria This is the automation name and label for the memory button when the memory flyout is open. Mantener visible This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Volver a vista completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Historial (Ctrl+H) This is the tool tip automation name for the history button. Teclado numérico de alternancia de bits This is the tool tip automation name for the bitFlip button. Teclado numérico completo This is the tool tip automation name for the numberPad button. Borrar toda la memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historial The text that shows as the header for the history list Historial The automation name for the History pivot item that is shown when Calculator is in wide layout. Conversor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Estándar Label for a control that activates standard mode calculator layout. Modo Convertidor Screen reader prompt for a control that activates the unit converter mode. Modo científico Screen reader prompt for a control that activates scientific mode calculator layout Modo estándar Screen reader prompt for a control that activates standard mode calculator layout. Borrar todo el historial "ClearHistory" used on the calculator history pane that stores the calculation history. Borrar todo el historial This is the tool tip automation name for the Clear History button. Ocultar "HideHistory" used on the calculator history pane that stores the calculation history. Estándar The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Conversor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Conversor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Convertidores Pluralized version of the converter group text, used for the screen reader prompt. Calculadoras Pluralized version of the calculator group text, used for the screen reader prompt. Se muestra %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". La expresión es %1, la entrada actual es %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". La pantalla muestra %1 coma. {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. La expresión es %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Mostrar el valor copiado al portapapeles Screen reader prompt for the Calculator display copy button, when the button is invoked. Historial Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binario %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Borrar todo el historial Screen reader prompt for the Calculator History Clear button Historial borrado Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ocultar historial Screen reader prompt for the Calculator History Hide button Abrir control flotante de historial Screen reader prompt for the Calculator History button, when the flyout is closed. Cerrar control flotante de historial Screen reader prompt for the Calculator History button, when the flyout is open. Almacén de la memoria Screen reader prompt for the Calculator Memory button Almacenar en la memoria (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Borrar toda la memoria Screen reader prompt for the Calculator Clear Memory button Memoria borrada Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Recuperar la memoria Screen reader prompt for the Calculator Memory Recall button Recuperar de la memoria (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Sumar memoria Screen reader prompt for the Calculator Memory Add button Sumar a la memoria (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Restar la memoria Screen reader prompt for the Calculator Memory Subtract button Restar de la memoria (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Borrar elemento de la memoria Screen reader prompt for the Calculator Clear Memory button Borrar elemento de la memoria This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Sumar a elemento en la memoria Screen reader prompt for the Calculator Memory Add button in the Memory list Sumar a elemento en la memoria This is the tool tip automation name for the Calculator Memory Add button in the Memory list Restar del elemento en la memoria Screen reader prompt for the Calculator Memory Subtract button in the Memory list Restar del elemento en la memoria This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Borrar elemento de la memoria Screen reader prompt for the Calculator Clear Memory button Borrar elemento de la memoria Text string for the Calculator Clear Memory option in the Memory list context menu Sumar a elemento en la memoria Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Sumar a elemento en la memoria Text string for the Calculator Memory Add option in the Memory list context menu Restar del elemento en la memoria Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Restar del elemento en la memoria Text string for the Calculator Memory Subtract option in the Memory list context menu Eliminar Text string for the Calculator Delete swipe button in the History list Copiar Text string for the Calculator Copy option in the History list context menu Eliminar Text string for the Calculator Delete option in the History list context menu Eliminar elemento del historial Screen reader prompt for the Calculator Delete swipe button in the History list Eliminar elemento del historial Screen reader prompt for the Calculator Delete option in the History list context menu Retroceso Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Cero Screen reader prompt for the Calculator number "0" button Uno Screen reader prompt for the Calculator number "1" button Dos Screen reader prompt for the Calculator number "2" button Tres Screen reader prompt for the Calculator number "3" button Cuatro Screen reader prompt for the Calculator number "4" button Cinco Screen reader prompt for the Calculator number "5" button Seis Screen reader prompt for the Calculator number "6" button Siete Screen reader prompt for the Calculator number "7" button Ocho Screen reader prompt for the Calculator number "8" button Nueve Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Y Screen reader prompt for the Calculator And button O Screen reader prompt for the Calculator Or button No Screen reader prompt for the Calculator Not button Girar a la izquierda Screen reader prompt for the Calculator ROL button Girar a la derecha Screen reader prompt for the Calculator ROR button Mayús izquierda Screen reader prompt for the Calculator LSH button Mayús derecha Screen reader prompt for the Calculator RSH button O exclusivo Screen reader prompt for the Calculator XOR button Alternar palabra cuádruple Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Alternar palabra doble Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Alternar palabra Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Alternar byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclado numérico de alternancia de bits Screen reader prompt for the Calculator bitFlip button Teclado numérico completo Screen reader prompt for the Calculator numberPad button Separador decimal Screen reader prompt for the "." button Quitar entrada Screen reader prompt for the "CE" button Borrar Screen reader prompt for the "C" button Dividido por Screen reader prompt for the divide button on the number pad Multiplicar por Screen reader prompt for the multiply button on the number pad Es igual a Screen reader prompt for the equals button on the scientific operator keypad Función inversa Screen reader prompt for the shift button on the number pad in scientific mode. Menos Screen reader prompt for the minus button on the number pad Menos We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Más Screen reader prompt for the plus button on the number pad Raíz cuadrada Screen reader prompt for the square root button on the scientific operator keypad Por ciento Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Recíproco Screen reader prompt for the invert button on the scientific operator keypad Paréntesis de apertura Screen reader prompt for the Calculator "(" button on the scientific operator keypad Abrir paréntesis, recuento de paréntesis abiertos %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Paréntesis de cierre Screen reader prompt for the Calculator ")" button on the scientific operator keypad Recuento de paréntesis de apertura: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". No hay ningún paréntesis de apertura para cerrar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notación científica Screen reader prompt for the Calculator F-E the scientific operator keypad Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Coseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno hiperbólico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Coseno hiperbólico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hiperbólica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Cuadrado Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arcoseno Screen reader prompt for the inverted sin on the scientific operator keypad. Arcocoseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arcotangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arcoseno hiperbólico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arcocoseno hiperbólico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arcotangente hiperbólica Screen reader prompt for the inverted tanh on the scientific operator keypad. Elevado a "X" Screen reader prompt for x power y button on the scientific operator keypad. Elevado a 10 Screen reader prompt for the 10 power x button on the scientific operator keypad. Elevado a "e" Screen reader for the e power x on the scientific operator keypad. raíz "Y" de "X" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmo Screen reader for the log base 10 on the scientific operator keypad Logaritmo natural Screen reader for the log base e on the scientific operator keypad Módulo Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grado minuto segundo Screen reader for the exp button on the scientific operator keypad Grados Screen reader for the exp button on the scientific operator keypad Parte entera Screen reader for the int button on the scientific operator keypad Parte fraccionaria Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Alternar grados This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Alternar gradientes This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Alternar radianes This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista desplegable de modos Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista desplegable de categorías Screen reader prompt for the Categories dropdown field. Mantener visible Screen reader prompt for the Always-on-Top button when in normal mode. Volver a vista completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mantener visible (Alt+Arriba) This is the tool tip automation name for the Always-on-Top button when in normal mode. Volver a la vista completa (Alt+Abajo) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convertir de %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convertir de %1 punto %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Convierte a %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 es %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unidad de entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unidad de salida Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Área Unit conversion category name called Area (eg. area of a sports field in square meters) Datos Unit conversion category name called Data Energía Unit conversion category name called Energy. (eg. the energy in a battery or in food) Longitud Unit conversion category name called Length Potencia Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocidad Unit conversion category name called Speed Tiempo Unit conversion category name called Time Volumen Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso y masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Presión Unit conversion category name called Pressure Ángulo Unit conversion category name called Angle Divisa Unit conversion category name called Currency Onzas líquidas (Reino Unido) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Reino Unido) An abbreviation for a measurement unit of volume Onzas líquidas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EE. UU.) An abbreviation for a measurement unit of volume Galones (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Reino Unido) An abbreviation for a measurement unit of volume Galones (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EE. UU.) An abbreviation for a measurement unit of volume Litros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Reino Unido) An abbreviation for a measurement unit of volume Pintas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EE. UU.) An abbreviation for a measurement unit of volume Cucharadas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cucharada (EE. UU.) An abbreviation for a measurement unit of volume Cucharaditas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cucharadita (Estados Unidos) An abbreviation for a measurement unit of volume Cucharadas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cucharada (Reino Unido) An abbreviation for a measurement unit of volume Cucharaditas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cucharadita (Reino Unido) An abbreviation for a measurement unit of volume Cuartos de galón (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cuarto de galón (Reino Unido) An abbreviation for a measurement unit of volume Cuartos de galón (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cuarto de galón (EE. UU.) An abbreviation for a measurement unit of volume Tazas (EE. UU.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) taza (EE. UU.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ca An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (EE. UU.) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length a. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas británicas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas británicas/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías termales A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Días A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electronvoltio A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pie-libras A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pie-libras/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectáreas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Caballos de fuerza (EE. UU.) A measurement unit for power Horas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte-horas A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías de alimentos A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojulios A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatios A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nudos A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micrones A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cuarteto A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas náuticas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pies cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgadas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilómetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros cuadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas cuadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vatios A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semanas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Años A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight ° An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle An abbreviation for a measurement unit of Angle at. An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Reino Unido) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonelada (EE. UU.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quilates A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grados A measurement unit for Angle. Radianes A measurement unit for Angle. Grados centesimales A measurement unit for Angle. Atmósferas A measurement unit for Pressure. Bares A measurement unit for Pressure. Kilopascales A measurement unit for Pressure. Milímetros de mercurio A measurement unit for Pressure. Pascales A measurement unit for Pressure. Libras por pulgada cuadrada (PSI) A measurement unit for Pressure. Centigramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagramos A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas largas (Reino Unido) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onzas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas cortas (EE.UU.) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piedra A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas métricas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focos A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focos A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) caballos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) caballos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copos de nieve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copos de nieve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballenas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballenas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) albercas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) albercas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) manos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) manos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hojas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hojas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castillos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castillos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plátanos A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plátanos A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rebanadas de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rebanadas de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotoras A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotoras A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balones de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balones de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elemento en la memoria Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atrás Screen reader prompt for the About panel back button Atrás Content of tooltip being displayed on AboutControlBackButton Términos de licencia del software de Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Vista previa Label displayed next to upcoming features Declaración de privacidad de Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Todos los derechos reservados. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para obtener información sobre cómo puede contribuir a la calculadora de Windows, consulta el proyecto en %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Acerca de Subtitle of about message on Settings page Enviar comentarios The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app No hay historial todavía. The text that shows as the header for the history list No hay nada guardado en la memoria. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad La expresión no se puede pegar The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cálculo de fecha Modo de cálculo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Sumar Add toggle button text Sumar o restar días Add or Subtract days option Fecha Date result label Diferencia entre fechas Date difference option Días Add/Subtract Days label Diferencia Difference result label Desde From Date Header for Difference Date Picker Meses Add/Subtract Months label Restar Subtract toggle button text Hasta To Date Header for Difference Date Picker Años Add/Subtract Years label Fecha fuera del límite Out of bound message shown as result when the date calculation exceeds the bounds día días mes meses Mismas fechas semana semanas año años Diferencia: %1 Automation name for reading out the date difference. %1 = Date difference Fecha resultante: %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modo de calculadora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modo de convertidor %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modo de cálculo de fecha Automation name for when the mode header is focused and the current mode is Date calculation. Listas e historial de la memoria Automation name for the group of controls for history and memory lists. Controles de la memoria Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funciones estándar Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Control de pantalla Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadores estándar Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclado numérico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadores de ángulo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funciones científicas Automation name for the group of Scientific functions. Selección de base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadores de programador Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selección de modo de entrada Automation name for the group of input mode toggling buttons. Teclado de alternancia de bits Automation name for the group of bit toggling buttons. Desplazar expresión a la izquierda Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Desplazar expresión a la derecha Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Se alcanzó el máximo de dígitos. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 se guardó en la memoria {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". La ranura de memoria %1 es %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Ranura de la memoria %1 borrada {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividido por Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. veces Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menos Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. más Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. elevado a Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. raíz de y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. mayús izquierda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. mayús derecha Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. o Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x o Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. y Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Actualizado el %1 a las %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Actualizar tarifas The text displayed for a hyperlink button that refreshes currency converter ratios. Pueden aplicarse cargos por uso de datos. The text displayed when users are on a metered connection and using currency converter. No se pudieron obtener las nuevas tarifas. Vuelve a probar más tarde. The text displayed when currency ratio data fails to load. Sin conexión. Comprueba tu%HL%Configuración de red%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Actualizando los tipos de cambio This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Se actualizaron los tipos de cambio This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. No se pudieron actualizar los tipos de cambio This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Borrar toda la memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Borrar toda la memoria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} grados de seno Name for the sine function in degrees mode. Used by screen readers. radianes de seno Name for the sine function in radians mode. Used by screen readers. gradientes de seno Name for the sine function in gradians mode. Used by screen readers. grados de seno inverso Name for the inverse sine function in degrees mode. Used by screen readers. radianes de seno inverso Name for the inverse sine function in radians mode. Used by screen readers. gradientes de seno inverso Name for the inverse sine function in gradians mode. Used by screen readers. seno hiperbólico Name for the hyperbolic sine function. Used by screen readers. seno hiperbólico inverso Name for the inverse hyperbolic sine function. Used by screen readers. grados de coseno Name for the cosine function in degrees mode. Used by screen readers. radianes de coseno Name for the cosine function in radians mode. Used by screen readers. gradientes de coseno Name for the cosine function in gradians mode. Used by screen readers. grados de coseno inverso Name for the inverse cosine function in degrees mode. Used by screen readers. radianes de coseno inverso Name for the inverse cosine function in radians mode. Used by screen readers. gradientes de coseno inverso Name for the inverse cosine function in gradians mode. Used by screen readers. coseno hiperbólico Name for the hyperbolic cosine function. Used by screen readers. coseno hiperbólico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. grados de tangente Name for the tangent function in degrees mode. Used by screen readers. radianes de tangente Name for the tangent function in radians mode. Used by screen readers. gradientes de tangente Name for the tangent function in gradians mode. Used by screen readers. grados de tangente inversa Name for the inverse tangent function in degrees mode. Used by screen readers. radianes de tangente inversa Name for the inverse tangent function in radians mode. Used by screen readers. gradientes de tangente inversa Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hiperbólica Name for the hyperbolic tangent function. Used by screen readers. tangente hiperbólica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. grados de secante Name for the secant function in degrees mode. Used by screen readers. radianes de secante Name for the secant function in radians mode. Used by screen readers. gradianes de secante Name for the secant function in gradians mode. Used by screen readers. grados de secante inversa Name for the inverse secant function in degrees mode. Used by screen readers. radianes de secante inversa Name for the inverse secant function in radians mode. Used by screen readers. gradianes de secante inversa Name for the inverse secant function in gradians mode. Used by screen readers. secante hiperbólica Name for the hyperbolic secant function. Used by screen readers. secante hiperbólica inversa Name for the inverse hyperbolic secant function. Used by screen readers. grados de cosecante Name for the cosecant function in degrees mode. Used by screen readers. radianes de cosecante Name for the cosecant function in radians mode. Used by screen readers. gradianes de cosecante Name for the cosecant function in gradians mode. Used by screen readers. grados de cosecante inversa Name for the inverse cosecant function in degrees mode. Used by screen readers. radianes de cosecante inversa Name for the inverse cosecant function in radians mode. Used by screen readers. gradianes de cosecante inversa Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecante hiperbólica Name for the hyperbolic cosecant function. Used by screen readers. cosecante hiperbólica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. grados de cotangente Name for the cotangent function in degrees mode. Used by screen readers. Radianes de cotangente Name for the cotangent function in radians mode. Used by screen readers. gradianes de cotangente Name for the cotangent function in gradians mode. Used by screen readers. grados de cotangente inversa Name for the inverse cotangent function in degrees mode. Used by screen readers. radianes de cotangente inversa Name for the inverse cotangent function in radians mode. Used by screen readers. gradianes de cotangente inversa Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hiperbólica Name for the hyperbolic cotangent function. Used by screen readers. cotangente hiperbólica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Raíz cúbica Name for the cube root function. Used by screen readers. Logaritmo en base Name for the logbasey function. Used by screen readers. Valor absoluto Name for the absolute value function. Used by screen readers. mayús izquierda Name for the programmer function that shifts bits to the left. Used by screen readers. mayús derecha Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. grado minuto segundo Name for the degree minute second (dms) function. Used by screen readers. logaritmo natural Name for the natural log (ln) function. Used by screen readers. elevar al cuadrado Name for the square function. Used by screen readers. raíz de y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoría %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrato de servicios de Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Desde From Date Header for AddSubtract Date Picker Desplazar el resultado del cálculo hacia la izquierda Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Desplazar el resultado del cálculo hacia la derecha Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Error en el cálculo Text displayed when the application is not able to do a calculation Logaritmo en base Y Screen reader prompt for the logBaseY button Trigonometría Displayed on the button that contains a flyout for the trig functions in scientific mode. Función Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualdades Displayed on the button that contains a flyout for the inequality functions. Desigualdades Screen reader prompt for the Inequalities button Bit a bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Desplazamiento de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Función inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante hiperbólica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Secante de arco Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Secante de arco hiperbólico Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecante hiperbólica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Cosecante de arco Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cosecante de arco hiperbólico Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hiperbólica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arco cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Cotangente de arco hiperbólico Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Suelo Screen reader prompt for the Calculator button floor in the scientific flyout keypad Techo Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatorio Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número de Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Elevado a 2 Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NOR Screen reader prompt for the Calculator button nor in the scientific flyout keypad NOR Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Girar a la izquierda con acarreo Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Girar a la derecha con acarreo Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Desplazar a la izquierda Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Desplazamiento a la izquierda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplazar a la derecha Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Desplazamiento a la derecha Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desplazamiento aritmético Label for a radio button that toggles arithmetic shift behavior for the shift operations. Desplazamiento lógico Label for a radio button that toggles logical shift behavior for the shift operations. Girar desplazamiento circular Label for a radio button that toggles rotate circular behavior for the shift operations. Girar con desplazamiento circular de acarreo Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Raíz cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometría Screen reader prompt for the square root button on the scientific operator keypad Funciones Screen reader prompt for the square root button on the scientific operator keypad Bit a bit Screen reader prompt for the square root button on the scientific operator keypad Desplazamiento de bits Screen reader prompt for the square root button on the scientific operator keypad Paneles de operadores científicos Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Paneles de operadores de programadores Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit más significativo Used to describe the last bit of a binary number. Used in bit flip Graficar Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Trazar Screen reader prompt for the plot button on the graphing calculator operator keypad Actualizar la vista automáticamente (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Vista de gráficos Screen reader prompt for the graph view button. Mejor ajuste automático Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajuste manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Se restableció la vista del gráfico Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Acercar (Ctrl + signo más) This is the tool tip automation name for the Calculator zoom in button. Acercar Screen reader prompt for the zoom in button. Alejar (Ctrl + signo menos) This is the tool tip automation name for the Calculator zoom out button. Alejar Screen reader prompt for the zoom out button. Sumar ecuación Placeholder text for the equation input button No se puede compartir en este momento. If there is an error in the sharing action will display a dialog with this text. Aceptar Used on the dismiss button of the share action error dialog. Mira el gráfico que hice con la Calculadora de Windows Sent as part of the shared content. The title for the share. Ecuaciones Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Imagen de un gráfico con ecuaciones Alt text for the graph image when output via Share Variables Header text for variables area Acción Label text for the step text box Mín. Label text for the min text box Máx. Label text for the max text box Color Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Análisis de funciones Title for KeyGraphFeatures Control La función no tiene asíntotas horizontales. Message displayed when the graph does not have any horizontal asymptotes La función no tiene ningún punto de inflexión. Message displayed when the graph does not have any inflection points La función no tiene ningún punto máximo. Message displayed when the graph does not have any maxima La función no tiene ningún punto mínimo. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Decreciente String describing decreasing monotonicity of a function No se puede determinar la monotonía de la función. Error displayed when monotonicity cannot be determined Creciente String describing increasing monotonicity of a function La monotonía de la función es desconocida. Error displayed when monotonicity is unknown La función no tiene asíntotas oblicuas. Message displayed when the graph does not have any oblique asymptotes No se puede determinar la paridad de la función. Error displayed when parity is cannot be determined La función es par. Message displayed with the function parity is even La función no es ni par ni impar. Message displayed with the function parity is neither even nor odd La función es impar. Message displayed with the function parity is odd La paridad de la función es desconocida. Error displayed when parity is unknown No se admite la periodicidad per la función. Error displayed when periodicity is not supported La función no es periódica. Message displayed with the function periodicity is not periodic La periodicidad de la función es desconocida. Message displayed with the function periodicity is unknown Estas características son demasiado complejas para que la Calculadora las calcule: Error displayed when analysis features cannot be calculated La función no tiene asíntotas verticales. Message displayed when the graph does not have any vertical asymptotes La función no tiene ninguna intersección con el eje x. Message displayed when the graph does not have any x-intercepts La función no tiene ninguna intersección con el eje y. Message displayed when the graph does not have any y-intercepts Dominio Title for KeyGraphFeatures Domain Property Asíntotas horizontales Title for KeyGraphFeatures Horizontal aysmptotes Property Puntos de inflexión Title for KeyGraphFeatures Inflection points Property No se admite el análisis para la función. Error displayed when graph analysis is not supported or had an error. El análisis solo se admite para funciones en formato f(x). Ejemplo: y = x Error displayed when graph analysis detects the function format is not f(x). Máximos Title for KeyGraphFeatures Maxima Property Mínimos Title for KeyGraphFeatures Minima Property Monotonía Title for KeyGraphFeatures Monotonicity Property Asíntotas oblicuas Title for KeyGraphFeatures Oblique asymptotes Property Paridad Title for KeyGraphFeatures Parity Property Período Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervalo Title for KeyGraphFeatures Range Property Asíntotas verticales Title for KeyGraphFeatures Vertical asymptotes Property Intersección con el eje X Title for KeyGraphFeatures XIntercept Property Intersección con el eje Y Title for KeyGraphFeatures YIntercept Property No se pudo realizar el análisis de la función. No se puede calcular el dominio de la función. Error displayed when Domain is not returned from the analyzer. No se puede calcular el intervalo de la función. Error displayed when Range is not returned from the analyzer. Contenido adicional (el número es demasiado grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Se requiere el modo radianes para representar gráficamente esta ecuación. Error that occurs during graphing when radians is required. Esta función es demasiado complicada para graficar Error that occurs during graphing when the equation is too complex. Se requiere el modo grados para representar gráficamente esta función. Error that occurs during graphing when degrees is required El argumento de la función factorial es incorrecto Error that occurs during graphing when a factorial function has an invalid argument. La función factorial tiene un argumento que es demasiado grande para el gráfico Error that occurs during graphing when a factorial has a large n Módulo solo puede usarse con números enteros Error that occurs during graphing when modulo is used with a float. La ecuación no tiene solución Error that occurs during graphing when the equation has no solution. No se puede dividir entre cero Error that occurs during graphing when a divison by zero occurs. La ecuación contiene condiciones lógicas que se excluyen mutuamente Error that occurs during graphing when mutually exclusive conditions are used. La ecuación está fuera del dominio Error that occurs during graphing when the equation is out of domain. No es posible graficar esta ecuación Error that occurs during graphing when the equation is not supported. Falta un paréntesis de apertura en la ecuación Error that occurs during graphing when the equation is missing a ( Falta un paréntesis de cierre en la ecuación Error that occurs during graphing when the equation is missing a ) Hay demasiados puntos decimales en un número Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Faltan dígitos en la coma decimal Error that occurs during graphing with a decimal point without digits Final de expresión inesperado Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Caracteres inesperados en la expresión Error that occurs during graphing when there is an unexpected token. Caracteres no válidos en la expresión Error that occurs during graphing when there is an invalid token. Hay demasiados signos de igual Error that occurs during graphing when there are too many equals. La función debe contener al menos una variable x o y Error that occurs during graphing when the equation is missing x or y. Expresión no válida Error that occurs during graphing when an invalid syntax is used. La expresión está vacía Error that occurs during graphing when the expression is empty Igual se utilizó sin una ecuación Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Faltan paréntesis después del nombre de función Error that occurs during graphing when parenthesis are missing after a function. Una operación matemática tiene el número incorrecto de parámetros Error that occurs during graphing when a function has the wrong number of parameters Un nombre de variable no es válido Error that occurs during graphing when a variable name is invalid. Falta un corchete de apertura en la ecuación Error that occurs during graphing when a { is missing Falta un corchete de cierre en la ecuación Error that occurs during graphing when a } is missing. Tanto "i", como "I", no se pueden usar como nombres de variables Error that occurs during graphing when i or I is used. No se pudo representar gráficamente la ecuación General error that occurs during graphing. El dígito no se pudo resolver para la base indicada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base debe ser mayor que 2 y menor que 36 Error that occurs during graphing when the base is out of range. Una operación matemática requiere que uno de los parámetros sea una variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ecuación está mezclando operandos de escala y lógicos Error that occurs during graphing when operands are mixed. Such as true and 1. x o y no se pueden usar en los límites superior o inferior Error that occurs during graphing when x or y is used in integral upper limits. x o y no se pueden usar en el punto límite Error that occurs during graphing when x or y is used in the limit point. No se puede usar infinito complejo Error that occurs during graphing when complex infinity is used No se pueden usar números complejos en desigualdades Error that occurs during graphing when complex numbers are used in inequalities. Volver a la lista de funciones This is the tooltip for the back button in the equation analysis page in the graphing calculator Volver a la lista de funciones This is the automation name for the back button in the equation analysis page in the graphing calculator Analizar función This is the tooltip for the analyze function button Analizar función This is the automation name for the analyze function button Analizar función This is the text for the for the analyze function context menu command Quitar ecuación This is the tooltip for the graphing calculator remove equation buttons Quitar ecuación This is the automation name for the graphing calculator remove equation buttons Quitar ecuación This is the text for the for the remove equation context menu command Compartir This is the automation name for the graphing calculator share button. Compartir This is the tooltip for the graphing calculator share button. Cambiar estilo de ecuación This is the tooltip for the graphing calculator equation style button Cambiar estilo de ecuación This is the automation name for the graphing calculator equation style button Cambiar estilo de ecuación This is the text for the for the equation style context menu command Mostrar ecuación This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ocultar ecuación This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostrar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ocultar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Detener seguimiento This is the tooltip/automation name for the graphing calculator stop tracing button Iniciar seguimiento This is the tooltip/automation name for the graphing calculator start tracing button Ventana de visualización de gráficos, eje x delimitado por %1 y %2, eje y limitado por %3 y %4, mostrando %5 ecuaciones {Locked="%1","%2", "%3", "%4", "%5"}. Configurar control deslizante This is the tooltip text for the slider options button in Graphing Calculator Configurar control deslizante This is the automation name text for the slider options button in Graphing Calculator Cambiar al modo de ecuación Used in Graphing Calculator to switch the view to the equation mode Cambiar al modo de gráfico Used in Graphing Calculator to switch the view to the graph mode Cambiar al modo de ecuación Used in Graphing Calculator to switch the view to the equation mode El modo actual es el modo de ecuación Announcement used in Graphing Calculator when switching to the equation mode El modo actual es el modo de gráfico Announcement used in Graphing Calculator when switching to the graph mode Ventana Heading for window extents on the settings Grados Degrees mode on settings page Grados centesimales Gradian mode on settings page Radianes Radians mode on settings page Unidades Heading for Unit's on the settings Restablecer vista Hyperlink button to reset the view of the graph Máx. de X X maximum value header Mín. de X X minimum value header Máx. de Y Y Maximum value header Mín. de Y Y minimum value header Opciones de gráfico This is the tooltip text for the graph options button in Graphing Calculator Opciones de gráfico This is the automation name text for the graph options button in Graphing Calculator Opciones de gráfico Heading for the Graph options flyout in Graphing mode. Opciones de variables Screen reader prompt for the variable settings toggle button Interruptor de opciones de variables Tool tip for the variable settings toggle button Grosor de línea Heading for the Graph options flyout in Graphing mode. Opciones de línea Heading for the equation style flyout in Graphing mode. Ancho de línea pequeño Automation name for line width setting Ancho de línea medio Automation name for line width setting Ancho de línea grande Automation name for line width setting Ancho de línea muy grande Automation name for line width setting Escribe una expresión this is the placeholder text used by the textbox to enter an equation Copiar Copy menu item for the graph context menu Cortar Cut menu item from the Equation TextBox Copiar Copy menu item from the Equation TextBox Pegar Paste menu item from the Equation TextBox Deshacer Undo menu item from the Equation TextBox Seleccionar todo Select all menu item from the Equation TextBox Entrada de funciones The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada de funciones The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel de entrada de funciones The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel variable The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista variable The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Elemento de lista de variable %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Cuadro de texto de valor de variable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Control deslizante de valor de variable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Cuadro de texto de valor mínimo de variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Cuadro de texto de valor de paso de variable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Cuadro de texto de valor máximo de variable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estilo de línea sólida Name of the solid line style for a graphed equation Estilo de línea punteada Name of the dotted line style for a graphed equation Estilo de línea de guiones Name of the dashed line style for a graphed equation Azul marino Name of color in the color picker Verde agua Name of color in the color picker Violeta Name of color in the color picker Verde Name of color in the color picker Verde menta Name of color in the color picker Verde oscuro Name of color in the color picker Carboncillo Name of color in the color picker Rojo Name of color in the color picker Ciruela claro Name of color in the color picker Magenta Name of color in the color picker Amarillo dorado Name of color in the color picker Naranja intenso Name of color in the color picker Marrón Name of color in the color picker Negro Name of color in the color picker Blanco Name of color in the color picker Color 1 Name of color in the color picker Color 2 Name of color in the color picker Color 3 Name of color in the color picker Color 4 Name of color in the color picker Tema de Graph Graph settings heading for the theme options Siempre claro Graph settings option to set graph to light theme Coincidir con el tema de la aplicación Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Siempre claro This is the automation name text for the Graph settings option to set graph to light theme Hacer coincidir con el tema de la aplicación This is the automation name text for the Graph settings option to set graph to match the app theme Función eliminada Announcement used in Graphing Calculator when a function is removed from the function list Cuadro de ecuación de análisis de funciones This is the automation name text for the equation box in the function analysis panel Es igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menor que Screen reader prompt for the Less than button Menor o igual que Screen reader prompt for the Less than or equal button Igual que Screen reader prompt for the Equal button Mayor o igual que Screen reader prompt for the Greater than or equal button Mayor que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Enviar Screen reader prompt for the submit button on the graphing calculator operator keypad Análisis de función Screen reader prompt for the function analysis grid Opciones de gráfico Screen reader prompt for the graph options panel Listas e historial de la memoria Automation name for the group of controls for history and memory lists. Lista de la memoria Automation name for the group of controls for memory list. Ranura de memoria %1 borrada {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculadora siempre visible Announcement to indicate calculator window is always shown on top. Calculadora de nuevo a vista completa Announcement to indicate calculator window is now back to full view. Giro aritmético seleccionado Label for a radio button that toggles arithmetic shift behavior for the shift operations. Giro lógico seleccionado Label for a radio button that toggles logical shift behavior for the shift operations. Girar desplazamiento circular seleccionado Label for a radio button that toggles rotate circular behavior for the shift operations. Girar con desplazamiento circular de acarreo seleccionado Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Configuración Header text of Settings page Apariencia Subtitle of appearance setting on Settings page Tema de la aplicación Title of App theme expander Seleccionar el tema de la aplicación para mostrar Description of App theme expander Claro Lable for light theme option Oscuro Lable for dark theme option Usar la configuración del sistema Lable for the app theme option to use system setting Atrás Screen reader prompt for the Back button in title bar to back to main page Página de configuración Announcement used when Settings page is opened Abrir el menú contextual para ver las acciones disponibles Screen reader prompt for the context menu of the expression box Aceptar The text of OK button to dismiss an error dialog. No se pudo restaurar esta instantánea. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/et-EE/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Sobimatu sisend Error message shown when the input makes a function fail, like log(-1) Tulem on määratlematu. Error message shown when there's no possible value for a function. Mälu pole piisavalt. Error message shown when we run out of memory during a calculation. Ületäitumine Error message shown when there's an overflow during the calculation. Tulem on määratlemata. Same as 101 Tulem on määratlemata. Same 101 Ületäitumine Same as 107 Ületäitumine Same 107 Nulliga ei saa jagada. Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/et-EE/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulaator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulaator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windowsi kalkulaator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windowsi kalkulaator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulaator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulaator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopeeri Copy context menu string Kleebi Paste context menu string Võrdub ligikaudu The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, väärtus %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bitt {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip madalaim bitt Used to describe the first bit of a binary number. Used in bit flip Ava mäluhüpik This is the automation name and label for the memory button when the memory flyout is closed. Sule mäluhüpik This is the automation name and label for the memory button when the memory flyout is open. Hoia kõige peal This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Tagasi täisekraanvaatesse This is the tool tip automation name for the always-on-top button when in always-on-top mode. Mälu This is the tool tip automation name for the memory button. Ajalugu (Ctrl+H) This is the tool tip automation name for the history button. Biti ümberlülituse klahvistik This is the tool tip automation name for the bitFlip button. Täisklahvistik This is the tool tip automation name for the numberPad button. Tühjenda kogu mälu (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Mälu The text that shows as the header for the memory list Mälu The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Ajalugu The text that shows as the header for the history list Ajalugu The automation name for the History pivot item that is shown when Calculator is in wide layout. Teisendi Label for a control that activates the unit converter mode. Teaduslik Label for a control that activates scientific mode calculator layout Standardne Label for a control that activates standard mode calculator layout. Teisendirežiim Screen reader prompt for a control that activates the unit converter mode. Teaduslik režiim Screen reader prompt for a control that activates scientific mode calculator layout Standardrežiim Screen reader prompt for a control that activates standard mode calculator layout. Tühjenda kogu ajalugu "ClearHistory" used on the calculator history pane that stores the calculation history. Tühjenda kogu ajalugu This is the tool tip automation name for the Clear History button. Peida "HideHistory" used on the calculator history pane that stores the calculation history. Standardne The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Teaduslik The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmeerija The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Teisendi The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulaator The text that shows in the dropdown navigation control for the calculator group. Teisendi The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulaator The text that shows in the dropdown navigation control for the calculator group in upper case. Teisendid Pluralized version of the converter group text, used for the screen reader prompt. Kalkulaatorid Pluralized version of the calculator group text, used for the screen reader prompt. Kuva on %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Avaldis on %1, praegune sisend on %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Kuva on %1 koma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Avaldis on %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Kuvatav väärtus on lõikelauale kopeeritud Screen reader prompt for the Calculator display copy button, when the button is invoked. Ajalugu Screen reader prompt for the history flyout Mälu Screen reader prompt for the memory flyout Kuueteistkümnendarv %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Kümnendarv %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Kaheksandarv %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Kahendarv %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Tühjenda kogu ajalugu Screen reader prompt for the Calculator History Clear button Ajalugu on kustutatud Screen reader prompt for the Calculator History Clear button, when the button is invoked. Peida ajalugu Screen reader prompt for the Calculator History Hide button Ava ajaloo hüpik Screen reader prompt for the Calculator History button, when the flyout is closed. Sule ajaloo hüpik Screen reader prompt for the Calculator History button, when the flyout is open. Salvesta mällu Screen reader prompt for the Calculator Memory button Salvesta mällu (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Tühjenda kogu mälu Screen reader prompt for the Calculator Clear Memory button Mälu on tühjendatud Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Võta mälust Screen reader prompt for the Calculator Memory Recall button Võta mälust (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Lisa mällu Screen reader prompt for the Calculator Memory Add button Lisa mällu (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Lahuta mälust Screen reader prompt for the Calculator Memory Subtract button Lahuta mälust (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Tühjenda mäluüksus Screen reader prompt for the Calculator Clear Memory button Tühjenda mäluüksus This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Lisa mäluüksusesse Screen reader prompt for the Calculator Memory Add button in the Memory list Lisa mäluüksusesse This is the tool tip automation name for the Calculator Memory Add button in the Memory list Lahuta mäluüksusest Screen reader prompt for the Calculator Memory Subtract button in the Memory list Lahuta mäluüksusest This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Tühjenda mäluüksus Screen reader prompt for the Calculator Clear Memory button Tühjenda mäluüksus Text string for the Calculator Clear Memory option in the Memory list context menu Lisa mäluüksusesse Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Lisa mäluüksusesse Text string for the Calculator Memory Add option in the Memory list context menu Lahuta mäluüksusest Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Lahuta mäluüksusest Text string for the Calculator Memory Subtract option in the Memory list context menu Kustuta Text string for the Calculator Delete swipe button in the History list Kopeeri Text string for the Calculator Copy option in the History list context menu Kustuta Text string for the Calculator Delete option in the History list context menu Kustuta ajalooüksus Screen reader prompt for the Calculator Delete swipe button in the History list Kustuta ajalooüksus Screen reader prompt for the Calculator Delete option in the History list context menu Tagasilüke Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Null Screen reader prompt for the Calculator number "0" button Üks Screen reader prompt for the Calculator number "1" button Kaks Screen reader prompt for the Calculator number "2" button Kolm Screen reader prompt for the Calculator number "3" button Neli Screen reader prompt for the Calculator number "4" button Viis Screen reader prompt for the Calculator number "5" button Kuus Screen reader prompt for the Calculator number "6" button Seitse Screen reader prompt for the Calculator number "7" button Kaheksa Screen reader prompt for the Calculator number "8" button Üheksa Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Ja Screen reader prompt for the Calculator And button Või Screen reader prompt for the Calculator Or button Pole Screen reader prompt for the Calculator Not button Ringnihe vasakule Screen reader prompt for the Calculator ROL button Ringnihe paremale Screen reader prompt for the Calculator ROR button Nihe vasakule Screen reader prompt for the Calculator LSH button Nihe paremale Screen reader prompt for the Calculator RSH button Välistav VÕI Screen reader prompt for the Calculator XOR button Neliksõna tumblernupp Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Topeltsõna tumblernupp Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Sõna tumblernupp Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Baidi tumblernupp Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Biti ümberlülituse klahvistik Screen reader prompt for the Calculator bitFlip button Täisklahvistik Screen reader prompt for the Calculator numberPad button Murdosa eraldaja Screen reader prompt for the "." button Tühjenda sisestus Screen reader prompt for the "CE" button Tühjenda Screen reader prompt for the "C" button Jaga arvuga Screen reader prompt for the divide button on the number pad Korruta arvuga Screen reader prompt for the multiply button on the number pad Võrdub Screen reader prompt for the equals button on the scientific operator keypad Pöördfunktsioon Screen reader prompt for the shift button on the number pad in scientific mode. Miinus Screen reader prompt for the minus button on the number pad Miinus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Pluss Screen reader prompt for the plus button on the number pad Ruutjuur Screen reader prompt for the square root button on the scientific operator keypad Protsent Screen reader prompt for the percent button on the scientific operator keypad Positiivne negatiivne Screen reader prompt for the negate button on the scientific operator keypad Positiivne negatiivne Screen reader prompt for the negate button on the converter operator keypad Pöördväärtus Screen reader prompt for the invert button on the scientific operator keypad Vasaksulg Screen reader prompt for the Calculator "(" button on the scientific operator keypad Vasaksulg, avasulgude arv %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Paremsulg Screen reader prompt for the Calculator ")" button on the scientific operator keypad Avavate sulgude arv %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Avavaid sulge, mis vajavad sulgemist, ei ole. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Teaduskuju Screen reader prompt for the Calculator F-E the scientific operator keypad Hüperboolne funktsioon Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pii Screen reader prompt for the Calculator pi button on the scientific operator keypad Siinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Koosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hüperboolne siinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hüperboolne koosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hüperboolne tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Ruut Screen reader prompt for the x squared on the scientific operator keypad. Kuup Screen reader prompt for the x cubed on the scientific operator keypad. Arkussiinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkuskoosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkustangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hüperboolne arkussiinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hüperboolne arkuskoosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hüperboolne arkustangens Screen reader prompt for the inverted tanh on the scientific operator keypad. x-i aste Screen reader prompt for x power y button on the scientific operator keypad. Kümne aste Screen reader prompt for the 10 power x button on the scientific operator keypad. e aste Screen reader for the e power x on the scientific operator keypad. y-astme juur x-ist Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritm Screen reader for the log base 10 on the scientific operator keypad Naturaallogaritm Screen reader for the log base e on the scientific operator keypad Mooduli järgi Screen reader for the mod button on the scientific operator keypad Eksponentsiaalne Screen reader for the exp button on the scientific operator keypad Kraad, minut, sekund Screen reader for the exp button on the scientific operator keypad kraadi Screen reader for the exp button on the scientific operator keypad täisosa Screen reader for the int button on the scientific operator keypad Murdosa Screen reader for the frac button on the scientific operator keypad faktoriaali Screen reader for the factorial button on the basic operator keypad Kraadide tumblernupp This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Goonide tumblernupp This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radiaanide tumblernupp This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Režiimi ripploend Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategooriate ripploend Screen reader prompt for the Categories dropdown field. Hoia kõige peal Screen reader prompt for the Always-on-Top button when in normal mode. Tagasi täisekraanvaatesse Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Alati kõige peal (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Tagasi täisekraanvaatesse (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Teisenda %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Teisendage %1 koma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Teisenduse saadus %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 on %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Sisendi ühik Screen reader prompt for the Unit Converter Units1 i.e. top units field. Väljundi ühik Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Pindala Unit conversion category name called Area (eg. area of a sports field in square meters) Andmed Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Pikkus Unit conversion category name called Length Võimsus Unit conversion category name called Power (eg. the power of an engine or a light bulb) Kiirus Unit conversion category name called Speed Aeg Unit conversion category name called Time Maht Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatuur Unit conversion category name called Temperature Kaal ja mass Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Rõhk Unit conversion category name called Pressure Nurk Unit conversion category name called Angle Valuuta Unit conversion category name called Currency vedelikuuntsi (Briti) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Briti) An abbreviation for a measurement unit of volume vedelikuuntsi (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (USA) An abbreviation for a measurement unit of volume gallonit (Briti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Briti) An abbreviation for a measurement unit of volume gallonit (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (USA) An abbreviation for a measurement unit of volume liitrit A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume milliliitrit A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume pinti (Briti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Briti) An abbreviation for a measurement unit of volume pinti (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (USA) An abbreviation for a measurement unit of volume supilusikat (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sl (USA) An abbreviation for a measurement unit of volume teelusikat (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tl (USA) An abbreviation for a measurement unit of volume supilusikat (Briti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sl (Briti) An abbreviation for a measurement unit of volume teelusikat (Briti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tl (Briti) An abbreviation for a measurement unit of volume kvarti (Briti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Briti) An abbreviation for a measurement unit of volume kvarti (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (USA) An abbreviation for a measurement unit of volume tassi (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tass (USA) An abbreviation for a measurement unit of volume Å An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume bit An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume p An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gbit An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (USA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time toll An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kbit An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mbit An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length miili/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pbit An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tbit An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power näd An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length a An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pii An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data aakrit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Briti soojusühikut A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Briti soojusühikut minutis A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kalorit A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sentimeetrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sentimeetrit sekundis A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuupsentimeetrit A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuupjalga A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuuptolli A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuupmeetrit A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuupjardi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) päeva A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsiuse kraadi An option in the unit converter to select degrees Celsius Fahrenheiti kraadi An option in the unit converter to select degrees Fahrenheit elektronvolti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalga A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalga sekundis A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgnaela A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgnaela minutis A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektarit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hobujõudu (USA) A measurement unit for power tundi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tolli A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) džauli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatt-tunnid A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kelvinit An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilobaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilokalorit A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilodžauli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilomeetrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilomeetrit tunnis A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilovatti A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sõlme A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Machi arvu A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) megabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) meetrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) meetrit sekundis A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikronit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikrosekundit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) miili A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) miili tunnis A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) millimeetrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) millisekundit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) minutit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Näks(i) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nanomeetrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ongströmi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meremiilid A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sekundit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutsentimeetrit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutjalga A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruuttolli A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutkilomeetrit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutmeetrit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutmiili A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutmillimeetrit A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruutjardi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vatti A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nädalat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jardi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aastat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ct An abbreviation for a measurement unit of weight krd An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle g An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight t (Briti) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight t (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight karaati A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kraadi A measurement unit for Angle. radiaani A measurement unit for Angle. gooni A measurement unit for Angle. atmosfääri A measurement unit for Pressure. baari A measurement unit for Pressure. kilopaskalit A measurement unit for Pressure. millimeetrit elavhõbedasammast A measurement unit for Pressure. Paskalit A measurement unit for Pressure. naela ruuttolli kohta A measurement unit for Pressure. sentigrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagrammi A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) detsigrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) grammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektogrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tonni (Briti) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milligrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) untsi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) naela A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tonni (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kivi A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tonni A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-d A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-d A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgpalliväljakut A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgpalliväljakut A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketti A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketti A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-d A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-d A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) patareid AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) patareid AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kirjaklambrit A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kirjaklambrit A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hiidlennukit A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hiidlennukit A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lambipirni A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lambipirni A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hobust A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hobust A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vanni A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vanni A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lumehelvest A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lumehelvest A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elevanti An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elevanti An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilpkonna A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilpkonna A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktiivlennukit A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktiivlennukit A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaala A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaala A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kohvitassi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kohvitassi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) basseini An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) basseini An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) käelaba A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) käelaba A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paberilehte A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paberilehte A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lossi A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lossi A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banaani A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banaani A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koogilõiku A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koogilõiku A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rongivedurit A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rongivedurit A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgpalli A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalgpalli A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mäluüksus Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Tagasi Screen reader prompt for the About panel back button Tagasi Content of tooltip being displayed on AboutControlBackButton Microsofti tarkvara litsentsitingimused Displayed on a link to the Microsoft Software License Terms on the About panel Eeltutvustus Label displayed next to upcoming features Microsofti privaatsusavaldus Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Kõik õigused on reserveeritud. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Kui soovite teada, kuidas saate Windowsi kalkulaator lisada, vaadake projekti %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Teave Subtitle of about message on Settings page Saada tagasisidet The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Ajalugu pole veel. The text that shows as the header for the history list Mällu pole midagi salvestatud. The text that shows as the header for the memory list Mälu Screen reader prompt for the negate button on the converter operator keypad Seda avaldist ei saa kleepida The paste operation cannot be performed, if the expression is invalid. Gibibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksbibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibitti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuupäevaarvutus Arvutamisrežiim Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Liida Add toggle button text Liida või lahuta päevi Add or Subtract days option Kuupäev Date result label Kuupäevade vahe Date difference option päeva Add/Subtract Days label Vahe Difference result label Alates From Date Header for Difference Date Picker Kuud Add/Subtract Months label Lahuta Subtract toggle button text Kuni To Date Header for Difference Date Picker aastat Add/Subtract Years label Kuupäev on piiridest väljas Out of bound message shown as result when the date calculation exceeds the bounds päev päeva kuu kuud Samad kuupäevad nädal nädalat aasta aastat Vahe %1 Automation name for reading out the date difference. %1 = Date difference Tulemuseks saadav kuupäev %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Kalkulaatorirežiim %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 teisendirežiim {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Kuupäevaarvutuse režiim Automation name for when the mode header is focused and the current mode is Date calculation. Ajaloo- ja mäluloendid Automation name for the group of controls for history and memory lists. Mälu juhtelemendid Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardfunktsioonid Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kuva juhtelemendid Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardsed tehtemärgid Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numbriklahvistik Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Nurkade tehtemärgid Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Teaduslikud funktsioonid Automation name for the group of Scientific functions. Arvusüsteemi aluse valimine Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeerimise tehtemärgid Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Sisestusrežiimi valimine Automation name for the group of input mode toggling buttons. Bitivaheldusklahvistik Automation name for the group of bit toggling buttons. Keri avaldist vasakule Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Keri avaldist paremale Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maksimaalne numbrite arv. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 on salvestatud mällu {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Mälupesa %1 on %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Mälupesa %1 on tühjendatud {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". jagatud arvuga Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. korda Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. miinus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. pluss Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. astmes Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. ruutjuur arvust y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mooduli järgi Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. vasak tõstuklahv Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. parem tõstuklahv Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. või Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. välistav või Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ja Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Värskendatud %1 kell %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Värskenda valuutakursse The text displayed for a hyperlink button that refreshes currency converter ratios. Kehtida võivad andmesidetasud. The text displayed when users are on a metered connection and using currency converter. Uusi valuutakursse ei saanud tuua. Proovige hiljem uuesti. The text displayed when currency ratio data fails to load. Võrguühendus puudub. Kontrollige oma %HL%võrgusätteid%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Valuutakursside värskendamine This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valuutakursid on värskendatud This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kursse ei saanud värskendada This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Tühjenda kogu mälu (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Tühjenda kogu mälu Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} siinuse kraadid Name for the sine function in degrees mode. Used by screen readers. siinuse radiaanid Name for the sine function in radians mode. Used by screen readers. siinuse goonid Name for the sine function in gradians mode. Used by screen readers. siinuse pöördkraadid Name for the inverse sine function in degrees mode. Used by screen readers. pöördsiinuse radiaanid Name for the inverse sine function in radians mode. Used by screen readers. pöördsiinuse goonid Name for the inverse sine function in gradians mode. Used by screen readers. hüperboolne siinus Name for the hyperbolic sine function. Used by screen readers. hüperboolse siinuse pöördfunktsioon Name for the inverse hyperbolic sine function. Used by screen readers. koosinuse kraadid Name for the cosine function in degrees mode. Used by screen readers. koosinuse radiaanid Name for the cosine function in radians mode. Used by screen readers. koosinuse goonid Name for the cosine function in gradians mode. Used by screen readers. pöördkoosinuse kraadid Name for the inverse cosine function in degrees mode. Used by screen readers. pöördkoosinuse radiaanid Name for the inverse cosine function in radians mode. Used by screen readers. pöördkoosinuse goonid Name for the inverse cosine function in gradians mode. Used by screen readers. hüperboolne koosinus Name for the hyperbolic cosine function. Used by screen readers. hüperboolse koosinuse pöördfunktsioon Name for the inverse hyperbolic cosine function. Used by screen readers. tangensi kraadid Name for the tangent function in degrees mode. Used by screen readers. tangensi radiaanid Name for the tangent function in radians mode. Used by screen readers. tangensi goonid Name for the tangent function in gradians mode. Used by screen readers. pöördtangensi kraadid Name for the inverse tangent function in degrees mode. Used by screen readers. pöördtangensi radiaanid Name for the inverse tangent function in radians mode. Used by screen readers. pöördtangensi goonid Name for the inverse tangent function in gradians mode. Used by screen readers. hüperboolne tangens Name for the hyperbolic tangent function. Used by screen readers. hüperboolse tangensi pöördfunktsioon Name for the inverse hyperbolic tangent function. Used by screen readers. seekansi kraadid Name for the secant function in degrees mode. Used by screen readers. seekansi radiaanid Name for the secant function in radians mode. Used by screen readers. seekansi gradiaanid Name for the secant function in gradians mode. Used by screen readers. seekansi pöördkraadid Name for the inverse secant function in degrees mode. Used by screen readers. seekansi pöördradiaanid Name for the inverse secant function in radians mode. Used by screen readers. seekansi pöördgradiaanid Name for the inverse secant function in gradians mode. Used by screen readers. hüperboolne seekans Name for the hyperbolic secant function. Used by screen readers. hüperboolse seekansi pöördfunktsioon Name for the inverse hyperbolic secant function. Used by screen readers. koosekansi kraadid Name for the cosecant function in degrees mode. Used by screen readers. koosekansi radiaanid Name for the cosecant function in radians mode. Used by screen readers. koosekansi gradiaanid Name for the cosecant function in gradians mode. Used by screen readers. koosekansi pöördkraadid Name for the inverse cosecant function in degrees mode. Used by screen readers. koosekansi pöördradiaanid Name for the inverse cosecant function in radians mode. Used by screen readers. koosekansi pöördgradiaanid Name for the inverse cosecant function in gradians mode. Used by screen readers. hüperboolne koosekans Name for the hyperbolic cosecant function. Used by screen readers. hüperboolne pöördkoosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. kootangensi kraadid Name for the cotangent function in degrees mode. Used by screen readers. Kootangensi radiaanid Name for the cotangent function in radians mode. Used by screen readers. kootangensi gradiaanid Name for the cotangent function in gradians mode. Used by screen readers. kootangensi pöördkraadid Name for the inverse cotangent function in degrees mode. Used by screen readers. kootangensi pöördradiaanid Name for the inverse cotangent function in radians mode. Used by screen readers. kootangensi pöördgradiaanid Name for the inverse cotangent function in gradians mode. Used by screen readers. hüperboolne kootangens Name for the hyperbolic cotangent function. Used by screen readers. hüperboolse kootangensi pöördfunktsioon Name for the inverse hyperbolic cotangent function. Used by screen readers. Kuubi juur Name for the cube root function. Used by screen readers. Logaritmi alus Name for the logbasey function. Used by screen readers. Absoluutväärtus Name for the absolute value function. Used by screen readers. nihe vasakule Name for the programmer function that shifts bits to the left. Used by screen readers. nihe paremale Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriaal Name for the factorial function. Used by screen readers. kraad minut sekund Name for the degree minute second (dms) function. Used by screen readers. naturaallogaritm Name for the natural log (ln) function. Used by screen readers. ruut Name for the square function. Used by screen readers. ruutjuur arvust y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategooria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsofti teenuselepe Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Alates From Date Header for AddSubtract Date Picker Keri arvutustulemust vasakule Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Keri arvutustulemust paremale Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Arvutamine nurjus Text displayed when the application is not able to do a calculation Logaritmi alus Y Screen reader prompt for the logBaseY button Trigonomeetria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funktsioon Displayed on the button that contains a flyout for the general functions in scientific mode. Võrratused Displayed on the button that contains a flyout for the inequality functions. Võrratused Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitine nihe Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Pöördfunktsioon Screen reader prompt for the shift button in the trig flyout in scientific mode. Hüperboolne funktsioon Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Seekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hüperboolne seekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkusseekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hüperboolne arkusseekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Koosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hüperboolne koosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkuskoosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hüperboolne arkuskoosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kootangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hüperboolne kootangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkuskootangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hüperboolne arkuskootangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Korrus Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ülemmäär Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Juhuslik Screen reader prompt for the Calculator button random in the scientific flyout keypad Absoluutväärtus Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euleri number Screen reader prompt for the Calculator button e in the scientific flyout keypad Kahe aste Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Ega Screen reader prompt for the Calculator button nor in the scientific flyout keypad Ega Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Pööra vasakule koos kandega Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Pööra paremale koos kandega Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Nihe vasakule Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Nihe vasakule Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Nihe paremale Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Nihe paremale Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmeetiline nihe Label for a radio button that toggles arithmetic shift behavior for the shift operations. Loogiline nihe Label for a radio button that toggles logical shift behavior for the shift operations. Pööra ringikujuline nihe Label for a radio button that toggles rotate circular behavior for the shift operations. Pööra läbi kande ringikujuline nihe Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kuubi juur Screen reader prompt for the cube root button on the scientific operator keypad Trigonomeetria Screen reader prompt for the square root button on the scientific operator keypad Funktsioonid Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Teaduslike tehtemärkide paneelid Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programmeerija tehtemärkide paneelid Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad kõrgeim bitt Used to describe the last bit of a binary number. Used in bit flip Graafiline esitus Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Diagramm Screen reader prompt for the plot button on the graphing calculator operator keypad Värskenda vaadet automaatselt (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Graafiku vaade Screen reader prompt for the graph view button. Automaatne parim sobivus Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Käsitsi korrigeerimine Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Graafivaade on lähtestatud Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Suurenda (Ctrl + plussmärgiklahv) This is the tool tip automation name for the Calculator zoom in button. Suurenda Screen reader prompt for the zoom in button. Vähenda (Ctrl + miinusmärgiklahv) This is the tool tip automation name for the Calculator zoom out button. Vähenda Screen reader prompt for the zoom out button. Lisa võrrand Placeholder text for the equation input button Jagamine pole praegu võimalik. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Vaadake, millest ma Windowsi kalkulaatoriga graafiku koostasin Sent as part of the shared content. The title for the share. Võrrandid Header that appears over the equations section when sharing Muutujad Header that appears over the variables section when sharing Võrranditega graafiku pilt Alt text for the graph image when output via Share Muutujad Header text for variables area Etapp Label text for the step text box Min Label text for the min text box Max Label text for the max text box Värv Label for the Line Color section of the style picker Laad Label for the Line Style section of the style picker Funktsiooni analüüs Title for KeyGraphFeatures Control Funktsioonil pole horisontaalseid asümptoote. Message displayed when the graph does not have any horizontal asymptotes Funktsioonil pole käänupunkte. Message displayed when the graph does not have any inflection points Funktsioonil pole maksimumpunkte. Message displayed when the graph does not have any maxima Funktsioonil pole miinimumpunkte. Message displayed when the graph does not have any minima Konstant String describing constant monotonicity of a function Vähenev String describing decreasing monotonicity of a function Funktsiooni monotoonsust ei saa määratleda. Error displayed when monotonicity cannot be determined Suurenev String describing increasing monotonicity of a function Funktsiooni monotoonsus pole teada. Error displayed when monotonicity is unknown Funktsioonil pole kaldasümptoote. Message displayed when the graph does not have any oblique asymptotes Funktsiooni paarsust ei saa määratleda. Error displayed when parity is cannot be determined Funktsioon on paaris. Message displayed with the function parity is even Funktsioon pole paaris ega paaritu. Message displayed with the function parity is neither even nor odd Funktsioon on paaritu. Message displayed with the function parity is odd Funktsiooni paarsus pole teada. Error displayed when parity is unknown See funktsioon ei toeta perioodilisust. Error displayed when periodicity is not supported Funktsioon pole perioodiline. Message displayed with the function periodicity is not periodic Funktsiooni perioodilisus pole teada. Message displayed with the function periodicity is unknown Need funktsioonid on kalkulaatori jaoks arvutamiseks liiga keerukad: Error displayed when analysis features cannot be calculated Funktsioonil pole vertikaalseid asümptoote. Message displayed when the graph does not have any vertical asymptotes Funktsioonil pole ühtegi x-telje lõikepunkti. Message displayed when the graph does not have any x-intercepts Funktsioonil pole ühtegi y-telje lõikepunkti. Message displayed when the graph does not have any y-intercepts Domeen Title for KeyGraphFeatures Domain Property Horisontaalsed asümptoodid Title for KeyGraphFeatures Horizontal aysmptotes Property Käänupunktid Title for KeyGraphFeatures Inflection points Property See funktsioon ei toeta analüüsi. Error displayed when graph analysis is not supported or had an error. Analüüsi toetatakse ainult f(x)-vormingus funktsioonide korral. Näide: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimum Title for KeyGraphFeatures Maxima Property Miinimum Title for KeyGraphFeatures Minima Property Monotoonsus Title for KeyGraphFeatures Monotonicity Property Kaldasümptoodid Title for KeyGraphFeatures Oblique asymptotes Property Paarsus Title for KeyGraphFeatures Parity Property Perioodilisus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Vahemik Title for KeyGraphFeatures Range Property Vertikaalsed asümptoodid Title for KeyGraphFeatures Vertical asymptotes Property X-telje lõikepunkt Title for KeyGraphFeatures XIntercept Property Y-telje lõikepunkt Title for KeyGraphFeatures YIntercept Property Funktsiooni analüüsi ei saanud teha. Selle funktsiooni jaoks ei saanud domeeni arvutada. Error displayed when Domain is not returned from the analyzer. Selle funktsiooni vahemikku ei saa arvutada. Error displayed when Range is not returned from the analyzer. Ületäitumine (arv on liiga suur) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Selle võrrandi graafiliseks esitamiseks on vaja kasutada radiaanirežiimi. Error that occurs during graphing when radians is required. See funktsioon on graafiliseks esitamiseks liiga keerukas Error that occurs during graphing when the equation is too complex. Selle võrrandi graafiliseks esitamiseks on vaja kasutada kraadirežiimi. Error that occurs during graphing when degrees is required Faktoriaalfunktsioon sisaldab kehtetut argumenti Error that occurs during graphing when a factorial function has an invalid argument. Faktoriaalfunktsioon sisaldab graafiliselt esitamiseks liiga suurt argumenti Error that occurs during graphing when a factorial has a large n Mooduli järgi arvutamist saab kasutada ainult täisarvudega Error that occurs during graphing when modulo is used with a float. Võrrandil pole lahendust Error that occurs during graphing when the equation has no solution. Nulliga ei saa jagada Error that occurs during graphing when a divison by zero occurs. Võrrand sisaldab üksteist välistavaid loogilisi tingimusi Error that occurs during graphing when mutually exclusive conditions are used. Võrrand jääb piirkonnast välja Error that occurs during graphing when the equation is out of domain. Selle võrrandi graafilist esitust ei toetata Error that occurs during graphing when the equation is not supported. Võrrandis puudub avasulg Error that occurs during graphing when the equation is missing a ( Võrrandis puudub lõpusulg Error that occurs during graphing when the equation is missing a ) Arv on liiga palju kümnendkohti Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Komakohale ei järgne numbreid Error that occurs during graphing with a decimal point without digits Avaldis lõpeb ootamatult Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Avaldis sisaldab ootamatuid märke Error that occurs during graphing when there is an unexpected token. Avaldis sisaldab sobimatuid märke Error that occurs during graphing when there is an invalid token. Võrdusmärke on liiga palju Error that occurs during graphing when there are too many equals. Funktsioon peab sisaldama vähemalt ühte x- või y-muutujat Error that occurs during graphing when the equation is missing x or y. Kehtetu avaldis Error that occurs during graphing when an invalid syntax is used. Avaldis on tühi Error that occurs during graphing when the expression is empty Võrdusmärki kasutati ilma võrrandita Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Funktsioonime järel on sulg puudu Error that occurs during graphing when parenthesis are missing after a function. Matemaatikatehtel on vale arv parameetreid Error that occurs during graphing when a function has the wrong number of parameters Muutuja nimi ei sobi Error that occurs during graphing when a variable name is invalid. Võrrandis puudub avanurksulg Error that occurs during graphing when a { is missing Võrrandis puudub lõpunurksulg Error that occurs during graphing when a } is missing. Tähti "i" ja "I" ei saa muutujate nimedena kasutada Error that occurs during graphing when i or I is used. Võrrandit ei saanud graafiliselt esitada General error that occurs during graphing. Numbrit ei saanud selle aluse jaoks lahendada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Alus peab olema suurem kui 2 ja väiksem kui 36 Error that occurs during graphing when the base is out of range. Ühe matemaatikatehte üks parameeter peab olema muutuja Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Võrrandis on loogilisi ja skalaaroperande segamini kasutatud Error that occurs during graphing when operands are mixed. Such as true and 1. x-i ega y-d ei saa ülemise ega alumise piirväärtuse jaoks kasutada Error that occurs during graphing when x or y is used in integral upper limits. x-i ega y-d ei saa piirpunktis kasutada Error that occurs during graphing when x or y is used in the limit point. Komplekslõpmatust ei saa kasutada Error that occurs during graphing when complex infinity is used Võrratustes ei saa kompleksarve kasutada Error that occurs during graphing when complex numbers are used in inequalities. Tagasi funktsioonide loendisse This is the tooltip for the back button in the equation analysis page in the graphing calculator Tagasi funktsioonide loendisse This is the automation name for the back button in the equation analysis page in the graphing calculator Analüüsi funktsiooni This is the tooltip for the analyze function button Analüüsi funktsiooni This is the automation name for the analyze function button Analüüsi funktsiooni This is the text for the for the analyze function context menu command Saate eemaldada võrrandi This is the tooltip for the graphing calculator remove equation buttons Eemalda võrrand This is the automation name for the graphing calculator remove equation buttons Eemalda võrrand This is the text for the for the remove equation context menu command Jaga This is the automation name for the graphing calculator share button. Jaga This is the tooltip for the graphing calculator share button. Saate muuta võrrandi laadi This is the tooltip for the graphing calculator equation style button Muuda võrrandi laadi This is the automation name for the graphing calculator equation style button Muuda võrrandi laadi This is the text for the for the equation style context menu command Kuva võrrand This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Peida võrrand This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Kuva võrrand %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Peida võrrand %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Lõpeta jälgimine This is the tooltip/automation name for the graphing calculator stop tracing button Alusta jälgimist This is the tooltip/automation name for the graphing calculator start tracing button Graphi kuvamine akna, x-telje bounded %1 ja %2, y-telje bounded %3 ja %4, kuvamine %5 võrrandid {Locked="%1","%2", "%3", "%4", "%5"}. Saate konfigureerida liuguri This is the tooltip text for the slider options button in Graphing Calculator Konfigureeri liugur This is the automation name text for the slider options button in Graphing Calculator Aktiveeri võrrandirežiim Used in Graphing Calculator to switch the view to the equation mode Saate aktiveerida graafikurežiimi Used in Graphing Calculator to switch the view to the graph mode Aktiveeri võrrandirežiim Used in Graphing Calculator to switch the view to the equation mode Praegune režiim on võrrandirežiim Announcement used in Graphing Calculator when switching to the equation mode Praegune režiim on graafikurežiim Announcement used in Graphing Calculator when switching to the graph mode Aken Heading for window extents on the settings Kraadid Degrees mode on settings page Goonid Gradian mode on settings page Radiaanid Radians mode on settings page Ühikud Heading for Unit's on the settings Lähtesta vaade Hyperlink button to reset the view of the graph X-telje maksimumväärtus X maximum value header X-telje miinimumväärtus X minimum value header Y-telje maksimumväärtus Y Maximum value header Y-telje miinimumväärtus Y minimum value header Graafiliselt esitamise suvandid This is the tooltip text for the graph options button in Graphing Calculator Graafiliselt esitamise suvandid This is the automation name text for the graph options button in Graphing Calculator Graafikusuvandid Heading for the Graph options flyout in Graphing mode. Muutuja suvandid Screen reader prompt for the variable settings toggle button Lülita muutuja suvandid sisse või välja Tool tip for the variable settings toggle button Joone jämedus Heading for the Graph options flyout in Graphing mode. Joonesuvandid Heading for the equation style flyout in Graphing mode. Väike joonelaius Automation name for line width setting Keskmine joonelaius Automation name for line width setting Suur joonelaius Automation name for line width setting Ülisuur joonelaius Automation name for line width setting Sisestage avaldis this is the placeholder text used by the textbox to enter an equation Kopeeri Copy menu item for the graph context menu Lõika Cut menu item from the Equation TextBox Kopeeri Copy menu item from the Equation TextBox Kleebi Paste menu item from the Equation TextBox Võta tagasi Undo menu item from the Equation TextBox Vali kõik Select all menu item from the Equation TextBox Funktsiooni sisend The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funktsiooni sisend The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funktsiooni sisestuspaneel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Muutujate paneel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Muutujate loend The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Muutuja %1 loendiüksus The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Muutuvväärtuse tekstiväli The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Muutuja väärtuse liugur The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Muutuja miinimumväärtuse tekstiväli The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Muutuja sammu väärtuse tekstiväli The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Muutuja maksimumväärtuse tekstiväli The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Pidevjoone laad Name of the solid line style for a graphed equation Punktiirjoone laad Name of the dotted line style for a graphed equation Kriipsjoone laad Name of the dashed line style for a graphed equation Meresinine Name of color in the color picker Merevaht Name of color in the color picker Violetne Name of color in the color picker Roheline Name of color in the color picker Mündiroheline Name of color in the color picker Tumeroheline Name of color in the color picker Süsihall Name of color in the color picker Punane Name of color in the color picker Hele ploomililla Name of color in the color picker Magenta Name of color in the color picker Kuldkollane Name of color in the color picker Erkoranž Name of color in the color picker Pruun Name of color in the color picker Must Name of color in the color picker Valge Name of color in the color picker Värv 1 Name of color in the color picker Värv 2 Name of color in the color picker Värv 3 Name of color in the color picker Värv 4 Name of color in the color picker Graafiku kujundus Graph settings heading for the theme options Alati hele Graph settings option to set graph to light theme Vastavalt rakenduse kujundusele Graph settings option to set graph to match the app theme Kujundus This is the automation name text for the Graph settings heading for the theme options Alati hele This is the automation name text for the Graph settings option to set graph to light theme Vastavalt rakenduse kujundusele This is the automation name text for the Graph settings option to set graph to match the app theme Funktsioon on eemaldatud Announcement used in Graphing Calculator when a function is removed from the function list Funktsiooni analüüsi võrrandi väli This is the automation name text for the equation box in the function analysis panel Võrdub Screen reader prompt for the equal button on the graphing calculator operator keypad on väiksem kui Screen reader prompt for the Less than button on väiksem või võrdne Screen reader prompt for the Less than or equal button Võrdub Screen reader prompt for the Equal button on suurem või võrdne Screen reader prompt for the Greater than or equal button on suurem kui Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Edasta Screen reader prompt for the submit button on the graphing calculator operator keypad Funktsiooni analüüs Screen reader prompt for the function analysis grid Graafikusuvandid Screen reader prompt for the graph options panel Ajaloo- ja mäluloendid Automation name for the group of controls for history and memory lists. Mäluloend Automation name for the group of controls for memory list. Ajaloopesa %1 on tühjendatud {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulaator kuvatakse alati kõige peal Announcement to indicate calculator window is always shown on top. Kalkulaator on taas kuvatud täielikult Announcement to indicate calculator window is now back to full view. Valitud on aritmeetika vahetus Label for a radio button that toggles arithmetic shift behavior for the shift operations. Valitud on loogiline vahetus Label for a radio button that toggles logical shift behavior for the shift operations. Valitud on ringikujulise nihkega pööramine Label for a radio button that toggles rotate circular behavior for the shift operations. Valitud on läbi kande ringikujulise nihkega pööramine Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Sätted Header text of Settings page Välimus Subtitle of appearance setting on Settings page Rakenduse kujundus Title of App theme expander Valige kuvatav rakenduse kujundus Description of App theme expander Hele Lable for light theme option Tume Lable for dark theme option Süsteemisätte kasutus Lable for the app theme option to use system setting Tagasi Screen reader prompt for the Back button in title bar to back to main page Sätete leht Announcement used when Settings page is opened Saadaolevate toimingute kontekstimenüü avamine. Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Seda hetktõmmist ei saanud taastada. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/eu-ES/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Idatzitakoak ez du balio Error message shown when the input makes a function fail, like log(-1) Ez dago emaitza zehatzik Error message shown when there's no possible value for a function. Ez dago behar adina memoria Error message shown when we run out of memory during a calculation. Gainezkatzea Error message shown when there's an overflow during the calculation. Emaitza ez da zehaztu Same as 101 Emaitza ez da zehaztu Same 101 Gainezkatzea Same as 107 Gainezkatzea Same 107 Ezin da zerorekin zatitu Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/eu-ES/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulagailua {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulagailua [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkulagailua {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkulagailua [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulagailua {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulagailua [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiatu Copy context menu string Itsatsi Paste context menu string Honen berdina, gutxi gorabehera The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, %2 balioa {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bita {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip garrantzia gutxieneko bit-a Used to describe the first bit of a binary number. Used in bit flip Ireki memoriaren kontrol mugikorra This is the automation name and label for the memory button when the memory flyout is closed. Itxi memoriaren kontrol mugikorra This is the automation name and label for the memory button when the memory flyout is open. Mantendu goran This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Itzuli ikuspegi osora This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Historia (Ktrl+H) This is the tool tip automation name for the history button. Bitak txandakatzeko zenbakizko teklatua This is the tool tip automation name for the bitFlip button. Teklatu osoa This is the tool tip automation name for the numberPad button. Garbitu memoria osoa (Ktrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historia The text that shows as the header for the history list Historia The automation name for the History pivot item that is shown when Calculator is in wide layout. Bihurgailua Label for a control that activates the unit converter mode. Zientifikoa Label for a control that activates scientific mode calculator layout Arrunta Label for a control that activates standard mode calculator layout. Bihurgailu modua Screen reader prompt for a control that activates the unit converter mode. Modu zientifikoa Screen reader prompt for a control that activates scientific mode calculator layout Modu arrunta Screen reader prompt for a control that activates standard mode calculator layout. Garbitu historia osoa "ClearHistory" used on the calculator history pane that stores the calculation history. Garbitu historia osoa This is the tool tip automation name for the Clear History button. Ezkutatu "HideHistory" used on the calculator history pane that stores the calculation history. Arrunta The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Zientifikoa The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programatzailea The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Bihurgailua The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulagailua The text that shows in the dropdown navigation control for the calculator group. Bihurgailua The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulagailua The text that shows in the dropdown navigation control for the calculator group in upper case. Bihurgailuak Pluralized version of the converter group text, used for the screen reader prompt. Kalkulagailuak Pluralized version of the calculator group text, used for the screen reader prompt. %1 bistaratzen da {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Espresioa %1 da. Uneko sarrera %2 da {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". %1 puntu bistaratzen da {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Adierazpena %1 da {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Bistaratu arbelean kopiatutako balioa Screen reader prompt for the Calculator display copy button, when the button is invoked. Historia Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout %1 hamaseitarra {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". %1 hamartarra {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". %1 zortzitarra {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". %1 bitarra {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Garbitu historia osoa Screen reader prompt for the Calculator History Clear button Garbitu da historia Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ezkutatu historia Screen reader prompt for the Calculator History Hide button Ireki historiaren kontrol mugikorra Screen reader prompt for the Calculator History button, when the flyout is closed. Itxi historiaren kontrol mugikorra Screen reader prompt for the Calculator History button, when the flyout is open. Memoria biltegia Screen reader prompt for the Calculator Memory button Gorde memoria (Ktrl+M) This is the tool tip automation name for the Memory Store (MS) button. Garbitu memoria osoa Screen reader prompt for the Calculator Clear Memory button Garbitu da memoria Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Memoria berreskuratu Screen reader prompt for the Calculator Memory Recall button Berreskuratu memoria (Ktrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Gehitu memoria Screen reader prompt for the Calculator Memory Add button Gehitu memoria (Ktrl+P) This is the tool tip automation name for the Memory Add (M+) button. Kendu memoria Screen reader prompt for the Calculator Memory Subtract button Kendu memoria (Ktrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Garbitu memoriako elementua Screen reader prompt for the Calculator Clear Memory button Garbitu memoriako elementua This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Gehitu memoriako elementuri Screen reader prompt for the Calculator Memory Add button in the Memory list Gehitu memoriako elementuri This is the tool tip automation name for the Calculator Memory Add button in the Memory list Kendu memoriako elementutik Screen reader prompt for the Calculator Memory Subtract button in the Memory list Kendu memoriako elementutik This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Garbitu memoriako elementua Screen reader prompt for the Calculator Clear Memory button Garbitu memoriako elementua Text string for the Calculator Clear Memory option in the Memory list context menu Gehitu memoriako elementuri Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Gehitu memoriako elementuri Text string for the Calculator Memory Add option in the Memory list context menu Kendu memoriako elementutik Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Kendu memoriako elementutik Text string for the Calculator Memory Subtract option in the Memory list context menu Ezabatu Text string for the Calculator Delete swipe button in the History list Kopiatu Text string for the Calculator Copy option in the History list context menu Ezabatu Text string for the Calculator Delete option in the History list context menu Ezabatu historiako elementua Screen reader prompt for the Calculator Delete swipe button in the History list Ezabatu historiako elementua Screen reader prompt for the Calculator Delete option in the History list context menu Atzera Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Bat Screen reader prompt for the Calculator number "1" button Bi Screen reader prompt for the Calculator number "2" button Hiru Screen reader prompt for the Calculator number "3" button Lau Screen reader prompt for the Calculator number "4" button Bost Screen reader prompt for the Calculator number "5" button Sei Screen reader prompt for the Calculator number "6" button Zazpi Screen reader prompt for the Calculator number "7" button Zortzi Screen reader prompt for the Calculator number "8" button Bederatzi Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button eta Screen reader prompt for the Calculator And button Edo Screen reader prompt for the Calculator Or button Ez Screen reader prompt for the Calculator Not button Biratu ezkerrera Screen reader prompt for the Calculator ROL button Biratu eskuinera Screen reader prompt for the Calculator ROR button Eraman ezkerrera Screen reader prompt for the Calculator LSH button Eraman eskuinera Screen reader prompt for the Calculator RSH button Esklusiboa edo Screen reader prompt for the Calculator XOR button Aldatu hitz laukoitzak Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Aldatu hitza bikoitzak Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Aldatu hitza Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Aldatu byteak Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitak txandakatzeko zenbakizko teklatua Screen reader prompt for the Calculator bitFlip button Teklatu osoa Screen reader prompt for the Calculator numberPad button Bereizle hamartarra Screen reader prompt for the "." button Garbitu idatzitakoa Screen reader prompt for the "CE" button Garbitu Screen reader prompt for the "C" button Zatitzailea Screen reader prompt for the divide button on the number pad Biderkatzailea Screen reader prompt for the multiply button on the number pad Berdin Screen reader prompt for the equals button on the scientific operator keypad Alderantzikatzeko funtzioa Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Erro karratua Screen reader prompt for the square root button on the scientific operator keypad Ehunekoa Screen reader prompt for the percent button on the scientific operator keypad Positiboa negatiboa Screen reader prompt for the negate button on the scientific operator keypad Positiboa negatiboa Screen reader prompt for the negate button on the converter operator keypad Elkarrekikoa Screen reader prompt for the invert button on the scientific operator keypad Ezkerreko parentesia Screen reader prompt for the Calculator "(" button on the scientific operator keypad Ezkerreko parentesia, ireki %1. parentesia {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Eskuineko parentesia Screen reader prompt for the Calculator ")" button on the scientific operator keypad Ireki %1. parentesia {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Ez dago irekitako parentesirik ixteko. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notazio zientifikoa Screen reader prompt for the Calculator F-E the scientific operator keypad Funtzio hiperbolikoa Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinua Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinua Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangentea Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinu hiperbolikoa Screen reader prompt for the Calculator sinh button on the scientific operator keypad Kosinu hiperbolikoa Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hiperbolikoa Screen reader prompt for the Calculator tanh button on the scientific operator keypad Karratua Screen reader prompt for the x squared on the scientific operator keypad. Kuboa Screen reader prompt for the x cubed on the scientific operator keypad. Arku-sinua Screen reader prompt for the inverted sin on the scientific operator keypad. Arku-kosinua Screen reader prompt for the inverted cos on the scientific operator keypad. Arku-tangentea Screen reader prompt for the inverted tan on the scientific operator keypad. Arku-sinu hiperbolikoa Screen reader prompt for the inverted sinh on the scientific operator keypad. Arku-kosinu hiperbolikoa Screen reader prompt for the inverted cosh on the scientific operator keypad. Arku-tangente hiperbolikoa Screen reader prompt for the inverted tanh on the scientific operator keypad. Berretzailearekiko “X” Screen reader prompt for x power y button on the scientific operator keypad. Berretzailearekiko hamar Screen reader prompt for the 10 power x button on the scientific operator keypad. Berretzailearekiko “e” Screen reader for the e power x on the scientific operator keypad. "x"-en "y" erroa Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmoa Screen reader for the log base 10 on the scientific operator keypad Logaritmo nepertarra Screen reader for the log base e on the scientific operator keypad Modulu Screen reader for the mod button on the scientific operator keypad Esponentziala Screen reader for the exp button on the scientific operator keypad Gradu minutu segundo Screen reader for the exp button on the scientific operator keypad Graduak Screen reader for the exp button on the scientific operator keypad Osoko zatia Screen reader for the int button on the scientific operator keypad Zati zatikiarra Screen reader for the frac button on the scientific operator keypad Faktoriala Screen reader for the factorial button on the basic operator keypad Aldatu graduak This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Aldatu gradienteak This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Aldatu radianak This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Moduen goitibeherako menua Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategorien goitibeherako-zerrenda Screen reader prompt for the Categories dropdown field. Mantendu goran Screen reader prompt for the Always-on-Top button when in normal mode. Itzuli ikuspegi osora Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mantendu goran (Alt+Gora) This is the tool tip automation name for the Always-on-Top button when in normal mode. Itzuli ikuspegi osora (Alt+Behera) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Bihurtu balio honetatik: %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Bihurtu balio honetatik: %1 koma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 bihurtzen du Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 %3 %4 da Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Sarrera-unitatea Screen reader prompt for the Unit Converter Units1 i.e. top units field. Irteera-unitatea Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Datuak Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Luzera Unit conversion category name called Length Potentzia Unit conversion category name called Power (eg. the power of an engine or a light bulb) Abiadura Unit conversion category name called Speed Denbora Unit conversion category name called Time Bolumena Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Tenperatura Unit conversion category name called Temperature Pisua eta masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Presioa Unit conversion category name called Pressure Angelua Unit conversion category name called Angle Moneta Unit conversion category name called Currency ontza fluido (EB) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EB) An abbreviation for a measurement unit of volume ontza fluido (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (AEB) An abbreviation for a measurement unit of volume galoi (EB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EB) An abbreviation for a measurement unit of volume galoi (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (AEB) An abbreviation for a measurement unit of volume litro A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume mililitro A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume pinta (EB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EB) An abbreviation for a measurement unit of volume pinta (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (AEB) An abbreviation for a measurement unit of volume koilara (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koilara (AEB) An abbreviation for a measurement unit of volume koilaratxo (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koilaratxo (AEB) An abbreviation for a measurement unit of volume koilara (EB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koilara (EB) An abbreviation for a measurement unit of volume koilaratxo (EB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koilaratxo (EB) An abbreviation for a measurement unit of volume galoi-laurden (EB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EB) An abbreviation for a measurement unit of volume galoi-laurden (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (AEB) An abbreviation for a measurement unit of volume katilu (AEB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kopa (AEB) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (AEB) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time hazbete An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data akre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) unitate termiko britainiar A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minutu A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaloria termal A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zentimetro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zentimetro segundoko A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zentimetro kubiko A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oin kubiko A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hazbete kubiko A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metro kubiko A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yarda kubiko A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) egun A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oin A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oin segundoko A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oin-libra A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oina-libra/minutu A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektarea A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zaldi (AEB) A measurement unit for power ordu A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hazbete A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-orduak A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaloria A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometro orduko A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) korapilo A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metro segundoko A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikrometro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikrosegundo A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milia orduko A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milimetro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milisegundo A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) minutu A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nanometro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstrom A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Itsas milia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) segundo A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zentimetro karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oin karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hazbete karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometro karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metro karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milia karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milimetro karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yarda karratu A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aste A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yarda A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) urte A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight gradu An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (EB) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tona (AEB) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight kilate A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graduak A measurement unit for Angle. radian A measurement unit for Angle. gradian A measurement unit for Angle. atmosfera A measurement unit for Pressure. bara A measurement unit for Pressure. kilo pascal A measurement unit for Pressure. merkurio-milimetro A measurement unit for Pressure. pascal A measurement unit for Pressure. libera hazbete karratuko A measurement unit for Pressure. zentigramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagramo A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dezigramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektogramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tona luze (EB) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) miligramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ontza A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) libra A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tona labur (AEB) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tona metriko A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol-zelai A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol-zelai A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateria AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateria AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) klip A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) klip A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo erreaktore A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo erreaktore A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bonbilla A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bonbilla A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zaldi A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zaldi A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bainuontzi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bainuontzi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elur-maluta A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elur-maluta A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dortoka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dortoka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) erreaktore A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) erreaktore A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balea A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balea A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) katilu A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) katilu A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) igerileku An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) igerileku An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) esku A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) esku A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) orri A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) orri A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gaztelu A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gaztelu A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tarta zati A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tarta zati A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tren-motor A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tren-motor A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol-baloi A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbol-baloi A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Memoria elementua Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atzera Screen reader prompt for the About panel back button Atzera Content of tooltip being displayed on AboutControlBackButton Microsoft-en software-lizentziaren baldintzak Displayed on a link to the Microsoft Software License Terms on the About panel Aurreikusi Label displayed next to upcoming features Microsoft Pribatutasun-adierazpena Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Eskubide guztiak erreserbatuta. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows Kalkulagailuari ekarpenak egiten ikasteko, begiratu proiektua hemen: %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Honi buruz Subtitle of about message on Settings page Bidali oharrak The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Ez dago historiarik oraindik. The text that shows as the header for the history list Memorian ez dago ezer. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad Ezin da itsatsi adierazpena The paste operation cannot be performed, if the expression is invalid. gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dataren kalkulua Kalkulu modua Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Gehitu Add toggle button text Gehitu edo kendu egunak Add or Subtract days option Data Date result label Daten arteko aldea Date difference option egun Add/Subtract Days label Aldea Difference result label Hasiera: From Date Header for Difference Date Picker Hilabeteak Add/Subtract Months label Kendu Subtract toggle button text Amaiera: To Date Header for Difference Date Picker urte Add/Subtract Years label Data mugaz kanpo dago Out of bound message shown as result when the date calculation exceeds the bounds egun egun hilabete hilabete Data berak aste aste urte urte Aldea %1 Automation name for reading out the date difference. %1 = Date difference Emaitzaren data: %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 kalkulagailu modua {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 bihurgailu modua {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Dataren kalkuluaren modua Automation name for when the mode header is focused and the current mode is Date calculation. Historia eta memoria-zerrendak Automation name for the group of controls for history and memory lists. Memoriaren kontrolak Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funtzio estandarrak Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Bistaratu kontrolak Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Eragile estandarrak Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Zenbakizko teklatua Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Angelu-eragileak Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funtzio zientifikoak Automation name for the group of Scientific functions. Oinarriaren hautapena Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programatzaileen eragileak Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Idazketa moduaren hautapena Automation name for the group of input mode toggling buttons. Bitak txandakatzeko zenbakizko teklatua Automation name for the group of bit toggling buttons. Eraman adierazpena ezkerrera Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Eraman adierazpena eskuinera Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Gehieneko zenbaki kopurua erdietsi da. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Gorde da %1 memorian {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". %1. memoria-erretena %2 da {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Garbitu da %1. memoria erretena {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". zati Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. aldiz Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ken Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. gehi Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ber Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y erroa Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. hondarra Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ezkerreko desplazamendua Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. eskuineko desplazamendua Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. edo Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x edo Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. eta Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Eguneratze-data: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Eguneratu tarifak The text displayed for a hyperlink button that refreshes currency converter ratios. Baliteke datu-kostuak aplikatzea. The text displayed when users are on a metered connection and using currency converter. Ezin izan dira lortu tarifa berriak. Saiatu berriro geroago. The text displayed when currency ratio data fails to load. Lineaz kanpo. Egiaztatu%HL%Sare-ezarpenak%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Moneta-tarifak eguneratzen This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Eguneratu dira moneta-tarifak This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Ezin izan dira eguneratu tarifak This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Garbitu memoria osoa (Ktrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Garbitu memoria osoa Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinu gradua Name for the sine function in degrees mode. Used by screen readers. sinu radiana Name for the sine function in radians mode. Used by screen readers. sinu gradu ehundarra Name for the sine function in gradians mode. Used by screen readers. sinu gradu alderantzikatua Name for the inverse sine function in degrees mode. Used by screen readers. sinu radian alderantzikatua Name for the inverse sine function in radians mode. Used by screen readers. sinu gradu ehundar alderantzikatua Name for the inverse sine function in gradians mode. Used by screen readers. sinu hiperbolikoa Name for the hyperbolic sine function. Used by screen readers. sinu hiperboliko alderantzikatua Name for the inverse hyperbolic sine function. Used by screen readers. kosinu gradua Name for the cosine function in degrees mode. Used by screen readers. kosinu radiana Name for the cosine function in radians mode. Used by screen readers. kosinu gradu ehundarra Name for the cosine function in gradians mode. Used by screen readers. kosinu gradu alderantzikatua Name for the inverse cosine function in degrees mode. Used by screen readers. kosinu radian alderantzikatua Name for the inverse cosine function in radians mode. Used by screen readers. kosinu gradu ehundar alderantzikatua Name for the inverse cosine function in gradians mode. Used by screen readers. kosinu hiperbolikoa Name for the hyperbolic cosine function. Used by screen readers. kosinu hiperboliko alderantzikatua Name for the inverse hyperbolic cosine function. Used by screen readers. tangente gradua Name for the tangent function in degrees mode. Used by screen readers. tangente radiana Name for the tangent function in radians mode. Used by screen readers. tangente gradu ehundarra Name for the tangent function in gradians mode. Used by screen readers. tangente gradu alderantzikatua Name for the inverse tangent function in degrees mode. Used by screen readers. tangente radian alderantzikatua Name for the inverse tangent function in radians mode. Used by screen readers. tangente gradu ehundar alderantzikatua Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hiperbolikoa Name for the hyperbolic tangent function. Used by screen readers. tangente hiperboliko alderantzikatua Name for the inverse hyperbolic tangent function. Used by screen readers. sekante-graduak Name for the secant function in degrees mode. Used by screen readers. sekante-radianak Name for the secant function in radians mode. Used by screen readers. sekante-gradu ehundarrak Name for the secant function in gradians mode. Used by screen readers. alderantzizko sekante-graduak Name for the inverse secant function in degrees mode. Used by screen readers. alderantzizko sekante-radianak Name for the inverse secant function in radians mode. Used by screen readers. alderantzizko sekante-gradu ehundarrak Name for the inverse secant function in gradians mode. Used by screen readers. sekante hiperbolikoa Name for the hyperbolic secant function. Used by screen readers. alderantzizko sekante hiperbolikoa Name for the inverse hyperbolic secant function. Used by screen readers. kosekante-graduak Name for the cosecant function in degrees mode. Used by screen readers. kosekante-radianak Name for the cosecant function in radians mode. Used by screen readers. kosekante-gradu ehundarrak Name for the cosecant function in gradians mode. Used by screen readers. alderantzizko kosekante-graduak Name for the inverse cosecant function in degrees mode. Used by screen readers. alderantzizko kosekante-gradu ehundarrak Name for the inverse cosecant function in radians mode. Used by screen readers. alderantzizko kosekante-gradu ehundarrak Name for the inverse cosecant function in gradians mode. Used by screen readers. kosekante hiperbolikoa Name for the hyperbolic cosecant function. Used by screen readers. alderantzizko kosekante hiperbolikoa Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangente-graduak Name for the cotangent function in degrees mode. Used by screen readers. Kotangente-radianak Name for the cotangent function in radians mode. Used by screen readers. kotangente-gradu ehundarrak Name for the cotangent function in gradians mode. Used by screen readers. alderantzizko kotangente-graduak Name for the inverse cotangent function in degrees mode. Used by screen readers. alderantzizko kotangente-radianak Name for the inverse cotangent function in radians mode. Used by screen readers. alderantzizko kotangente-gradu ehundarrak Name for the inverse cotangent function in gradians mode. Used by screen readers. kotangente hiperbolikoa Name for the hyperbolic cotangent function. Used by screen readers. alderantzizko kotangente hiperbolikoa Name for the inverse hyperbolic cotangent function. Used by screen readers. Erro kubikoa Name for the cube root function. Used by screen readers. Erregistro oinarria Name for the logbasey function. Used by screen readers. Balio absolutua Name for the absolute value function. Used by screen readers. ezkerreko desplazamendua Name for the programmer function that shifts bits to the left. Used by screen readers. eskuineko desplazamendua Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriala Name for the factorial function. Used by screen readers. gradu minutu segundo Name for the degree minute second (dms) function. Used by screen readers. logaritmo nepertarra Name for the natural log (ln) function. Used by screen readers. karratua Name for the square function. Used by screen readers. y erroa Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategoria {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft-en zerbitzu-hitzarmen Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Hasiera: From Date Header for AddSubtract Date Picker Mugitu kalkulu-emaitza ezkerrera Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Mugitu kalkulu-emaitza eskuinera Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Ezin izan da kalkulatu Text displayed when the application is not able to do a calculation Log Oinarria Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funtzioa Displayed on the button that contains a flyout for the general functions in scientific mode. Desberdintasunak Displayed on the button that contains a flyout for the inequality functions. Desberdintasunak Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit-aldaketa Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Alderantzikatzeko funtzioa Screen reader prompt for the shift button in the trig flyout in scientific mode. Funtzio hiperbolikoa Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekantea Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sekante hiperbolikoa Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arku sekantea Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arku sekante hiperbolikoa Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekantea Screen reader prompt for the Calculator button csc in the scientific flyout keypad Kosekante hiperbolikoa Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arku kosekantea Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arku kosekante hiperbolikoa Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangentea Screen reader prompt for the Calculator button cot in the scientific flyout keypad Kotangente hiperbolikoa Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arku kotangentea Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arku kotangente hiperbolikoa Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Zorua Screen reader prompt for the Calculator button floor in the scientific flyout keypad Sabaia Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Ausazkoa Screen reader prompt for the Calculator button random in the scientific flyout keypad Balio absolutua Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerren zenbakia Screen reader prompt for the Calculator button e in the scientific flyout keypad Berretzailearekiko bi Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Biratu ezkerrera eramangailuarekin Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Biratu eskuinera eramangailuarekin Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Eraman ezkerrera Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Ezkerreko desplazamendua Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Eraman eskuinera Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Eskuineko desplazamendua Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aldaketa aritmetikoa Label for a radio button that toggles arithmetic shift behavior for the shift operations. Aldaketa logikoa Label for a radio button that toggles logical shift behavior for the shift operations. Biratu aldaketa zirkularra Label for a radio button that toggles rotate circular behavior for the shift operations. Biratu eramangailu zirkularraren desplazamenduaren bidez Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Erro kubikoa Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funtzioak Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Eragile zientifikoen panelak Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programatzaileen eragile-panelak Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit esanguratsuenak Used to describe the last bit of a binary number. Used in bit flip Grafikoak Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Marraztu Screen reader prompt for the plot button on the graphing calculator operator keypad Freskatu ikuspegia automatikoki (Ktrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafiko ikuspegia Screen reader prompt for the graph view button. Egokiena automatikoki Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Eskuz egokitzea Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafikoaren ikuspegia berrezarri da Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Handiagotu (Ktrl+plus) This is the tool tip automation name for the Calculator zoom in button. Handiagotu Screen reader prompt for the zoom in button. Txikiagotu (Ktrl+minus) This is the tool tip automation name for the Calculator zoom out button. Txikiagotu Screen reader prompt for the zoom out button. Gehitu ekuazioa Placeholder text for the equation input button Ezin da partekatu une honetan. If there is an error in the sharing action will display a dialog with this text. Ados Used on the dismiss button of the share action error dialog. Ikusi zer grafiko egin dudan Windows Kalkulagailua erabiliz Sent as part of the shared content. The title for the share. Ekuazioak Header that appears over the equations section when sharing Aldagaiak Header that appears over the variables section when sharing Ekuazioak dituen diagrama baten irudia Alt text for the graph image when output via Share Aldagaiak Header text for variables area Urratsa Label text for the step text box Min Label text for the min text box Max Label text for the max text box Kolorea Label for the Line Color section of the style picker Estiloa Label for the Line Style section of the style picker Funtzio-analisia Title for KeyGraphFeatures Control Funtzioak ez du asintota horizontalik. Message displayed when the graph does not have any horizontal asymptotes Funtzioak ez du inflexio-punturik. Message displayed when the graph does not have any inflection points Funtzioak ez du puntu gehienekorik. Message displayed when the graph does not have any maxima Funtzioak ez du puntu gutxienekorik. Message displayed when the graph does not have any minima Konstantea String describing constant monotonicity of a function Beherantz String describing decreasing monotonicity of a function Ezin da zehaztu funtzioaren monotonizazioa. Error displayed when monotonicity cannot be determined Gorantz String describing increasing monotonicity of a function Funtzioaren monotonizazioa ezezaguna da. Error displayed when monotonicity is unknown Funtzioak ez du asintota zeiharrik. Message displayed when the graph does not have any oblique asymptotes Ezin da zehaztu funtzioaren paritaterik. Error displayed when parity is cannot be determined Funtzioa bikoitia da. Message displayed with the function parity is even Funtzioa ez da bikoitia ezta bakoitia ere. Message displayed with the function parity is neither even nor odd Funtzioa bakoitia da. Message displayed with the function parity is odd Funtzioaren paritatea ezezaguna da. Error displayed when parity is unknown Aldizkakotasuna ez da onartzen funtzio honetan. Error displayed when periodicity is not supported Funtzioa ez da aldizkakoa. Message displayed with the function periodicity is not periodic Funtzioaren aldizkakotasuna ezezaguna da. Message displayed with the function periodicity is unknown Eginbide horiek konplexuegiak dira Kalkulagailuak kalkuluak egiteko: Error displayed when analysis features cannot be calculated Funtzioak ez du asintota bertikalik. Message displayed when the graph does not have any vertical asymptotes Funtzioak ez du puntu X ebakitze-punturik. Message displayed when the graph does not have any x-intercepts Funtzioak ez du puntu Y ebakitze-punturik. Message displayed when the graph does not have any y-intercepts Domeinua Title for KeyGraphFeatures Domain Property Asintota horizontalak Title for KeyGraphFeatures Horizontal aysmptotes Property Inflexio-puntuak Title for KeyGraphFeatures Inflection points Property Ez da onartzen funtzio honen analisia. Error displayed when graph analysis is not supported or had an error. f(x) formatua duten funtzioetan bakarrik erabil daiteke analisia. Adibidez: y=x Error displayed when graph analysis detects the function format is not f(x). Gehienekoa Title for KeyGraphFeatures Maxima Property Gutxienekoa Title for KeyGraphFeatures Minima Property Monotonizazioa Title for KeyGraphFeatures Monotonicity Property Asintota zeiharrak Title for KeyGraphFeatures Oblique asymptotes Property Paritatea Title for KeyGraphFeatures Parity Property Aldizkakotasuna Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Tartea Title for KeyGraphFeatures Range Property Asintota bertikalak Title for KeyGraphFeatures Vertical asymptotes Property X ebakitze-puntua Title for KeyGraphFeatures XIntercept Property Y ebakitze-puntua Title for KeyGraphFeatures YIntercept Property Ezin izan da gauzatu analisia funtzioarentzat. Ezin izan da kalkulatu funtzioaren domeinua. Error displayed when Domain is not returned from the analyzer. Ezin izan da kalkulatu tartearen domeinua. Error displayed when Range is not returned from the analyzer. Gehiegizkoa (zenbakia handiegia da) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radian modua beharrezkoa da ekuazio honen grafikoa egiteko. Error that occurs during graphing when radians is required. Funtzio hau konplexuegia da grafikoa egiteko Error that occurs during graphing when the equation is too complex. Gradu modua beharrezkoa da ekuazio honen grafikoa egiteko Error that occurs during graphing when degrees is required Funtzio faktorialak argumentu baliogabe bat du Error that occurs during graphing when a factorial function has an invalid argument. Funtzio faktorialak grafikoa egiteko handiegia den argumentu bat du Error that occurs during graphing when a factorial has a large n Modulua zenbaki osoekin bakarrik erabil daiteke Error that occurs during graphing when modulo is used with a float. Ekuazioak ez du emaitzarik Error that occurs during graphing when the equation has no solution. Ezin da zeroz zatitu Error that occurs during graphing when a divison by zero occurs. Elkar ukatzen duten baldintza logikoak ditu ekuazioak Error that occurs during graphing when mutually exclusive conditions are used. Ekuazioa domeinutik kanpo dago Error that occurs during graphing when the equation is out of domain. Ekuazio honen grafikoa egitea ez da onartzen. Error that occurs during graphing when the equation is not supported. Ekuazioak irekiera parentesi bat falta du Error that occurs during graphing when the equation is missing a ( Ekuazioak itxiera parentesi bat falta du Error that occurs during graphing when the equation is missing a ) Zenbaki batek dezimalen bereizle gehiegi ditu Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Dezimalen bereizleak digituak falta ditu Error that occurs during graphing with a decimal point without digits Ustekabeko espresio bukaera Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Espero ez diren karaktereak daude espresioan Error that occurs during graphing when there is an unexpected token. Karaktere baliogabeak daude espresioan Error that occurs during graphing when there is an invalid token. Berdinketa ikur gehiegi daude. Error that occurs during graphing when there are too many equals. Funtzioak, gutxienez, x edo y aldagai bat izan behar du Error that occurs during graphing when the equation is missing x or y. Espresio baliogabea Error that occurs during graphing when an invalid syntax is used. Adierazpena hutsik dago Error that occurs during graphing when the expression is empty Berdinketa erabili da ekuaziorik gabe Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Funtzio izenaren atzean parentesia falta da Error that occurs during graphing when parenthesis are missing after a function. Eragiketa matematiko batek parametro kopuru okerra du. Error that occurs during graphing when a function has the wrong number of parameters Aldagai baten izenak ez du balio Error that occurs during graphing when a variable name is invalid. Ekuazioak irekiera kortxete bat falta du Error that occurs during graphing when a { is missing Ekuazioak itxiera kortxete bat falta du Error that occurs during graphing when a } is missing. "i" eta "I" ezin dira erabili aldagaiak izendatzeko Error that occurs during graphing when i or I is used. Ezin da ekuazioaren grafikoa egin General error that occurs during graphing. Emandako oinarrirako ezin izan da digitua ebatzi Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Oinarriak 2 baino handiagoa eta 36 baino txikiagoa izan behar du Error that occurs during graphing when the base is out of range. Operazio matematiko batek eskatzen du parametroetako bat aldagai izatea Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ekuazioa eragingai logikoak eta eskalarrak nahasten ari da Error that occurs during graphing when operands are mixed. Such as true and 1. x edo y ezin dira goiko edo beheko muga izan Error that occurs during graphing when x or y is used in integral upper limits. x edo y ezin dira erabili puntu limitean Error that occurs during graphing when x or y is used in the limit point. Ezin da erabili infinitu konplexua Error that occurs during graphing when complex infinity is used Desberdintzetan ezin da zenbaki konplexurik erabili. Error that occurs during graphing when complex numbers are used in inequalities. Atzera funtzioen zerrendara This is the tooltip for the back button in the equation analysis page in the graphing calculator Atzera funtzioen zerrendara This is the automation name for the back button in the equation analysis page in the graphing calculator Analizatu funtzioa This is the tooltip for the analyze function button Analizatu funtzioa This is the automation name for the analyze function button Analizatu funtzioa This is the text for the for the analyze function context menu command Kendu ekuazioa This is the tooltip for the graphing calculator remove equation buttons Kendu ekuazioa This is the automation name for the graphing calculator remove equation buttons Kendu ekuazioa This is the text for the for the remove equation context menu command Partekatu This is the automation name for the graphing calculator share button. Partekatu This is the tooltip for the graphing calculator share button. Aldatu ekuazioaren estiloa This is the tooltip for the graphing calculator equation style button Aldatu ekuazioaren estiloa This is the automation name for the graphing calculator equation style button Aldatu ekuazioaren estiloa This is the text for the for the equation style context menu command Erakutsi ekuazioa This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ezkutatu ekuazioa This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Erakutsi %1 ekuazioa {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ezkutatu %1 ekuazioa {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Gelditu jarraipena This is the tooltip/automation name for the graphing calculator stop tracing button Hasi jarraipena This is the tooltip/automation name for the graphing calculator start tracing button Grafikoa ikusteko leihoa, x ardatza %1 eta %2 balioei lotuta, y ardatza %3 eta %4 balioei lotuta eta %5 ekuazio erakusten {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguratu graduatzailea This is the tooltip text for the slider options button in Graphing Calculator Konfiguratu graduatzailea This is the automation name text for the slider options button in Graphing Calculator Aldatu ekuazio modura Used in Graphing Calculator to switch the view to the equation mode Aldatu grafiko modura Used in Graphing Calculator to switch the view to the graph mode Aldatu ekuazio modura Used in Graphing Calculator to switch the view to the equation mode Uneko modua ekuazioa modua da Announcement used in Graphing Calculator when switching to the equation mode Uneko modua grafiko modua da Announcement used in Graphing Calculator when switching to the graph mode Leihoa Heading for window extents on the settings Graduak Degrees mode on settings page Gradianak Gradian mode on settings page Radianak Radians mode on settings page Unitateak Heading for Unit's on the settings Berrezarri ikuspegia Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Grafikoaren aukerak This is the tooltip text for the graph options button in Graphing Calculator Grafikoaren aukerak This is the automation name text for the graph options button in Graphing Calculator Grafikoaren aukerak Heading for the Graph options flyout in Graphing mode. Aldagai-aukerak Screen reader prompt for the variable settings toggle button Txandakatu aldagai-aukerak Tool tip for the variable settings toggle button Lerroaren lodiera Heading for the Graph options flyout in Graphing mode. Lerro-aukerak Heading for the equation style flyout in Graphing mode. Lerro zabalera txikia Automation name for line width setting Tarteko lerro zabalera Automation name for line width setting Lerro zabalera handia Automation name for line width setting Lerro zabalera oso handia Automation name for line width setting Idatzi adierazpena this is the placeholder text used by the textbox to enter an equation Kopiatu Copy menu item for the graph context menu Ebaki Cut menu item from the Equation TextBox Kopiatu Copy menu item from the Equation TextBox Itsatsi Paste menu item from the Equation TextBox Desegin Undo menu item from the Equation TextBox Hautatu guztiak Select all menu item from the Equation TextBox Funtzio-sarrera The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funtzio-sarrera The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funtzioak sartzeko panela The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel aldakorra The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Zerrenda aldakorra The automation name for the Variable ListView that is shown when Calculator is in graphing mode. %1 zerrendako elementu aldakorra The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Balio aldakorraren testu-koadroa The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Balio aldakorraren graduatzailea The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Gutxieneko balio aldakorraren testu-koadroa The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Urrats balio aldakorraren testu-koadroa The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Gehieneko balio aldakorraren testu-koadroa The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Marra-jarraitua estiloa Name of the solid line style for a graphed equation Puntudun marra estiloa Name of the dotted line style for a graphed equation Marra eten estiloa Name of the dashed line style for a graphed equation Urdin iluna Name of color in the color picker Itsas urdina Name of color in the color picker Bioleta Name of color in the color picker Berdea Name of color in the color picker Menda-kolorea (berdea) Name of color in the color picker Berde iluna Name of color in the color picker Ikatz-kolorea Name of color in the color picker Gorria Name of color in the color picker Aran-kolore argia Name of color in the color picker Magenta Name of color in the color picker Urre-horia Name of color in the color picker Laranja argia Name of color in the color picker Marroia Name of color in the color picker Beltza Name of color in the color picker Zuria Name of color in the color picker 1. kolorea Name of color in the color picker 2. kolorea Name of color in the color picker 3. kolorea Name of color in the color picker 4. kolorea Name of color in the color picker Grafikoaren gaia Graph settings heading for the theme options Beti argi Graph settings option to set graph to light theme Bat-etorri aplikazio-gaiarekin Graph settings option to set graph to match the app theme Gaia This is the automation name text for the Graph settings heading for the theme options Beti argi This is the automation name text for the Graph settings option to set graph to light theme Bat-etorri aplikazio-gaiarekin This is the automation name text for the Graph settings option to set graph to match the app theme Kendu da funtzioa Announcement used in Graphing Calculator when a function is removed from the function list Funtzioaren analisi-ekuazio koadroa This is the automation name text for the equation box in the function analysis panel Berdin Screen reader prompt for the equal button on the graphing calculator operator keypad Hau baino gutxiago: Screen reader prompt for the Less than button Txikiagoa edo berdina Screen reader prompt for the Less than or equal button Berdina Screen reader prompt for the Equal button Handiagoa edo berdina Screen reader prompt for the Greater than or equal button Hau baino handiagoa Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Bidali Screen reader prompt for the submit button on the graphing calculator operator keypad Funtzio-analisia Screen reader prompt for the function analysis grid Grafikoaren aukerak Screen reader prompt for the graph options panel Historia eta memoria-zerrendak Automation name for the group of controls for history and memory lists. Memoria-zerrenda Automation name for the group of controls for memory list. Garbitu da historiaren %1. erretena {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulagailua beti gainean Announcement to indicate calculator window is always shown on top. Kalkulagailua, itzuli ikuspegi osora Announcement to indicate calculator window is now back to full view. Desplazamendu aritmetikoa hautatu da Label for a radio button that toggles arithmetic shift behavior for the shift operations. Desplazamendu logikoa hautatu da Label for a radio button that toggles logical shift behavior for the shift operations. Biratu desplazamendu zirkularra aukera hautatu da Label for a radio button that toggles rotate circular behavior for the shift operations. Biratu eramangailu zirkularraren desplazamenduaren bidez aukera hautatu da Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Ezarpenak Header text of Settings page Itxura Subtitle of appearance setting on Settings page Aplikazioaren gaia Title of App theme expander Hautatu bistaratu beharreko aplikazioaren gaia Description of App theme expander Argia Lable for light theme option Iluna Lable for dark theme option Erabili sistemaren ezarpenak Lable for the app theme option to use system setting Atzera Screen reader prompt for the Back button in title bar to back to main page Ezarpenen orria Announcement used when Settings page is opened Ireki laster-menua eskuragarri dauden ekintzak ikusteko Screen reader prompt for the context menu of the expression box Ados The text of OK button to dismiss an error dialog. Ezin izan da leheneratu argazkia. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/fa-IR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ورودی نامعتبر Error message shown when the input makes a function fail, like log(-1) نتیجه تعریف نشده است Error message shown when there's no possible value for a function. حافظه کافی نیست Error message shown when we run out of memory during a calculation. سرریز Error message shown when there's an overflow during the calculation. نتیجه تعریف نشده است Same as 101 نتیجه تعریف نشده است Same 101 سرریز Same as 107 سرریز Same 107 امکان تقسیم بر صفر وجود ندارد Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/fa-IR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ماشین حساب {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. ماشین حساب [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. ماشین حساب Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. ماشین حساب Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. ماشین حساب {@Appx_Description@} This description is used for the official application when published through Windows Store. ماشین حساب [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. کپی Copy context menu string جایگذاری Paste context menu string تقریباً برابر با The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1، مقدار %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 بیت {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) ۶۳ اُمین Sub-string used in automation name for 63 bit in bit flip ۶۲ اُمین Sub-string used in automation name for 62 bit in bit flip ۶۱ اُمین Sub-string used in automation name for 61 bit in bit flip ۶۰ اُمین Sub-string used in automation name for 60 bit in bit flip ۵۹ اُمین Sub-string used in automation name for 59 bit in bit flip ۵۸ اُمین Sub-string used in automation name for 58 bit in bit flip ۵۷ اُمین Sub-string used in automation name for 57 bit in bit flip ۵۶ اُمین Sub-string used in automation name for 56 bit in bit flip ۵۵ اُمین Sub-string used in automation name for 55 bit in bit flip ۵۴ اُمین Sub-string used in automation name for 54 bit in bit flip ۵۳ اُمین Sub-string used in automation name for 53 bit in bit flip ۵۲ اُمین Sub-string used in automation name for 52 bit in bit flip ۵۱ اُمین Sub-string used in automation name for 51 bit in bit flip ۵۰ اُمین Sub-string used in automation name for 50 bit in bit flip ۴۹ اُمین Sub-string used in automation name for 49 bit in bit flip ۴۸ اُمین Sub-string used in automation name for 48 bit in bit flip ۴۷ اُمین Sub-string used in automation name for 47 bit in bit flip ۴۶ اُمین Sub-string used in automation name for 46 bit in bit flip ۴۵ اُمین Sub-string used in automation name for 45 bit in bit flip ۴۴ اُمین Sub-string used in automation name for 44 bit in bit flip ۴۳ اُمین Sub-string used in automation name for 43 bit in bit flip ۴۲ اُمین Sub-string used in automation name for 42 bit in bit flip ۴۱ اُمین Sub-string used in automation name for 41 bit in bit flip ۴۰ اُمین Sub-string used in automation name for 40 bit in bit flip ۳۹ اُمین Sub-string used in automation name for 39 bit in bit flip ۳۸ اُمین Sub-string used in automation name for 38 bit in bit flip ۳۷ اُمین Sub-string used in automation name for 37 bit in bit flip ۳۶ اُمین Sub-string used in automation name for 36 bit in bit flip ۳۵ اُمین Sub-string used in automation name for 35 bit in bit flip ۳۴ اُمین Sub-string used in automation name for 34 bit in bit flip ۳۳ اُمین Sub-string used in automation name for 33 bit in bit flip ۳۲ اُمین Sub-string used in automation name for 32 bit in bit flip ۳۱ اُمین Sub-string used in automation name for 31 bit in bit flip ۳۰ اُمین Sub-string used in automation name for 30 bit in bit flip ۲۹ اُمین Sub-string used in automation name for 29 bit in bit flip ۲۸ اُمین Sub-string used in automation name for 28 bit in bit flip ۲۷ اُمین Sub-string used in automation name for 27 bit in bit flip ۲۶ اُمین Sub-string used in automation name for 26 bit in bit flip ۲۵ اُمین Sub-string used in automation name for 25 bit in bit flip ۲۴ اُمین Sub-string used in automation name for 24 bit in bit flip ۲۳ اُمین Sub-string used in automation name for 23 bit in bit flip ۲۲ اُمین Sub-string used in automation name for 22 bit in bit flip ۲۱ اُمین Sub-string used in automation name for 21 bit in bit flip ۲۰ اُمین Sub-string used in automation name for 20 bit in bit flip ۱۹ اُمین Sub-string used in automation name for 19 bit in bit flip ۱۸ اُمین Sub-string used in automation name for 18 bit in bit flip ۱۷ اُمین Sub-string used in automation name for 17 bit in bit flip ۱۶ اُمین Sub-string used in automation name for 16 bit in bit flip ۱۵ اُمین Sub-string used in automation name for 15 bit in bit flip ۱۴ اُمین Sub-string used in automation name for 14 bit in bit flip ۱۳ اُمین Sub-string used in automation name for 13 bit in bit flip ۱۲ اُمین Sub-string used in automation name for 12 bit in bit flip ۱۱ اُمین Sub-string used in automation name for 11 bit in bit flip ۱۰ اُمین Sub-string used in automation name for 10 bit in bit flip ۹ اُمین Sub-string used in automation name for 9 bit in bit flip ۸ اُمین Sub-string used in automation name for 8 bit in bit flip ۷ اُمین Sub-string used in automation name for 7 bit in bit flip ۶ اُمین Sub-string used in automation name for 6 bit in bit flip ۵ اُمین Sub-string used in automation name for 5 bit in bit flip ۴ اُمین Sub-string used in automation name for 4 bit in bit flip ۳ اُمین Sub-string used in automation name for 3 bit in bit flip ۲ اُمین Sub-string used in automation name for 2 bit in bit flip اولین Sub-string used in automation name for 1 bit in bit flip کم‌اهمیت‌ترین بیت Used to describe the first bit of a binary number. Used in bit flip باز کردن منوی شناور حافظه This is the automation name and label for the memory button when the memory flyout is closed. بستن منوی شناور حافظه This is the automation name and label for the memory button when the memory flyout is open. نگه داشتن در بالا This is the tool tip automation name for the always-on-top button when out of always-on-top mode. بازگشت به نمای کامل This is the tool tip automation name for the always-on-top button when in always-on-top mode. حافظه This is the tool tip automation name for the memory button. تاریخچه (Ctrl+H) This is the tool tip automation name for the history button. صفحه تغییر بیت This is the tool tip automation name for the bitFlip button. صفحه کلید کامل This is the tool tip automation name for the numberPad button. پاک کردن کل حافظه (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. حافظه The text that shows as the header for the memory list حافظه The automation name for the Memory pivot item that is shown when Calculator is in wide layout. تاریخچه The text that shows as the header for the history list تاریخچه The automation name for the History pivot item that is shown when Calculator is in wide layout. مبدل Label for a control that activates the unit converter mode. علمی Label for a control that activates scientific mode calculator layout استاندارد Label for a control that activates standard mode calculator layout. حالت مبدل Screen reader prompt for a control that activates the unit converter mode. حالت علمی Screen reader prompt for a control that activates scientific mode calculator layout حالت استاندارد Screen reader prompt for a control that activates standard mode calculator layout. پاک کردن کل تاریخچه "ClearHistory" used on the calculator history pane that stores the calculation history. پاک کردن کل تاریخچه This is the tool tip automation name for the Clear History button. پنهان کردن "HideHistory" used on the calculator history pane that stores the calculation history. استاندارد The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. علمی The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. برنامه‌نویس The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. مبدل The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". ماشین حساب The text that shows in the dropdown navigation control for the calculator group. مبدل The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". ماشین حساب The text that shows in the dropdown navigation control for the calculator group in upper case. مبدل‌ها Pluralized version of the converter group text, used for the screen reader prompt. ماشین حساب‌ها Pluralized version of the calculator group text, used for the screen reader prompt. مقدار نمایش %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". عبارت %1 است، ورودی فعلی %2 است {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". مقدار نمایش %1 ممیز {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. عبارت %1 است {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". نمایش مقدار کپی‌شده در کلیپ‌بورد Screen reader prompt for the Calculator display copy button, when the button is invoked. تاریخچه Screen reader prompt for the history flyout حافظه Screen reader prompt for the memory flyout شانزده شانزدهی %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ده دهی %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". هشت هشتی %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". دودویی %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". پاک کردن کل تاریخچه Screen reader prompt for the Calculator History Clear button تاریخچه پاک شد Screen reader prompt for the Calculator History Clear button, when the button is invoked. پنهان کردن تاریخچه Screen reader prompt for the Calculator History Hide button باز کردن تاریخچه حاشیه‌ای Screen reader prompt for the Calculator History button, when the flyout is closed. بستن منوی شناور تاریخچه Screen reader prompt for the Calculator History button, when the flyout is open. ذخیره حافظه Screen reader prompt for the Calculator Memory button ذخیره حافظه (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. پاک کردن کل حافظه Screen reader prompt for the Calculator Clear Memory button حافظه پاک شد Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. فراخوانی حافظه Screen reader prompt for the Calculator Memory Recall button فراخوانی حافظه (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. افزودن به حافظه Screen reader prompt for the Calculator Memory Add button افزودن به حافظه (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. کم کردن از حافظه Screen reader prompt for the Calculator Memory Subtract button کم کردن از حافظه (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. پاک کردن مورد حافظه Screen reader prompt for the Calculator Clear Memory button پاک کردن مورد حافظه This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. افزودن به مورد حافظه Screen reader prompt for the Calculator Memory Add button in the Memory list افزودن به مورد حافظه This is the tool tip automation name for the Calculator Memory Add button in the Memory list کم کردن از مورد حافظه Screen reader prompt for the Calculator Memory Subtract button in the Memory list کم کردن از مورد حافظه This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list پاک کردن مورد حافظه Screen reader prompt for the Calculator Clear Memory button پاک کردن مورد حافظه Text string for the Calculator Clear Memory option in the Memory list context menu افزودن به مورد حافظه Screen reader prompt for the Calculator Memory Add swipe button in the Memory list افزودن به مورد حافظه Text string for the Calculator Memory Add option in the Memory list context menu کم کردن از مورد حافظه Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list کم کردن از مورد حافظه Text string for the Calculator Memory Subtract option in the Memory list context menu حذف Text string for the Calculator Delete swipe button in the History list کپی Text string for the Calculator Copy option in the History list context menu حذف Text string for the Calculator Delete option in the History list context menu حذف مورد تاریخچه Screen reader prompt for the Calculator Delete swipe button in the History list حذف مورد تاریخچه Screen reader prompt for the Calculator Delete option in the History list context menu کلید پس‌برد Screen reader prompt for the Calculator Backspace button ۰ Screen reader prompt for the Calculator number "0" button ۱ Screen reader prompt for the Calculator number "1" button صفر Screen reader prompt for the Calculator number "0" button یک Screen reader prompt for the Calculator number "1" button دو Screen reader prompt for the Calculator number "2" button سه Screen reader prompt for the Calculator number "3" button چهار Screen reader prompt for the Calculator number "4" button پنج Screen reader prompt for the Calculator number "5" button شش Screen reader prompt for the Calculator number "6" button هفت Screen reader prompt for the Calculator number "7" button هشت Screen reader prompt for the Calculator number "8" button نه Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button و Screen reader prompt for the Calculator And button یا Screen reader prompt for the Calculator Or button غیر از Screen reader prompt for the Calculator Not button چرخش به چپ Screen reader prompt for the Calculator ROL button چرخش به راست Screen reader prompt for the Calculator ROR button انتقال به چپ Screen reader prompt for the Calculator LSH button انتقال به راست Screen reader prompt for the Calculator RSH button یای انحصاری Screen reader prompt for the Calculator XOR button کلید تغییر چهار کلمه Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". کلید تغییر دو کلمه Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". تغییر کلمات Screen reader prompt for the Calculator word button. Should read as "Word toggle button". تغییر بایت Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". صفحه تغییر بیت Screen reader prompt for the Calculator bitFlip button صفحه کلید کامل Screen reader prompt for the Calculator numberPad button جداکننده اعشار Screen reader prompt for the "." button پاک کردن ورودی Screen reader prompt for the "CE" button پاک کردن Screen reader prompt for the "C" button تقسیم بر Screen reader prompt for the divide button on the number pad ضرب در Screen reader prompt for the multiply button on the number pad مساوی است با Screen reader prompt for the equals button on the scientific operator keypad تابع معکوس Screen reader prompt for the shift button on the number pad in scientific mode. منهای Screen reader prompt for the minus button on the number pad منهای We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 به علاوه Screen reader prompt for the plus button on the number pad جذر ریشه دوم Screen reader prompt for the square root button on the scientific operator keypad درصد Screen reader prompt for the percent button on the scientific operator keypad منفی مثبت Screen reader prompt for the negate button on the scientific operator keypad منفی مثبت Screen reader prompt for the negate button on the converter operator keypad معکوس Screen reader prompt for the invert button on the scientific operator keypad پرانتز سمت چپ Screen reader prompt for the Calculator "(" button on the scientific operator keypad پرانتز چپ، تعداد پرانتزهای باز %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". پرانتز سمت راست Screen reader prompt for the Calculator ")" button on the scientific operator keypad تعداد پرانتز باز %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". هیچ پرانتز بازی برای بستن وجود ندارد. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". نماد علمی Screen reader prompt for the Calculator F-E the scientific operator keypad تابع هیپربولیک Screen reader prompt for the Calculator button HYP in the scientific operator keypad پی Screen reader prompt for the Calculator pi button on the scientific operator keypad سینوس Screen reader prompt for the Calculator sin button on the scientific operator keypad کسینوس Screen reader prompt for the Calculator cos button on the scientific operator keypad تانژانت Screen reader prompt for the Calculator tan button on the scientific operator keypad سینوس هیپربولیک Screen reader prompt for the Calculator sinh button on the scientific operator keypad کسینوس هیپربولیک Screen reader prompt for the Calculator cosh button on the scientific operator keypad تانژانت هیپربولیک Screen reader prompt for the Calculator tanh button on the scientific operator keypad مربع Screen reader prompt for the x squared on the scientific operator keypad. مکعب Screen reader prompt for the x cubed on the scientific operator keypad. آرک سینوس Screen reader prompt for the inverted sin on the scientific operator keypad. آرک کسینوس Screen reader prompt for the inverted cos on the scientific operator keypad. آرک تانژانت Screen reader prompt for the inverted tan on the scientific operator keypad. آرک سینوس هیپربولیک Screen reader prompt for the inverted sinh on the scientific operator keypad. آرک کسینوس هیپربولیک Screen reader prompt for the inverted cosh on the scientific operator keypad. آرک تانژانت هیپربولیک Screen reader prompt for the inverted tanh on the scientific operator keypad. «X» به توان Screen reader prompt for x power y button on the scientific operator keypad. ده به توان Screen reader prompt for the 10 power x button on the scientific operator keypad. «e» به توان Screen reader for the e power x on the scientific operator keypad. ریشه «y» ام از «x» Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. لگاریتم Screen reader for the log base 10 on the scientific operator keypad لگاریتم طبیعی Screen reader for the log base e on the scientific operator keypad باقیمانده تقسیم Screen reader for the mod button on the scientific operator keypad توان Screen reader for the exp button on the scientific operator keypad درجه دقیقه ثانیه Screen reader for the exp button on the scientific operator keypad درجه Screen reader for the exp button on the scientific operator keypad قسمت صحیح Screen reader for the int button on the scientific operator keypad قسمت اعشاری Screen reader for the frac button on the scientific operator keypad فاکتوریل Screen reader for the factorial button on the basic operator keypad کلید تغییر درجه‌ها This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". تغییر گرادیان This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". تغییر رادیان This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". منوی کشویی حالت Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. منوی کشویی دسته‌ها Screen reader prompt for the Categories dropdown field. نگه داشتن در بالا Screen reader prompt for the Always-on-Top button when in normal mode. بازگشت به نمای کامل Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. نگه داشتن در بالا (Alt+بالا) This is the tool tip automation name for the Always-on-Top button when in normal mode. بازگشت به نمای کامل (Alt+بالا) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. تبدیل از %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. تبدیل از %1 ممیز %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. تبدیل به %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 %3 %4 است Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. واحد ورودی Screen reader prompt for the Unit Converter Units1 i.e. top units field. واحد خروجی Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. مساحت Unit conversion category name called Area (eg. area of a sports field in square meters) داده Unit conversion category name called Data انرژی Unit conversion category name called Energy. (eg. the energy in a battery or in food) طول Unit conversion category name called Length توان Unit conversion category name called Power (eg. the power of an engine or a light bulb) سرعت Unit conversion category name called Speed زمان Unit conversion category name called Time حجم Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) دما Unit conversion category name called Temperature وزن و جرم Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. فشار Unit conversion category name called Pressure زاویه Unit conversion category name called Angle واحد پول Unit conversion category name called Currency اونس مایع (انگلستان) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اونس مایع (انگلستان) An abbreviation for a measurement unit of volume اونس مایع (ایالات متحده) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اونس مایع (ایالات متحده) An abbreviation for a measurement unit of volume گالن (انگلستان) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گالن (انگلستان) An abbreviation for a measurement unit of volume گالن (ایالات متحده) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گالن (ایالات متحده) An abbreviation for a measurement unit of volume لیتر A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) لیتر An abbreviation for a measurement unit of volume میلی‌لیتر A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میلی‌لیتر An abbreviation for a measurement unit of volume پینت (انگلستان) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پینت (انگلستان) An abbreviation for a measurement unit of volume پینت (ایالات متحده) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پینت (ایالات متحده) An abbreviation for a measurement unit of volume قاشق غذاخوری (آمریکا) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قاشق غذاخوری (ایالات متحده) An abbreviation for a measurement unit of volume قاشق چایخوری (آمریکا) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قاشق چایخوری (ایالات متحده) An abbreviation for a measurement unit of volume قاشق غذاخوری (بریتانیا) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قاشق غذاخوری (انگلستان) An abbreviation for a measurement unit of volume قاشق چایخوری (بریتانیا) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قاشق چایخوری (انگلستان) An abbreviation for a measurement unit of volume کوارت (انگلستان) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کوارت (انگلستان) An abbreviation for a measurement unit of volume کوارت (ایالات متحده) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کوارت (ایالات متحده) An abbreviation for a measurement unit of volume فنجان (ایالات متحده) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فنجان (ایالات متحده) An abbreviation for a measurement unit of volume آ An abbreviation for a measurement unit of length ایکر An abbreviation for a measurement unit of volume بیت An abbreviation for a measurement unit of data یکای بریتانیایی حرارت An abbreviation for a measurement unit of volume یکای بریتانیایی حرارت/دقیقه An abbreviation for a measurement unit of power بایت An abbreviation for a measurement unit of data کالری An abbreviation for a measurement unit of energy سانتی‌متر An abbreviation for a measurement unit of length سانتی‌متر بر ثانیه An abbreviation for a measurement unit of speed سانتی‌متر مکعب An abbreviation for a measurement unit of volume فوت مکعب An abbreviation for a measurement unit of volume اینچ مکعب An abbreviation for a measurement unit of volume متر مکعب An abbreviation for a measurement unit of volume یارد مکعب An abbreviation for a measurement unit of volume روز An abbreviation for a measurement unit of time درجه سانتی‌گراد An abbreviation for "degrees Celsius" درجه فارنهایت An abbreviation for a "degrees Fahrenheit" الکترون ولت An abbreviation for a measurement unit of energy فوت An abbreviation for a measurement unit of length فوت بر ثانیه An abbreviation for a measurement unit of speed فوت.پوند An abbreviation for a measurement unit of energy گیگابیت An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data هکتار An abbreviation for a measurement unit of area اسب بخار (ایالات متحده) An abbreviation for a measurement unit of power ساعت An abbreviation for a measurement unit of time اینچ An abbreviation for a measurement unit of length ژول An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption کلوین An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) کیلوبیت An abbreviation for a measurement unit of data کیلوبایت An abbreviation for a measurement unit of data کیلوکالری An abbreviation for a measurement unit of energy کیلوژول An abbreviation for a measurement unit of energy کیلومتر An abbreviation for a measurement unit of length کیلومتر بر ساعت An abbreviation for a measurement unit of speed کیلووات An abbreviation for a measurement unit of power گره An abbreviation for a measurement unit of speed ماخ An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) مگابیت An abbreviation for a measurement unit of data مگابایت An abbreviation for a measurement unit of data متر An abbreviation for a measurement unit of length متر بر ثانیه An abbreviation for a measurement unit of speed میکرومتر An abbreviation for a measurement unit of length میکروثانیه An abbreviation for a measurement unit of time مایل An abbreviation for a measurement unit of length مایل بر ساعت An abbreviation for a measurement unit of speed میلی‌متر An abbreviation for a measurement unit of length میلی‌ثانیه An abbreviation for a measurement unit of time دقیقه An abbreviation for a measurement unit of time نانومتر An abbreviation for a measurement unit of length مایل دریایی An abbreviation for a measurement unit of length پتابیت An abbreviation for a measurement unit of data پتابایت An abbreviation for a measurement unit of data فوت.پوند/دقیقه An abbreviation for a measurement unit of power ثانیه An abbreviation for a measurement unit of time سانتی‌متر مربع An abbreviation for a measurement unit of area فوت مربع An abbreviation for a measurement unit of area اینچ مربع An abbreviation for a measurement unit of area کیلومتر مربع An abbreviation for a measurement unit of area متر مربع An abbreviation for a measurement unit of area مایل مربع An abbreviation for a measurement unit of area میلی‌متر مربع An abbreviation for a measurement unit of area یارد مربع An abbreviation for a measurement unit of area ترابیت An abbreviation for a measurement unit of data ترابایت An abbreviation for a measurement unit of data وات An abbreviation for a measurement unit of power هفته An abbreviation for a measurement unit of time یارد An abbreviation for a measurement unit of length سال An abbreviation for a measurement unit of time گیبی‌بیت An abbreviation for a measurement unit of data گیبی‌بایت An abbreviation for a measurement unit of data کیبی‌بیت An abbreviation for a measurement unit of data کیبی‌بایت An abbreviation for a measurement unit of data مبی‌بیت An abbreviation for a measurement unit of data مبی‌بایت An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data پبی‌بیت An abbreviation for a measurement unit of data پبی‌بایت An abbreviation for a measurement unit of data تبی‌بیت An abbreviation for a measurement unit of data تبی‌بایت An abbreviation for a measurement unit of data ژ An abbreviation for a measurement unit of data اگزابایت An abbreviation for a measurement unit of data اکسبی‌بیت An abbreviation for a measurement unit of data اکسبی‌بایت An abbreviation for a measurement unit of data زتابیت An abbreviation for a measurement unit of data زتابایت An abbreviation for a measurement unit of data زبی‌بیت An abbreviation for a measurement unit of data زبی‌بایت An abbreviation for a measurement unit of data یوتابیت An abbreviation for a measurement unit of data یوتابایت An abbreviation for a measurement unit of data یوبی‌بیت An abbreviation for a measurement unit of data یوبی‌بایت An abbreviation for a measurement unit of data ایکر A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یکای بریتانیایی حرارت A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یکای بریتانیایی حرارت/دقیقه A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کالری گرمایی A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سانتی متر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سانتی‌متر بر ثانیه A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سانتی‌متر مکعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت مکعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اینچ مکعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر مکعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یارد مکعب A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) روز A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سانتی‌گراد An option in the unit converter to select degrees Celsius فارنهایت An option in the unit converter to select degrees Fahrenheit الکترون ولت A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت بر ثانیه A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت-پوند A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت-پوند/دقیقه A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گیگابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گیگابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) هکتار A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اسب بخار (ایالات متحده) A measurement unit for power ساعت A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اینچ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ژول A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلووات ساعت A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کلوین An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". کیلوبیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلوبایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کالری غذایی A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلوژول A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلومتر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلومتر بر ساعت A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلووات A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گره A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ماخ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) مگابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مگابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر بر ثانیه A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میکرون A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میکرو ثانیه A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مایل A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مایل بر ساعت A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میلی‌متر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میلی‌ثانیه A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دقیقه A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نیبل A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نانومتر A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) آنگستروم A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مایل دریایی A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پتابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پتابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ثانیه A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سانتی‌متر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فوت مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اینچ مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلومتر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) متر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مایل مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میلی‌متر مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یارد مربع A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ترابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ترابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) وات A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) هفته A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یارد A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سال A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قی An abbreviation for a measurement unit of weight درجه An abbreviation for a measurement unit of Angle رادیان An abbreviation for a measurement unit of Angle گرادیان An abbreviation for a measurement unit of Angle فشار جو An abbreviation for a measurement unit of Pressure بار An abbreviation for a measurement unit of Pressure کیلوپاسکال An abbreviation for a measurement unit of Pressure فشار جیوه An abbreviation for a measurement unit of Pressure پاسکال An abbreviation for a measurement unit of Pressure پوند بر اینچ مربع An abbreviation for a measurement unit of Pressure سانتی‌گرم An abbreviation for a measurement unit of weight دکاگرم An abbreviation for a measurement unit of weight دکاگرم An abbreviation for a measurement unit of weight گرم An abbreviation for a measurement unit of weight هکتوگرم An abbreviation for a measurement unit of weight کیلوگرم An abbreviation for a measurement unit of weight تن (انگلستان) An abbreviation for a measurement unit of weight میلی‌گرم An abbreviation for a measurement unit of weight اونس An abbreviation for a measurement unit of weight پوند An abbreviation for a measurement unit of weight تن (ایالات متحده) An abbreviation for a measurement unit of weight سنگ An abbreviation for a measurement unit of weight تن An abbreviation for a measurement unit of weight قیراط A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) درجه A measurement unit for Angle. رادیان A measurement unit for Angle. گرادیان A measurement unit for Angle. اتمسفر A measurement unit for Pressure. بار A measurement unit for Pressure. کیلوپاسکال A measurement unit for Pressure. میلی‌متر جیوه A measurement unit for Pressure. پاسکال A measurement unit for Pressure. پوند در هر اینچ مربع A measurement unit for Pressure. سانتی‌گرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دکا گرم A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دسی گرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) هکتوگرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیلوگرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تن بزرگ (انگلستان) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) میلی‌گرم A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اونس A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پوند A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تن کوچک (ایالات متحده) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) استون A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تن متریک A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سی دی A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سی دی A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زمین فوتبال A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زمین فوتبال A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فلاپی دیسک A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فلاپی دیسک A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دی وی دی A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دی وی دی A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) باتری AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) باتری AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) سنجاق کاغذ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گیره کاغذی A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جامبو جت A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جامبو جت A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حباب لامپ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) حباب لامپ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اسب A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اسب A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) وان حمام A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) وان حمام A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) برف دانه A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) برف دانه A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فیل An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فیل An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) لاک پشت A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) لاک پشت A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جت A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) جت A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نهنگ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) نهنگ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فنجان قهوه A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) فنجان قهوه A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) استخر شنا An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) استخر شنا An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دست A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) دست A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ورق کاغذ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ورق کاغذ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قصر A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) قصر A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موز A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موز A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) برش کیک A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) برش کیک A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موتور قطار A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) موتور قطار A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) توپ فوتبال A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) توپ فوتبال A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مورد حافظه Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) بازگشت Screen reader prompt for the About panel back button بازگشت Content of tooltip being displayed on AboutControlBackButton شرایط مجوز نرم‌افزار Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel پیش‌نمایش Label displayed next to upcoming features اعلامیه حریم خصوصی Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. کلیه حقوق محفوظ است. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) برای یادگیری اینکه چگونه می توانید در ماشین حساب Windows مشارکت کنید، این پروژه را در %HL%GitHub%HL% بررسی کنید. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel درباره Subtitle of about message on Settings page ارسال بازخورد The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app فعلاً هیچ تاریخچه‌ای موجود نیست. The text that shows as the header for the history list هیچ موردی در حافظه ذخیره نشده است. The text that shows as the header for the memory list حافظه Screen reader prompt for the negate button on the converter operator keypad این عبارت قابل جایگذاری نیست The paste operation cannot be performed, if the expression is invalid. گیبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) گیبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) کیبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) مبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) پبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) تبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اگزابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اگزابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اکسبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) اکسبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زتابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زتابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) زبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یوتابیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یوتابایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یوبی‌بیت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) یوبی‌بایت A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) محاسبه تاریخ حالت محاسبه Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". افزودن Add toggle button text افزودن یا کم کردن روز Add or Subtract days option تاریخ Date result label تفاوت بین تاریخ‌ها Date difference option روز Add/Subtract Days label تفاوت Difference result label از From Date Header for Difference Date Picker ماه Add/Subtract Months label کاهش Subtract toggle button text تا To Date Header for Difference Date Picker سال Add/Subtract Years label تاریخ خارج از محدوده است Out of bound message shown as result when the date calculation exceeds the bounds روز روز ماه ماه همان تاریخ هفته هفته سال سال تفاوت %1 Automation name for reading out the date difference. %1 = Date difference تاریخ نتیجه %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date حالت ماشین حساب %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 حالت مبدل {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. حالت محاسبه تاریخ Automation name for when the mode header is focused and the current mode is Date calculation. فهرست‌های تاریخچه و حافظه Automation name for the group of controls for history and memory lists. کنترل‌های حافظه Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) توابع استاندارد Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) کنترل‌های نمایشگر Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) اپراتورهای استاندارد Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) صفحه شماره Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) اپراتورهای زاویه Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) توابع علمی Automation name for the group of Scientific functions. انتخاب مبنا Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix اپراتورهای برنامه‌نویس Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). انتخاب حالت ورودی Automation name for the group of input mode toggling buttons. صفحه کلید تغییر بیت Automation name for the group of bit toggling buttons. پیمایش عبارت به چپ Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. پیمایش عبارت به راست Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. به حداکثر تعداد ارقام مجاز رسیدید. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 در حافظه ذخیره شد {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". شیار حافظه %1 %2 است {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". شیار حافظه %1 پاک شد {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". تقسیم بر Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. بار Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. منهای Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. به علاوه Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. به توان Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. ریشه y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. پیمانه Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. انتقال به چپ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. انتقال به راست Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. یا Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x یا Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. و Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. در %1 %2 به‌روزرسانی شد The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" به‌روزرسانی نرخ‌ها The text displayed for a hyperlink button that refreshes currency converter ratios. ممکن است هزینه‌های داده اعمال شود. The text displayed when users are on a metered connection and using currency converter. نتوانستیم نرخ‌های جدید را دریافت کنیم. بعداً دوباره امتحان کنید. The text displayed when currency ratio data fails to load. آفلاین. لطفاً %HL%تنظیمات شبکه%HL% خود را بررسی کنید Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} در حال به‌روزرسانی نرخ ارز This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. نرخ‌های ارز به‌روزرسانی شدند This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. به‌روزرسانی نرخ امکان‌پذیر نبود This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. ت Access key for the History button. {StringCategory="Accelerator"} ظ Access key for the Memory button. {StringCategory="Accelerator"} ه Access key for the Hamburger button. {StringCategory="Accelerator"} ز AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} مس AccessKey for the area converter navbar item. {StringCategory="Accelerator"} و AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} د AccessKey for the data converter navbar item. {StringCategory="Accelerator"} ژ AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} ط AccessKey for the length converter navbar item. {StringCategory="Accelerator"} تو AccessKey for the power converter navbar item. {StringCategory="Accelerator"} فش AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} ع AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} زم AccessKey for the time converter navbar item. {StringCategory="Accelerator"} ح AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} ز AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} دم AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} پ Access key for the Clear history button.{StringCategory="Accelerator"} پ Access key for the Clear memory button. {StringCategory="Accelerator"} پاک کردن کل حافظه (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. پاک کردن کل حافظه Screen reader prompt for the Calculator Clear Memory button in the Memory Pane ت Access key for the History pivot item.{StringCategory="Accelerator"} ظ Access key for the Memory pivot item.{StringCategory="Accelerator"} سینوس بر حسب درجه Name for the sine function in degrees mode. Used by screen readers. سینوس بر حسب رادیان Name for the sine function in radians mode. Used by screen readers. سینوس بر حسب گرادیان Name for the sine function in gradians mode. Used by screen readers. معکوس سینوس بر حسب درجه Name for the inverse sine function in degrees mode. Used by screen readers. معکوس سینوس بر حسب رادیان Name for the inverse sine function in radians mode. Used by screen readers. معکوس سینوس بر حسب گرادیان Name for the inverse sine function in gradians mode. Used by screen readers. سینوس هیپربولیک Name for the hyperbolic sine function. Used by screen readers. معکوس سینوس هیپربولیک Name for the inverse hyperbolic sine function. Used by screen readers. کسینوس بر حسب درجه Name for the cosine function in degrees mode. Used by screen readers. کسینوس بر حسب رادیان Name for the cosine function in radians mode. Used by screen readers. کسینوس بر حسب گرادیان Name for the cosine function in gradians mode. Used by screen readers. معکوس کسینوس بر حسب درجه Name for the inverse cosine function in degrees mode. Used by screen readers. معکوس کسینوس بر حسب رادیان Name for the inverse cosine function in radians mode. Used by screen readers. معکوس کسینوس بر حسب گرادیان Name for the inverse cosine function in gradians mode. Used by screen readers. کسینوس هیپربولیک Name for the hyperbolic cosine function. Used by screen readers. معکوس کسینوس هیپربولیک Name for the inverse hyperbolic cosine function. Used by screen readers. تانژانت بر حسب درجه Name for the tangent function in degrees mode. Used by screen readers. تانژانت بر حسب رادیان Name for the tangent function in radians mode. Used by screen readers. تانژانت بر حسب گرادیان Name for the tangent function in gradians mode. Used by screen readers. معکوس تانژانت بر حسب درجه Name for the inverse tangent function in degrees mode. Used by screen readers. معکوس تانژانت بر حسب رادیان Name for the inverse tangent function in radians mode. Used by screen readers. معکوس تانژانت بر حسب گرادیان Name for the inverse tangent function in gradians mode. Used by screen readers. تانژانت هیپربولیک Name for the hyperbolic tangent function. Used by screen readers. معکوس تانژانت هیپربولیک Name for the inverse hyperbolic tangent function. Used by screen readers. درجه سکانت Name for the secant function in degrees mode. Used by screen readers. رادیان سکانت Name for the secant function in radians mode. Used by screen readers. گرادیان سکانت Name for the secant function in gradians mode. Used by screen readers. درجه سکانت معکوس Name for the inverse secant function in degrees mode. Used by screen readers. رادیان سکانت معکوس Name for the inverse secant function in radians mode. Used by screen readers. گرادیان سکانت معکوس Name for the inverse secant function in gradians mode. Used by screen readers. سکانت هذلولی Name for the hyperbolic secant function. Used by screen readers. سکانت هذلولی معکوس Name for the inverse hyperbolic secant function. Used by screen readers. درجه کسکانت Name for the cosecant function in degrees mode. Used by screen readers. رادیان کسکانت Name for the cosecant function in radians mode. Used by screen readers. گرادیان کسکانت Name for the cosecant function in gradians mode. Used by screen readers. درجه کسکانت معکوس Name for the inverse cosecant function in degrees mode. Used by screen readers. رادیان کسکانت معکوس Name for the inverse cosecant function in radians mode. Used by screen readers. گرادیان کسکانت معکوس Name for the inverse cosecant function in gradians mode. Used by screen readers. کسکانت هذلولی Name for the hyperbolic cosecant function. Used by screen readers. کسکانت هذلولی معکوس Name for the inverse hyperbolic cosecant function. Used by screen readers. درجه کتانژانت Name for the cotangent function in degrees mode. Used by screen readers. رادیان کتانژانت Name for the cotangent function in radians mode. Used by screen readers. گرادیان کتانژانت Name for the cotangent function in gradians mode. Used by screen readers. درجه کتانژانت معکوس Name for the inverse cotangent function in degrees mode. Used by screen readers. رادیان کتانژانت معکوس Name for the inverse cotangent function in radians mode. Used by screen readers. گرادیان کتانژانت معکوس Name for the inverse cotangent function in gradians mode. Used by screen readers. کتانژانت هذلولی Name for the hyperbolic cotangent function. Used by screen readers. کتانژانت هذلولی معکوس Name for the inverse hyperbolic cotangent function. Used by screen readers. ریشه سوم Name for the cube root function. Used by screen readers. پایه لگاریتم Name for the logbasey function. Used by screen readers. قدر مطلق Name for the absolute value function. Used by screen readers. انتقال به چپ Name for the programmer function that shifts bits to the left. Used by screen readers. انتقال به راست Name for the programmer function that shifts bits to the right. Used by screen readers. فاکتوریل Name for the factorial function. Used by screen readers. درجه دقیقه ثانیه Name for the degree minute second (dms) function. Used by screen readers. لگاریتم طبیعی Name for the natural log (ln) function. Used by screen readers. مربع Name for the square function. Used by screen readers. ریشه y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". دسته %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". توافق نامه سرویس های Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information پیونگ An abbreviation for a measurement unit of area. پیونگ A measurement unit for area. از From Date Header for AddSubtract Date Picker نتیجه محاسبه پیمایش چپ Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. نتیجه محاسبه پیمایش راست Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. محاسبه انجام نشد Text displayed when the application is not able to do a calculation لگاریتم بر پایه Y Screen reader prompt for the logBaseY button مثلثات Displayed on the button that contains a flyout for the trig functions in scientific mode. تابع Displayed on the button that contains a flyout for the general functions in scientific mode. نابرابری Displayed on the button that contains a flyout for the inequality functions. نامعادلات Screen reader prompt for the Inequalities button بیتی Displayed on the button that contains a flyout for the bitwise functions in programmer mode. شیفت بیت Displayed on the button that contains a flyout for the bit shift functions in programmer mode. تابع معکوس Screen reader prompt for the shift button in the trig flyout in scientific mode. تابع هذلولی Screen reader prompt for the Calculator button HYP in the scientific flyout keypad سکانت Screen reader prompt for the Calculator button sec in the scientific flyout keypad سکانت هیپربولیک Screen reader prompt for the Calculator button sech in the scientific flyout keypad آرک سکانت Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad آرک سکانت هیپربولیک Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad کسکانت Screen reader prompt for the Calculator button csc in the scientific flyout keypad کسکانت هیپربولیک Screen reader prompt for the Calculator button csch in the scientific flyout keypad آرک کسکانت Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad آرک کسکانت هیپربولیک Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad کتانژانت Screen reader prompt for the Calculator button cot in the scientific flyout keypad کتانژانت هیپربولیک Screen reader prompt for the Calculator button coth in the scientific flyout keypad آرک کتانژانت Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad آرک کتانژانت هیپربولیک Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad کف Screen reader prompt for the Calculator button floor in the scientific flyout keypad سقف Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad تصادفی Screen reader prompt for the Calculator button random in the scientific flyout keypad قدر مطلق Screen reader prompt for the Calculator button abs in the scientific flyout keypad عدد اویلر Screen reader prompt for the Calculator button e in the scientific flyout keypad دو به توان Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad ناوَ Screen reader prompt for the Calculator button nand in the scientific flyout keypad ناوَ Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. نایا Screen reader prompt for the Calculator button nor in the scientific flyout keypad نایا Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. چرخش به چپ با انتقال رقم Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad چرخش به راست با انتقال رقم Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad شیفت به چپ Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad انتقال به چپ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. شیفت به راست Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad انتقال به راست Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. شیفت حسابی Label for a radio button that toggles arithmetic shift behavior for the shift operations. شیفت منطقی Label for a radio button that toggles logical shift behavior for the shift operations. شیفت دوری چرخش Label for a radio button that toggles rotate circular behavior for the shift operations. شیفت دوری چرخش از طریق carry Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ریشه سوم Screen reader prompt for the cube root button on the scientific operator keypad مثلثات Screen reader prompt for the square root button on the scientific operator keypad توابع Screen reader prompt for the square root button on the scientific operator keypad بیتی Screen reader prompt for the square root button on the scientific operator keypad تغییر مکان بیت Screen reader prompt for the square root button on the scientific operator keypad پانل‌های عملگر علمی Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad پانل‌های عملگر برنامه‌نویس Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad پراهمیت‌ترین بیت Used to describe the last bit of a binary number. Used in bit flip رسم نمودار Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. پلات Screen reader prompt for the plot button on the graphing calculator operator keypad تازه‌سازی نما به‌صورت خودکار (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. نمای نمودار Screen reader prompt for the graph view button. بهترین تناسب خودکار Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set تنظیم دستی Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set نمای نمودار بازنشانی شده است Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph بزرگنمایی (Ctrl + مثبت) This is the tool tip automation name for the Calculator zoom in button. بزرگنمایی Screen reader prompt for the zoom in button. کوچکنمایی (Ctrl + منفی) This is the tool tip automation name for the Calculator zoom out button. کوچکنمایی Screen reader prompt for the zoom out button. افزودن معادله Placeholder text for the equation input button در حال حاضر اشتراک‌گذاری امکان‌پذیر نیست. If there is an error in the sharing action will display a dialog with this text. تأیید Used on the dismiss button of the share action error dialog. ببین با ماشین حساب Windows چی رسم کردم Sent as part of the shared content. The title for the share. معادلات Header that appears over the equations section when sharing متغیرها Header that appears over the variables section when sharing تصویر نمودار به همراه معادلات Alt text for the graph image when output via Share متغیرها Header text for variables area گام Label text for the step text box حداقل Label text for the min text box حداکثر Label text for the max text box رنگ Label for the Line Color section of the style picker سبک Label for the Line Style section of the style picker تجزیه و تحلیل تابع Title for KeyGraphFeatures Control تابع هیچ مجانب افقی ندارد. Message displayed when the graph does not have any horizontal asymptotes تابع هیچ نقطه عطفی ندارد. Message displayed when the graph does not have any inflection points تابع هیچ نقطه بیشینه‌ای ندارد. Message displayed when the graph does not have any maxima تابع هیچ نقطه کمینه‌ای ندارد. Message displayed when the graph does not have any minima ثابت String describing constant monotonicity of a function کاهشی String describing decreasing monotonicity of a function تعیین یکنوایی تابع امکان‌پذیر نیست. Error displayed when monotonicity cannot be determined افزایشی String describing increasing monotonicity of a function یکنوایی تابع نامشخص است. Error displayed when monotonicity is unknown تابع هیچ مجانب مایلی ندارد. Message displayed when the graph does not have any oblique asymptotes تعیین پاریته بودن تابع امکان‌پذیر نیست. Error displayed when parity is cannot be determined تابع زوج است. Message displayed with the function parity is even تابع نه زوج است نه فرد. Message displayed with the function parity is neither even nor odd تابع فرد است. Message displayed with the function parity is odd پاریته بودن تابع ناشناخته است. Error displayed when parity is unknown تناوب برای این تابع پشتیبانی نمی‌شود. Error displayed when periodicity is not supported تابع متناوب نیست. Message displayed with the function periodicity is not periodic تناوب تابع نامشخص است. Message displayed with the function periodicity is unknown محاسبه این خصیصه‌ها برای ماشین حساب بسیار پیچیده است: Error displayed when analysis features cannot be calculated تابع هیچ مجانب قائمی ندارد. Message displayed when the graph does not have any vertical asymptotes تابع تقاطعی با محور x ندارد. Message displayed when the graph does not have any x-intercepts تابع تقاطعی با محور y ندارد. Message displayed when the graph does not have any y-intercepts دامنه Title for KeyGraphFeatures Domain Property مجانب‌های افقی Title for KeyGraphFeatures Horizontal aysmptotes Property نقاط عطف Title for KeyGraphFeatures Inflection points Property تجزیه و تحلیل برای این تابع پشتیبانی نمی‌شود. Error displayed when graph analysis is not supported or had an error. تجزیه و تحلیل فقط برای توابع درج شده در قالب f(x) پشتیبانی می‌شود. مثال: y=x Error displayed when graph analysis detects the function format is not f(x). بیشینه Title for KeyGraphFeatures Maxima Property کمینه Title for KeyGraphFeatures Minima Property یکنوایی Title for KeyGraphFeatures Monotonicity Property مجانب‌های اریب Title for KeyGraphFeatures Oblique asymptotes Property پاریته Title for KeyGraphFeatures Parity Property متناوب Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. محدوده Title for KeyGraphFeatures Range Property مجانب‌های عمودی Title for KeyGraphFeatures Vertical asymptotes Property تقاطع با محور X Title for KeyGraphFeatures XIntercept Property تقاطع با محور Y Title for KeyGraphFeatures YIntercept Property انجام تجزیه و تحلیل برای این تابع امکان‌پذیر نبود. محاسبه دامنه برای این تابع امکان‌پذیر نیست. Error displayed when Domain is not returned from the analyzer. محاسبه محدوده برای این تابع امکان‌پذیر نبود. Error displayed when Range is not returned from the analyzer. سرریز (عدد خیلی بزرگ است) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. حالت رادیان برای نمایش این معادله به‌صورت نمودار لازم است. Error that occurs during graphing when radians is required. این تابع برای تبدیل به نمودار بسیار پیچیده است Error that occurs during graphing when the equation is too complex. حالت درجه برای نمایش این تابع به‌صورت نمودار لازم است Error that occurs during graphing when degrees is required تابع فاکتوریل دارای آرگومان نامعتبر است Error that occurs during graphing when a factorial function has an invalid argument. تابع فاکتوریل دارای یک آرگومان است که برای ایجاد نمودار خیلی بزرگ است Error that occurs during graphing when a factorial has a large n پیمانه تنها می‌تواند با اعداد کامل مورد استفاده قرار گیرد Error that occurs during graphing when modulo is used with a float. معادله هیچ راه حلی ندارد Error that occurs during graphing when the equation has no solution. امکان تقسیم بر صفر وجود ندارد Error that occurs during graphing when a divison by zero occurs. این معادله حاوی شرایط منطقی است که متقابلاً منحصر به فرد هستند Error that occurs during graphing when mutually exclusive conditions are used. معادله خارج از دامنه است Error that occurs during graphing when the equation is out of domain. رسم نمودار برای این معادله پشتیبانی نمی‌شود Error that occurs during graphing when the equation is not supported. معادله فاقد علامت کروشه باز است Error that occurs during graphing when the equation is missing a ( معادله فاقد علامت پرانتز بسته است Error that occurs during graphing when the equation is missing a ) ارقام اعشاری خیلی زیادی در یک عدد وجود دارد Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 علامت اعشار فاقد عدد است Error that occurs during graphing with a decimal point without digits پایان دور از انتظار عبارت Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* نویسه‌های دور از انتظار در عبارت Error that occurs during graphing when there is an unexpected token. نویسه‌های غیرمعتبر در عبارت Error that occurs during graphing when there is an invalid token. تعداد زیادی علامت مساوی وجود دارد Error that occurs during graphing when there are too many equals. تابع باید حداقل دارای یک متغیر x یا y باشد Error that occurs during graphing when the equation is missing x or y. عبارت نامعتبر Error that occurs during graphing when an invalid syntax is used. عبارت خالی است Error that occurs during graphing when the expression is empty علامت مساوی بدون نوشتن معادله استفاده شده است Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) پرانتز پس از نام تابع اضافه نشده است Error that occurs during graphing when parenthesis are missing after a function. عملیات ریاضی حاوی تعداد نادرستی از پارامترها است Error that occurs during graphing when a function has the wrong number of parameters نام متغیر نامعتبر است Error that occurs during graphing when a variable name is invalid. معادله فاقد علامت کروشه باز است Error that occurs during graphing when a { is missing معادله فاقد علامت کروشه بسته است Error that occurs during graphing when a } is missing. "i" و "I" را نمی‌توان به عنوان نام متغیر استفاده کرد Error that occurs during graphing when i or I is used. این معادله قابل تبدیل به نمودار نیست General error that occurs during graphing. رقم موردنظر برای پایه داده‌شده قابل حل نمی‌باشد Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). پایه باید بزرگتر از ۲ و کوچکتر از ۳۶ باشد Error that occurs during graphing when the base is out of range. یک عملیات ریاضی نیازمند آن است که یکی از پارامترهای آن متغیر باشد Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. معادله در حال آمیختن عملوندها منطقی و اسکالر است Error that occurs during graphing when operands are mixed. Such as true and 1. x یا y را نمی توان در حدهای بالا یا پایین استفاده کرد Error that occurs during graphing when x or y is used in integral upper limits. x یا y را نمی‌توان در نقطه حدی استفاده کرد Error that occurs during graphing when x or y is used in the limit point. استفاده از بی‌نهایت پیچیده مقدورنیست Error that occurs during graphing when complex infinity is used از اعداد مختلط نمی‌توان در نامعادلات استفاده کرد Error that occurs during graphing when complex numbers are used in inequalities. بازگشت به فهرست تابع This is the tooltip for the back button in the equation analysis page in the graphing calculator بازگشت به فهرست تابع This is the automation name for the back button in the equation analysis page in the graphing calculator تجزیه و تحلیل تابع This is the tooltip for the analyze function button تجزیه و تحلیل تابع This is the automation name for the analyze function button تجزیه و تحلیل تابع This is the text for the for the analyze function context menu command حذف معادله This is the tooltip for the graphing calculator remove equation buttons حذف معادله This is the automation name for the graphing calculator remove equation buttons حذف معادله This is the text for the for the remove equation context menu command اشتراک‌گذاری This is the automation name for the graphing calculator share button. اشتراک‌گذاری This is the tooltip for the graphing calculator share button. تغییر سبک معادله This is the tooltip for the graphing calculator equation style button تغییر سبک معادله This is the automation name for the graphing calculator equation style button تغییر سبک معادله This is the text for the for the equation style context menu command نمایش معادله This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. پنهان کردن معادله This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. نمایش معادله %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. پنهان کردن معادله %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. توقف ردیابی This is the tooltip/automation name for the graphing calculator stop tracing button شروع ردیابی This is the tooltip/automation name for the graphing calculator start tracing button پنجره مشاهده نمودار، محور x توسط %1 و %2 محدود شده، و محور y توسط %3 و %4 محدود شده است، %5 معادله را نمایش می‌دهد {Locked="%1","%2", "%3", "%4", "%5"}. پیکربندی زبانه متحرک This is the tooltip text for the slider options button in Graphing Calculator پیکربندی زبانه متحرک This is the automation name text for the slider options button in Graphing Calculator تغییر وضعیت به حالت معادله Used in Graphing Calculator to switch the view to the equation mode تغییر وضعیت به حالت نمودار Used in Graphing Calculator to switch the view to the graph mode تغییر وضعیت به حالت معادله Used in Graphing Calculator to switch the view to the equation mode حالت فعلی حالت معادله است Announcement used in Graphing Calculator when switching to the equation mode حالت فعلی حالت نمودار است Announcement used in Graphing Calculator when switching to the graph mode پنجره Heading for window extents on the settings درجه Degrees mode on settings page گرادیان Gradian mode on settings page رادیان Radians mode on settings page واحدها Heading for Unit's on the settings بازنشانی نما Hyperlink button to reset the view of the graph بیشینه محور X X maximum value header کمینه محور X X minimum value header بیشینه محور Y Y Maximum value header کمینه محور Y Y minimum value header گزینه‌های نمودار This is the tooltip text for the graph options button in Graphing Calculator گزینه‌های نمودار This is the automation name text for the graph options button in Graphing Calculator گزینه‌های نمودار Heading for the Graph options flyout in Graphing mode. گزینه‌های متغیر Screen reader prompt for the variable settings toggle button تغییر وضعیت گزینه‌های متغیر Tool tip for the variable settings toggle button ضخامت خط Heading for the Graph options flyout in Graphing mode. گزینه‌های خط Heading for the equation style flyout in Graphing mode. پهنای خط کوچک Automation name for line width setting پهنای خط متوسط Automation name for line width setting پهنای خط بزرگ Automation name for line width setting پهنای خط خیلی بزرگ Automation name for line width setting یک عبارت وارد کنید this is the placeholder text used by the textbox to enter an equation کپی Copy menu item for the graph context menu برش Cut menu item from the Equation TextBox کپی Copy menu item from the Equation TextBox جایگذاری Paste menu item from the Equation TextBox لغو عمل Undo menu item from the Equation TextBox انتخاب همه Select all menu item from the Equation TextBox ورودی تابع The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. ورودی تابع The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. پانل ورودی تابع The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. پانل متغیر The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. فهرست متغیر The automation name for the Variable ListView that is shown when Calculator is in graphing mode. مورد فهرست متغیر %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. کادر متن مقدار متغیر The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. نوار لغزنده مقدار متغیر The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. کادر متن حداقل مقدار متغیر The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. کادر متن مقدار گام متغیر The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. کادر متن حداکثر مقدار متغیر The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. سبک خط ممتد Name of the solid line style for a graphed equation سبک خط نقطه‌چین Name of the dotted line style for a graphed equation سبک خط‌چین Name of the dashed line style for a graphed equation سرمه‌ای Name of color in the color picker آبی مایل به سبز Name of color in the color picker بنفش Name of color in the color picker سبز Name of color in the color picker سبز نعنایی Name of color in the color picker سبز تیره Name of color in the color picker زغالی Name of color in the color picker قرمز Name of color in the color picker گوجه‌ای روشن Name of color in the color picker سرخابی Name of color in the color picker زرد طلایی Name of color in the color picker نارنجی روشن Name of color in the color picker قهوه‌ای Name of color in the color picker مشکی Name of color in the color picker سفید Name of color in the color picker رنگ ۱ Name of color in the color picker رنگ ۲ Name of color in the color picker رنگ ۳ Name of color in the color picker رنگ ۴ Name of color in the color picker طرح زمینه نمودار Graph settings heading for the theme options همیشه روشن Graph settings option to set graph to light theme مطابقت با طرح زمینه برنامه Graph settings option to set graph to match the app theme طرح زمینه This is the automation name text for the Graph settings heading for the theme options همیشه روشن This is the automation name text for the Graph settings option to set graph to light theme مطابقت با طرح زمینه برنامه This is the automation name text for the Graph settings option to set graph to match the app theme تابع حذف شد Announcement used in Graphing Calculator when a function is removed from the function list جعبه معادله تجزیه و تحلیل تابع This is the automation name text for the equation box in the function analysis panel مساوی Screen reader prompt for the equal button on the graphing calculator operator keypad کمتر از Screen reader prompt for the Less than button کوچکتر یا مساوی Screen reader prompt for the Less than or equal button مساوی Screen reader prompt for the Equal button بزرگتر یا مساوی Screen reader prompt for the Greater than or equal button بزرگتر از Screen reader prompt for the Greater than button ط Screen reader prompt for the X button on the graphing calculator operator keypad غ Screen reader prompt for the Y button on the graphing calculator operator keypad ارسال Screen reader prompt for the submit button on the graphing calculator operator keypad تجزیه و تحلیل تابع Screen reader prompt for the function analysis grid گزینه‌های نمودار Screen reader prompt for the graph options panel فهرست‌های تاریخچه و حافظه Automation name for the group of controls for history and memory lists. فهرست حافظه Automation name for the group of controls for memory list. مقطع تاریخی %1 پاک شد {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". ماشین حساب همیشه در بالا Announcement to indicate calculator window is always shown on top. برگشت به نمای کامل ماشین حساب Announcement to indicate calculator window is now back to full view. شیفت حسابی انتخاب شده است Label for a radio button that toggles arithmetic shift behavior for the shift operations. شیفت منطقی انتخاب شده است Label for a radio button that toggles logical shift behavior for the shift operations. شیفت دوری چرخش انتخاب شده است Label for a radio button that toggles rotate circular behavior for the shift operations. شیفت دوری چرخش از طریق carry انتخاب شده است Label for a radio button that toggles rotate circular with carry behavior for the shift operations. تنظیمات Header text of Settings page ظاهر Subtitle of appearance setting on Settings page طرح زمینه برنامه Title of App theme expander انتخاب کنید کدام طرح زمینه برنامه نمایش داده شود Description of App theme expander روشن Lable for light theme option تیره Lable for dark theme option استفاده از تنظیمات سیستم Lable for the app theme option to use system setting بازگشت Screen reader prompt for the Back button in title bar to back to main page صفحه تنظیمات Announcement used when Settings page is opened باز کردن منوی زمینه برای عملکردهای موجود Screen reader prompt for the context menu of the expression box تأیید The text of OK button to dismiss an error dialog. این عکس فوری بازیابی نمی‌شود. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/fi-FI/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Virheellinen syöte Error message shown when the input makes a function fail, like log(-1) Tulos on määrittämätön Error message shown when there's no possible value for a function. Muisti ei riitä Error message shown when we run out of memory during a calculation. Ylivuoto Error message shown when there's an overflow during the calculation. Tulosta ei määritetty Same as 101 Tulosta ei määritetty Same 101 Ylivuoto Same as 107 Ylivuoto Same 107 Nollalla ei voi jakaa Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/fi-FI/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Laskin {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Laskin [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windowsin laskin {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Microsoftin laskin [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Laskin {@Appx_Description@} This description is used for the official application when published through Windows Store. Laskin [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopioi Copy context menu string Liitä Paste context menu string Noin yhtä suuri kuin The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, arvo %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bitti {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip vähiten merkitsevä bitti Used to describe the first bit of a binary number. Used in bit flip Avaa muisti-pikaikkuna This is the automation name and label for the memory button when the memory flyout is closed. Sulje muisti-pikaikkuna This is the automation name and label for the memory button when the memory flyout is open. Pidä päällä This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Takaisin koko näytön näkymään This is the tool tip automation name for the always-on-top button when in always-on-top mode. Muisti This is the tool tip automation name for the memory button. Historia (Ctrl+H) This is the tool tip automation name for the history button. Bitin vaihdon näppäimistö This is the tool tip automation name for the bitFlip button. Täysi numeronäppäimistö This is the tool tip automation name for the numberPad button. Tyhjennä koko muisti (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Muisti The text that shows as the header for the memory list Muisti The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historia The text that shows as the header for the history list Historia The automation name for the History pivot item that is shown when Calculator is in wide layout. Muunnin Label for a control that activates the unit converter mode. Funktiolaskin Label for a control that activates scientific mode calculator layout Nelilaskin Label for a control that activates standard mode calculator layout. Muunnintila Screen reader prompt for a control that activates the unit converter mode. Funktiotila Screen reader prompt for a control that activates scientific mode calculator layout Vakiotila Screen reader prompt for a control that activates standard mode calculator layout. Tyhjennä koko historia "ClearHistory" used on the calculator history pane that stores the calculation history. Tyhjennä koko historia This is the tool tip automation name for the Clear History button. Piilota "HideHistory" used on the calculator history pane that stores the calculation history. Nelilaskin The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Funktiolaskin The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Ohjelmoija The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Muunnin The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Laskin The text that shows in the dropdown navigation control for the calculator group. Muunnin The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Laskin The text that shows in the dropdown navigation control for the calculator group in upper case. Muuntimet Pluralized version of the converter group text, used for the screen reader prompt. Laskimet Pluralized version of the calculator group text, used for the screen reader prompt. Näyttö on %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Lauseke on %1, nykyinen syöte on %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Näyttö on %1 pilkku {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Lauseke on %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Näyttöarvo kopioitu leikepöydälle Screen reader prompt for the Calculator display copy button, when the button is invoked. Historia Screen reader prompt for the history flyout Muisti Screen reader prompt for the memory flyout Heksadesimaali %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desimaali %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktaali %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binaari %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Tyhjennä koko historia Screen reader prompt for the Calculator History Clear button Historia on tyhjennetty Screen reader prompt for the Calculator History Clear button, when the button is invoked. Piilota historia Screen reader prompt for the Calculator History Hide button Avaa historia-pikaikkuna Screen reader prompt for the Calculator History button, when the flyout is closed. Sulje historia-pikaikkuna Screen reader prompt for the Calculator History button, when the flyout is open. Muistiin tallentaminen Screen reader prompt for the Calculator Memory button Muistiin tallentaminen (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Tyhjennä koko muisti Screen reader prompt for the Calculator Clear Memory button Muisti on tyhjennetty Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Muistin palauttaminen Screen reader prompt for the Calculator Memory Recall button Muistin palauttaminen (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Muistiin lisääminen Screen reader prompt for the Calculator Memory Add button Muistiin lisääminen (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Muistista vähentäminen Screen reader prompt for the Calculator Memory Subtract button Muistista vähentäminen (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Tyhjennä muistikohde Screen reader prompt for the Calculator Clear Memory button Tyhjennä muistikohde This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Lisää muistikohteeseen Screen reader prompt for the Calculator Memory Add button in the Memory list Lisää muistikohteeseen This is the tool tip automation name for the Calculator Memory Add button in the Memory list Vähennä muistikohteesta Screen reader prompt for the Calculator Memory Subtract button in the Memory list Vähennä muistikohteesta This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Tyhjennä muistikohde Screen reader prompt for the Calculator Clear Memory button Tyhjennä muistikohde Text string for the Calculator Clear Memory option in the Memory list context menu Lisää muistikohteeseen Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Lisää muistikohteeseen Text string for the Calculator Memory Add option in the Memory list context menu Vähennä muistikohteesta Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Vähennä muistikohteesta Text string for the Calculator Memory Subtract option in the Memory list context menu Poista Text string for the Calculator Delete swipe button in the History list Kopioi Text string for the Calculator Copy option in the History list context menu Poista Text string for the Calculator Delete option in the History list context menu Poista historiakohde Screen reader prompt for the Calculator Delete swipe button in the History list Poista historiakohde Screen reader prompt for the Calculator Delete option in the History list context menu Askelpalautin Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nolla Screen reader prompt for the Calculator number "0" button Yksi Screen reader prompt for the Calculator number "1" button Kaksi Screen reader prompt for the Calculator number "2" button Kolme Screen reader prompt for the Calculator number "3" button Neljä Screen reader prompt for the Calculator number "4" button Viisi Screen reader prompt for the Calculator number "5" button Kuusi Screen reader prompt for the Calculator number "6" button Seitsemän Screen reader prompt for the Calculator number "7" button Kahdeksan Screen reader prompt for the Calculator number "8" button Yhdeksän Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Ja Screen reader prompt for the Calculator And button Tai Screen reader prompt for the Calculator Or button Ei Screen reader prompt for the Calculator Not button Kierrä vasemmalla Screen reader prompt for the Calculator ROL button Kierrä oikealla Screen reader prompt for the Calculator ROR button Vasen siirtymä Screen reader prompt for the Calculator LSH button Oikea siirtymä Screen reader prompt for the Calculator RSH button Pois sulkeva tai Screen reader prompt for the Calculator XOR button Nelinkertaisten sanojen vaihtopainike Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Tuplasanojen vaihtopainike Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Sanojen vaihtopainike Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Tavun vaihtopainike Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitin vaihdon näppäimistö Screen reader prompt for the Calculator bitFlip button Täysi numeronäppäimistö Screen reader prompt for the Calculator numberPad button Desimaalierotin Screen reader prompt for the "." button Tyhjennä merkintä Screen reader prompt for the "CE" button Tyhjennä Screen reader prompt for the "C" button Jaettuna Screen reader prompt for the divide button on the number pad Kertaa Screen reader prompt for the multiply button on the number pad On yhtäsuuri kuin Screen reader prompt for the equals button on the scientific operator keypad Käänteinen funktio Screen reader prompt for the shift button on the number pad in scientific mode. Miinus Screen reader prompt for the minus button on the number pad Miinus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Neliöjuuri Screen reader prompt for the square root button on the scientific operator keypad Prosentti Screen reader prompt for the percent button on the scientific operator keypad Positiivinen, negatiivinen Screen reader prompt for the negate button on the scientific operator keypad Positiivinen, negatiivinen Screen reader prompt for the negate button on the converter operator keypad Käänteisluku Screen reader prompt for the invert button on the scientific operator keypad Vasen sulje Screen reader prompt for the Calculator "(" button on the scientific operator keypad Vasen kaarisulje, avaavien sulkeiden määrä %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Oikea sulje Screen reader prompt for the Calculator ")" button on the scientific operator keypad Avaavien sulkeiden määrä %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Suljettavia avaavia sulkeita ei ole. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Tieteellinen merkintätapa Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolinen funktio Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pii Screen reader prompt for the Calculator pi button on the scientific operator keypad Sini Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosini Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangentti Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolinen sini Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolinen kosini Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyberbolinen tangentti Screen reader prompt for the Calculator tanh button on the scientific operator keypad Neliö Screen reader prompt for the x squared on the scientific operator keypad. Kuutio Screen reader prompt for the x cubed on the scientific operator keypad. Arkussini Screen reader prompt for the inverted sin on the scientific operator keypad. Arkuskosini Screen reader prompt for the inverted cos on the scientific operator keypad. Arkustangentti Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolinen arkussini Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolinen arkuskosini Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolinen arkustangentti Screen reader prompt for the inverted tanh on the scientific operator keypad. X potenssiin Screen reader prompt for x power y button on the scientific operator keypad. Kymmenen potenssiin X Screen reader prompt for the 10 power x button on the scientific operator keypad. e potenssiin X Screen reader for the e power x on the scientific operator keypad. X:n juuri Y Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Kirjaa lokiin Screen reader for the log base 10 on the scientific operator keypad Luonnollinen loki Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Eksponentiaalinen Screen reader for the exp button on the scientific operator keypad Aste, minuutti, sekunti Screen reader for the exp button on the scientific operator keypad Asteet Screen reader for the exp button on the scientific operator keypad Kokonaislukuosa Screen reader for the int button on the scientific operator keypad Murto-osa Screen reader for the frac button on the scientific operator keypad Kertoma Screen reader for the factorial button on the basic operator keypad Asteiden vaihtopainike This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradiaanien vaihtopainike This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radiaanien vaihtopainike This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Avattava tilaluettelo Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Avattava luokkaluettelo Screen reader prompt for the Categories dropdown field. Pidä päällä Screen reader prompt for the Always-on-Top button when in normal mode. Takaisin koko näytön näkymään Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Pidä päällimmäisenä (Alt+Ylänuoli) This is the tool tip automation name for the Always-on-Top button when in normal mode. Takaisin koko näytön näkymään (Alt+Alanuoli) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Muunna arvosta %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Muunna arvosta %1 pilkku %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Muuntuu arvoksi %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 on %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Syöttöyksikkö Screen reader prompt for the Unit Converter Units1 i.e. top units field. Tuloksen yksikkö Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Pinta-ala Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Pituus Unit conversion category name called Length Teho Unit conversion category name called Power (eg. the power of an engine or a light bulb) Nopeus Unit conversion category name called Speed Aika Unit conversion category name called Time Tilavuus Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Lämpötila Unit conversion category name called Temperature Paino ja massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Paine Unit conversion category name called Pressure Kulma Unit conversion category name called Angle Valuutta Unit conversion category name called Currency nesteunssia (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume nesteunssia (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume gallonaa (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume gallonaa (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume litraa A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) l An abbreviation for a measurement unit of volume millilitraa A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume pinttiä (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume pinttiä (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume ruokalusikallista (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rkl (US) An abbreviation for a measurement unit of volume teelusikallista (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tl (US) An abbreviation for a measurement unit of volume ruokalusikallista (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rkl (UK) An abbreviation for a measurement unit of volume teelusikallista (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tl (UK) An abbreviation for a measurement unit of volume neljännesgallonaa (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume neljännesgallonaa (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume kuppia (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length as An abbreviation for a measurement unit of volume bit An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy CM An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume pv An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy FT An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gbit An abbreviation for a measurement unit of data Gt An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hv (US) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time " An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kbit An abbreviation for a measurement unit of data kt An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mbit An abbreviation for a measurement unit of data Mt An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length mpk An abbreviation for a measurement unit of length Pbit An abbreviation for a measurement unit of data Pt An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tbit An abbreviation for a measurement unit of data Tt An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power viikko An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length v An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pii An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data Et An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data Zt An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data ji An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data eekkeriä A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BITS A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU:ta A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU:ta/minuutti A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaloria A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) senttimetriä A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) senttimetriä sekunnissa A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuutiosenttimetriä A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuutiojalka A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuutiotuumaa A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuutiometriä A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuutiojaardia A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) päivää A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit elektronivolttia A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkaa A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jalkaa sekunnissa A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkanaulaa A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkanaulaa/minuutti A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigatavut A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hehtaaria A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hevosvoimaa (US) A measurement unit for power tuntia A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tuumaa A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) joulea A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowattituntia A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilotavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilokaloria A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilojoulea A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometriä A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometriä tunnissa A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowattia A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Solmut A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) machia A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) megatavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metriä A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metriä sekunnissa A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikronit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekuntia A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mailia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mailia tunnissa A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) millimetriä A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekunnit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) minuuttia A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Puolitavu A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometrit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångströmit A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) merimailia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petatavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sekuntia A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliösenttimetriä A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) neliöjalkaa A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliötuumaa A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliökilometriä A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliömetriä A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) neliömailia A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliömillimetriä A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Neliöjaardia A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) teratavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wattia A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) viikkoa A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jaardia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vuotta A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ka An abbreviation for a measurement unit of weight asteet An abbreviation for a measurement unit of Angle radiaani An abbreviation for a measurement unit of Angle valmistunut An abbreviation for a measurement unit of Angle pankkiautomaatti An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psii An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonni (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonni (US) An abbreviation for a measurement unit of weight . An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight karaattia A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Asteet A measurement unit for Angle. radiaania A measurement unit for Angle. Goonit A measurement unit for Angle. normaali-ilmakehää A measurement unit for Pressure. Baarit A measurement unit for Pressure. kilopascal A measurement unit for Pressure. elohopeamillimetri A measurement unit for Pressure. pascalia A measurement unit for Pressure. paunaa neliötuumalla A measurement unit for Pressure. senttigrammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagrammaa A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) desigrammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) grammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hehtogrammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogrammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pitkää tonnia (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milligrammaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) unssia A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paunaa A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lyhyttä tonnia (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kivi A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) metristä tonnia A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-levyt A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-levyt A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkapallokenttää A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkapallokenttää A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) levykettä A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) levykettä A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-levyt A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-levyt A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paristoa AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paristoa AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperiliitintä A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperiliitintä A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojettiä A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojettiä A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hehkulamppua A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hehkulamppua A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hevosta A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hevosta A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kylpyammetta A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kylpyammetta A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lumihiutaletta A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lumihiutaletta A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) norsua An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) norsua An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilpikonnaa A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilpikonnaa A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) suihkukonetta A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) suihkukonetta A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valasta A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valasta A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kahvikupillista A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kahvikupillista A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uima-allasta An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uima-allasta An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kädet A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kädet A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperiarkkia A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperiarkkia A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) linnaa A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) linnaa A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banaania A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banaania A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kakkupalaa A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kakkupalaa A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) junan veturia A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) junan veturia A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkapalloa A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jalkapalloa A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Muistikohde Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Edellinen Screen reader prompt for the About panel back button Edellinen Content of tooltip being displayed on AboutControlBackButton Microsoft-ohjelmiston käyttöoikeussopimuksen ehdot Displayed on a link to the Microsoft Software License Terms on the About panel Esikatselu Label displayed next to upcoming features Microsoftin tietosuojatiedot Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Kaikki oikeudet pidätetään. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Katso, miten voit osallistua Windows-laskin, tutustu projektiin %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Tietoja Subtitle of about message on Settings page Lähetä palautetta The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Historiaa ei vielä ole. The text that shows as the header for the history list Muistiin ei ole tallennettu mitään. The text that shows as the header for the memory list Muisti Screen reader prompt for the negate button on the converter operator keypad Tätä lauseketta ei voi liittää The paste operation cannot be performed, if the expression is invalid. gibibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gibitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksatavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksbibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) eksbitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetatavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabitit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottatavut A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobibittiä A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yobitavua A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Päivämäärien laskeminen Laskentatila Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Lisää Add toggle button text Lisää tai vähennä päiviä Add or Subtract days option Päivämäärä Date result label Päivämäärien ero Date difference option päivää Add/Subtract Days label Ero Difference result label Alkaen From Date Header for Difference Date Picker kuukautta Add/Subtract Months label Erotus Subtract toggle button text Asti To Date Header for Difference Date Picker vuotta Add/Subtract Years label Päivämäärä ei ole sallitulla alueella Out of bound message shown as result when the date calculation exceeds the bounds päivä päivää kuukausi kuukaudet Samat päivämäärät viikko viikkoa vuosi vuotta Ero %1 Automation name for reading out the date difference. %1 = Date difference Tuloksena saatu päivämäärä %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Laskintila: %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Muunnintila: %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Päivämäärien laskentatila Automation name for when the mode header is focused and the current mode is Date calculation. Historia- ja muistiluettelot Automation name for the group of controls for history and memory lists. Muistitoiminnot Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Perusfunktiot Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Näyttötoiminnot Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Perusoperaattorit Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numeronäppäimistö Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Kulmaoperaattorit Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funktiot Automation name for the group of Scientific functions. Lukujärjestelmän valinta Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Ohjelmoijan operaattorit Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Syöttötilan valinta Automation name for the group of input mode toggling buttons. Bitin vaihdon näppäimistö Automation name for the group of bit toggling buttons. Vieritä lauseketta vasemmalle Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Vieritä lauseketta oikealle Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Numeroiden enimmäismäärä on saavutettu. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 tallennettu muistiin {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Muistipaikka %1 on %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Muistipaikka %1 on tyhjennetty {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". jaettuna Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. kertaa Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. miinus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. potenssiin Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-juuri Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. bittisiirto vasemmalle Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. oikea vaihtonäppäin Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. tai Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x tai Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ja Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Päivitetty %1 klo %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Päivitä kurssit The text displayed for a hyperlink button that refreshes currency converter ratios. Datayhteyden käyttö voi olla maksullista. The text displayed when users are on a metered connection and using currency converter. Uusia kursseja ei voitu hakea. Yritä myöhemmin uudelleen. The text displayed when currency ratio data fails to load. Offline-tilassa. Tarkista %HL%verkon asetukset%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Valuuttakursseja päivitetään This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valuuttakurssit päivitetty This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kurssien päivittäminen ei onnistunut This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Tyhjennä koko muisti (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Tyhjennä koko muisti Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinin asteet Name for the sine function in degrees mode. Used by screen readers. sinin radiaanit Name for the sine function in radians mode. Used by screen readers. sinin uusasteet Name for the sine function in gradians mode. Used by screen readers. käänteisen sinin asteet Name for the inverse sine function in degrees mode. Used by screen readers. käänteisen sinin radiaanit Name for the inverse sine function in radians mode. Used by screen readers. käänteisen sinin uusasteet Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolinen sini Name for the hyperbolic sine function. Used by screen readers. käänteinen hyperbolinen sini Name for the inverse hyperbolic sine function. Used by screen readers. kosinin asteet Name for the cosine function in degrees mode. Used by screen readers. kosinin radiaanit Name for the cosine function in radians mode. Used by screen readers. kosinin uusasteet Name for the cosine function in gradians mode. Used by screen readers. käänteisen kosinin asteet Name for the inverse cosine function in degrees mode. Used by screen readers. käänteisen kosinin radiaanit Name for the inverse cosine function in radians mode. Used by screen readers. käänteisen kosinin uusasteet Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolinen kosini Name for the hyperbolic cosine function. Used by screen readers. käänteinen hyperbolinen kosini Name for the inverse hyperbolic cosine function. Used by screen readers. tangentin asteet Name for the tangent function in degrees mode. Used by screen readers. tangentin radiaanit Name for the tangent function in radians mode. Used by screen readers. tangentin uusasteet Name for the tangent function in gradians mode. Used by screen readers. käänteisen tangentin asteet Name for the inverse tangent function in degrees mode. Used by screen readers. käänteisen tangentin radiaanit Name for the inverse tangent function in radians mode. Used by screen readers. käänteisen tangentin uusasteet Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolinen tangentti Name for the hyperbolic tangent function. Used by screen readers. käänteinen hyperbolinen tangentti Name for the inverse hyperbolic tangent function. Used by screen readers. sekantin asteet Name for the secant function in degrees mode. Used by screen readers. sekantin radiaanit Name for the secant function in radians mode. Used by screen readers. sekantin uusaseet Name for the secant function in gradians mode. Used by screen readers. käänteisen sekantin asteet Name for the inverse secant function in degrees mode. Used by screen readers. käänteisen sekantin radiaanit Name for the inverse secant function in radians mode. Used by screen readers. käänteisen sekantin uusasteet Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolinen sekantti Name for the hyperbolic secant function. Used by screen readers. käänteinen hyperbolinen sekantti Name for the inverse hyperbolic secant function. Used by screen readers. kosekantin asteet Name for the cosecant function in degrees mode. Used by screen readers. kosekantin radiaanit Name for the cosecant function in radians mode. Used by screen readers. kosekantin uusaseet Name for the cosecant function in gradians mode. Used by screen readers. käänteisen kosekantin asteet Name for the inverse cosecant function in degrees mode. Used by screen readers. käänteisen kosekantin radiaanit Name for the inverse cosecant function in radians mode. Used by screen readers. käänteisen kosekantin uusasteet Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolinen kosekantti Name for the hyperbolic cosecant function. Used by screen readers. käänteinen hyperbolinen kosekantti Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangentin asteet Name for the cotangent function in degrees mode. Used by screen readers. Kotangentin radiaanit Name for the cotangent function in radians mode. Used by screen readers. kotangentin uusasteet Name for the cotangent function in gradians mode. Used by screen readers. käänteisen kotangentin asteet Name for the inverse cotangent function in degrees mode. Used by screen readers. käänteisen kotangentin radiaanit Name for the inverse cotangent function in radians mode. Used by screen readers. käänteisen kotangentin uusasteet Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolinen kotangentti Name for the hyperbolic cotangent function. Used by screen readers. käänteinen hyperbolinen kotangentti Name for the inverse hyperbolic cotangent function. Used by screen readers. Kuutiojuuri Name for the cube root function. Used by screen readers. Logaritmin kanta Name for the logbasey function. Used by screen readers. Itseisarvo Name for the absolute value function. Used by screen readers. bittisiirto vasemmalle Name for the programmer function that shifts bits to the left. Used by screen readers. bittisiirto oikealle Name for the programmer function that shifts bits to the right. Used by screen readers. kertoma Name for the factorial function. Used by screen readers. aste minuutti sekunti Name for the degree minute second (dms) function. Used by screen readers. luonnollinen logaritmi Name for the natural log (ln) function. Used by screen readers. neliö Name for the square function. Used by screen readers. y-juuri Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1-luokka {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoftin palvelusopimus Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Alkaen From Date Header for AddSubtract Date Picker Vieritä laskentatulosta vasemmalle Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Vieritä laskentatulosta oikealle Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Laskenta epäonnistui Text displayed when the application is not able to do a calculation Logaritmin kanta Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funktio Displayed on the button that contains a flyout for the general functions in scientific mode. Epäyhtälöt Displayed on the button that contains a flyout for the inequality functions. Epäyhtälöt Screen reader prompt for the Inequalities button Bittitaso Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bittisiirto Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Käänteinen funktio Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolinen funktio Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekantti Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolinen sekantti Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkussekantti Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolinen arkussekantti Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekantti Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolinen kosekantti Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkuskosekantti Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolinen arkuskosekantti Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangentti Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolinen kotangentti Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkuskotangentti Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolinen arkuskotangentti Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Alin Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ylin Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Satunnainen Screen reader prompt for the Calculator button random in the scientific flyout keypad Itseisarvo Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerin numero Screen reader prompt for the Calculator button e in the scientific flyout keypad Kaksi potenssiin X Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Siirto vasemmalle Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Siirto oikealle Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Vasen siirtymä Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Vasen siirto Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Oikea siirtymä Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Oikea siirtymä Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmeettinen siirto Label for a radio button that toggles arithmetic shift behavior for the shift operations. Looginen siirto Label for a radio button that toggles logical shift behavior for the shift operations. Kierto Label for a radio button that toggles rotate circular behavior for the shift operations. Kiertosiirto Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kuutiojuuri Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funktiot Screen reader prompt for the square root button on the scientific operator keypad Bittitaso Screen reader prompt for the square root button on the scientific operator keypad Bittisiirto Screen reader prompt for the square root button on the scientific operator keypad Tieteellinen operaattori -paneelit Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Ohjelmoijan operaattori -paneelit Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad merkitsevin bitti Used to describe the last bit of a binary number. Used in bit flip Kaavioiden piirtäminen Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Piirrä Screen reader prompt for the plot button on the graphing calculator operator keypad Päivitä näkymä automaattisesti (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Kaavionäkymä Screen reader prompt for the graph view button. Automaattinen sovitus Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuaalinen säätäminen Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Kaavionäkymä on palautettu Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Lähennä (Ctrl+plusnäppäin) This is the tool tip automation name for the Calculator zoom in button. Lähennä Screen reader prompt for the zoom in button. Loitonna (Ctrl+miinusnäppäin) This is the tool tip automation name for the Calculator zoom out button. Loitonna Screen reader prompt for the zoom out button. Lisää yhtälö Placeholder text for the equation input button Jakaminen ei tällä hetkellä onnistu. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Katso, millaisia kaavioita olen piirtänyt Windowsin laskimella Sent as part of the shared content. The title for the share. Yhtälöt Header that appears over the equations section when sharing Muuttujat Header that appears over the variables section when sharing Kuva kaaviosta, jossa on yhtälöitä Alt text for the graph image when output via Share Muuttujat Header text for variables area Vaihe Label text for the step text box Vähintään Label text for the min text box Enintään Label text for the max text box Väri Label for the Line Color section of the style picker Tyyli Label for the Line Style section of the style picker Funktion analyysi Title for KeyGraphFeatures Control Funktiolla ei ole vaakasuoria asymptootteja. Message displayed when the graph does not have any horizontal asymptotes Funktiolla ei ole käännepisteitä. Message displayed when the graph does not have any inflection points Funktiolla ei ole maksimipisteitä. Message displayed when the graph does not have any maxima Funktiolla ei ole minimipisteitä. Message displayed when the graph does not have any minima Vakio String describing constant monotonicity of a function Vähenevä String describing decreasing monotonicity of a function Funktion monotonisuutta ei voi määrittää. Error displayed when monotonicity cannot be determined Kasvava String describing increasing monotonicity of a function Funktion monotonisuus on tuntematon. Error displayed when monotonicity is unknown Funktiolla ei ole käyriä asymptootteja. Message displayed when the graph does not have any oblique asymptotes Funktion pariteettia ei voi määrittää. Error displayed when parity is cannot be determined Funktio on parillinen. Message displayed with the function parity is even Funktio ei ole parillinen eikä pariton. Message displayed with the function parity is neither even nor odd Funktio on pariton. Message displayed with the function parity is odd Funktion pariteetti on tuntematon. Error displayed when parity is unknown Jaksollisuutta ei tueta tässä funktiossa. Error displayed when periodicity is not supported Funktio ei ole jaksollinen. Message displayed with the function periodicity is not periodic Funktion jaksollisuus on tuntematon. Message displayed with the function periodicity is unknown Nämä ominaisuudet ovat liian monimutkaisia laskimella laskemiseen: Error displayed when analysis features cannot be calculated Funktiolla ei ole pystysuoria asymptootteja. Message displayed when the graph does not have any vertical asymptotes Funktiolla ei ole x-leikkauspisteitä. Message displayed when the graph does not have any x-intercepts Funktiolla ei ole y-leikkauspisteitä. Message displayed when the graph does not have any y-intercepts Toimialue Title for KeyGraphFeatures Domain Property Vaakasuorat asymptootit Title for KeyGraphFeatures Horizontal aysmptotes Property Käännepisteet Title for KeyGraphFeatures Inflection points Property Analyysia ei tueta tässä funktiossa. Error displayed when graph analysis is not supported or had an error. Analyysia tuetaan vain funktioissa, jotka ovat f(x)-muodossa. Esimerkki: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimit Title for KeyGraphFeatures Maxima Property Minimit Title for KeyGraphFeatures Minima Property Monotonisuus Title for KeyGraphFeatures Monotonicity Property Käyrät asymptootit Title for KeyGraphFeatures Oblique asymptotes Property Pariteetti Title for KeyGraphFeatures Parity Property Jakso Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Alue Title for KeyGraphFeatures Range Property Pystysuorat asymptootit Title for KeyGraphFeatures Vertical asymptotes Property X-leikkauspiste Title for KeyGraphFeatures XIntercept Property Y-leikkauspiste Title for KeyGraphFeatures YIntercept Property Funktion analyysia ei voitu suorittaa. Tämän funktion arvoaluetta ei voi laskea. Error displayed when Domain is not returned from the analyzer. Funktion aluetta ei voi laskea. Error displayed when Range is not returned from the analyzer. Ylivuoto (luku on liian suuri) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Tämän yhtälön kaavan piirtämiseen tarvitaan radiaanitila. Error that occurs during graphing when radians is required. Funktio on liian monimutkainen kaavion piirtämiseen Error that occurs during graphing when the equation is too complex. Tämän funktion kaavan piirtämiseen tarvitaan astetila. Error that occurs during graphing when degrees is required Kertomafunktiolla on virheellinen argumentti Error that occurs during graphing when a factorial function has an invalid argument. Kertomafunktiolla on argumentti, joka on liian suuri kaavan piirtämiseen Error that occurs during graphing when a factorial has a large n Jakojäännöstä voi käyttää vain kokonaislukuihin Error that occurs during graphing when modulo is used with a float. Yhtälöllä ei ole ratkaisua Error that occurs during graphing when the equation has no solution. Nollalla ei voi jakaa Error that occurs during graphing when a divison by zero occurs. Kaava sisältää loogiset ehdot, jotka ovat toisensa poissulkevia Error that occurs during graphing when mutually exclusive conditions are used. Yhtälö on toimialueen ulkopuolella Error that occurs during graphing when the equation is out of domain. Tämän yhtälön piirtämistä kaavaksi ei tueta Error that occurs during graphing when the equation is not supported. Yhtälöstä puuttuu avaava sulkumerkki Error that occurs during graphing when the equation is missing a ( Yhtälöstä puuttuu sulkeva sulkumerkki Error that occurs during graphing when the equation is missing a ) Luvussa on liian monta desimaalipilkkua Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Desimaalista puuttuu lukuja Error that occurs during graphing with a decimal point without digits Odottamaton lausekkeen loppu Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Lausekkeessa on odottamattomia merkkejä Error that occurs during graphing when there is an unexpected token. Lausekkeessa on virheellisiä merkkejä Error that occurs during graphing when there is an invalid token. Liian monta yhtäsuuruusmerkkiä Error that occurs during graphing when there are too many equals. Funktiossa on oltava vähintään yksi x- tai y-muuttuja Error that occurs during graphing when the equation is missing x or y. Virheellinen lauseke Error that occurs during graphing when an invalid syntax is used. Lauseke on tyhjä Error that occurs during graphing when the expression is empty Yhtäsuuruusmerkkiä käytettiin ilman yhtälöä Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Sulkeet puuttuvat funktion nimen jälkeen Error that occurs during graphing when parenthesis are missing after a function. Matemaattisessa toiminnossa on virheellinen määrä parametreja Error that occurs during graphing when a function has the wrong number of parameters Muuttujan nimi on virheellinen. Error that occurs during graphing when a variable name is invalid. Yhtälöstä puuttuu avaava hakasulkumerkki Error that occurs during graphing when a { is missing Yhtälöstä puuttuu sulkeva hakasulkumerkki Error that occurs during graphing when a } is missing. i-ja I-kirjaimia ei voi käyttää muuttujien niminä Error that occurs during graphing when i or I is used. Yhtälöä ei voitu esittää kaavana General error that occurs during graphing. Lukua ei voitu ratkaista annetulla kantaluvulla Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Perusta-arvon on oltava suurempi kuin 2 ja pienempi kuin 36 Error that occurs during graphing when the base is out of range. Matemaattinen toiminto edellyttää, että jokin sen parametreista on muuttuja Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Yhtälö sekoittaa loogisia operandeja ja skalaarioperandeja Error that occurs during graphing when operands are mixed. Such as true and 1. x- tai y-arvoa ei voi käyttää ylä- tai alarajana Error that occurs during graphing when x or y is used in integral upper limits. x- tai y-arvoa ei voi käyttää rajapisteenä Error that occurs during graphing when x or y is used in the limit point. Kompleksia äärettömyyttä ei voi käyttää Error that occurs during graphing when complex infinity is used Kompleksilukuja ei voi käyttää epäyhtälöissä Error that occurs during graphing when complex numbers are used in inequalities. Takaisin funktioluetteloon This is the tooltip for the back button in the equation analysis page in the graphing calculator Takaisin funktioluetteloon This is the automation name for the back button in the equation analysis page in the graphing calculator Analysoi funktio This is the tooltip for the analyze function button Analysoi funktio This is the automation name for the analyze function button Analysoi funktio This is the text for the for the analyze function context menu command Poista yhtälö This is the tooltip for the graphing calculator remove equation buttons Poista yhtälö This is the automation name for the graphing calculator remove equation buttons Poista yhtälö This is the text for the for the remove equation context menu command Jaa This is the automation name for the graphing calculator share button. Jaa This is the tooltip for the graphing calculator share button. Muuta yhtälön tyyliä This is the tooltip for the graphing calculator equation style button Muuta yhtälön tyyliä This is the automation name for the graphing calculator equation style button Muuta yhtälön tyyliä This is the text for the for the equation style context menu command Näytä yhtälö This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Piilota yhtälö This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Näytä yhtälö %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Piilota yhtälö %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Lopeta seuranta This is the tooltip/automation name for the graphing calculator stop tracing button Aloita seuranta This is the tooltip/automation name for the graphing calculator start tracing button Kaavion tarkastelu ikkuna, x-akseli sitovat %1 ja %2, y-akseli sitovat %3 ja %4, näytetään %5 kaavat {Locked="%1","%2", "%3", "%4", "%5"}. Määritä liukusäädin This is the tooltip text for the slider options button in Graphing Calculator Määritä liukusäädin This is the automation name text for the slider options button in Graphing Calculator Vaihda yhtälötilaan Used in Graphing Calculator to switch the view to the equation mode Vaihda kaaviotilaan Used in Graphing Calculator to switch the view to the graph mode Vaihda yhtälötilaan Used in Graphing Calculator to switch the view to the equation mode Nykyinen tila on yhtälötila Announcement used in Graphing Calculator when switching to the equation mode Nykyinen tila on kaaviotila Announcement used in Graphing Calculator when switching to the graph mode Ikkuna Heading for window extents on the settings Asteet Degrees mode on settings page Uusasteet Gradian mode on settings page Radiaanit Radians mode on settings page Yksiköt Heading for Unit's on the settings Palauta näkymä Hyperlink button to reset the view of the graph X-maksimi X maximum value header X-minimi X minimum value header Y-maksimi Y Maximum value header Y-minimi Y minimum value header Kaavion asetukset This is the tooltip text for the graph options button in Graphing Calculator Kaavion asetukset This is the automation name text for the graph options button in Graphing Calculator Kaavion asetukset Heading for the Graph options flyout in Graphing mode. Muuttujan asetukset Screen reader prompt for the variable settings toggle button Vaihda muuttujan asetuksia Tool tip for the variable settings toggle button Viivan paksuus Heading for the Graph options flyout in Graphing mode. Viivojen asetukset Heading for the equation style flyout in Graphing mode. Pieni viivan leveys Automation name for line width setting Normaali viivan leveys Automation name for line width setting Suuri viivan leveys Automation name for line width setting Hyvin suuri viivan leveys Automation name for line width setting Kirjoita lauseke this is the placeholder text used by the textbox to enter an equation Kopioi Copy menu item for the graph context menu Leikkaa Cut menu item from the Equation TextBox Kopioi Copy menu item from the Equation TextBox Liitä Paste menu item from the Equation TextBox Kumoa Undo menu item from the Equation TextBox Valitse kaikki Select all menu item from the Equation TextBox Funktioiden syöte The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funktioiden syöte The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funktioiden syötepaneeli The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Muuttujapaneeli The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Muuttuva luettelo The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Muuttujan %1 luettelokohde The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Muuttujan arvon tekstiruutu The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Muuttujan arvon liukusäädin The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Muuttujan vähimmäisarvon tekstiruutu The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Muuttujan vaihearvon tekstiruutu The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Muuttujan enimmäisarvon tekstiruutu The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Yhtenäinen viiva -tyyli Name of the solid line style for a graphed equation Pisteviivatyyli Name of the dotted line style for a graphed equation Katkoviivatyyli Name of the dashed line style for a graphed equation Tummansininen Name of color in the color picker Merivaahto Name of color in the color picker Violetti Name of color in the color picker Vihreä Name of color in the color picker Mintunvihreä Name of color in the color picker Tummanvihreä Name of color in the color picker Hiili Name of color in the color picker Punainen Name of color in the color picker Vaalea luumu Name of color in the color picker Magenta Name of color in the color picker Keltakulta Name of color in the color picker Kirkas oranssi Name of color in the color picker Ruskea Name of color in the color picker Musta Name of color in the color picker Valkoinen Name of color in the color picker Väri 1 Name of color in the color picker Väri 2 Name of color in the color picker Väri 3 Name of color in the color picker Väri 4 Name of color in the color picker Kaavion teema Graph settings heading for the theme options Aina vaalea Graph settings option to set graph to light theme Täsmää sovelluksen teemaan Graph settings option to set graph to match the app theme Teema This is the automation name text for the Graph settings heading for the theme options Aina vaalea This is the automation name text for the Graph settings option to set graph to light theme Täsmää sovelluksen teemaan This is the automation name text for the Graph settings option to set graph to match the app theme Funktio poistettu Announcement used in Graphing Calculator when a function is removed from the function list Funktion analyysin kaavaruutu This is the automation name text for the equation box in the function analysis panel On yhtä suuri kuin Screen reader prompt for the equal button on the graphing calculator operator keypad Vähemmän kuin Screen reader prompt for the Less than button Pienempi tai yhtä suuri kuin Screen reader prompt for the Less than or equal button Yhtä suuri kuin Screen reader prompt for the Equal button Suurempi tai yhtä suuri kuin Screen reader prompt for the Greater than or equal button Suurempi kuin Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Lähetä Screen reader prompt for the submit button on the graphing calculator operator keypad Funktion analyysi Screen reader prompt for the function analysis grid Kaavion asetukset Screen reader prompt for the graph options panel Historia- ja muistiluettelot Automation name for the group of controls for history and memory lists. Muistiluettelo Automation name for the group of controls for memory list. Historiapaikka %1 tyhjennetty {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Laskin aina päällimmäisenä Announcement to indicate calculator window is always shown on top. Laskin takaisin koko näytön näkymään Announcement to indicate calculator window is now back to full view. Aritmeettinen vaihto valittu Label for a radio button that toggles arithmetic shift behavior for the shift operations. Looginen vaihto valittu Label for a radio button that toggles logical shift behavior for the shift operations. Kierrettävä pyöreä vaihto valittu Label for a radio button that toggles rotate circular behavior for the shift operations. Kierrä kantokehällä -vaihto valittu Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Asetukset Header text of Settings page Ulkoasu Subtitle of appearance setting on Settings page Sovelluksen teema Title of App theme expander Valitse näytettävä sovelluksen teema Description of App theme expander Vaalea Lable for light theme option Tumma Lable for dark theme option Käytä järjestelmäasetusta Lable for the app theme option to use system setting Edellinen Screen reader prompt for the Back button in title bar to back to main page Asetussivu Announcement used when Settings page is opened Avaa käytettävissä olevien toimintojen pikavalikko Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Tätä tilannevedosta ei voitu palauttaa. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/fil-PH/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Hindi tamang input Error message shown when the input makes a function fail, like log(-1) Hindi natukoy ang resulta Error message shown when there's no possible value for a function. Hindi sapat ang memory Error message shown when we run out of memory during a calculation. Overflow Error message shown when there's an overflow during the calculation. Hindi tinukoy ang resulta Same as 101 Hindi tinukoy ang resulta Same 101 Overflow Same as 107 Overflow Same 107 Hindi madi-divide sa zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/fil-PH/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Calculator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Calculator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculator {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopyahin Copy context menu string I-paste Paste context menu string Halos katumbas ng The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, value %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) Ika-63 Sub-string used in automation name for 63 bit in bit flip Ika-62 Sub-string used in automation name for 62 bit in bit flip Ika-61 Sub-string used in automation name for 61 bit in bit flip Ika-60 Sub-string used in automation name for 60 bit in bit flip Ika-59 Sub-string used in automation name for 59 bit in bit flip Ika-58 Sub-string used in automation name for 58 bit in bit flip Ika-57 Sub-string used in automation name for 57 bit in bit flip Ika-56 Sub-string used in automation name for 56 bit in bit flip Ika-55 Sub-string used in automation name for 55 bit in bit flip Ika-54 Sub-string used in automation name for 54 bit in bit flip Ika-53 Sub-string used in automation name for 53 bit in bit flip Ika-52 Sub-string used in automation name for 52 bit in bit flip Ika-51 Sub-string used in automation name for 51 bit in bit flip Ika-50 Sub-string used in automation name for 50 bit in bit flip Ika-49 Sub-string used in automation name for 49 bit in bit flip Ika-48 Sub-string used in automation name for 48 bit in bit flip Ika-47 Sub-string used in automation name for 47 bit in bit flip Ika-46 Sub-string used in automation name for 46 bit in bit flip Ika-45 Sub-string used in automation name for 45 bit in bit flip Ika-44 Sub-string used in automation name for 44 bit in bit flip Ika-43 Sub-string used in automation name for 43 bit in bit flip Ika-42 Sub-string used in automation name for 42 bit in bit flip Ika-41 Sub-string used in automation name for 41 bit in bit flip Ika-40 Sub-string used in automation name for 40 bit in bit flip Ika-39 Sub-string used in automation name for 39 bit in bit flip Ika-38 Sub-string used in automation name for 38 bit in bit flip Ika-37 Sub-string used in automation name for 37 bit in bit flip Ika-36 Sub-string used in automation name for 36 bit in bit flip Ika-35 Sub-string used in automation name for 35 bit in bit flip Ika-34 Sub-string used in automation name for 34 bit in bit flip Ika-33 Sub-string used in automation name for 33 bit in bit flip Ika-32 Sub-string used in automation name for 32 bit in bit flip Ika-31 Sub-string used in automation name for 31 bit in bit flip Ika-30 Sub-string used in automation name for 30 bit in bit flip Ika-29 Sub-string used in automation name for 29 bit in bit flip Ika-28 Sub-string used in automation name for 28 bit in bit flip Ika-27 Sub-string used in automation name for 27 bit in bit flip Ika-26 Sub-string used in automation name for 26 bit in bit flip Ika-25 Sub-string used in automation name for 25 bit in bit flip Ika-24 Sub-string used in automation name for 24 bit in bit flip Ika-23 Sub-string used in automation name for 23 bit in bit flip Ika-22 Sub-string used in automation name for 22 bit in bit flip Ika-21 Sub-string used in automation name for 21 bit in bit flip Ika-20 Sub-string used in automation name for 20 bit in bit flip Ika-19 Sub-string used in automation name for 19 bit in bit flip Ika-18 Sub-string used in automation name for 18 bit in bit flip Ika-17 Sub-string used in automation name for 17 bit in bit flip Ika-16 Sub-string used in automation name for 16 bit in bit flip Ika-15 Sub-string used in automation name for 15 bit in bit flip Ika-14 Sub-string used in automation name for 14 bit in bit flip Ika-13 Sub-string used in automation name for 13 bit in bit flip Ika-12 Sub-string used in automation name for 12 bit in bit flip Ika-11 Sub-string used in automation name for 11 bit in bit flip Ika-10 Sub-string used in automation name for 10 bit in bit flip Ika-9 Sub-string used in automation name for 9 bit in bit flip Ika-8 Sub-string used in automation name for 8 bit in bit flip Ika-7 Sub-string used in automation name for 7 bit in bit flip Ika-6 Sub-string used in automation name for 6 bit in bit flip Ika-5 Sub-string used in automation name for 5 bit in bit flip Ika-4 Sub-string used in automation name for 4 bit in bit flip Ika-3 Sub-string used in automation name for 3 bit in bit flip Ika-2 Sub-string used in automation name for 2 bit in bit flip Pang-1 Sub-string used in automation name for 1 bit in bit flip least significant bit Used to describe the first bit of a binary number. Used in bit flip Buksan ang flyout ng memory This is the automation name and label for the memory button when the memory flyout is closed. Isara ang flyout ng memory This is the automation name and label for the memory button when the memory flyout is open. Panatilihin sa ibabaw This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Bumalik sa buong view This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memory This is the tool tip automation name for the memory button. Kasaysayan (Ctrl+H) This is the tool tip automation name for the history button. Bit toggling keypad This is the tool tip automation name for the bitFlip button. Buong keypad This is the tool tip automation name for the numberPad button. I-clear ang lahat ng memory (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memory The text that shows as the header for the memory list Memory The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Kasaysayan The text that shows as the header for the history list Kasaysayan The automation name for the History pivot item that is shown when Calculator is in wide layout. Converter Label for a control that activates the unit converter mode. Scientific Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Converter mode Screen reader prompt for a control that activates the unit converter mode. Scientific mode Screen reader prompt for a control that activates scientific mode calculator layout Standard mode Screen reader prompt for a control that activates standard mode calculator layout. Burahin ang lahat ng kasaysayan "ClearHistory" used on the calculator history pane that stores the calculation history. Burahin ang lahat ng kasaysayan This is the tool tip automation name for the Clear History button. Itago "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientific The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Converter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group. Converter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group in upper case. Mga Converter Pluralized version of the converter group text, used for the screen reader prompt. Mga Calculator Pluralized version of the calculator group text, used for the screen reader prompt. Ang display ay %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Ang expression ay %1, Ang kasalukuyang input ay %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Ang display ay %1 ang laki {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Ang expression ay %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Ipakita ang value na kinopya sa clipboard Screen reader prompt for the Calculator display copy button, when the button is invoked. Kasaysayan Screen reader prompt for the history flyout Memory Screen reader prompt for the memory flyout HexaDecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binary %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Burahin ang lahat ng kasaysayan Screen reader prompt for the Calculator History Clear button Na-clear ang kasaysayan Screen reader prompt for the Calculator History Clear button, when the button is invoked. Itago ang kasaysayan Screen reader prompt for the Calculator History Hide button Buksan ang flyout ng kasaysayan Screen reader prompt for the Calculator History button, when the flyout is closed. Isara ang flyout ng kasaysayan Screen reader prompt for the Calculator History button, when the flyout is open. Store ng memory Screen reader prompt for the Calculator Memory button Mag-store sa memory (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. I-clear ang lahat ng memory Screen reader prompt for the Calculator Clear Memory button Na-clear ang memory Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Mag-recall ng memory Screen reader prompt for the Calculator Memory Recall button Mag-recall ng memory (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Magdagdag ng memory Screen reader prompt for the Calculator Memory Add button Idagdag sa memory (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Magbawas ng memory Screen reader prompt for the Calculator Memory Subtract button Magbawas ng memory (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. I-clear ang item ng memory Screen reader prompt for the Calculator Clear Memory button I-clear ang item ng memory This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Magdagdag sa item ng memory Screen reader prompt for the Calculator Memory Add button in the Memory list Magdagdag sa item ng memory This is the tool tip automation name for the Calculator Memory Add button in the Memory list Ibawas mula sa item ng memory Screen reader prompt for the Calculator Memory Subtract button in the Memory list Ibawas mula sa item ng memory This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list I-clear ang item ng memory Screen reader prompt for the Calculator Clear Memory button I-clear ang item ng memory Text string for the Calculator Clear Memory option in the Memory list context menu Magdagdag sa item ng memory Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Magdagdag sa item ng memory Text string for the Calculator Memory Add option in the Memory list context menu Ibawas mula sa item ng memory Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Ibawas mula sa item ng memory Text string for the Calculator Memory Subtract option in the Memory list context menu Tanggalin Text string for the Calculator Delete swipe button in the History list Kopyahin Text string for the Calculator Copy option in the History list context menu Tanggalin Text string for the Calculator Delete option in the History list context menu Tanggalin ang item ng kasaysayan Screen reader prompt for the Calculator Delete swipe button in the History list Tanggalin ang item ng kasaysayan Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Isa Screen reader prompt for the Calculator number "1" button Dalawa Screen reader prompt for the Calculator number "2" button Tatlo Screen reader prompt for the Calculator number "3" button Apat Screen reader prompt for the Calculator number "4" button Lima Screen reader prompt for the Calculator number "5" button Anim Screen reader prompt for the Calculator number "6" button Pito Screen reader prompt for the Calculator number "7" button Walo Screen reader prompt for the Calculator number "8" button Siyam Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button At Screen reader prompt for the Calculator And button O Screen reader prompt for the Calculator Or button Hindi Screen reader prompt for the Calculator Not button Paikutin pakaliwa Screen reader prompt for the Calculator ROL button Paikutin pakanan Screen reader prompt for the Calculator ROR button Kaliwang shift Screen reader prompt for the Calculator LSH button Kanang shift Screen reader prompt for the Calculator RSH button Eksklusibo o Screen reader prompt for the Calculator XOR button Toogle ng Quadruple na Salita Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Toggle ng Dobleng Salita Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Toggle ng salita Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Toggle ng byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bit toggling keypad Screen reader prompt for the Calculator bitFlip button Buong keypad Screen reader prompt for the Calculator numberPad button Tagahiwalay ng decimal Screen reader prompt for the "." button I-clear ang entry Screen reader prompt for the "CE" button I-clear Screen reader prompt for the "C" button I-divide sa Screen reader prompt for the divide button on the number pad I-multiply sa Screen reader prompt for the multiply button on the number pad Equals Screen reader prompt for the equals button on the scientific operator keypad Inverse function Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Square root Screen reader prompt for the square root button on the scientific operator keypad Porsyento Screen reader prompt for the percent button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the scientific operator keypad Positive negative Screen reader prompt for the negate button on the converter operator keypad Reciprocal Screen reader prompt for the invert button on the scientific operator keypad Kaliwang parenthesis Screen reader prompt for the Calculator "(" button on the scientific operator keypad Bilang ng kaliwang panaklong, pambukas na panaklong %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Kanang parenthesis Screen reader prompt for the Calculator ")" button on the scientific operator keypad Bilang ng bukas na parenthesis %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Walang mga bukas na parenthesis na masasara. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Scientific notation Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sine Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosine Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangent Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolic sine Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolic cosine Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolic tangent Screen reader prompt for the Calculator tanh button on the scientific operator keypad Square Screen reader prompt for the x squared on the scientific operator keypad. Cube Screen reader prompt for the x cubed on the scientific operator keypad. Arc sine Screen reader prompt for the inverted sin on the scientific operator keypad. Arc cosine Screen reader prompt for the inverted cos on the scientific operator keypad. Arc tangent Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolic arc sine Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolic arc cosine Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolic arc tangent Screen reader prompt for the inverted tanh on the scientific operator keypad. ‘X’ sa exponent Screen reader prompt for x power y button on the scientific operator keypad. Ten sa exponent Screen reader prompt for the 10 power x button on the scientific operator keypad. ‘e’ sa exponent Screen reader for the e power x on the scientific operator keypad. ‘y’ root of ‘x’ Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Natural log Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponential Screen reader for the exp button on the scientific operator keypad Degree minuto segundo Screen reader for the exp button on the scientific operator keypad (na) Degree Screen reader for the exp button on the scientific operator keypad Integer part Screen reader for the int button on the scientific operator keypad Fractional part Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Toggle ng degrees This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Toggle ng mga gradian This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Toggle ng mga radian This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Mode na dropdown Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Dropdown ng mga kategorya Screen reader prompt for the Categories dropdown field. Panatilihin sa ibabaw Screen reader prompt for the Always-on-Top button when in normal mode. Bumalik sa buong view Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Panatilihin sa ibabaw (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Bumalik sa buong view (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. I-convert mula %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Binabago mula %1 point %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Kino-convert para maging %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. Ang %1 %2 ay %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unit ng input Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unit ng output Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Enerhiya Unit conversion category name called Energy. (eg. the energy in a battery or in food) Haba Unit conversion category name called Length Power Unit conversion category name called Power (eg. the power of an engine or a light bulb) Bilis Unit conversion category name called Speed Oras Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Bigat at mass Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressure Unit conversion category name called Pressure Anggulo Unit conversion category name called Angle Pera Unit conversion category name called Currency Fluid ounce (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Fluid ounce (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume Galon (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Galon (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume Litro A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume (na) Milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume (na) Pint (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume (na) Pint (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume Tablespoons (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (US) An abbreviation for a measurement unit of volume Teaspoon (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (US) An abbreviation for a measurement unit of volume Tablespoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (UK) An abbreviation for a measurement unit of volume Teaspoons (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (UK) An abbreviation for a measurement unit of volume Quart (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Quart (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume Cups (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) British thermal unit A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Thermal calorie A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimetro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimetro bawat segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic centimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic feet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic inch A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic meter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cubic yard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mga Araw A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electron volt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Talampakan A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Talampakan bawat segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Foot-pound A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Foot-pound/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ektarya A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Horsepower (US) A measurement unit for power Oras A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pulgada A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-hours A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorie ng pagkain A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Kilometro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometro bawat oras A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knot A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metro A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metro bawat segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Microsecond A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milya A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milya bawat oras A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Millisecond A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuto A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Angstrom A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mga milyang pandagat A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Segundo A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square centimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square feet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square inch A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Square kilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Square meter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Square mile A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square millimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Square yard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Linggo A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Yarda A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Taon A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Degrees A measurement unit for Angle. Radians A measurement unit for Angle. Gradians A measurement unit for Angle. (na) Atmosphere A measurement unit for Pressure. Bars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. (na) Millimeter ng mercury A measurement unit for Pressure. (na) Pascal A measurement unit for Pressure. (na) Pounds bawat square inch A measurement unit for Pressure. Centigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Gramo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilo A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Long ton (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounce A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pound A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Short ton (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) Metric ton A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) soccer field A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) soccer field A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) floppy disk A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) floppy disk A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) baterya AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) baterya AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) paperclip A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) paperclip A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mga jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) bumbilya A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) bumbilya A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) horse A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) horse A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) bathtub A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) bathtub A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) snowflake A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) snowflake A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) elepante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) elepante An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) pagong A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) pagong A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mga jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mga jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) balyena A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) balyena A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) tasa ng kape A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) tasa ng kape A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) swimming pool An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) swimming pool An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mga kamay A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mga kamay A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) piraso ng papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) piraso ng papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) kastilyo A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) kastilyo A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) saging A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) saging A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) hiwa ng cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) hiwa ng cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) makina ng tren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) makina ng tren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) soccer ball A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) (na) soccer ball A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Item ng memory Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Bumalik Screen reader prompt for the About panel back button Bumalik Content of tooltip being displayed on AboutControlBackButton Mga Takda sa Lisensiya ng Microsoft Software Displayed on a link to the Microsoft Software License Terms on the About panel Preview Label displayed next to upcoming features Pahayag ng Pagiging Pribado ng Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Reserbado ang lahat ng karapatan. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para malaman kung paano ka makakapag-ambag sa Windows Calculator, tingnan ang proyekto sa %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Tungkol Sa Subtitle of about message on Settings page Magpadala ng feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Wala pang kasaysayan. The text that shows as the header for the history list Walang naka-save sa memory. The text that shows as the header for the memory list Memory Screen reader prompt for the negate button on the converter operator keypad Ang expression na ito ay hindi ma-paste The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mga Yottabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mga Yottabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pagkalkula ng petsa Mode ng pagkalkula Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Idagdag Add toggle button text Magdagdag o magbawas ng mga araw Add or Subtract days option Petsa Date result label Pagkakaiba sa pagitan ng mga petsa Date difference option Mga Araw Add/Subtract Days label Pagkakaiba Difference result label Mula kay From Date Header for Difference Date Picker Mga Buwan Add/Subtract Months label Ibawas Subtract toggle button text Para kay To Date Header for Difference Date Picker (na) Taon Add/Subtract Years label Out of Bound ang Petsa Out of bound message shown as result when the date calculation exceeds the bounds araw (na) araw buwan (na) buwan Parehong mga petsa linggo (na) linggo taon (na) taon Pagkakaiba %1 Automation name for reading out the date difference. %1 = Date difference Resultang petsa %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Calculator mode {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Mode ng converter {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mode ng pagkalkula ng petsa Automation name for when the mode header is focused and the current mode is Date calculation. Mga listahan ng Kasaysayan at Memory Automation name for the group of controls for history and memory lists. Mga kontrol ng memory Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Mga karaniwang function Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Mga kontrol ng display Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Mga karaniwang operator Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Number pad Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Mga operator ng anggulo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Mga scientific na function Automation name for the group of Scientific functions. Seleksyon ng radix Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Mga operator ng programmer Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Pagpili ng input mode Automation name for the group of input mode toggling buttons. Bit toggling keypad Automation name for the group of bit toggling buttons. I-scroll ang expression pakaliwa Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. I-scroll ang expression pakanan Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Naabot na ang pinakamataas na bilang ng mga digit. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Na-save ang %1 sa memory {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Ang lalagyan ng memory %1 ay %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Na-clear ang memory slot %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". na-divide ng Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. times Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. sa power ng Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y root Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. kaliwang shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. kanang shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. o Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x o Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. at Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Na-update noong %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" I-update ang mga rate The text displayed for a hyperlink button that refreshes currency converter ratios. Maaaring magkaroon ng mga singil sa data. The text displayed when users are on a metered connection and using currency converter. Hindi makakuha ng mga bagong rate. Subukang muli sa ibang pagkakataon. The text displayed when currency ratio data fails to load. Offline. Pakisuri ang iyong%HL%Mga Setting ng Network%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Ina-update ang mga rate ng pera This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Na-update ang mga currency rate This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Hindi nakapag-update ng mga rate This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} I-clear ang lahat ng memory (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. I-clear ang lahat ng memory Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sine degrees Name for the sine function in degrees mode. Used by screen readers. sine radians Name for the sine function in radians mode. Used by screen readers. sine gradians Name for the sine function in gradians mode. Used by screen readers. inverse sine degrees Name for the inverse sine function in degrees mode. Used by screen readers. inverse sine radians Name for the inverse sine function in radians mode. Used by screen readers. inverse sine gradians Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolic sine Name for the hyperbolic sine function. Used by screen readers. inverse hyperbolic sine Name for the inverse hyperbolic sine function. Used by screen readers. cosine degrees Name for the cosine function in degrees mode. Used by screen readers. cosine radians Name for the cosine function in radians mode. Used by screen readers. cosine gradians Name for the cosine function in gradians mode. Used by screen readers. inverse cosine degrees Name for the inverse cosine function in degrees mode. Used by screen readers. inverse cosine radians Name for the inverse cosine function in radians mode. Used by screen readers. inverse cosine gradians Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolic cosine Name for the hyperbolic cosine function. Used by screen readers. inverse hyperbolic cosine Name for the inverse hyperbolic cosine function. Used by screen readers. tangent degrees Name for the tangent function in degrees mode. Used by screen readers. tangent radians Name for the tangent function in radians mode. Used by screen readers. tangent gradians Name for the tangent function in gradians mode. Used by screen readers. inverse tangent degrees Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangent radians Name for the inverse tangent function in radians mode. Used by screen readers. inverse tangent gradians Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolic tangent Name for the hyperbolic tangent function. Used by screen readers. inverse hyperbolic tangent Name for the inverse hyperbolic tangent function. Used by screen readers. secant degrees Name for the secant function in degrees mode. Used by screen readers. secant radians Name for the secant function in radians mode. Used by screen readers. secant gradians Name for the secant function in gradians mode. Used by screen readers. inverse secant degrees Name for the inverse secant function in degrees mode. Used by screen readers. inverse secant radians Name for the inverse secant function in radians mode. Used by screen readers. inverse secant gradians Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolic secant Name for the hyperbolic secant function. Used by screen readers. inverse hyperbolic secant Name for the inverse hyperbolic secant function. Used by screen readers. cosecant degrees Name for the cosecant function in degrees mode. Used by screen readers. cosecant radians Name for the cosecant function in radians mode. Used by screen readers. cosecant gradians Name for the cosecant function in gradians mode. Used by screen readers. inverse cosecant degrees Name for the inverse cosecant function in degrees mode. Used by screen readers. inverse cosecant radians Name for the inverse cosecant function in radians mode. Used by screen readers. inverse cosecant gradians Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolic cosecant Name for the hyperbolic cosecant function. Used by screen readers. inverse hyperbolic cosecant Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangent degrees Name for the cotangent function in degrees mode. Used by screen readers. Cotangent radians Name for the cotangent function in radians mode. Used by screen readers. cotangent gradians Name for the cotangent function in gradians mode. Used by screen readers. inverse cotangent degrees Name for the inverse cotangent function in degrees mode. Used by screen readers. inverse cotangent radians Name for the inverse cotangent function in radians mode. Used by screen readers. inverse cotangent gradians Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolic cotangent Name for the hyperbolic cotangent function. Used by screen readers. inverse hyperbolic cotangent Name for the inverse hyperbolic cotangent function. Used by screen readers. Cube root Name for the cube root function. Used by screen readers. Log base Name for the logbasey function. Used by screen readers. Absolute value Name for the absolute value function. Used by screen readers. kaliwang shift Name for the programmer function that shifts bits to the left. Used by screen readers. kanang shift Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. degree minuto segundo Name for the degree minute second (dms) function. Used by screen readers. natural log Name for the natural log (ln) function. Used by screen readers. square Name for the square function. Used by screen readers. y root Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategoryang %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Kasunduan sa Mga Serbisyo ng Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Mula kay From Date Header for AddSubtract Date Picker I-scroll ang resulta ng kalkulasyon pakaliwa Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. I-scroll ang resulta ng kalkulasyon pakanan Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Nabigo ang pagkalkula Text displayed when the application is not able to do a calculation Log base Y Screen reader prompt for the logBaseY button Trigonometry Displayed on the button that contains a flyout for the trig functions in scientific mode. Function Displayed on the button that contains a flyout for the general functions in scientific mode. Mga Inequality Displayed on the button that contains a flyout for the inequality functions. Mga Inequality Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit shift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse function Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolic function Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secant Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolic secant Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolic arc secant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecant Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolic cosecant Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolic arc cosecant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangent Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolic cotangent Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangent Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolic arc cotangent Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Floor Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ceiling Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Random Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolute value Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler's number Screen reader prompt for the Calculator button e in the scientific flyout keypad Two to the exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotate on left with carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotate on right with carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Kaliwang shift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Left shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Kanang shift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Right shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Arithmetic shift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logical shift Label for a radio button that toggles logical shift behavior for the shift operations. Rotate circular shift Label for a radio button that toggles rotate circular behavior for the shift operations. Rotate through carry circular shift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Cube root Screen reader prompt for the cube root button on the scientific operator keypad Trigonometry Screen reader prompt for the square root button on the scientific operator keypad Mga Function Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Mga panel ng scientific operator Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Mga programmer operator panel Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad most significant bit Used to describe the last bit of a binary number. Used in bit flip Pag-graph Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plot Screen reader prompt for the plot button on the graphing calculator operator keypad I-refresh ang awtomatikong pag-view (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Graph view Screen reader prompt for the graph view button. Awtomatikong pinakaangkop Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Mano-manong pagtatama Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Na-reset ang graph view Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Mag-zoom In (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Mag-zoom in Screen reader prompt for the zoom in button. Mag-zoom Out (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Mag-zoom out Screen reader prompt for the zoom out button. Magdagdag ng Equation Placeholder text for the equation input button Hindi makapagbahagi sa oras na ito. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Tingnan kung ano ang na-graph ko gamit ang Windows Calculator Sent as part of the shared content. The title for the share. Mga Equation Header that appears over the equations section when sharing Mga Variable Header that appears over the variables section when sharing Larawan ng isang graph na may mga equation Alt text for the graph image when output via Share Mga Variable Header text for variables area Hakbang Label text for the step text box Min Label text for the min text box Max Label text for the max text box Kulay Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Pagsusuri ng function Title for KeyGraphFeatures Control Walang anumang pahigang asymptote ang function. Message displayed when the graph does not have any horizontal asymptotes Walang anumang inflection point ang function. Message displayed when the graph does not have any inflection points Walang anumang maxima point ang function. Message displayed when the graph does not have any maxima Walang anumang minima point ang function. Message displayed when the graph does not have any minima Constant String describing constant monotonicity of a function Lumiliit String describing decreasing monotonicity of a function Hindi matukoy ang monotonicity ng function. Error displayed when monotonicity cannot be determined Lumalaki String describing increasing monotonicity of a function Hindi alam ang monotonicity ng function. Error displayed when monotonicity is unknown Walang anumang pahilis na aysmptote ang function. Message displayed when the graph does not have any oblique asymptotes Hindi matukoy ang pagkakapareho ng function. Error displayed when parity is cannot be determined Even ang function. Message displayed with the function parity is even Hindi even o odd ang function. Message displayed with the function parity is neither even nor odd Odd ang function. Message displayed with the function parity is odd Hindi alam ang pagkakapareho ng function. Error displayed when parity is unknown Hindi sinusuportahan ang periodicity para sa function na ito. Error displayed when periodicity is not supported Hindi periodic ang function. Message displayed with the function periodicity is not periodic Hindi alam ang periodicity ng function. Message displayed with the function periodicity is unknown Ang mga tampok na ito ay masyadong kumplikado para makalkula ng Calculator: Error displayed when analysis features cannot be calculated Walang anumang patayong asymptote ang function. Message displayed when the graph does not have any vertical asymptotes Walang anumang x-intercept ang function. Message displayed when the graph does not have any x-intercepts Walang anumang y-intercept ang function. Message displayed when the graph does not have any y-intercepts Domain Title for KeyGraphFeatures Domain Property Mga horizontal asymptote Title for KeyGraphFeatures Horizontal aysmptotes Property Mga inflection point Title for KeyGraphFeatures Inflection points Property Hindi sinusuportahan ang pagsusuri para sa function na ito. Error displayed when graph analysis is not supported or had an error. Sinusuportahan lang ang pagsusuri para sa mga function sa f(x) na format. Halimbawa: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonicity Title for KeyGraphFeatures Monotonicity Property Mga oblique asymptote Title for KeyGraphFeatures Oblique asymptotes Property Pagkakapareho Title for KeyGraphFeatures Parity Property Yugto Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Range Title for KeyGraphFeatures Range Property Mga vertical asymptote Title for KeyGraphFeatures Vertical asymptotes Property X-Intercept Title for KeyGraphFeatures XIntercept Property Y-Intercept Title for KeyGraphFeatures YIntercept Property Hindi maisasagawa ang pagsusuri para sa function. Hindi makalkula ang domain para sa function na ito. Error displayed when Domain is not returned from the analyzer. Hindi makalkula ang range para sa function na ito. Error displayed when Range is not returned from the analyzer. Aapaw (ang numero ay masyadong malaki) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Kinakailangan ang radians mode para mai-graph ang equation na ito. Error that occurs during graphing when radians is required. Ang function na ito ay masyadong komplikado para mai-graph Error that occurs during graphing when the equation is too complex. Kinakailangan ang degrees mode para mai-graph ang function na ito Error that occurs during graphing when degrees is required Ang factorial function ay isang hindi tamang argumento Error that occurs during graphing when a factorial function has an invalid argument. Ang factorial function ay may isang argumento na masyadong malaki para mai-graph Error that occurs during graphing when a factorial has a large n Ang modulo ay maaari lamang magamit sa buong mga numero Error that occurs during graphing when modulo is used with a float. Ang equation ay walang solusyon Error that occurs during graphing when the equation has no solution. Hindi makakapag-divide gamit ang zero Error that occurs during graphing when a divison by zero occurs. Ang equation ay naglalaman ng lohikal na mga kondisyon na kapwa eksklusibo Error that occurs during graphing when mutually exclusive conditions are used. Ang Equation ay nasa hindi tamang domain Error that occurs during graphing when the equation is out of domain. Hindi suportado ang pag-graph ng equation na ito Error that occurs during graphing when the equation is not supported. Nawawala ang parenthesis ng equation Error that occurs during graphing when the equation is missing a ( Nawawala ang closing parenthesis ng equation Error that occurs during graphing when the equation is missing a ) Mayroong masyadong maraming mga decimal point sa isang numero Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Ang isang decimal point ay may nawawalang mga digit Error that occurs during graphing with a decimal point without digits Hindi inaasahang katapusan ng expression Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Hindi inaasahang mga character sa expression Error that occurs during graphing when there is an unexpected token. Hindi tamang mga character sa expression Error that occurs during graphing when there is an invalid token. Masyadong maraming mga sagisag ng katumbas Error that occurs during graphing when there are too many equals. Ang function ay dapat maglaman ng kahit isang x o y na variable Error that occurs during graphing when the equation is missing x or y. Hindi tamang expression Error that occurs during graphing when an invalid syntax is used. Walang laman ang expression Error that occurs during graphing when the expression is empty Ang sagisag ng katumbas ay ginagamit nang walang isang equation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Nawawala ang parenthesis pagkatapos ng pangalan ng function Error that occurs during graphing when parenthesis are missing after a function. Ang isang matematikong operasyon ay may maling bilang ng mga parameter Error that occurs during graphing when a function has the wrong number of parameters Hindi tama ang isang pangalan ng variable Error that occurs during graphing when a variable name is invalid. Nawawala ang opening bracket ng equation Error that occurs during graphing when a { is missing Nawawala ang closing bracket ng equation Error that occurs during graphing when a } is missing. "ako" at "ako" ay hindi maaaring gamitin bilang variable na mga pangalan Error that occurs during graphing when i or I is used. Ang equation ay hindi mai-graph General error that occurs during graphing. Hindi malutas ang digit para sa ibinigay na base Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Ang base ay dapat na mas malaki sa 2 at mas mababa sa 36 Error that occurs during graphing when the base is out of range. Kinakailangan ng isang matematikong operasyong maging variable ang isa sa kanyang mga parameter Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Pinaghahalo ng equation ang logical at scalar na mga operands Error that occurs during graphing when operands are mixed. Such as true and 1. ang x o y ay hindi maaaring gamitin sa itaas o ibabang mga limitasyon Error that occurs during graphing when x or y is used in integral upper limits. ang x o y ay hindi maaaring gamitin sa limit point Error that occurs during graphing when x or y is used in the limit point. Hindi maaaring gumamit ng kumplikadong infinity Error that occurs during graphing when complex infinity is used Hindi makagamit ng mga complex number sa mga inequality Error that occurs during graphing when complex numbers are used in inequalities. Bumalik sa listahan ng function This is the tooltip for the back button in the equation analysis page in the graphing calculator Bumalik sa listahan ng function This is the automation name for the back button in the equation analysis page in the graphing calculator Suriin ang function This is the tooltip for the analyze function button Suriin ang function This is the automation name for the analyze function button Suriin ang function This is the text for the for the analyze function context menu command Tanggalin ang equation This is the tooltip for the graphing calculator remove equation buttons Tanggalin ang equation This is the automation name for the graphing calculator remove equation buttons Tanggalin ang equation This is the text for the for the remove equation context menu command Ibahagi This is the automation name for the graphing calculator share button. Ibahagi This is the tooltip for the graphing calculator share button. Baguhin ang estilo ng equation This is the tooltip for the graphing calculator equation style button Baguhin ang estilo ng equation This is the automation name for the graphing calculator equation style button Baguhin ang estilo ng equation This is the text for the for the equation style context menu command Ipakita ang equation This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Itago ang equation This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Ipakita ang equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Itago ang equation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Ihinto ang pag-trace This is the tooltip/automation name for the graphing calculator stop tracing button Simulan ang pag-trace This is the tooltip/automation name for the graphing calculator start tracing button Graph viewing window, x-axis na bounded ng %1 at %2, y-axis na bounded ng %3 at %4, nagpapakita ng %5 (na) equation {Locked="%1","%2", "%3", "%4", "%5"}. I-configure ang slider This is the tooltip text for the slider options button in Graphing Calculator I-configure ang slider This is the automation name text for the slider options button in Graphing Calculator Lumipat sa equation mode Used in Graphing Calculator to switch the view to the equation mode Lumipat sa graph mode Used in Graphing Calculator to switch the view to the graph mode Lumipat sa equation mode Used in Graphing Calculator to switch the view to the equation mode Ang kasalukuyang mode ay equation mode Announcement used in Graphing Calculator when switching to the equation mode Ang kasalukuyang mode ay graph mode Announcement used in Graphing Calculator when switching to the graph mode Window Heading for window extents on the settings Mga Degree Degrees mode on settings page Mga Gradian Gradian mode on settings page Mga Radian Radians mode on settings page Mga Unit Heading for Unit's on the settings I-reset ang view Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Mga opsyon sa graph This is the tooltip text for the graph options button in Graphing Calculator Mga opsyon sa graph This is the automation name text for the graph options button in Graphing Calculator Mga opsyon sa graph Heading for the Graph options flyout in Graphing mode. Mga variable na opsyon Screen reader prompt for the variable settings toggle button I-toggle ang mga magpapapiliang variable Tool tip for the variable settings toggle button Kapal ng linya Heading for the Graph options flyout in Graphing mode. Mga opsyon sa linya Heading for the equation style flyout in Graphing mode. Maliit na lapad ng linya Automation name for line width setting Medium na lapad ng linya Automation name for line width setting Malaking lapad ng linya Automation name for line width setting Napakalaking lapad ng linya Automation name for line width setting Magpasok ng expression this is the placeholder text used by the textbox to enter an equation Kopyahin Copy menu item for the graph context menu I-cut Cut menu item from the Equation TextBox Kopyahin Copy menu item from the Equation TextBox I-paste Paste menu item from the Equation TextBox I-undo Undo menu item from the Equation TextBox Piliin lahat Select all menu item from the Equation TextBox Input ng function The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Input ng function The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel ng pag-input ng function The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel ng variable The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Listahan ng variable The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variable %1 na item sa listahan The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Textbox ng variable na halaga The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Slider ng variable na halaga The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textbox ng minimum na halaga ng variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textbox ng halaga ng variable step The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textbox ng maximum na variable na halaga The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Solidong linya estilo Name of the solid line style for a graphed equation Tuldok linya estilo Name of the dotted line style for a graphed equation Gatlang na linya estilo Name of the dashed line style for a graphed equation Navy blue Name of color in the color picker Seafoam Name of color in the color picker Lila Name of color in the color picker Berde Name of color in the color picker Mint na berde Name of color in the color picker Matingkad na berde Name of color in the color picker Charcoal Name of color in the color picker Red Name of color in the color picker Maliwanag na plum Name of color in the color picker Magenta Name of color in the color picker Dilaw na ginto Name of color in the color picker Maliwanag na orange Name of color in the color picker Kayumanggi Name of color in the color picker Itim Name of color in the color picker Puti Name of color in the color picker Kulay 1 Name of color in the color picker Kulay 2 Name of color in the color picker Kulay 3 Name of color in the color picker Kulay 4 Name of color in the color picker Tema ng graph Graph settings heading for the theme options Palaging light Graph settings option to set graph to light theme Tugma sa app na tema Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Palaging light This is the automation name text for the Graph settings option to set graph to light theme Tugma sa app na tema This is the automation name text for the Graph settings option to set graph to match the app theme Inaalis ang function Announcement used in Graphing Calculator when a function is removed from the function list Equation box ng function analysis This is the automation name text for the equation box in the function analysis panel Mga Equal Screen reader prompt for the equal button on the graphing calculator operator keypad Mas mababa sa Screen reader prompt for the Less than button Mas mababa sa o katumbas Screen reader prompt for the Less than or equal button Katumbas Screen reader prompt for the Equal button Mas malaki sa o katumbas Screen reader prompt for the Greater than or equal button Mas malaki sa Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Isumite Screen reader prompt for the submit button on the graphing calculator operator keypad Function analysis Screen reader prompt for the function analysis grid Mga opsyon sa graph Screen reader prompt for the graph options panel Kasaysayan at Mga listahan ng memory Automation name for the group of controls for history and memory lists. Listahan ng memory Automation name for the group of controls for memory list. Slot ng kasaysayan %1 ay na-clear {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Palaging nasa itaas ang calculator Announcement to indicate calculator window is always shown on top. Ibalik ang calculator sa full view Announcement to indicate calculator window is now back to full view. Napili ang arithetic shift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Napili ang logical shift Label for a radio button that toggles logical shift behavior for the shift operations. Napili ang rotate circular shift Label for a radio button that toggles rotate circular behavior for the shift operations. Napili ang rotate through carry circular shift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Mga Setting Header text of Settings page Appearance Subtitle of appearance setting on Settings page Tema ng app Title of App theme expander Piliin kung aling tema ng app ang ipapakita Description of App theme expander Light Lable for light theme option Dark Lable for dark theme option Gamitin ang setting ng system Lable for the app theme option to use system setting Bumalik Screen reader prompt for the Back button in title bar to back to main page Pahina ng nga setting Announcement used when Settings page is opened Buksan ang menu ng konteksto para sa mga available na pagkilos Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Hindi maipanumbalik ang snapshot na ito. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/fr-CA/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrée non valide Error message shown when the input makes a function fail, like log(-1) Résultat indéfini Error message shown when there's no possible value for a function. Mémoire insuffisante Error message shown when we run out of memory during a calculation. Dépassement Error message shown when there's an overflow during the calculation. Résultat non défini Same as 101 Résultat non défini Same 101 Dépassement Same as 107 Dépassement Same 107 Impossible de diviser par zéro Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/fr-CA/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculatrice {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculatrice [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculatrice Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculatrice Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculatrice {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculatrice [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copier Copy context menu string Coller Paste context menu string À peu près égal à The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valeur %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63e Sub-string used in automation name for 63 bit in bit flip 62e Sub-string used in automation name for 62 bit in bit flip 61e Sub-string used in automation name for 61 bit in bit flip 60e Sub-string used in automation name for 60 bit in bit flip 59e Sub-string used in automation name for 59 bit in bit flip 58e Sub-string used in automation name for 58 bit in bit flip 57e Sub-string used in automation name for 57 bit in bit flip 56e Sub-string used in automation name for 56 bit in bit flip 55e Sub-string used in automation name for 55 bit in bit flip 54e Sub-string used in automation name for 54 bit in bit flip 53e Sub-string used in automation name for 53 bit in bit flip 52e Sub-string used in automation name for 52 bit in bit flip 51e Sub-string used in automation name for 51 bit in bit flip 50e Sub-string used in automation name for 50 bit in bit flip 49e Sub-string used in automation name for 49 bit in bit flip 48e Sub-string used in automation name for 48 bit in bit flip 47e Sub-string used in automation name for 47 bit in bit flip 46e Sub-string used in automation name for 46 bit in bit flip 45e Sub-string used in automation name for 45 bit in bit flip 44e Sub-string used in automation name for 44 bit in bit flip 43e Sub-string used in automation name for 43 bit in bit flip 42e Sub-string used in automation name for 42 bit in bit flip 41e Sub-string used in automation name for 41 bit in bit flip 40e Sub-string used in automation name for 40 bit in bit flip 39e Sub-string used in automation name for 39 bit in bit flip 38e Sub-string used in automation name for 38 bit in bit flip 37e Sub-string used in automation name for 37 bit in bit flip 36e Sub-string used in automation name for 36 bit in bit flip 35e Sub-string used in automation name for 35 bit in bit flip 34e Sub-string used in automation name for 34 bit in bit flip 33e Sub-string used in automation name for 33 bit in bit flip 32e Sub-string used in automation name for 32 bit in bit flip 31e Sub-string used in automation name for 31 bit in bit flip 30e Sub-string used in automation name for 30 bit in bit flip 29e Sub-string used in automation name for 29 bit in bit flip 28e Sub-string used in automation name for 28 bit in bit flip 27e Sub-string used in automation name for 27 bit in bit flip 26e Sub-string used in automation name for 26 bit in bit flip 25e Sub-string used in automation name for 25 bit in bit flip 24e Sub-string used in automation name for 24 bit in bit flip 23e Sub-string used in automation name for 23 bit in bit flip 22e Sub-string used in automation name for 22 bit in bit flip 21e Sub-string used in automation name for 21 bit in bit flip 20e Sub-string used in automation name for 20 bit in bit flip 19e Sub-string used in automation name for 19 bit in bit flip 18e Sub-string used in automation name for 18 bit in bit flip 17e Sub-string used in automation name for 17 bit in bit flip 16e Sub-string used in automation name for 16 bit in bit flip 15e Sub-string used in automation name for 15 bit in bit flip 14e Sub-string used in automation name for 14 bit in bit flip 13e Sub-string used in automation name for 13 bit in bit flip 12e Sub-string used in automation name for 12 bit in bit flip 11e Sub-string used in automation name for 11 bit in bit flip 10e Sub-string used in automation name for 10 bit in bit flip 9e Sub-string used in automation name for 9 bit in bit flip 8e Sub-string used in automation name for 8 bit in bit flip 7e Sub-string used in automation name for 7 bit in bit flip 6e Sub-string used in automation name for 6 bit in bit flip 5e Sub-string used in automation name for 5 bit in bit flip 4e Sub-string used in automation name for 4 bit in bit flip 3e Sub-string used in automation name for 3 bit in bit flip 2e Sub-string used in automation name for 2 bit in bit flip 1er Sub-string used in automation name for 1 bit in bit flip octet le moins significatif Used to describe the first bit of a binary number. Used in bit flip Ouvrir le menu volant de la mémoire This is the automation name and label for the memory button when the memory flyout is closed. Fermer le menu volant de la mémoire This is the automation name and label for the memory button when the memory flyout is open. Toujours visible This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Revenir à l’affichage plein écran This is the tool tip automation name for the always-on-top button when in always-on-top mode. Mémoire This is the tool tip automation name for the memory button. Historique (Ctrl+H) This is the tool tip automation name for the history button. Clavier pour bit de basculement This is the tool tip automation name for the bitFlip button. Pavé numérique complet This is the tool tip automation name for the numberPad button. Effacer toute la mémoire (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Mémoire The text that shows as the header for the memory list Mémoire The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historique The text that shows as the header for the history list Historique The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertisseur Label for a control that activates the unit converter mode. Scientifique Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Mode du convertisseur Screen reader prompt for a control that activates the unit converter mode. Mode scientifique Screen reader prompt for a control that activates scientific mode calculator layout Mode standard Screen reader prompt for a control that activates standard mode calculator layout. Effacer toutes les données de l’historique "ClearHistory" used on the calculator history pane that stores the calculation history. Effacer toutes les données de l’historique This is the tool tip automation name for the Clear History button. Masquer "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientifique The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmeur The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertisseur The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculatrice The text that shows in the dropdown navigation control for the calculator group. Convertisseur The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculatrice The text that shows in the dropdown navigation control for the calculator group in upper case. Convertisseurs Pluralized version of the converter group text, used for the screen reader prompt. Calculatrices Pluralized version of the calculator group text, used for the screen reader prompt. L'affichage est %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". L’expression est %1, l’entrée actuelle est %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". L’affichage est %1point {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. L’expression est %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Afficher la valeur copiée dans le presse-papiers Screen reader prompt for the Calculator display copy button, when the button is invoked. Historique Screen reader prompt for the history flyout Mémoire Screen reader prompt for the memory flyout Hexadécimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Décimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binaire %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Effacer toutes les données de l’historique Screen reader prompt for the Calculator History Clear button Historique effacé Screen reader prompt for the Calculator History Clear button, when the button is invoked. Masquer l'historique Screen reader prompt for the Calculator History Hide button Ouvrir le menu volant de l’historique Screen reader prompt for the Calculator History button, when the flyout is closed. Fermer le menu volant de l’historique Screen reader prompt for the Calculator History button, when the flyout is open. Stockage Mémoire Screen reader prompt for the Calculator Memory button Stockage de mémoire (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Effacer toute la mémoire Screen reader prompt for the Calculator Clear Memory button Mémoire effacée Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Rappel de mémoire Screen reader prompt for the Calculator Memory Recall button Rappel de mémoire (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Ajout de mémoire Screen reader prompt for the Calculator Memory Add button Ajout de mémoire (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Soustraction de mémoire Screen reader prompt for the Calculator Memory Subtract button Soustraction de mémoire (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Effacer l’élément en mémoire Screen reader prompt for the Calculator Clear Memory button Effacer l’élément en mémoire This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Ajouter à l'élément en mémoire Screen reader prompt for the Calculator Memory Add button in the Memory list Ajouter à l'élément en mémoire This is the tool tip automation name for the Calculator Memory Add button in the Memory list Soustraire de l'élément en mémoire Screen reader prompt for the Calculator Memory Subtract button in the Memory list Soustraire de l'élément en mémoire This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Effacer l’élément en mémoire Screen reader prompt for the Calculator Clear Memory button Effacer l’élément en mémoire Text string for the Calculator Clear Memory option in the Memory list context menu Ajouter à l'élément en mémoire Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Ajouter à l'élément en mémoire Text string for the Calculator Memory Add option in the Memory list context menu Soustraire de l'élément en mémoire Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Soustraire de l'élément en mémoire Text string for the Calculator Memory Subtract option in the Memory list context menu Supprimer Text string for the Calculator Delete swipe button in the History list Copier Text string for the Calculator Copy option in the History list context menu Supprimer Text string for the Calculator Delete option in the History list context menu Supprimer l'élément de l'historique Screen reader prompt for the Calculator Delete swipe button in the History list Supprimer l'élément de l'historique Screen reader prompt for the Calculator Delete option in the History list context menu Retour arrière Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zéro Screen reader prompt for the Calculator number "0" button Un Screen reader prompt for the Calculator number "1" button Deux Screen reader prompt for the Calculator number "2" button Trois Screen reader prompt for the Calculator number "3" button Quatre Screen reader prompt for the Calculator number "4" button Cinq Screen reader prompt for the Calculator number "5" button Six Screen reader prompt for the Calculator number "6" button Sept Screen reader prompt for the Calculator number "7" button Huit Screen reader prompt for the Calculator number "8" button Neuf Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Et Screen reader prompt for the Calculator And button Ou Screen reader prompt for the Calculator Or button Pas Screen reader prompt for the Calculator Not button Rotation vers la gauche Screen reader prompt for the Calculator ROL button Rotation vers la droite Screen reader prompt for the Calculator ROR button Décalage à gauche Screen reader prompt for the Calculator LSH button Décalage à droite Screen reader prompt for the Calculator RSH button Exclusif ou Screen reader prompt for the Calculator XOR button Activer/désactiver Mot quadruple Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Activer/désactiver Mot double Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Activer/désactiver Mot Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Activer/désactiver Octet Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Clavier pour bit de basculement Screen reader prompt for the Calculator bitFlip button Pavé numérique complet Screen reader prompt for the Calculator numberPad button Séparateur décimal Screen reader prompt for the "." button Effacer l'entrée Screen reader prompt for the "CE" button Effacer Screen reader prompt for the "C" button Diviser par Screen reader prompt for the divide button on the number pad Multiplier par Screen reader prompt for the multiply button on the number pad Égale Screen reader prompt for the equals button on the scientific operator keypad Inverser les fonctions Screen reader prompt for the shift button on the number pad in scientific mode. Moins Screen reader prompt for the minus button on the number pad Moins We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Racine carrée Screen reader prompt for the square root button on the scientific operator keypad Pour cent Screen reader prompt for the percent button on the scientific operator keypad Positif Négatif Screen reader prompt for the negate button on the scientific operator keypad Positif Négatif Screen reader prompt for the negate button on the converter operator keypad Réciproque Screen reader prompt for the invert button on the scientific operator keypad Parenthèse gauche Screen reader prompt for the Calculator "(" button on the scientific operator keypad %1 parenthèses gauches ouvrantes {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parenthèse droite Screen reader prompt for the Calculator ")" button on the scientific operator keypad Nombre de parenthèses ouvertes : %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Aucune parenthèse ouverte ne doit être fermée. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notation scientifique Screen reader prompt for the Calculator F-E the scientific operator keypad Fonction hyperbolique Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hyperbolique Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hyperbolique Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hyperbolique Screen reader prompt for the Calculator tanh button on the scientific operator keypad Carré Screen reader prompt for the x squared on the scientific operator keypad. Cube Screen reader prompt for the x cubed on the scientific operator keypad. Arc-sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arc-cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arc-tangente Screen reader prompt for the inverted tan on the scientific operator keypad. Sinus hyperbolique Screen reader prompt for the inverted sinh on the scientific operator keypad. Cosinus hyperbolique Screen reader prompt for the inverted cosh on the scientific operator keypad. Tangente hyperbolique Screen reader prompt for the inverted tanh on the scientific operator keypad. X à la puissance Screen reader prompt for x power y button on the scientific operator keypad. Dix à la puissance Screen reader prompt for the 10 power x button on the scientific operator keypad. e à la puissance Screen reader for the e power x on the scientific operator keypad. y racine de x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logarithme Screen reader for the log base 10 on the scientific operator keypad Logarithme naturel Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponentiel Screen reader for the exp button on the scientific operator keypad Degré minute seconde Screen reader for the exp button on the scientific operator keypad Degrés Screen reader for the exp button on the scientific operator keypad Partie entière Screen reader for the int button on the scientific operator keypad Partie fractionnaire Screen reader for the frac button on the scientific operator keypad Factoriel Screen reader for the factorial button on the basic operator keypad Activer/désactiver Degrés This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Activer/désactiver Grades This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Activer/désactiver Radians This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Liste déroulante Mode Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Liste déroulante catégories Screen reader prompt for the Categories dropdown field. Toujours visible Screen reader prompt for the Always-on-Top button when in normal mode. Revenir à l’affichage plein écran Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Toujours visible (Alt+Haut) This is the tool tip automation name for the Always-on-Top button when in normal mode. Revenir à l’affichage plein écran (Alt+Bas) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convertir %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convertir %1 virgule %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Convertir en %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 est %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unité d’entrée Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unité de sortie Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Aire Unit conversion category name called Area (eg. area of a sports field in square meters) Données Unit conversion category name called Data Énergie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Longueur Unit conversion category name called Length Puissance Unit conversion category name called Power (eg. the power of an engine or a light bulb) Vitesse Unit conversion category name called Speed Temps Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Température Unit conversion category name called Temperature Poids et masse Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pression Unit conversion category name called Pressure Angle Unit conversion category name called Angle Devise Unit conversion category name called Currency Onces liquides (R.-U.) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz liq (R.-U.) An abbreviation for a measurement unit of volume Onces liquides (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz liq (É.-U.) An abbreviation for a measurement unit of volume Gallons (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (R.-U.) An abbreviation for a measurement unit of volume Gallons (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (É.-U.) An abbreviation for a measurement unit of volume Litres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilitres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintes (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (R.-U.) An abbreviation for a measurement unit of volume Pintes (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (É.-U.) An abbreviation for a measurement unit of volume Cuillère à table (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à table (É.-U.) An abbreviation for a measurement unit of volume Cuillères à thé (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à thé (R.-U.) An abbreviation for a measurement unit of volume Cuillère à table (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à table (R.-U.) An abbreviation for a measurement unit of volume Cuillères à thé (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à thé (R.-U.) An abbreviation for a measurement unit of volume Quarts (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (R.-U.) An abbreviation for a measurement unit of volume Quarts (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (É.-U.) An abbreviation for a measurement unit of volume Tasses (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasse (É.-U.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume pi³ An abbreviation for a measurement unit of volume po³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy pi An abbreviation for a measurement unit of length pi/s An abbreviation for a measurement unit of speed pi-lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data Go An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area ch (É.-U.) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time po An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data Ko An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kN An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data Mo An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mi/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length NM An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data Po An abbreviation for a measurement unit of data pi-lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area pi² An abbreviation for a measurement unit of area po² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data To An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem. An abbreviation for a measurement unit of time v An abbreviation for a measurement unit of length an An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data Gio An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data Kio An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data Mio An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data Pio An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data Tio An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data Eo An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data Eio An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data Zo An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data Zio An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data Yo An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data Yio An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unités thermiques britanniques A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Octets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calories thermiques A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètres par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètres cubes A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds cubes A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouces cubes A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres cubes A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Verges cubes A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jours A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Électronvolts A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds-livres A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds-livres/minute A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectares A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chevaux-vapeur (É.-U.) A measurement unit for power Heures A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouces A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowattheures A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilo-octets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calories alimentaires A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres par heure A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nœuds A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mégabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mégaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microns A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsecondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles par heure A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisecondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quartet A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanomètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angströms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles marins A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pétabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pétaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Secondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pieds carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouces carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Verges carrées A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Térabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Téraoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semaines A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Verges A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ans A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gon An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure lb/po² An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonne (R.-U.) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonne (É.-U.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carats A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Degrés A measurement unit for Angle. Radians A measurement unit for Angle. Grades A measurement unit for Angle. Atmosphères A measurement unit for Pressure. Bars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Millimètres de mercure A measurement unit for Pressure. Pascals A measurement unit for Pressure. Livres par pouce carré (lb/po²) A measurement unit for Pressure. Centigrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Décagrammes A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Décigrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnes anglaises A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Livres A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnes américaines A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pierre A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnes métriques A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terrains de soccer A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terrains de soccer A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batteries AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trombones A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trombones A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gros-porteurs A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gros-porteurs A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ampoules A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ampoules A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chevaux A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chevaux A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baignoires A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baignoires A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocons de neige A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocons de neige A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) éléphants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) éléphants An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortues A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortues A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleines A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleines A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasses à café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasses à café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscines An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscines An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mains A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mains A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) feuilles de papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) feuilles de papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) châteaux A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) châteaux A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananes A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananes A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tranches de gâteau A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tranches de gâteau A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotives A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotives A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballons de soccer A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballons de soccer A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Élément en mémoire Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Retour Screen reader prompt for the About panel back button Retour Content of tooltip being displayed on AboutControlBackButton Modalités du contrat de licence logiciel Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Aperçu Label displayed next to upcoming features Énoncé de confidentialité Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Tous droits réservés. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Pour savoir comment vous pouvez contribuer à Windows Calculator, consultez le projet sur %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel À propos de Subtitle of about message on Settings page Envoyer des commentaires The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Il n’existe aucun historique pour l’instant. The text that shows as the header for the history list La mémoire est vide. The text that shows as the header for the memory list Mémoire Screen reader prompt for the negate button on the converter operator keypad Cette expression ne peut pas être collée The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mébioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pébioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tébioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zébioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yocbits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calcul de la date Mode de calcul Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Ajouter Add toggle button text Ajouter ou soustraire des jours Add or Subtract days option Date Date result label Différence entre les dates Date difference option Jours Add/Subtract Days label Différence Difference result label Du From Date Header for Difference Date Picker Mois Add/Subtract Months label Soustraire Subtract toggle button text Au To Date Header for Difference Date Picker Ans Add/Subtract Years label Date en dehors des limites déterminées Out of bound message shown as result when the date calculation exceeds the bounds jour jours mois mois Mêmes dates semaine semaines année ans Différence : %1 Automation name for reading out the date difference. %1 = Date difference Résultat : %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Mode de la calculatrice %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Mode du convertisseur %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mode de calcul de la date Automation name for when the mode header is focused and the current mode is Date calculation. Historique et listes de mémoire Automation name for the group of controls for history and memory lists. Commandes de mémoire Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Fonctions standard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Commandes d’affichage Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Opérateurs standard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Pavé numérique Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Opérateurs d’angle Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Fonctions scientifiques Automation name for the group of Scientific functions. Sélection de la base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Opérateurs de programmeur Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Sélection du mode d'entrée Automation name for the group of input mode toggling buttons. Clavier pour bit de basculement Automation name for the group of bit toggling buttons. Faire défiler l’expression vers la gauche Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Faire défiler l’expression vers la droite Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Nombre maximal de chiffres atteint. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 enregistré dans la mémoire {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". L'emplacement de la mémoire %1 est %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Emplacement mémoire %1 effacé {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". divisé par Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. fois Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. moins Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. à la puissance Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. racine y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. décalage à gauche Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. décalage à droite Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ou Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ou Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. et Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Mise à jour le %1 à %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Mettre à jour les taux The text displayed for a hyperlink button that refreshes currency converter ratios. Des frais de données peuvent s'appliquer. The text displayed when users are on a metered connection and using currency converter. Impossible d'obtenir les nouveaux taux. Réessayez ultérieurement. The text displayed when currency ratio data fails to load. Hors connexion. Consultez vos %HL%Paramètres réseau%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Mise à jour des taux de change en cours This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Taux de change mis à jour This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Impossible de mettre à jour les taux This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} An AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} Zo AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} Do AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} Pu AccessKey for the power converter navbar item. {StringCategory="Accelerator"} Pr AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} Te AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} P AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} Te AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Effacer toute la mémoire (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Effacer toute la mémoire Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus - degrés Name for the sine function in degrees mode. Used by screen readers. radians sinus Name for the sine function in radians mode. Used by screen readers. grades sinus Name for the sine function in gradians mode. Used by screen readers. degrés arc sinus Name for the inverse sine function in degrees mode. Used by screen readers. radians arc sinus Name for the inverse sine function in radians mode. Used by screen readers. arc sinus - grades Name for the inverse sine function in gradians mode. Used by screen readers. sinus hyperbolique Name for the hyperbolic sine function. Used by screen readers. arc sinus hyperbolique Name for the inverse hyperbolic sine function. Used by screen readers. degrés cosinus Name for the cosine function in degrees mode. Used by screen readers. radians cosinus Name for the cosine function in radians mode. Used by screen readers. grades cosinus Name for the cosine function in gradians mode. Used by screen readers. degrés arc cosinus Name for the inverse cosine function in degrees mode. Used by screen readers. arc cosinus - radians Name for the inverse cosine function in radians mode. Used by screen readers. arc cosinus - grades Name for the inverse cosine function in gradians mode. Used by screen readers. cosinus hyperbolique Name for the hyperbolic cosine function. Used by screen readers. arc cosinus hyperbolique Name for the inverse hyperbolic cosine function. Used by screen readers. degrés tangente Name for the tangent function in degrees mode. Used by screen readers. tangente - radians Name for the tangent function in radians mode. Used by screen readers. tangente - grades Name for the tangent function in gradians mode. Used by screen readers. degrés arc tangente Name for the inverse tangent function in degrees mode. Used by screen readers. arc tangente - radians Name for the inverse tangent function in radians mode. Used by screen readers. arc tangente - grades Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hyperbolique Name for the hyperbolic tangent function. Used by screen readers. arc tangente hyperbolique Name for the inverse hyperbolic tangent function. Used by screen readers. sécante - degrés Name for the secant function in degrees mode. Used by screen readers. sécante - radians Name for the secant function in radians mode. Used by screen readers. sécante - grades Name for the secant function in gradians mode. Used by screen readers. sécante inverse - degrés Name for the inverse secant function in degrees mode. Used by screen readers. sécante inverse - radians Name for the inverse secant function in radians mode. Used by screen readers. sécante inverse - grades Name for the inverse secant function in gradians mode. Used by screen readers. sécante hyperbolique Name for the hyperbolic secant function. Used by screen readers. sécante hyperbolique inverse Name for the inverse hyperbolic secant function. Used by screen readers. cosécante - degrés Name for the cosecant function in degrees mode. Used by screen readers. cosécante - radians Name for the cosecant function in radians mode. Used by screen readers. cosécante - grades Name for the cosecant function in gradians mode. Used by screen readers. cosécante inverse - degrés Name for the inverse cosecant function in degrees mode. Used by screen readers. cosécante inverse - radians Name for the inverse cosecant function in radians mode. Used by screen readers. cosécante inverse - grades Name for the inverse cosecant function in gradians mode. Used by screen readers. cosécante hyperbolique Name for the hyperbolic cosecant function. Used by screen readers. cosécante hyperbolique inverse Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangente - degrés Name for the cotangent function in degrees mode. Used by screen readers. Cotangente - radians Name for the cotangent function in radians mode. Used by screen readers. cotangente - grades Name for the cotangent function in gradians mode. Used by screen readers. cotangente inverse - degrés Name for the inverse cotangent function in degrees mode. Used by screen readers. cotangente inverse - radians Name for the inverse cotangent function in radians mode. Used by screen readers. cotangente inverse - grades Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hyperbolique Name for the hyperbolic cotangent function. Used by screen readers. cotangente hyperbolique inverse Name for the inverse hyperbolic cotangent function. Used by screen readers. Racine cubique Name for the cube root function. Used by screen readers. Base logarithmique Name for the logbasey function. Used by screen readers. Valeur absolue Name for the absolute value function. Used by screen readers. décalage à gauche Name for the programmer function that shifts bits to the left. Used by screen readers. décalage à droite Name for the programmer function that shifts bits to the right. Used by screen readers. factoriel Name for the factorial function. Used by screen readers. Degré Minute Seconde Name for the degree minute second (dms) function. Used by screen readers. logarithme naturel Name for the natural log (ln) function. Used by screen readers. carré Name for the square function. Used by screen readers. racine y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Catégorie %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrat de services Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Du From Date Header for AddSubtract Date Picker Faire défiler les résultats du calcul vers la gauche Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Faire défiler les résultats du calcul vers la droite Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Échec du calcul Text displayed when the application is not able to do a calculation Base logarithmique Y Screen reader prompt for the logBaseY button Trigonométrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Fonction Displayed on the button that contains a flyout for the general functions in scientific mode. Inégalités Displayed on the button that contains a flyout for the inequality functions. Inégalités Screen reader prompt for the Inequalities button Au niveau du bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Décalage de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverser les fonctions Screen reader prompt for the shift button in the trig flyout in scientific mode. Fonction hyperbolique Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sécante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sécante hyperbolique Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc sécante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arc sécante hyperbolique Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosécante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosécante hyperbolique Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosécante Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arc cosécante hyperbolique Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hyperbolique Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arc cotangente hyperbolique Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Plancher Screen reader prompt for the Calculator button floor in the scientific flyout keypad Plafond Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aléatoire Screen reader prompt for the Calculator button random in the scientific flyout keypad Valeur absolue Screen reader prompt for the Calculator button abs in the scientific flyout keypad Nombre d’Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Puissance deux Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NON ET Screen reader prompt for the Calculator button nand in the scientific flyout keypad NON ET Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NON OU Screen reader prompt for the Calculator button nor in the scientific flyout keypad NON OU Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Faire pivoter à gauche avec le transport Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Faire pivoter à droite avec le transport Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Décalage à gauche Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Décalage à gauche Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Décalage à droite Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Décalage à droite Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Décalage arithmétique Label for a radio button that toggles arithmetic shift behavior for the shift operations. Décalage logique Label for a radio button that toggles logical shift behavior for the shift operations. Faire pivoter déplacement circulaire Label for a radio button that toggles rotate circular behavior for the shift operations. Rotation circulaire via retenue Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Racine cubique Screen reader prompt for the cube root button on the scientific operator keypad Trigonométrie Screen reader prompt for the square root button on the scientific operator keypad Fonctions Screen reader prompt for the square root button on the scientific operator keypad Au niveau du bit Screen reader prompt for the square root button on the scientific operator keypad Décalage de bits Screen reader prompt for the square root button on the scientific operator keypad Panneaux Opérateurs scientifiques Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panneaux Opérateur de programmeur Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad octet le plus significatif Used to describe the last bit of a binary number. Used in bit flip Graphique Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Tracer Screen reader prompt for the plot button on the graphing calculator operator keypad Actualiser la vue automatiquement (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Affichage Courbe Screen reader prompt for the graph view button. Ajustement automatique optimal Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajustement manuel Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set L’affichage graphique a été réinitialisé Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom avant (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Zoom avant Screen reader prompt for the zoom in button. Zoom arrière (Ctrl + moins) This is the tool tip automation name for the Calculator zoom out button. Zoom arrière Screen reader prompt for the zoom out button. Ajouter une équation Placeholder text for the equation input button Impossible de partager pour le moment. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Regardez ce que j’ai représenté avec la Calculatrice Windows Sent as part of the shared content. The title for the share. Équations Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Image d’un graphique avec des équations Alt text for the graph image when output via Share Variables Header text for variables area Pas Label text for the step text box Min Label text for the min text box Max Label text for the max text box Couleur Label for the Line Color section of the style picker Style Label for the Line Style section of the style picker Analyse de fonction Title for KeyGraphFeatures Control La fonction ne comporte aucune asymptote horizontale. Message displayed when the graph does not have any horizontal asymptotes La fonction ne comporte aucun point d’inflexion. Message displayed when the graph does not have any inflection points La fonction ne comporte aucun maximum. Message displayed when the graph does not have any maxima La fonction ne comporte aucun minimum. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Décroissante String describing decreasing monotonicity of a function Impossible de déterminer la monotonie de la fonction. Error displayed when monotonicity cannot be determined Croissante String describing increasing monotonicity of a function La monotonie de la fonction est inconnue. Error displayed when monotonicity is unknown La fonction ne comporte aucune asymptote oblique. Message displayed when the graph does not have any oblique asymptotes Impossible de déterminer la parité de la fonction. Error displayed when parity is cannot be determined La fonction est paire. Message displayed with the function parity is even La fonction n’est ni paire ni impaire. Message displayed with the function parity is neither even nor odd La fonction est impaire. Message displayed with the function parity is odd La parité de la fonction est inconnue. Error displayed when parity is unknown La périodicité n’est pas prise en charge pour cette fonction. Error displayed when periodicity is not supported La fonction n’est pas périodique. Message displayed with the function periodicity is not periodic La périodicité de la fonction est inconnue. Message displayed with the function periodicity is unknown Ces fonctionnalités sont trop complexes pour que la calculatrice effectue le calcul : Error displayed when analysis features cannot be calculated La fonction ne comporte aucune asymptote verticale. Message displayed when the graph does not have any vertical asymptotes La fonction ne comporte aucune interception x. Message displayed when the graph does not have any x-intercepts La fonction ne comporte aucune interception y. Message displayed when the graph does not have any y-intercepts Domaine Title for KeyGraphFeatures Domain Property Asymptotes horizontales Title for KeyGraphFeatures Horizontal aysmptotes Property Points d’inflexion Title for KeyGraphFeatures Inflection points Property L’analyse n’est pas prise en charge pour cette fonction. Error displayed when graph analysis is not supported or had an error. L’analyse n’est prise en charge que pour les fonctions au format f(x). Exemple : y=x. Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonie Title for KeyGraphFeatures Monotonicity Property Asymptotes obliques Title for KeyGraphFeatures Oblique asymptotes Property Parité Title for KeyGraphFeatures Parity Property Période Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Plage Title for KeyGraphFeatures Range Property Asymptotes verticales Title for KeyGraphFeatures Vertical asymptotes Property Interception X Title for KeyGraphFeatures XIntercept Property Interception Y Title for KeyGraphFeatures YIntercept Property Impossible d'effectuer l’analyse pour la fonction. Impossible de calculer le domaine pour cette fonction. Error displayed when Domain is not returned from the analyzer. Impossible de calculer la plage pour cette fonction. Error displayed when Range is not returned from the analyzer. Dépassement (le nombre est trop grand) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Le mode radians est requis pour représenter l’équation à l’aide d’un graphique. Error that occurs during graphing when radians is required. Cette fonction est trop complexe pour le graphique Error that occurs during graphing when the equation is too complex. Le mode Degrés est nécessaire pour tracer cette fonction Error that occurs during graphing when degrees is required La fonction factorielle comporte un argument non valide Error that occurs during graphing when a factorial function has an invalid argument. La fonction factorielle possède un argument trop grand pour le graphique. Error that occurs during graphing when a factorial has a large n Modulo ne peut être utilisé qu’avec des nombres entiers Error that occurs during graphing when modulo is used with a float. L’équation n’a pas de solution Error that occurs during graphing when the equation has no solution. Vous ne pouvez pas diviser par zéro Error that occurs during graphing when a divison by zero occurs. L’équation contient des conditions logiques mutuellement exclusives Error that occurs during graphing when mutually exclusive conditions are used. L'équation est hors domaine Error that occurs during graphing when the equation is out of domain. La représentation graphique de cette équation n’est pas prise en charge Error that occurs during graphing when the equation is not supported. Une parenthèse ouvrante est manquante dans l'équation Error that occurs during graphing when the equation is missing a ( Une parenthèse fermante est manquante dans l'équation Error that occurs during graphing when the equation is missing a ) Un nombre un nombre trop élevé de décimales. Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Des chiffres sont manquants dans la décimale Error that occurs during graphing with a decimal point without digits Fin d’expression inattendue Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* L'expression comporte des caractères inattendus Error that occurs during graphing when there is an unexpected token. L'expression comporte des caractères non valides Error that occurs during graphing when there is an invalid token. Le nombre de signes égal est trop élevé Error that occurs during graphing when there are too many equals. La fonction doit contenir au moins une variable x ou y Error that occurs during graphing when the equation is missing x or y. Expression non valide Error that occurs during graphing when an invalid syntax is used. L'expression est vide Error that occurs during graphing when the expression is empty Le signe égal a été utilisé sans équation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Une parenthèse est manquante après le nom de la fonction Error that occurs during graphing when parenthesis are missing after a function. Une opération mathématique a un nombre de paramètres incorrect Error that occurs during graphing when a function has the wrong number of parameters Un nom de variable n'est pas valide Error that occurs during graphing when a variable name is invalid. Un crochet ouvrant est manquant dans l'équation Error that occurs during graphing when a { is missing Un crochet fermant est manquant dans l'équation Error that occurs during graphing when a } is missing. « i » et « I » ne peuvent pas être utilisées comme noms de variables Error that occurs during graphing when i or I is used. L’équation n’a pas pu être représentée par un graphique General error that occurs during graphing. Nous n'avons pas pu résoudre le chiffre pour la base donnée Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base doit être supérieure à 2 et inférieure à 36 Error that occurs during graphing when the base is out of range. Une opération mathématique doit comporter une variable dans ses paramètres. Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Des opérandes logiques et scalaires sont manquantes dans l’équation Error that occurs during graphing when operands are mixed. Such as true and 1. x ou y ne peuvent pas être utilisées dans les limites supérieure et inférieure Error that occurs during graphing when x or y is used in integral upper limits. Les valeurs x ou y ne peuvent pas être utilisées dans le point de limite Error that occurs during graphing when x or y is used in the limit point. Vous ne pouvez pas utiliser l’infini complexe Error that occurs during graphing when complex infinity is used Vous ne pouvez pas utiliser des nombres complexes dans des inégalités Error that occurs during graphing when complex numbers are used in inequalities. Revenir à la liste de fonctions This is the tooltip for the back button in the equation analysis page in the graphing calculator Revenir à la liste de fonctions This is the automation name for the back button in the equation analysis page in the graphing calculator Analyser la fonction This is the tooltip for the analyze function button Analyser la fonction This is the automation name for the analyze function button Analyser la fonction This is the text for the for the analyze function context menu command Supprimer l’équation This is the tooltip for the graphing calculator remove equation buttons Supprimer l’équation This is the automation name for the graphing calculator remove equation buttons Supprimer l’équation This is the text for the for the remove equation context menu command Partager This is the automation name for the graphing calculator share button. Partager This is the tooltip for the graphing calculator share button. Modifier le style d’équation This is the tooltip for the graphing calculator equation style button Modifier le style d’équation This is the automation name for the graphing calculator equation style button Modifier le style d’équation This is the text for the for the equation style context menu command Afficher l’équation This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Masquer l’équation This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Afficher l’équation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Masquer l’équation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Arrêter le suivi This is the tooltip/automation name for the graphing calculator stop tracing button Démarrer le suivi This is the tooltip/automation name for the graphing calculator start tracing button Fenêtre de visualisation de Graph, axe x délimité par %1 et %2, axe y délimité par %3 et %4, affichage %5 équations {Locked="%1","%2", "%3", "%4", "%5"}. Configurer le curseur This is the tooltip text for the slider options button in Graphing Calculator Configurer le curseur This is the automation name text for the slider options button in Graphing Calculator Passer en mode équation Used in Graphing Calculator to switch the view to the equation mode Passer en mode graphique Used in Graphing Calculator to switch the view to the graph mode Passer en mode équation Used in Graphing Calculator to switch the view to the equation mode Le mode actuel est le mode équation Announcement used in Graphing Calculator when switching to the equation mode Le mode actuel est le mode graphique Announcement used in Graphing Calculator when switching to the graph mode Fenêtre Heading for window extents on the settings Degrés Degrees mode on settings page Grades Gradian mode on settings page Radians Radians mode on settings page Unités Heading for Unit's on the settings Réinitialiser l’affichage Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Options de graphique This is the tooltip text for the graph options button in Graphing Calculator Options de graphique This is the automation name text for the graph options button in Graphing Calculator Options de graphique Heading for the Graph options flyout in Graphing mode. Options de variable Screen reader prompt for the variable settings toggle button Afficher/masquer les options des variables Tool tip for the variable settings toggle button Épaisseur de trait Heading for the Graph options flyout in Graphing mode. Options de trait Heading for the equation style flyout in Graphing mode. Petite épaisseur de trait Automation name for line width setting Épaisseur de trait moyenne Automation name for line width setting Grande épaisseur de trait Automation name for line width setting Très grande épaisseur de trait Automation name for line width setting Entrer une expression this is the placeholder text used by the textbox to enter an equation Copier Copy menu item for the graph context menu Couper Cut menu item from the Equation TextBox Copier Copy menu item from the Equation TextBox Coller Paste menu item from the Equation TextBox Annuler Undo menu item from the Equation TextBox Tout sélectionner Select all menu item from the Equation TextBox Entrée de fonction The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrée de fonction The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panneau de la liste d’entrée de fonctions The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panneau variable The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Liste variable The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Élément %1 de la liste des variables The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Zone de texte de la valeur de la variable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Diapositive de la valeur de la variable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Zone de texte de la valeur minimale de la variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Zone de texte de la valeur d’étape de la variable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Zone de texte de la valeur maximale de la variable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Style de trait continu Name of the solid line style for a graphed equation Style de trait en pointillés Name of the dotted line style for a graphed equation Style de trait avec tirets Name of the dashed line style for a graphed equation Bleu marine Name of color in the color picker Écume de mer Name of color in the color picker Violet Name of color in the color picker Vert Name of color in the color picker Vert menthe Name of color in the color picker Vert foncé Name of color in the color picker Gris charbon Name of color in the color picker Rouge Name of color in the color picker Prune clair Name of color in the color picker Magenta Name of color in the color picker Jaune doré Name of color in the color picker Orange clair Name of color in the color picker Brun Name of color in the color picker Noir Name of color in the color picker Blanc Name of color in the color picker Couleur 1 Name of color in the color picker Couleur 2 Name of color in the color picker Couleur 3 Name of color in the color picker Couleur 4 Name of color in the color picker Thème de graphique Graph settings heading for the theme options Toujours clair Graph settings option to set graph to light theme Respecter le thème de l’application Graph settings option to set graph to match the app theme Thème This is the automation name text for the Graph settings heading for the theme options Toujours clair This is the automation name text for the Graph settings option to set graph to light theme Respecter le thème de l’application This is the automation name text for the Graph settings option to set graph to match the app theme Fonction supprimée Announcement used in Graphing Calculator when a function is removed from the function list Zone équation de l’analyse de fonctions This is the automation name text for the equation box in the function analysis panel Est égal à Screen reader prompt for the equal button on the graphing calculator operator keypad Est inférieur à Screen reader prompt for the Less than button Est inférieur ou égal à Screen reader prompt for the Less than or equal button Égal Screen reader prompt for the Equal button Est supérieur ou égal à Screen reader prompt for the Greater than or equal button Est supérieur à Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Soumettre Screen reader prompt for the submit button on the graphing calculator operator keypad Analyse de fonction Screen reader prompt for the function analysis grid Options de graphique Screen reader prompt for the graph options panel Historique et listes de mémoire Automation name for the group of controls for history and memory lists. Liste de mémoire Automation name for the group of controls for memory list. Emplacement de l’historique %1 effacé {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculatrice toujours au-dessus Announcement to indicate calculator window is always shown on top. Calculatrice de nouveau en vue complète Announcement to indicate calculator window is now back to full view. Décalage arithmétique sélectionné Label for a radio button that toggles arithmetic shift behavior for the shift operations. Décalage logique sélectionné Label for a radio button that toggles logical shift behavior for the shift operations. Faire pivoter le décalage circulaire sélectionné Label for a radio button that toggles rotate circular behavior for the shift operations. Faire pivoter via le décalage circulaire de retenue sélectionné Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Paramètres Header text of Settings page Apparence Subtitle of appearance setting on Settings page Thème d’application Title of App theme expander Sélectionner le thème de l’appli Description of App theme expander Clair Lable for light theme option Sombre Lable for dark theme option Utiliser les paramètres du système Lable for the app theme option to use system setting Retour Screen reader prompt for the Back button in title bar to back to main page Page Paramètres Announcement used when Settings page is opened Ouvrir le menu contextuel pour les actions disponibles Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Désolé, nous ne pouvons pas restaurer cette capture instantanée. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/fr-FR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrée non valide Error message shown when the input makes a function fail, like log(-1) Le résultat est indéfini Error message shown when there's no possible value for a function. Mémoire insuffisante Error message shown when we run out of memory during a calculation. Dépassement de capacité Error message shown when there's an overflow during the calculation. Résultat non défini Same as 101 Résultat non défini Same 101 Dépassement de capacité Same as 107 Dépassement de capacité Same 107 Désolé... Nous ne pouvons pas diviser par zéro Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/fr-FR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculatrice {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculatrice [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculatrice Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculatrice Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculatrice {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculatrice [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copier Copy context menu string Coller Paste context menu string À peu près égal à The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valeur %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63e Sub-string used in automation name for 63 bit in bit flip 62e Sub-string used in automation name for 62 bit in bit flip 61e Sub-string used in automation name for 61 bit in bit flip 60e Sub-string used in automation name for 60 bit in bit flip 59e Sub-string used in automation name for 59 bit in bit flip 58e Sub-string used in automation name for 58 bit in bit flip 57e Sub-string used in automation name for 57 bit in bit flip 56e Sub-string used in automation name for 56 bit in bit flip 55e Sub-string used in automation name for 55 bit in bit flip 54e Sub-string used in automation name for 54 bit in bit flip 53e Sub-string used in automation name for 53 bit in bit flip 52e Sub-string used in automation name for 52 bit in bit flip 51e Sub-string used in automation name for 51 bit in bit flip 50e Sub-string used in automation name for 50 bit in bit flip 49e Sub-string used in automation name for 49 bit in bit flip 48e Sub-string used in automation name for 48 bit in bit flip 47e Sub-string used in automation name for 47 bit in bit flip 46e Sub-string used in automation name for 46 bit in bit flip 45e Sub-string used in automation name for 45 bit in bit flip 44e Sub-string used in automation name for 44 bit in bit flip 43e Sub-string used in automation name for 43 bit in bit flip 42e Sub-string used in automation name for 42 bit in bit flip 41e Sub-string used in automation name for 41 bit in bit flip 40e Sub-string used in automation name for 40 bit in bit flip 39e Sub-string used in automation name for 39 bit in bit flip 38e Sub-string used in automation name for 38 bit in bit flip 37e Sub-string used in automation name for 37 bit in bit flip 36e Sub-string used in automation name for 36 bit in bit flip 35e Sub-string used in automation name for 35 bit in bit flip 34e Sub-string used in automation name for 34 bit in bit flip 33e Sub-string used in automation name for 33 bit in bit flip 32e Sub-string used in automation name for 32 bit in bit flip 31e Sub-string used in automation name for 31 bit in bit flip 30e Sub-string used in automation name for 30 bit in bit flip 29e Sub-string used in automation name for 29 bit in bit flip 28e Sub-string used in automation name for 28 bit in bit flip 27e Sub-string used in automation name for 27 bit in bit flip 26e Sub-string used in automation name for 26 bit in bit flip 25e Sub-string used in automation name for 25 bit in bit flip 24e Sub-string used in automation name for 24 bit in bit flip 23e Sub-string used in automation name for 23 bit in bit flip 22e Sub-string used in automation name for 22 bit in bit flip 21e Sub-string used in automation name for 21 bit in bit flip 20e Sub-string used in automation name for 20 bit in bit flip 19e Sub-string used in automation name for 19 bit in bit flip 18e Sub-string used in automation name for 18 bit in bit flip 17e Sub-string used in automation name for 17 bit in bit flip 16e Sub-string used in automation name for 16 bit in bit flip 15e Sub-string used in automation name for 15 bit in bit flip 14e Sub-string used in automation name for 14 bit in bit flip 13e Sub-string used in automation name for 13 bit in bit flip 12e Sub-string used in automation name for 12 bit in bit flip 11e Sub-string used in automation name for 11 bit in bit flip 10e Sub-string used in automation name for 10 bit in bit flip 9e Sub-string used in automation name for 9 bit in bit flip 8e Sub-string used in automation name for 8 bit in bit flip 7e Sub-string used in automation name for 7 bit in bit flip 6e Sub-string used in automation name for 6 bit in bit flip 5e Sub-string used in automation name for 5 bit in bit flip 4e Sub-string used in automation name for 4 bit in bit flip 3e Sub-string used in automation name for 3 bit in bit flip 2e Sub-string used in automation name for 2 bit in bit flip 1er Sub-string used in automation name for 1 bit in bit flip octet le moins lourd Used to describe the first bit of a binary number. Used in bit flip Ouvrir le menu volant de la mémoire This is the automation name and label for the memory button when the memory flyout is closed. Fermer le menu volant de la mémoire This is the automation name and label for the memory button when the memory flyout is open. Toujours visible This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Revenir à l’affichage plein écran This is the tool tip automation name for the always-on-top button when in always-on-top mode. Mémoire This is the tool tip automation name for the memory button. Historique (Ctrl+H) This is the tool tip automation name for the history button. Pavé numérique de basculement de bit This is the tool tip automation name for the bitFlip button. Pavé numérique complet This is the tool tip automation name for the numberPad button. Effacer toute la mémoire (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Mémoire The text that shows as the header for the memory list Mémoire The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historique The text that shows as the header for the history list Historique The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertisseur Label for a control that activates the unit converter mode. Scientifique Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Mode du convertisseur Screen reader prompt for a control that activates the unit converter mode. Mode scientifique Screen reader prompt for a control that activates scientific mode calculator layout Mode standard Screen reader prompt for a control that activates standard mode calculator layout. Effacer tout l’historique "ClearHistory" used on the calculator history pane that stores the calculation history. Effacer tout l’historique This is the tool tip automation name for the Clear History button. Masquer "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientifique The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmeur The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertisseur The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculatrice The text that shows in the dropdown navigation control for the calculator group. Convertisseur The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculatrice The text that shows in the dropdown navigation control for the calculator group in upper case. Convertisseurs Pluralized version of the converter group text, used for the screen reader prompt. Calculatrices Pluralized version of the calculator group text, used for the screen reader prompt. L’affichage est %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". L’expression est %1, l’entrée actuelle est %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". L’affichage est %1 points {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. L’expression est %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Afficher la valeur copiée dans le presse-papiers Screen reader prompt for the Calculator display copy button, when the button is invoked. Historique Screen reader prompt for the history flyout Mémoire Screen reader prompt for the memory flyout Hexadécimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Décimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binaire %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Effacer tout l’historique Screen reader prompt for the Calculator History Clear button Historique effacé Screen reader prompt for the Calculator History Clear button, when the button is invoked. Masquer l'historique Screen reader prompt for the Calculator History Hide button Ouvrir le menu volant de l’historique Screen reader prompt for the Calculator History button, when the flyout is closed. Fermer le menu volant de l’historique Screen reader prompt for the Calculator History button, when the flyout is open. Stockage Mémoire Screen reader prompt for the Calculator Memory button Stockage mémoire (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Effacer toute la mémoire Screen reader prompt for the Calculator Clear Memory button Mémoire effacée Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Rappel de mémoire Screen reader prompt for the Calculator Memory Recall button Rappel de mémoire (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Ajout de mémoire Screen reader prompt for the Calculator Memory Add button Ajout de mémoire (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Soustraction de mémoire Screen reader prompt for the Calculator Memory Subtract button Soustraction de mémoire (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Effacer l’élément en mémoire Screen reader prompt for the Calculator Clear Memory button Effacer l’élément en mémoire This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Ajouter à l’élément en mémoire Screen reader prompt for the Calculator Memory Add button in the Memory list Ajouter à l’élément en mémoire This is the tool tip automation name for the Calculator Memory Add button in the Memory list Soustraire de l'élément en mémoire Screen reader prompt for the Calculator Memory Subtract button in the Memory list Soustraire de l'élément en mémoire This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Effacer l'élément en mémoire Screen reader prompt for the Calculator Clear Memory button Effacer l’élément en mémoire Text string for the Calculator Clear Memory option in the Memory list context menu Ajouter à l'élément en mémoire Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Ajouter à l’élément en mémoire Text string for the Calculator Memory Add option in the Memory list context menu Soustraire de l'élément en mémoire Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Soustraire de l'élément en mémoire Text string for the Calculator Memory Subtract option in the Memory list context menu Supprimer Text string for the Calculator Delete swipe button in the History list Copier Text string for the Calculator Copy option in the History list context menu Supprimer Text string for the Calculator Delete option in the History list context menu Supprimer l'élément de l'historique Screen reader prompt for the Calculator Delete swipe button in the History list Supprimer l'élément de l'historique Screen reader prompt for the Calculator Delete option in the History list context menu Retour arrière Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zéro Screen reader prompt for the Calculator number "0" button Un Screen reader prompt for the Calculator number "1" button Deux Screen reader prompt for the Calculator number "2" button Trois Screen reader prompt for the Calculator number "3" button Quatre Screen reader prompt for the Calculator number "4" button Cinq Screen reader prompt for the Calculator number "5" button Six Screen reader prompt for the Calculator number "6" button Sept Screen reader prompt for the Calculator number "7" button Huit Screen reader prompt for the Calculator number "8" button Neuf Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Non Screen reader prompt for the Calculator Not button Faire pivoter à gauche Screen reader prompt for the Calculator ROL button Permutation circulaire à droite Screen reader prompt for the Calculator ROR button Décalage à gauche Screen reader prompt for the Calculator LSH button Décalage à droite Screen reader prompt for the Calculator RSH button Ou exclusif Screen reader prompt for the Calculator XOR button Activer/désactiver Mot quadruple Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Activer/désactiver Double mot Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Activer/désactiver Mot Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Activer/désactiver Octet Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Pavé numérique de basculement de bit Screen reader prompt for the Calculator bitFlip button Pavé numérique complet Screen reader prompt for the Calculator numberPad button Séparateur décimal Screen reader prompt for the "." button Effacer l’entrée Screen reader prompt for the "CE" button Effacer Screen reader prompt for the "C" button Diviser par Screen reader prompt for the divide button on the number pad Multiplier par Screen reader prompt for the multiply button on the number pad Est égal à Screen reader prompt for the equals button on the scientific operator keypad Inverser les fonctions Screen reader prompt for the shift button on the number pad in scientific mode. Moins Screen reader prompt for the minus button on the number pad Moins We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Racine carrée Screen reader prompt for the square root button on the scientific operator keypad Pourcentage Screen reader prompt for the percent button on the scientific operator keypad Positif Négatif Screen reader prompt for the negate button on the scientific operator keypad Positif Négatif Screen reader prompt for the negate button on the converter operator keypad Réciproque Screen reader prompt for the invert button on the scientific operator keypad Parenthèse gauche Screen reader prompt for the Calculator "(" button on the scientific operator keypad %1 parenthèses gauches ouvrantes {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parenthèse droite Screen reader prompt for the Calculator ")" button on the scientific operator keypad Nombre de parenthèses ouvrantes %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Il n’y a pas de parenthèses ouvertes à fermer. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notation scientifique Screen reader prompt for the Calculator F-E the scientific operator keypad Fonction hyperbolique Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hyperbolique Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hyperbolique Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hyperbolique Screen reader prompt for the Calculator tanh button on the scientific operator keypad Carré Screen reader prompt for the x squared on the scientific operator keypad. Cube Screen reader prompt for the x cubed on the scientific operator keypad. Arc sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arc cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arc tangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arc sinus hyperbolique Screen reader prompt for the inverted sinh on the scientific operator keypad. Arc cosinus hyperbolique Screen reader prompt for the inverted cosh on the scientific operator keypad. Arc tangente hyperbolique Screen reader prompt for the inverted tanh on the scientific operator keypad. « X » puissance Screen reader prompt for x power y button on the scientific operator keypad. Dix puissance Screen reader prompt for the 10 power x button on the scientific operator keypad. «e» puissance Screen reader for the e power x on the scientific operator keypad. racine « y » de « x » Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Logarithme naturel Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponentielle Screen reader for the exp button on the scientific operator keypad Degré minute seconde Screen reader for the exp button on the scientific operator keypad Degrés Screen reader for the exp button on the scientific operator keypad Partie entière Screen reader for the int button on the scientific operator keypad Partie fractionnaire Screen reader for the frac button on the scientific operator keypad Factorielle Screen reader for the factorial button on the basic operator keypad Activer/désactiver Degrés This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Activer/désactiver Grades This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Activer/désactiver Radians This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Liste déroulante Mode Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Liste déroulante catégories Screen reader prompt for the Categories dropdown field. Toujours visible Screen reader prompt for the Always-on-Top button when in normal mode. Revenir à l’affichage plein écran Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Toujours visible (Alt+Haut) This is the tool tip automation name for the Always-on-Top button when in normal mode. Revenir à l’affichage plein écran (Alt+Bas) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convertir depuis %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convertir %1 virgule %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Convertir en %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 est %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unité d’entrée Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unité de sortie Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Surface Unit conversion category name called Area (eg. area of a sports field in square meters) Données Unit conversion category name called Data Énergie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Longueur Unit conversion category name called Length Puissance Unit conversion category name called Power (eg. the power of an engine or a light bulb) Vitesse Unit conversion category name called Speed Heure Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Température Unit conversion category name called Temperature Poids et masse Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pression Unit conversion category name called Pressure Angle Unit conversion category name called Angle Devise Unit conversion category name called Currency Once(s) liquide(s) (R.-U.) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz liq. (Royaume-Uni) An abbreviation for a measurement unit of volume Once(s) liquide(s) (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz liq. (É.-U.) An abbreviation for a measurement unit of volume Gallon(s) (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Royaume-Uni) An abbreviation for a measurement unit of volume Gallon(s) (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (É.-U.) An abbreviation for a measurement unit of volume L A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilitres A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pinte(s) (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chop (R.-U.) An abbreviation for a measurement unit of volume Pinte(s) (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chop (É.-U.) An abbreviation for a measurement unit of volume Cuillère(s) à soupe (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à s. (É.-U.) An abbreviation for a measurement unit of volume Cuillère(s) à café (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à c. (É.-U.) An abbreviation for a measurement unit of volume Cuillère(s) à soupe (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à s. (R.-U.) An abbreviation for a measurement unit of volume Cuillère(s) à café (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) c. à c. (R.-U.) An abbreviation for a measurement unit of volume Litre(s) (R.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pte (R.-U.) An abbreviation for a measurement unit of volume Litre(s) (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pte (É.-U.) An abbreviation for a measurement unit of volume Tasse(s) (É.-U.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasse (É.-U.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume bit An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power O An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume pi³ An abbreviation for a measurement unit of volume po³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume j An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy pi An abbreviation for a measurement unit of length pi/s An abbreviation for a measurement unit of speed pi•l. An abbreviation for a measurement unit of energy Gbit An abbreviation for a measurement unit of data Go An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area CV (US) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time po An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kbit An abbreviation for a measurement unit of data Ko An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mbit An abbreviation for a measurement unit of data Mo An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mi/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pbit An abbreviation for a measurement unit of data Po An abbreviation for a measurement unit of data pi•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area pi² An abbreviation for a measurement unit of area po² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tbit An abbreviation for a measurement unit of data To An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length an An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data Gio An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data Mio An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data Pio An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data Tio An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data Eo An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data Eio An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data Zo An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data Zio An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data Yo An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data Yio An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unité(s) thermique(s) britannique(s) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Octet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorie(s) thermique(s) A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètre(s) par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètre(s) cube(s) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pied(s) cube(s) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouce(s) cube(s) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètre(s) cube(s) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard(s) cube(s) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jours A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Électron-volt(s) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pied(s) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouce par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pied(s)-livre(s) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pied(s)-livre(s)/minute A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigaoctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectare(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cheval/chevaux-vapeur (États-Unis) A measurement unit for power Heure(s) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouce(s) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-hours A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilooctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorie(s) alimentaire(s) A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule(s) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres par heure A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt(s) A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nœud(s) A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mégabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mégaoctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres par seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micron(s) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsecondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile(s) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles par heure A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisecondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quartet A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanomètres A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angströms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milles marins A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pétabit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pétaoctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Secondes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimètre(s) carré(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pied(s) carré(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pouces carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilomètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mètres carrés A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile(s) carré(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimètre(s) carré(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard(s) carré(s) A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Térabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Téraoctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semaine(s) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yards A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Années A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight t (R.-U.) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight t (É.-U.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carat(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Degré(s) A measurement unit for Angle. Radians A measurement unit for Angle. Grades A measurement unit for Angle. Atmosphères A measurement unit for Pressure. Bars A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Millimètres de mercure A measurement unit for Pressure. Pascals A measurement unit for Pressure. Livres par pouce carré A measurement unit for Pressure. Centigramme(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Décagramme(s) A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Décigramme(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramme(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramme(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnes anglaises (Royaume-Uni) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrammes A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Once(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Livre(s) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonne(s) courte(s) (États-Unis) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonne(s) métrique(s) A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terrain(s) de football A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terrain(s) de football A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquette(s) A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquette(s) A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterie(s) AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterie(s) AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trombones A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) trombone(s) A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ampoules A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ampoules A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chevaux A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cheval/chevaux A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baignoire(s) A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baignoire(s) A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocon(s) de neige A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocon(s) de neige A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) éléphant(s) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) éléphant(s) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortues A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortue(s) A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jets A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleine(s) A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleine(s) A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasse(s) à café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tasse(s) à café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscines An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscine(s) An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) main(s) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) main(s) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) feuille(s) de papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) feuille(s) de papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) château(x) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) château(x) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane(s) A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane(s) A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tranches de gâteau A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tranche(s) de gâteau A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotive(s) A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotive(s) A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballon(s) de football A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ballon(s) de football A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Élément en mémoire Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Retour Screen reader prompt for the About panel back button Retour Content of tooltip being displayed on AboutControlBackButton Termes du contrat de licence logiciel Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Aperçu Label displayed next to upcoming features Déclaration de confidentialité Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Tous droits réservés. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Pour découvrir comment vous pouvez contribuer à la calculatrice Windows, extrayez le projet sur %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel À propos de Subtitle of about message on Settings page Envoyer des commentaires The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Il n’y a aucun historique pour l’instant. The text that shows as the header for the history list La mémoire est vide. The text that shows as the header for the memory list Mémoire Screen reader prompt for the negate button on the converter operator keypad Désolé... Nous n’avons pas pu coller cette expression The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mébioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pébioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tébioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exaoctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettaoctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zébibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zébioctets A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yocbits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobioctet(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calcul de la date Mode de calcul Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Ajouter Add toggle button text Ajouter ou soustraire des jours Add or Subtract days option Date Date result label Différence entre les dates Date difference option Jours Add/Subtract Days label Différence Difference result label De From Date Header for Difference Date Picker Mois Add/Subtract Months label Soustraire Subtract toggle button text À To Date Header for Difference Date Picker Années Add/Subtract Years label Date en dehors des limites Out of bound message shown as result when the date calculation exceeds the bounds jour jours mois mois Dates identiques semaine semaines année années Différence %1 Automation name for reading out the date difference. %1 = Date difference Date résultante %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Mode de la calculatrice %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Mode du convertisseur %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mode de calcul de la date Automation name for when the mode header is focused and the current mode is Date calculation. Historique et listes de mémoire Automation name for the group of controls for history and memory lists. Commandes de mémoire Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Fonctions standard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Contrôles d’affichage Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Opérateurs standard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Pavé numérique Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Opérateurs d’angle Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Fonctions scientifiques Automation name for the group of Scientific functions. Sélection de la base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Opérateurs de programmeur Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Sélection du mode de saisie Automation name for the group of input mode toggling buttons. Clavier pour basculer entre formats de bits Automation name for the group of bit toggling buttons. Faire défiler l'expression vers la gauche Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Faire défiler l'expression vers la droite Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Vous avez atteint le nombre maximal de chiffres. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 enregistré dans la mémoire {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". L'emplacement mémoire %1 est %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Emplacement mémoire %1 effacé {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". divisé par Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. fois Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. moins Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. à la puissance de Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. racine y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. décalage à gauche Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. décalage à droite Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ou Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ou Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. et Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Mise à jour le %1 à %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Mettre à jour les taux The text displayed for a hyperlink button that refreshes currency converter ratios. Des frais de données peuvent s’appliquer. The text displayed when users are on a metered connection and using currency converter. Impossible d'obtenir les nouveaux taux. Réessayez plus tard. The text displayed when currency ratio data fails to load. Hors connexion. Consultez vos %HL%Paramètres réseau%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Mise à jour des taux de change en cours This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Taux de change mis à jour This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Désolé... Nous n’avons pas pu mettre à jour les taux This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. H Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} RA AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} P AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Effacer toute la mémoire (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Effacer toute la mémoire Screen reader prompt for the Calculator Clear Memory button in the Memory Pane H Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus – degrés Name for the sine function in degrees mode. Used by screen readers. radians sinus Name for the sine function in radians mode. Used by screen readers. grades sinus Name for the sine function in gradians mode. Used by screen readers. degrés arc sinus Name for the inverse sine function in degrees mode. Used by screen readers. radians arc sinus Name for the inverse sine function in radians mode. Used by screen readers. grade arc sinus Name for the inverse sine function in gradians mode. Used by screen readers. sinus hyperbolique Name for the hyperbolic sine function. Used by screen readers. sinus hyperbolique inverse Name for the inverse hyperbolic sine function. Used by screen readers. degrés cosinus Name for the cosine function in degrees mode. Used by screen readers. radians cosinus Name for the cosine function in radians mode. Used by screen readers. grades cosinus Name for the cosine function in gradians mode. Used by screen readers. degrés arc cosinus Name for the inverse cosine function in degrees mode. Used by screen readers. radians arc cosinus Name for the inverse cosine function in radians mode. Used by screen readers. grades arc cosinus Name for the inverse cosine function in gradians mode. Used by screen readers. cosinus hyperbolique Name for the hyperbolic cosine function. Used by screen readers. cosinus hyperbolique inverse Name for the inverse hyperbolic cosine function. Used by screen readers. degrés tangente Name for the tangent function in degrees mode. Used by screen readers. radians tangente Name for the tangent function in radians mode. Used by screen readers. grades tangente Name for the tangent function in gradians mode. Used by screen readers. degrés arc tangente Name for the inverse tangent function in degrees mode. Used by screen readers. arc tangente – radians Name for the inverse tangent function in radians mode. Used by screen readers. grades arc tangente Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hyperbolique Name for the hyperbolic tangent function. Used by screen readers. arc tangente hyperbolique Name for the inverse hyperbolic tangent function. Used by screen readers. sécante - degrés Name for the secant function in degrees mode. Used by screen readers. sécante - radians Name for the secant function in radians mode. Used by screen readers. sécante - grades Name for the secant function in gradians mode. Used by screen readers. sécante inverse - degrés Name for the inverse secant function in degrees mode. Used by screen readers. sécante inverse - radians Name for the inverse secant function in radians mode. Used by screen readers. sécante inverse - grades Name for the inverse secant function in gradians mode. Used by screen readers. sécante hyperbolique Name for the hyperbolic secant function. Used by screen readers. sécante hyperbolique inverse Name for the inverse hyperbolic secant function. Used by screen readers. cosécante - degrés Name for the cosecant function in degrees mode. Used by screen readers. cosécante - radians Name for the cosecant function in radians mode. Used by screen readers. cosécante - grades Name for the cosecant function in gradians mode. Used by screen readers. cosécante inverse - degrés Name for the inverse cosecant function in degrees mode. Used by screen readers. cosécante inverse - radians Name for the inverse cosecant function in radians mode. Used by screen readers. cosécante inverse - grades Name for the inverse cosecant function in gradians mode. Used by screen readers. cosécante hyperbolique Name for the hyperbolic cosecant function. Used by screen readers. cosécante hyperbolique inverse Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangente - degrés Name for the cotangent function in degrees mode. Used by screen readers. Cotangente - radians Name for the cotangent function in radians mode. Used by screen readers. cotangente - grades Name for the cotangent function in gradians mode. Used by screen readers. cotangente inverse - degrés Name for the inverse cotangent function in degrees mode. Used by screen readers. cotangente inverse - radians Name for the inverse cotangent function in radians mode. Used by screen readers. cotangente inverse - grades Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hyperbolique Name for the hyperbolic cotangent function. Used by screen readers. cotangente hyperbolique inverse Name for the inverse hyperbolic cotangent function. Used by screen readers. Racine cubique Name for the cube root function. Used by screen readers. Base logarithmique Name for the logbasey function. Used by screen readers. Valeur absolue Name for the absolute value function. Used by screen readers. décalage à gauche Name for the programmer function that shifts bits to the left. Used by screen readers. décalage à droite Name for the programmer function that shifts bits to the right. Used by screen readers. factorielle Name for the factorial function. Used by screen readers. degré minute seconde Name for the degree minute second (dms) function. Used by screen readers. logarithme naturel Name for the natural log (ln) function. Used by screen readers. carré Name for the square function. Used by screen readers. racine y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Catégorie %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrat de services Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. De From Date Header for AddSubtract Date Picker Faire défiler les résultats du calcul vers la gauche Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Faire défiler les résultats du calcul vers la droite Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Échec du calcul Text displayed when the application is not able to do a calculation Base logarithmique Y Screen reader prompt for the logBaseY button Trigonométrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Fonction Displayed on the button that contains a flyout for the general functions in scientific mode. Inégalités Displayed on the button that contains a flyout for the inequality functions. Inégalités Screen reader prompt for the Inequalities button Au niveau du bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Décalage de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverser les fonctions Screen reader prompt for the shift button in the trig flyout in scientific mode. Fonction hyperbolique Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sécante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sécante hyperbolique Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc sécante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arc sécante hyperbolique Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosécante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosécante hyperbolique Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosécante Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arc cosécante hyperbolique Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hyperbolique Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arc cotangente hyperbolique Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Plancher Screen reader prompt for the Calculator button floor in the scientific flyout keypad Plafond Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aléatoire Screen reader prompt for the Calculator button random in the scientific flyout keypad Valeur absolue Screen reader prompt for the Calculator button abs in the scientific flyout keypad Nombre d’Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Puissance deux Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NON ET Screen reader prompt for the Calculator button nand in the scientific flyout keypad NON ET Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NON OU Screen reader prompt for the Calculator button nor in the scientific flyout keypad NON OU Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Faire pivoter à gauche avec le transport Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Faire pivoter à droite avec le transport Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Décalage à gauche Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Décalage à gauche Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Décalage à droite Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Décalage à droite Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Décalage arithmétique Label for a radio button that toggles arithmetic shift behavior for the shift operations. Décalage logique Label for a radio button that toggles logical shift behavior for the shift operations. Faire pivoter déplacement circulaire Label for a radio button that toggles rotate circular behavior for the shift operations. Rotation circulaire via retenue Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Racine cubique Screen reader prompt for the cube root button on the scientific operator keypad Trigonométrie Screen reader prompt for the square root button on the scientific operator keypad Fonctions Screen reader prompt for the square root button on the scientific operator keypad Au niveau du bit Screen reader prompt for the square root button on the scientific operator keypad Décalage de bits Screen reader prompt for the square root button on the scientific operator keypad Panneaux Opérateurs scientifiques Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panneaux Opérateur de programmeur Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad octet le plus lourd Used to describe the last bit of a binary number. Used in bit flip Graphique Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Tracer Screen reader prompt for the plot button on the graphing calculator operator keypad Actualiser la vue automatiquement (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Affichage Courbe Screen reader prompt for the graph view button. Ajustement automatique optimal Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajustement manuel Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set L’affichage graphique a été réinitialisé Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom avant (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Zoom avant Screen reader prompt for the zoom in button. Zoom arrière (Ctrl + moins) This is the tool tip automation name for the Calculator zoom out button. Zoom arrière Screen reader prompt for the zoom out button. Ajouter une équation Placeholder text for the equation input button Impossible de partager pour le moment. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Regardez ce que j’ai représenté avec la Calculatrice Windows Sent as part of the shared content. The title for the share. Équations Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Image d’un graphique avec des équations Alt text for the graph image when output via Share Variables Header text for variables area Pas Label text for the step text box Min Label text for the min text box Max Label text for the max text box Couleur Label for the Line Color section of the style picker Style Label for the Line Style section of the style picker Analyse de fonction Title for KeyGraphFeatures Control La fonction ne comporte aucune asymptote horizontale. Message displayed when the graph does not have any horizontal asymptotes La fonction ne comporte aucun point d’inflexion. Message displayed when the graph does not have any inflection points La fonction ne comporte aucun maximum. Message displayed when the graph does not have any maxima La fonction ne comporte aucun minimum. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Décroissante String describing decreasing monotonicity of a function Impossible de déterminer la monotonie de la fonction. Error displayed when monotonicity cannot be determined Croissante String describing increasing monotonicity of a function La monotonie de la fonction est inconnue. Error displayed when monotonicity is unknown La fonction ne comporte aucune asymptote oblique. Message displayed when the graph does not have any oblique asymptotes Impossible de déterminer la parité de la fonction. Error displayed when parity is cannot be determined La fonction est paire. Message displayed with the function parity is even La fonction n’est ni paire ni impaire. Message displayed with the function parity is neither even nor odd La fonction est impaire. Message displayed with the function parity is odd La parité de la fonction est inconnue. Error displayed when parity is unknown La périodicité n’est pas prise en charge pour cette fonction. Error displayed when periodicity is not supported La fonction n’est pas périodique. Message displayed with the function periodicity is not periodic La périodicité de la fonction est inconnue. Message displayed with the function periodicity is unknown Ces fonctionnalités sont trop complexes pour que la calculatrice effectue le calcul : Error displayed when analysis features cannot be calculated La fonction ne comporte aucune asymptote verticale. Message displayed when the graph does not have any vertical asymptotes La fonction ne comporte aucune interception x. Message displayed when the graph does not have any x-intercepts La fonction ne comporte aucune interception y. Message displayed when the graph does not have any y-intercepts Domaine Title for KeyGraphFeatures Domain Property Asymptotes horizontales Title for KeyGraphFeatures Horizontal aysmptotes Property Points d’inflexion Title for KeyGraphFeatures Inflection points Property L’analyse n’est pas prise en charge pour cette fonction. Error displayed when graph analysis is not supported or had an error. L’analyse n’est prise en charge que pour les fonctions au format f(x). Exemple : y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonie Title for KeyGraphFeatures Monotonicity Property Asymptotes obliques Title for KeyGraphFeatures Oblique asymptotes Property Parité Title for KeyGraphFeatures Parity Property Cycle Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Plage Title for KeyGraphFeatures Range Property Asymptotes verticales Title for KeyGraphFeatures Vertical asymptotes Property Interception X Title for KeyGraphFeatures XIntercept Property Interception Y Title for KeyGraphFeatures YIntercept Property Impossible d'effectuer l’analyse pour la fonction. Impossible de calculer le domaine pour cette fonction. Error displayed when Domain is not returned from the analyzer. Impossible de calculer la plage pour cette fonction. Error displayed when Range is not returned from the analyzer. Dépassement (le nombre est trop grand) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Le mode radians est requis pour tracer cette équation. Error that occurs during graphing when radians is required. Cette fonction est trop complexe pour le graphique Error that occurs during graphing when the equation is too complex. Le mode Degrés est nécessaire pour tracer cette fonction Error that occurs during graphing when degrees is required La fonction factorielle comporte un argument non valide Error that occurs during graphing when a factorial function has an invalid argument. La fonction factorielle possède un argument trop grand pour le graphique. Error that occurs during graphing when a factorial has a large n Modulo ne peut être utilisé qu’avec des nombres entiers Error that occurs during graphing when modulo is used with a float. L’équation n’a pas de solution Error that occurs during graphing when the equation has no solution. Vous ne pouvez pas diviser par zéro Error that occurs during graphing when a divison by zero occurs. L’équation contient des conditions logiques qui s’excluent mutuellement Error that occurs during graphing when mutually exclusive conditions are used. L'équation est hors domaine Error that occurs during graphing when the equation is out of domain. La représentation graphique de cette équation n’est pas prise en charge Error that occurs during graphing when the equation is not supported. Une parenthèse ouvrante est manquante dans l'équation Error that occurs during graphing when the equation is missing a ( Une parenthèse fermante est manquante dans l'équation Error that occurs during graphing when the equation is missing a ) Un nombre un nombre trop élevé de décimales. Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Des chiffres sont manquants dans la décimale Error that occurs during graphing with a decimal point without digits Fin d’expression inattendue Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* L'expression comporte des caractères inattendus Error that occurs during graphing when there is an unexpected token. L'expression comporte des caractères non valides Error that occurs during graphing when there is an invalid token. Le nombre de signes égal est trop élevé Error that occurs during graphing when there are too many equals. La fonction doit contenir au moins une variable x ou y Error that occurs during graphing when the equation is missing x or y. L’expression est incorrecte Error that occurs during graphing when an invalid syntax is used. L'expression est vide Error that occurs during graphing when the expression is empty Le signe égal a été utilisé sans équation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Une parenthèse est manquante après le nom de la fonction Error that occurs during graphing when parenthesis are missing after a function. Une opération mathématique a un nombre de paramètres incorrect Error that occurs during graphing when a function has the wrong number of parameters Un nom de variable n'est pas valide Error that occurs during graphing when a variable name is invalid. Un crochet ouvrant est manquant dans l'équation Error that occurs during graphing when a { is missing Un crochet fermant est manquant dans l'équation Error that occurs during graphing when a } is missing. Les lettres « i » et « I » ne peuvent pas être utilisées comme noms de variables Error that occurs during graphing when i or I is used. Désolé... L’équation n’a pas pu être tracée General error that occurs during graphing. Désolé... Nous n'avons pas pu résoudre le chiffre pour la base donnée Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base doit être supérieure à 2 et inférieure à 36 Error that occurs during graphing when the base is out of range. Une opération mathématique doit comporter une variable dans ses paramètres. Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Des opérandes logiques et scalaires sont manquantes dans l’équation Error that occurs during graphing when operands are mixed. Such as true and 1. Les valeurs x ou y ne peuvent pas être utilisées dans les limites supérieure et inférieure Error that occurs during graphing when x or y is used in integral upper limits. Les valeurs x ou y ne peuvent pas être utilisées dans le point de limite Error that occurs during graphing when x or y is used in the limit point. Vous ne pouvez pas utiliser l’infini complexe Error that occurs during graphing when complex infinity is used Vous ne pouvez pas utiliser des nombres complexes dans des inégalités Error that occurs during graphing when complex numbers are used in inequalities. Revenir à la liste de fonctions This is the tooltip for the back button in the equation analysis page in the graphing calculator Revenir à la liste de fonctions This is the automation name for the back button in the equation analysis page in the graphing calculator Analyser la fonction This is the tooltip for the analyze function button Analyser la fonction This is the automation name for the analyze function button Analyser la fonction This is the text for the for the analyze function context menu command Supprimer l’équation This is the tooltip for the graphing calculator remove equation buttons Supprimer l’équation This is the automation name for the graphing calculator remove equation buttons Supprimer l’équation This is the text for the for the remove equation context menu command Partager This is the automation name for the graphing calculator share button. Partager This is the tooltip for the graphing calculator share button. Modifier le style d’équation This is the tooltip for the graphing calculator equation style button Modifier le style d’équation This is the automation name for the graphing calculator equation style button Modifier le style d’équation This is the text for the for the equation style context menu command Afficher l’équation This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Masquer l’équation This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Afficher l’équation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Masquer l’équation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Arrêter le suivi This is the tooltip/automation name for the graphing calculator stop tracing button Démarrer le suivi This is the tooltip/automation name for the graphing calculator start tracing button Fenêtre d’affichage du graphe, axe des x délimité par %1 et %2, axe y délimité par %3 et %4, affichage des équations de %5 {Locked="%1","%2", "%3", "%4", "%5"}. Configurer le curseur This is the tooltip text for the slider options button in Graphing Calculator Configurer le curseur This is the automation name text for the slider options button in Graphing Calculator Passer en mode équation Used in Graphing Calculator to switch the view to the equation mode Passer en mode graphique Used in Graphing Calculator to switch the view to the graph mode Passer en mode équation Used in Graphing Calculator to switch the view to the equation mode Le mode actuel est le mode équation Announcement used in Graphing Calculator when switching to the equation mode Le mode actuel est le mode graphique Announcement used in Graphing Calculator when switching to the graph mode Fenêtre Heading for window extents on the settings Degrés Degrees mode on settings page Grades Gradian mode on settings page Radians Radians mode on settings page Unités Heading for Unit's on the settings Réinitialiser l’affichage Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Options de graphique This is the tooltip text for the graph options button in Graphing Calculator Options de graphique This is the automation name text for the graph options button in Graphing Calculator Options de graphique Heading for the Graph options flyout in Graphing mode. Options de variable Screen reader prompt for the variable settings toggle button Afficher/masquer les options des variables Tool tip for the variable settings toggle button Épaisseur de trait Heading for the Graph options flyout in Graphing mode. Options de trait Heading for the equation style flyout in Graphing mode. Petite épaisseur de trait Automation name for line width setting Épaisseur de trait moyenne Automation name for line width setting Grande épaisseur de trait Automation name for line width setting Très grande épaisseur de trait Automation name for line width setting Entrer une expression this is the placeholder text used by the textbox to enter an equation Copier Copy menu item for the graph context menu Couper Cut menu item from the Equation TextBox Copier Copy menu item from the Equation TextBox Coller Paste menu item from the Equation TextBox Annuler Undo menu item from the Equation TextBox Tout sélectionner Select all menu item from the Equation TextBox Entrée de fonction The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrée de fonction The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panneau de la liste d’entrée de fonctions The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panneau variable The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Liste variable The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Élément %1 de la liste des variables The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Zone de texte de la valeur de la variable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Diapositive de la valeur de la variable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Zone de texte de la valeur minimale de la variable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Zone de texte de la valeur d’étape de la variable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Zone de texte de la valeur maximale de la variable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Style de trait continu Name of the solid line style for a graphed equation Style de trait en pointillés Name of the dotted line style for a graphed equation Style de trait avec tirets Name of the dashed line style for a graphed equation Bleu marine Name of color in the color picker Écume de mer Name of color in the color picker Violet Name of color in the color picker Vert Name of color in the color picker Vert menthe Name of color in the color picker Vert foncé Name of color in the color picker Anthracite Name of color in the color picker Rouge Name of color in the color picker Prune clair Name of color in the color picker Magenta Name of color in the color picker Jaune doré Name of color in the color picker Orange clair Name of color in the color picker Brun Name of color in the color picker Noir Name of color in the color picker Blanc Name of color in the color picker Couleur 1 Name of color in the color picker Couleur 2 Name of color in the color picker Couleur 3 Name of color in the color picker Couleur 4 Name of color in the color picker Thème de graphique Graph settings heading for the theme options Toujours clair Graph settings option to set graph to light theme Respecter le thème de l’application Graph settings option to set graph to match the app theme Thème This is the automation name text for the Graph settings heading for the theme options Toujours clair This is the automation name text for the Graph settings option to set graph to light theme Respecter le thème de l’application This is the automation name text for the Graph settings option to set graph to match the app theme Fonction supprimée Announcement used in Graphing Calculator when a function is removed from the function list Zone équation de l’analyse de fonctions This is the automation name text for the equation box in the function analysis panel Est égal à Screen reader prompt for the equal button on the graphing calculator operator keypad Inférieur à Screen reader prompt for the Less than button Est inférieur ou égal à Screen reader prompt for the Less than or equal button Égale Screen reader prompt for the Equal button Est supérieur ou égal à Screen reader prompt for the Greater than or equal button Doit être supérieur à Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Envoyer Screen reader prompt for the submit button on the graphing calculator operator keypad Analyse de fonction Screen reader prompt for the function analysis grid Options de graphique Screen reader prompt for the graph options panel Historique et listes de mémoire Automation name for the group of controls for history and memory lists. Liste de mémoire Automation name for the group of controls for memory list. L’emplacement d’historique %1 est effacé {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculatrice toujours visible Announcement to indicate calculator window is always shown on top. Calculatrice de retour à la vue complète Announcement to indicate calculator window is now back to full view. Décalage arithmétique sélectionné Label for a radio button that toggles arithmetic shift behavior for the shift operations. Décalage logique sélectionné Label for a radio button that toggles logical shift behavior for the shift operations. Faire pivoter le décalage circulaire sélectionné Label for a radio button that toggles rotate circular behavior for the shift operations. Faire pivoter via le décalage circulaire de retenue sélectionné Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Paramètres Header text of Settings page Apparence Subtitle of appearance setting on Settings page Thème d’application Title of App theme expander Sélectionner le thème de l’application Description of App theme expander Clair Lable for light theme option Sombre Lable for dark theme option Utiliser le paramètre système Lable for the app theme option to use system setting Retour Screen reader prompt for the Back button in title bar to back to main page Page Paramètres Announcement used when Settings page is opened Ouvrir le menu contextuel pour les actions disponibles Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Impossible de restaurer cet instantané. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/gl-ES/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrada non válida Error message shown when the input makes a function fail, like log(-1) O resultado é indefinido Error message shown when there's no possible value for a function. Memoria insuficiente Error message shown when we run out of memory during a calculation. Desbordar Error message shown when there's an overflow during the calculation. Resultado indefinido Same as 101 Resultado indefinido Same 101 Desbordar Same as 107 Desbordar Same 107 Non se pode dividir entre cero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/gl-ES/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora de Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora de Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiar Copy context menu string Pegar Paste context menu string Case é igual a The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63.º Sub-string used in automation name for 63 bit in bit flip 62.º Sub-string used in automation name for 62 bit in bit flip 61.º Sub-string used in automation name for 61 bit in bit flip 60.º Sub-string used in automation name for 60 bit in bit flip 59.º Sub-string used in automation name for 59 bit in bit flip 58.º Sub-string used in automation name for 58 bit in bit flip 57.º Sub-string used in automation name for 57 bit in bit flip 56.º Sub-string used in automation name for 56 bit in bit flip 55.º Sub-string used in automation name for 55 bit in bit flip 54.º Sub-string used in automation name for 54 bit in bit flip 53.º Sub-string used in automation name for 53 bit in bit flip 52.º Sub-string used in automation name for 52 bit in bit flip 51.º Sub-string used in automation name for 51 bit in bit flip 50.º Sub-string used in automation name for 50 bit in bit flip 49.º Sub-string used in automation name for 49 bit in bit flip 48.º Sub-string used in automation name for 48 bit in bit flip 47.º Sub-string used in automation name for 47 bit in bit flip 46.º Sub-string used in automation name for 46 bit in bit flip 45.º Sub-string used in automation name for 45 bit in bit flip 44.º Sub-string used in automation name for 44 bit in bit flip 43.º Sub-string used in automation name for 43 bit in bit flip 42.º Sub-string used in automation name for 42 bit in bit flip 41.º Sub-string used in automation name for 41 bit in bit flip 40.º Sub-string used in automation name for 40 bit in bit flip 39.º Sub-string used in automation name for 39 bit in bit flip 38.º Sub-string used in automation name for 38 bit in bit flip 37.º Sub-string used in automation name for 37 bit in bit flip 36.º Sub-string used in automation name for 36 bit in bit flip 35.º Sub-string used in automation name for 35 bit in bit flip 34.º Sub-string used in automation name for 34 bit in bit flip 33.º Sub-string used in automation name for 33 bit in bit flip 32.º Sub-string used in automation name for 32 bit in bit flip 31.º Sub-string used in automation name for 31 bit in bit flip 30.º Sub-string used in automation name for 30 bit in bit flip 29.º Sub-string used in automation name for 29 bit in bit flip 28.º Sub-string used in automation name for 28 bit in bit flip 27.º Sub-string used in automation name for 27 bit in bit flip 26.º Sub-string used in automation name for 26 bit in bit flip 25.º Sub-string used in automation name for 25 bit in bit flip 24.º Sub-string used in automation name for 24 bit in bit flip 23.º Sub-string used in automation name for 23 bit in bit flip 22.º Sub-string used in automation name for 22 bit in bit flip 21.º Sub-string used in automation name for 21 bit in bit flip 20.º Sub-string used in automation name for 20 bit in bit flip 19.º Sub-string used in automation name for 19 bit in bit flip 18.º Sub-string used in automation name for 18 bit in bit flip 17.º Sub-string used in automation name for 17 bit in bit flip 16.º Sub-string used in automation name for 16 bit in bit flip 15.º Sub-string used in automation name for 15 bit in bit flip 14.º Sub-string used in automation name for 14 bit in bit flip 13.º Sub-string used in automation name for 13 bit in bit flip 12.º Sub-string used in automation name for 12 bit in bit flip 11.º Sub-string used in automation name for 11 bit in bit flip 10.º Sub-string used in automation name for 10 bit in bit flip 9.º Sub-string used in automation name for 9 bit in bit flip 8.º Sub-string used in automation name for 8 bit in bit flip 7.º Sub-string used in automation name for 7 bit in bit flip 6.º Sub-string used in automation name for 6 bit in bit flip 5.º Sub-string used in automation name for 5 bit in bit flip 4.º Sub-string used in automation name for 4 bit in bit flip 3.º Sub-string used in automation name for 3 bit in bit flip 2.º Sub-string used in automation name for 2 bit in bit flip 1.º Sub-string used in automation name for 1 bit in bit flip bit menos significativo Used to describe the first bit of a binary number. Used in bit flip Abrir control flotante de memoria This is the automation name and label for the memory button when the memory flyout is closed. Pechar control flotante de memoria This is the automation name and label for the memory button when the memory flyout is open. Manter arriba This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Volver á vista completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Historial (Ctrl+H) This is the tool tip automation name for the history button. Teclado numérico de alternancia de bit This is the tool tip automation name for the bitFlip button. Teclado numérico completo This is the tool tip automation name for the numberPad button. Limpar toda a memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historial The text that shows as the header for the history list Historial The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertedor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Estándar Label for a control that activates standard mode calculator layout. Modo convertedor Screen reader prompt for a control that activates the unit converter mode. Modo Científica Screen reader prompt for a control that activates scientific mode calculator layout Modo Estándar Screen reader prompt for a control that activates standard mode calculator layout. Limpar todo o historial "ClearHistory" used on the calculator history pane that stores the calculation history. Limpar todo o historial This is the tool tip automation name for the Clear History button. Ocultar "HideHistory" used on the calculator history pane that stores the calculation history. Estándar The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertedor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Convertedor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Convertedores Pluralized version of the converter group text, used for the screen reader prompt. Calculadoras Pluralized version of the calculator group text, used for the screen reader prompt. A pantalla mostra %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". A expresión é %1, a entrada actual é %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". A pantalla mostra %1 coma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. A expresión é %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Mostrar o valor copiado no portapapeis Screen reader prompt for the Calculator display copy button, when the button is invoked. Historial Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binario %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Limpar todo o historial Screen reader prompt for the Calculator History Clear button O historial está limpo Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ocultar historial Screen reader prompt for the Calculator History Hide button Abrir control flotante de historial Screen reader prompt for the Calculator History button, when the flyout is closed. Pechar control flotante de historial Screen reader prompt for the Calculator History button, when the flyout is open. Almacén de memoria Screen reader prompt for the Calculator Memory button Almacenar memoria (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Limpar toda a memoria Screen reader prompt for the Calculator Clear Memory button A memoria está limpa Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Recuperar memoria Screen reader prompt for the Calculator Memory Recall button Recuperar memoria (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Sumar memoria Screen reader prompt for the Calculator Memory Add button Sumar memoria (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Subtraer memoria Screen reader prompt for the Calculator Memory Subtract button Subtraer memoria (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Limpar elemento da memoria Screen reader prompt for the Calculator Clear Memory button Limpar elemento da memoria This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Sumar ao elemento da memoria Screen reader prompt for the Calculator Memory Add button in the Memory list Sumar ao elemento da memoria This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtraer do elemento da memoria Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtraer do elemento da memoria This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Limpar elemento da memoria Screen reader prompt for the Calculator Clear Memory button Limpar elemento da memoria Text string for the Calculator Clear Memory option in the Memory list context menu Sumar ao elemento da memoria Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Sumar ao elemento da memoria Text string for the Calculator Memory Add option in the Memory list context menu Subtraer do elemento da memoria Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtraer do elemento da memoria Text string for the Calculator Memory Subtract option in the Memory list context menu Eliminar Text string for the Calculator Delete swipe button in the History list Copiar Text string for the Calculator Copy option in the History list context menu Eliminar Text string for the Calculator Delete option in the History list context menu Eliminar elemento de historial Screen reader prompt for the Calculator Delete swipe button in the History list Eliminar elemento de historial Screen reader prompt for the Calculator Delete option in the History list context menu Retroceso Screen reader prompt for the Calculator Backspace button 1 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Cero Screen reader prompt for the Calculator number "0" button Un Screen reader prompt for the Calculator number "1" button Dous Screen reader prompt for the Calculator number "2" button Tres Screen reader prompt for the Calculator number "3" button Catro Screen reader prompt for the Calculator number "4" button Cinco Screen reader prompt for the Calculator number "5" button Seis Screen reader prompt for the Calculator number "6" button Sete Screen reader prompt for the Calculator number "7" button Oito Screen reader prompt for the Calculator number "8" button Nove Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button E Screen reader prompt for the Calculator And button Ou Screen reader prompt for the Calculator Or button Non Screen reader prompt for the Calculator Not button Rotar á esquerda Screen reader prompt for the Calculator ROL button Rotar á dereita Screen reader prompt for the Calculator ROR button Desprazar á esquerda Screen reader prompt for the Calculator LSH button Desprazar á dereita Screen reader prompt for the Calculator RSH button Exclusivo ou Screen reader prompt for the Calculator XOR button Alternar palabra cuádrupla Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Alternar palabra dupla Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Alternar palabra Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Alternar bytes Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclado numérico de alternancia de bit Screen reader prompt for the Calculator bitFlip button Teclado numérico completo Screen reader prompt for the Calculator numberPad button Separador decimal Screen reader prompt for the "." button Borrar entrada Screen reader prompt for the "CE" button Borrar Screen reader prompt for the "C" button Dividir por Screen reader prompt for the divide button on the number pad Multiplicar por Screen reader prompt for the multiply button on the number pad É igual a Screen reader prompt for the equals button on the scientific operator keypad Función inversa Screen reader prompt for the shift button on the number pad in scientific mode. Menos Screen reader prompt for the minus button on the number pad Menos We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Máis Screen reader prompt for the plus button on the number pad Raíz cadrada Screen reader prompt for the square root button on the scientific operator keypad Porcentaxe Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Recíproco Screen reader prompt for the invert button on the scientific operator keypad Paréntese esquerda Screen reader prompt for the Calculator "(" button on the scientific operator keypad Paréntese de apertura. Total de parénteses abertos: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Paréntese dereita Screen reader prompt for the Calculator ")" button on the scientific operator keypad Número de parénteses abertos %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Non hai ningún paréntese aberto para pechar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notación científica Screen reader prompt for the Calculator F-E the scientific operator keypad Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Coseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tanxente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno hiperbólico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Coseno hiperbólico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tanxente hiperbólica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Cadrado Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arcoseno Screen reader prompt for the inverted sin on the scientific operator keypad. Arcocoseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arcotanxente Screen reader prompt for the inverted tan on the scientific operator keypad. Arcoseno hiperbólico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arcocoseno hiperbólico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arcotanxente hiperbólico Screen reader prompt for the inverted tanh on the scientific operator keypad. “X” elevado ao expoñente Screen reader prompt for x power y button on the scientific operator keypad. 10 elevado ao expoñente Screen reader prompt for the 10 power x button on the scientific operator keypad. “e” elevado ao expoñente Screen reader for the e power x on the scientific operator keypad. “y” raíz de “x” Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmo Screen reader for the log base 10 on the scientific operator keypad Logaritmo natural Screen reader for the log base e on the scientific operator keypad Módulo Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grao minuto segundo Screen reader for the exp button on the scientific operator keypad Graos Screen reader for the exp button on the scientific operator keypad Parte enteira Screen reader for the int button on the scientific operator keypad Parte fraccionaria Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Alternar graos This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Alternar gradiáns This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Alternar radiáns This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista despregable de modo Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista despregable de categorías Screen reader prompt for the Categories dropdown field. Manter arriba Screen reader prompt for the Always-on-Top button when in normal mode. Volver á vista completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Manter na parte superior (Alt+frecha cara arriba) This is the tool tip automation name for the Always-on-Top button when in normal mode. Volver á vista completa (Alt+frecha cara abaixo) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converter de %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converter de %1 coma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Convértese en %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 é %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unidade de entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unidade de saída Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Área Unit conversion category name called Area (eg. area of a sports field in square meters) Datos Unit conversion category name called Data Enerxía Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lonxitude Unit conversion category name called Length Potencia Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocidade Unit conversion category name called Speed Hora Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso e masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Presión Unit conversion category name called Pressure Ángulo Unit conversion category name called Angle Moeda Unit conversion category name called Currency Onzas líquidas (Reino Unido) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Reino Unido) An abbreviation for a measurement unit of volume Onzas líquidas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EUA) An abbreviation for a measurement unit of volume Galóns (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Reino Unido) An abbreviation for a measurement unit of volume Galóns (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EUA) An abbreviation for a measurement unit of volume Litros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Reino Unido) An abbreviation for a measurement unit of volume Pintas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EUA) An abbreviation for a measurement unit of volume Culleradas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cullerada (EUA) An abbreviation for a measurement unit of volume Culleradas pequenas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cullerada pequena (EUA) An abbreviation for a measurement unit of volume Culleradas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cullerada (Reino Unido) An abbreviation for a measurement unit of volume Culleradas pequenas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cullerada pequena (Reino Unido) An abbreviation for a measurement unit of volume Cuartos (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Reino Unido) An abbreviation for a measurement unit of volume Cuartos (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EUA) An abbreviation for a measurement unit of volume Cuncas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cunca (EUA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy GB An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (EUA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) KB An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) MB An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area TB An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length ano An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas británicas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías térmicas A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polgadas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Días A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electronvoltios A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés-libras A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés-libras/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Xigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Xigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectáreas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cabalos de vapor (EUA) A measurement unit for power Horas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polgadas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatt-hora A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Quilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorías alimentarias A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nós A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microns A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mordida A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ángstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas náuticas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés cadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polgadas cadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros cadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millas cadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros cadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardas cadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semanas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iardas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight graos An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmhg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonelada (Reino Unido) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonelada (EUA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quilates A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graos A measurement unit for Angle. Radiáns A measurement unit for Angle. Gradiáns A measurement unit for Angle. Atmosferas A measurement unit for Pressure. Bares A measurement unit for Pressure. Quilo Pascal A measurement unit for Pressure. Milímetro de mercurio A measurement unit for Pressure. Pascales A measurement unit for Pressure. Libra por polgada cadrada A measurement unit for Pressure. Centígramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagramos A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilogramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas longas (Reino Unido) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onzas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas curtas (EUA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de fútbol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterías AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeronaves grandes A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeronaves grandes A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lámpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lámpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cabalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cabalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bañeiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folerpas A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folerpas A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeronaves A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeronaves A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleas A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cuncas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cuncas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mans A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mans A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) follas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) follas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) porcións de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) porcións de pastel A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotoras A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotoras A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balóns de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balóns de fútbol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elemento da memoria Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atrás Screen reader prompt for the About panel back button Atrás Content of tooltip being displayed on AboutControlBackButton Termos de licenza do software de Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Previsualizar Label displayed next to upcoming features Declaración de privacidade de Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Todos os dereitos reservados. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para obter máis información sobre como podes contribuír á Calculadora de Windows, consulta o proxecto en %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Acerca de Subtitle of about message on Settings page Enviar comentarios The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Aínda non hai ningún historial. The text that shows as the header for the history list Non hai nada gardado na memoria. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad Esta expresión non se pode pegar The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cálculo de datas Modo de cálculo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Engadir Add toggle button text Engadir ou restar días Add or Subtract days option Data Date result label Diferenza entre datas Date difference option Días Add/Subtract Days label Diferenza Difference result label Desde From Date Header for Difference Date Picker Meses Add/Subtract Months label Restar Subtract toggle button text Ata To Date Header for Difference Date Picker Anos Add/Subtract Years label Data fóra do límite Out of bound message shown as result when the date calculation exceeds the bounds día días mes meses Mesmas datas semana semanas ano anos Diferenza %1 Automation name for reading out the date difference. %1 = Date difference Data de resultado %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modo calculadora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modo convertedor %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modo de cálculo de datas Automation name for when the mode header is focused and the current mode is Date calculation. Historial e listas de memoria Automation name for the group of controls for history and memory lists. Controis de memoria Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funcións estándar Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controis de pantalla Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadores estándar Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclado numérico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadores de ángulo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funcións científicas Automation name for the group of Scientific functions. Selección de base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadores de programadores Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selección de modo de entrada Automation name for the group of input mode toggling buttons. Teclado de alternancia de bits Automation name for the group of bit toggling buttons. Desprazar a expresión cara á esquerda Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Desprazar a expresión cara á dereita Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Acadáronse o número máximo de díxitos. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 gardado na memoria {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". O espazo de memoria %1 é %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Limpouse a rañura de memoria %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividido por Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. veces Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menos Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. máis Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. a potencia de Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y raíz Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. desprazar á esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. desprazar á dereita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ou Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ou Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. e Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Actualizado o %1 ás %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Actualizar tipos The text displayed for a hyperlink button that refreshes currency converter ratios. Poden aplicarse cargos de datos. The text displayed when users are on a metered connection and using currency converter. Non se puideron obter novos tipos. Téntao de novo máis tarde. The text displayed when currency ratio data fails to load. Sen conexión. Comproba a%HL%Configuración de rede%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Actualizando as taxas monetarias This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Taxas monetarias actualizadas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Non se puideron actualizar as taxas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Limpar toda a memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Limpar toda a memoria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} graos de seno Name for the sine function in degrees mode. Used by screen readers. radiáns de seno Name for the sine function in radians mode. Used by screen readers. graos centesimais de seno Name for the sine function in gradians mode. Used by screen readers. graos de seno inverso Name for the inverse sine function in degrees mode. Used by screen readers. radiáns de seno inverso Name for the inverse sine function in radians mode. Used by screen readers. graos centesimais de seno inverso Name for the inverse sine function in gradians mode. Used by screen readers. seno hiperbólico Name for the hyperbolic sine function. Used by screen readers. seno hiperbólico inverso Name for the inverse hyperbolic sine function. Used by screen readers. graos de coseno Name for the cosine function in degrees mode. Used by screen readers. radiáns de coseno Name for the cosine function in radians mode. Used by screen readers. graos centesimais de coseno Name for the cosine function in gradians mode. Used by screen readers. graos de coseno inverso Name for the inverse cosine function in degrees mode. Used by screen readers. radiáns de coseno inverso Name for the inverse cosine function in radians mode. Used by screen readers. graos centesimais de coseno inverso Name for the inverse cosine function in gradians mode. Used by screen readers. coseno hiperbólico Name for the hyperbolic cosine function. Used by screen readers. coseno hiperbólico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. graos de tanxente Name for the tangent function in degrees mode. Used by screen readers. radiáns de tanxente Name for the tangent function in radians mode. Used by screen readers. graos centesimais de tanxente Name for the tangent function in gradians mode. Used by screen readers. graos de tanxente inversa Name for the inverse tangent function in degrees mode. Used by screen readers. radiáns de tanxente inversa Name for the inverse tangent function in radians mode. Used by screen readers. graos centesimais de tanxente inversa Name for the inverse tangent function in gradians mode. Used by screen readers. tanxente hiperbólica Name for the hyperbolic tangent function. Used by screen readers. tanxente hiperbólica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. graos secantes Name for the secant function in degrees mode. Used by screen readers. radiáns secantes Name for the secant function in radians mode. Used by screen readers. gradiáns secantes Name for the secant function in gradians mode. Used by screen readers. graos secantes inversos Name for the inverse secant function in degrees mode. Used by screen readers. radiáns secantes inversos Name for the inverse secant function in radians mode. Used by screen readers. gradiáns secantes inversos Name for the inverse secant function in gradians mode. Used by screen readers. secante hiperbólica Name for the hyperbolic secant function. Used by screen readers. secante hiperbólica inversa Name for the inverse hyperbolic secant function. Used by screen readers. graos cosecantes Name for the cosecant function in degrees mode. Used by screen readers. radiáns cosecantes Name for the cosecant function in radians mode. Used by screen readers. gradiáns cosecantes Name for the cosecant function in gradians mode. Used by screen readers. graos cosecantes inversos Name for the inverse cosecant function in degrees mode. Used by screen readers. radiáns cosecantes inversos Name for the inverse cosecant function in radians mode. Used by screen readers. gradiáns cosecantes inversos Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecante hiperbólica Name for the hyperbolic cosecant function. Used by screen readers. cosecante hiperbólica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. graos cotanxentes Name for the cotangent function in degrees mode. Used by screen readers. Radiáns cotanxentes Name for the cotangent function in radians mode. Used by screen readers. gradiáns cotanxentes Name for the cotangent function in gradians mode. Used by screen readers. graos cotanxentes inversos Name for the inverse cotangent function in degrees mode. Used by screen readers. radiáns cotanxentes inversos Name for the inverse cotangent function in radians mode. Used by screen readers. gradiáns cotanxentes inversos Name for the inverse cotangent function in gradians mode. Used by screen readers. cotanxente hiperbólica Name for the hyperbolic cotangent function. Used by screen readers. cotanxente hiperbólica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Raíz cúbica Name for the cube root function. Used by screen readers. Base logarítmica Name for the logbasey function. Used by screen readers. Valor absoluto Name for the absolute value function. Used by screen readers. desprazar á esquerda Name for the programmer function that shifts bits to the left. Used by screen readers. desprazar á dereita Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. grao minuto segundo Name for the degree minute second (dms) function. Used by screen readers. logaritmo natural Name for the natural log (ln) function. Used by screen readers. cadrado Name for the square function. Used by screen readers. y raíz Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoría de %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrato de servizos de Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Desde From Date Header for AddSubtract Date Picker Despraza o resultado do cálculo cara á esquerda Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Despraza o resultado do cálculo cara á dereita Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Erro de cálculo Text displayed when the application is not able to do a calculation Base logarítmica Y Screen reader prompt for the logBaseY button Trigonometría Displayed on the button that contains a flyout for the trig functions in scientific mode. Función Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualdades Displayed on the button that contains a flyout for the inequality functions. Desigualdades Screen reader prompt for the Inequalities button Bit a bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Cambio de bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Función inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Función hiperbólica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante hiperbólica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Secante do arco Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Secante do arco hiperbólica Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecante hiperbólica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Cosecante do arco Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cosecante do arco hiperbólica Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotanxente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotanxente hiperbólica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Cotanxente do arco Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Cotanxente do arco hiperbólica Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Límite inferior Screen reader prompt for the Calculator button floor in the scientific flyout keypad Límite superior Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatorio Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número de Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dous elevado ao expoñente Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotar á esquerda levando Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotar á dereita levando Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Desprazar á esquerda Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Desprazar á esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Desprazar á dereita Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Desprazar á dereita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Cambio de aritmética Label for a radio button that toggles arithmetic shift behavior for the shift operations. Cambio lóxico Label for a radio button that toggles logical shift behavior for the shift operations. Rotar cambio circular Label for a radio button that toggles rotate circular behavior for the shift operations. Rotar levando cambio circular Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Raíz cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometría Screen reader prompt for the square root button on the scientific operator keypad Funcións Screen reader prompt for the square root button on the scientific operator keypad Bit a bit Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Paneis de operadores científicos Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Paneis de operadores de programadores Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit máis significativo Used to describe the last bit of a binary number. Used in bit flip Representación nunha calculadora gráfica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Trazado Screen reader prompt for the plot button on the graphing calculator operator keypad Actualizar a visualización automaticamente (CTRL + 0) This is the tool tip automation name for the Calculator graph view button. Visualización do gráfico Screen reader prompt for the graph view button. Axuste perfecto automático Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Axuste manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set A vista da gráfica restableceuse Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Ampliar (CTRL + signo máis) This is the tool tip automation name for the Calculator zoom in button. Ampliar Screen reader prompt for the zoom in button. Reducir (CTRL + signo menos) This is the tool tip automation name for the Calculator zoom out button. Reducir Screen reader prompt for the zoom out button. Engadir ecuación Placeholder text for the equation input button Non se pode compartir neste momento. If there is an error in the sharing action will display a dialog with this text. Aceptar Used on the dismiss button of the share action error dialog. Buscar as representacións gráficas con Calculadora de Windows Sent as part of the shared content. The title for the share. Ecuacións Header that appears over the equations section when sharing Variables Header that appears over the variables section when sharing Imaxe dunha gráfica con ecuacións Alt text for the graph image when output via Share Variables Header text for variables area Paso Label text for the step text box Mín. Label text for the min text box Máx. Label text for the max text box Cor Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Análise de función Title for KeyGraphFeatures Control A función non ten ningunha asíntota horizontal. Message displayed when the graph does not have any horizontal asymptotes A función non ten ningún punto de inflexión. Message displayed when the graph does not have any inflection points A función non ten ningún punto máximo. Message displayed when the graph does not have any maxima A función non ten ningún punto mínimo. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Decrecente String describing decreasing monotonicity of a function Non é posible determinar a monotonía da función. Error displayed when monotonicity cannot be determined Crecente String describing increasing monotonicity of a function Descoñécese a monotonía da función. Error displayed when monotonicity is unknown A función non ten ningunha asíntota oblicua. Message displayed when the graph does not have any oblique asymptotes Non é posible determinar a paridade da función. Error displayed when parity is cannot be determined A función é par. Message displayed with the function parity is even A función non é nin par nin impar. Message displayed with the function parity is neither even nor odd A función é impar. Message displayed with the function parity is odd Descoñécese a paridade da función. Error displayed when parity is unknown Esta función non admite periodicidade. Error displayed when periodicity is not supported A función non é periódica. Message displayed with the function periodicity is not periodic Descoñécese a función de periodicidade. Message displayed with the function periodicity is unknown Estas funcionalidades son demasiado complexas para que as calcule a Calculadora: Error displayed when analysis features cannot be calculated A función non ten ningunha asíntota vertical. Message displayed when the graph does not have any vertical asymptotes A función non ten ningunha intersección x. Message displayed when the graph does not have any x-intercepts A función non ten ningunha intersección y-. Message displayed when the graph does not have any y-intercepts Dominio Title for KeyGraphFeatures Domain Property Asíntotas horizontais Title for KeyGraphFeatures Horizontal aysmptotes Property Puntos de inflexión Title for KeyGraphFeatures Inflection points Property Esta función non admite análises. Error displayed when graph analysis is not supported or had an error. A análise só se admite nas funcións con formato f(x). Por exemplo: y=x Error displayed when graph analysis detects the function format is not f(x). Máxima Title for KeyGraphFeatures Maxima Property Mínima Title for KeyGraphFeatures Minima Property Monotonía Title for KeyGraphFeatures Monotonicity Property Asíntotas oblicuas Title for KeyGraphFeatures Oblique asymptotes Property Paridade Title for KeyGraphFeatures Parity Property Período Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervalo Title for KeyGraphFeatures Range Property Asíntotas verticais Title for KeyGraphFeatures Vertical asymptotes Property Intersección X Title for KeyGraphFeatures XIntercept Property Intersección Y Title for KeyGraphFeatures YIntercept Property Non foi posible realizar a análise para a función. Non é posible calcular o dominio para esta función. Error displayed when Domain is not returned from the analyzer. Non é posible calcular o intervalo para esta función. Error displayed when Range is not returned from the analyzer. Exceso (o número é demasiado grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. É necesario o modo radiáns para representar graficamente esta ecuación. Error that occurs during graphing when radians is required. Esta función é demasiado complexa para representar graficamente Error that occurs during graphing when the equation is too complex. É necesario o modo graos para representar graficamente esta ecuación Error that occurs during graphing when degrees is required A factorial ten un argumento non válido Error that occurs during graphing when a factorial function has an invalid argument. A factorial ten un argumento que é demasiado grande para representar graficamente Error that occurs during graphing when a factorial has a large n O módulo só pode usarse con números enteiros Error that occurs during graphing when modulo is used with a float. A ecuación non ten solución Error that occurs during graphing when the equation has no solution. Non se pode dividir entre cero Error that occurs during graphing when a divison by zero occurs. A ecuación contén condicións lóxicas que son mutuamente excluíntes Error that occurs during graphing when mutually exclusive conditions are used. A ecuación está fóra do dominio Error that occurs during graphing when the equation is out of domain. Non se pode representar esta ecuación nunha calculadora gráfica Error that occurs during graphing when the equation is not supported. Falta unha paréntese de inicio na ecuación Error that occurs during graphing when the equation is missing a ( Falta unha paréntese de peche na ecuación Error that occurs during graphing when the equation is missing a ) Hai demasiados decimais no número Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Falta un díxito no decimal Error that occurs during graphing with a decimal point without digits Fin de expresión non esperado Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Caracteres na expresión non esperados Error that occurs during graphing when there is an unexpected token. Caracteres non válidos na expresión Error that occurs during graphing when there is an invalid token. Hai demasiados signos de igual Error that occurs during graphing when there are too many equals. A función debe conter polo menos unha variable x ou y Error that occurs during graphing when the equation is missing x or y. A expresión non é válida Error that occurs during graphing when an invalid syntax is used. A expresión está baleira Error that occurs during graphing when the expression is empty Usouse igual sen unha ecuación Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Falta unha paréntese despois do nome da función Error that occurs during graphing when parenthesis are missing after a function. A operación matemática ten o número incorrecto de parámetros Error that occurs during graphing when a function has the wrong number of parameters O nome da variable non é válido Error that occurs during graphing when a variable name is invalid. Falta un corchete de inicio na ecuación Error that occurs during graphing when a { is missing Falta un corchete de peche na ecuación Error that occurs during graphing when a } is missing. “i” e “I” non poden usarse como nomes de variables Error that occurs during graphing when i or I is used. Non se puido representar graficamente a ecuación General error that occurs during graphing. Non se pode resolver o díxito con esta base Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). A base debe ser superior a 2 e inferior a 36 Error that occurs during graphing when the base is out of range. A operación matemática necesita que un dos seus parámetros sexa unha variable Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. A ecuación mestura operadores lóxicos e escalares Error that occurs during graphing when operands are mixed. Such as true and 1. x ou y non poden usarse como límite superior ou inferior Error that occurs during graphing when x or y is used in integral upper limits. Non pode usarse x ou y no punto de acumulación Error that occurs during graphing when x or y is used in the limit point. Non se pode usar o infinito complexo Error that occurs during graphing when complex infinity is used Non se poden usar números complexos nas desigualdades Error that occurs during graphing when complex numbers are used in inequalities. Volver á lista de funcións This is the tooltip for the back button in the equation analysis page in the graphing calculator Volver á lista de funcións This is the automation name for the back button in the equation analysis page in the graphing calculator Analizar función This is the tooltip for the analyze function button Analizar función This is the automation name for the analyze function button Analizar función This is the text for the for the analyze function context menu command Eliminar ecuación This is the tooltip for the graphing calculator remove equation buttons Eliminar ecuación This is the automation name for the graphing calculator remove equation buttons Eliminar ecuación This is the text for the for the remove equation context menu command Compartir This is the automation name for the graphing calculator share button. Compartir This is the tooltip for the graphing calculator share button. Modificar estilo de ecuación This is the tooltip for the graphing calculator equation style button Modificar estilo de ecuación This is the automation name for the graphing calculator equation style button Modificar estilo de ecuación This is the text for the for the equation style context menu command Mostrar ecuación This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ocultar ecuación This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostrar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ocultar ecuación %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Parar rastrexamento This is the tooltip/automation name for the graphing calculator stop tracing button Iniciar rastrexamento This is the tooltip/automation name for the graphing calculator start tracing button Ventá de visualización de gráficos, eixe x ligado por %1 e %2, eixe y ligado por %3 e %4, mostrando %5 ecuacións {Locked="%1","%2", "%3", "%4", "%5"}. Configurar o cursor da barra de desprazamento This is the tooltip text for the slider options button in Graphing Calculator Configurar o cursor da barra de desprazamento This is the automation name text for the slider options button in Graphing Calculator Cambiar ao modo de ecuación Used in Graphing Calculator to switch the view to the equation mode Cambiar ao modo de gráfica Used in Graphing Calculator to switch the view to the graph mode Cambiar ao modo de ecuación Used in Graphing Calculator to switch the view to the equation mode O modo actual é o modo de ecuación Announcement used in Graphing Calculator when switching to the equation mode O modo actual é o modo de gráfica Announcement used in Graphing Calculator when switching to the graph mode Ventá Heading for window extents on the settings Graos Degrees mode on settings page Gradiáns Gradian mode on settings page Radiáns Radians mode on settings page Unidades Heading for Unit's on the settings Restablecer a vista Hyperlink button to reset the view of the graph X-máx. X maximum value header X-mín. X minimum value header Y-máx. Y Maximum value header Y-mín. Y minimum value header Opcións da gráfica This is the tooltip text for the graph options button in Graphing Calculator Opcións da gráfica This is the automation name text for the graph options button in Graphing Calculator Opcións da gráfica Heading for the Graph options flyout in Graphing mode. Opcións variables Screen reader prompt for the variable settings toggle button Opcións de alternancia variables Tool tip for the variable settings toggle button Grosor da liña Heading for the Graph options flyout in Graphing mode. Opcións de liña Heading for the equation style flyout in Graphing mode. Largura da liña pequena Automation name for line width setting Largura da liña mediana Automation name for line width setting Largura da liña grande Automation name for line width setting Largura da liña extragrande Automation name for line width setting Introducir unha expresión this is the placeholder text used by the textbox to enter an equation Copiar Copy menu item for the graph context menu Cortar Cut menu item from the Equation TextBox Copiar Copy menu item from the Equation TextBox Pegar Paste menu item from the Equation TextBox Desfacer Undo menu item from the Equation TextBox Seleccionar todo Select all menu item from the Equation TextBox Entrada da función The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada da función The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Función de introducir panel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variable do panel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variable da lista The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variable %1 do elemento da lista The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Variable do valor da caixa de texto The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Variable do valor do cursor da barra de desprazamento The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Variable do valor mínimo da caixa de texto The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Variable do valor do paso da caixa de texto The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Variable do valor máximo da caixa de texto The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estilo de liña sólida Name of the solid line style for a graphed equation Estilo de liña de puntos Name of the dotted line style for a graphed equation Estilo de liña de trazos Name of the dashed line style for a graphed equation Azul mariño Name of color in the color picker Verde mariño Name of color in the color picker Violeta Name of color in the color picker Verde Name of color in the color picker Verde menta Name of color in the color picker Verde escuro Name of color in the color picker Carbón Name of color in the color picker Vermello Name of color in the color picker Morado claro Name of color in the color picker Maxenta Name of color in the color picker Amarelo dourado Name of color in the color picker Laranxa vivo Name of color in the color picker Marrón Name of color in the color picker Negro Name of color in the color picker Branco Name of color in the color picker Cor 1 Name of color in the color picker Cor 2 Name of color in the color picker Cor 3 Name of color in the color picker Cor 4 Name of color in the color picker Tema gráfico Graph settings heading for the theme options Claro sempre Graph settings option to set graph to light theme Facer coincidir o tema de aplicación Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Claro sempre This is the automation name text for the Graph settings option to set graph to light theme Facer coincidir o tema de aplicación This is the automation name text for the Graph settings option to set graph to match the app theme Función eliminada Announcement used in Graphing Calculator when a function is removed from the function list Función de análise da caixa de ecuación This is the automation name text for the equation box in the function analysis panel É igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menor que Screen reader prompt for the Less than button Menor ou igual que Screen reader prompt for the Less than or equal button Igual Screen reader prompt for the Equal button Maior ou igual que Screen reader prompt for the Greater than or equal button Maior que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Enviar Screen reader prompt for the submit button on the graphing calculator operator keypad Análise de función Screen reader prompt for the function analysis grid Opcións da gráfica Screen reader prompt for the graph options panel Historial e listas de memoria Automation name for the group of controls for history and memory lists. Lista de memoria Automation name for the group of controls for memory list. Limpouse a rañura de aplicación %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Mostrar a calculadora sempre na parte superior Announcement to indicate calculator window is always shown on top. Cambiar a calculadora á vista completa Announcement to indicate calculator window is now back to full view. Seleccionouse a tecla MAIÚS aritmética Label for a radio button that toggles arithmetic shift behavior for the shift operations. Seleccionouse a tecla MAIÚS lóxica Label for a radio button that toggles logical shift behavior for the shift operations. Seleccionouse rotar a tecla MAIÚS circular Label for a radio button that toggles rotate circular behavior for the shift operations. Seleccionouse rotar levando a tecla MAIÚS circular Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Configuración Header text of Settings page Aspecto Subtitle of appearance setting on Settings page Tema da aplicación Title of App theme expander Seleccionar que tema da aplicación se vai mostrar Description of App theme expander Claro Lable for light theme option Escuro Lable for dark theme option Usa a configuración do sistema Lable for the app theme option to use system setting Atrás Screen reader prompt for the Back button in title bar to back to main page Páxina de configuración Announcement used when Settings page is opened Abrir o menú contexto para as accións dispoñibles Screen reader prompt for the context menu of the expression box Aceptar The text of OK button to dismiss an error dialog. Non se puido restaurar esta instantánea. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/he-IL/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 קלט לא חוקי Error message shown when the input makes a function fail, like log(-1) התוצאה אינה מוגדרת Error message shown when there's no possible value for a function. אין די זיכרון Error message shown when we run out of memory during a calculation. גלישה Error message shown when there's an overflow during the calculation. תוצאה לא מוגדרת Same as 101 תוצאה לא מוגדרת Same 101 גלישה Same as 107 גלישה Same 107 לא ניתן לחלק באפס Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/he-IL/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 מחשבון {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. מחשבון [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. מחשבון Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. מחשבון Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. מחשבון {@Appx_Description@} This description is used for the official application when published through Windows Store. מחשבון [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. העתק Copy context menu string הדבק Paste context menu string בערך שווה ל The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, ערך %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 סיבית {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) ששים ושלוש Sub-string used in automation name for 63 bit in bit flip ששים ושתיים Sub-string used in automation name for 62 bit in bit flip ששים ואחת Sub-string used in automation name for 61 bit in bit flip ששים Sub-string used in automation name for 60 bit in bit flip חמישים ותשע Sub-string used in automation name for 59 bit in bit flip חמישים ושמונה Sub-string used in automation name for 58 bit in bit flip חמישים ושבע Sub-string used in automation name for 57 bit in bit flip חמישים ושש Sub-string used in automation name for 56 bit in bit flip חמישים וחמש Sub-string used in automation name for 55 bit in bit flip חמישים וארבע Sub-string used in automation name for 54 bit in bit flip חמישים ושלוש Sub-string used in automation name for 53 bit in bit flip חמישים ושתיים Sub-string used in automation name for 52 bit in bit flip חמישים ואחת Sub-string used in automation name for 51 bit in bit flip חמישים Sub-string used in automation name for 50 bit in bit flip ארבעים ותשע Sub-string used in automation name for 49 bit in bit flip ארבעים ושמונה Sub-string used in automation name for 48 bit in bit flip ארבעים ושבע Sub-string used in automation name for 47 bit in bit flip ארבעים ושש Sub-string used in automation name for 46 bit in bit flip ארבעים וחמש Sub-string used in automation name for 45 bit in bit flip ארבעים וארבע Sub-string used in automation name for 44 bit in bit flip ארבעים ושלוש Sub-string used in automation name for 43 bit in bit flip ארבעים ושתיים Sub-string used in automation name for 42 bit in bit flip ארבעים ואחת Sub-string used in automation name for 41 bit in bit flip ארבעים Sub-string used in automation name for 40 bit in bit flip שלושים ותשע Sub-string used in automation name for 39 bit in bit flip שלושים ושמונה Sub-string used in automation name for 38 bit in bit flip שלושים ושבע Sub-string used in automation name for 37 bit in bit flip שלושים ושש Sub-string used in automation name for 36 bit in bit flip שלושים וחמש Sub-string used in automation name for 35 bit in bit flip שלושים וארבע Sub-string used in automation name for 34 bit in bit flip שלושים ושלוש Sub-string used in automation name for 33 bit in bit flip שלושים ושתיים Sub-string used in automation name for 32 bit in bit flip שלושים ואחת Sub-string used in automation name for 31 bit in bit flip שלושים Sub-string used in automation name for 30 bit in bit flip עשרים ותשע Sub-string used in automation name for 29 bit in bit flip עשרים ושמונה Sub-string used in automation name for 28 bit in bit flip עשרים ושבע Sub-string used in automation name for 27 bit in bit flip עשרים ושש Sub-string used in automation name for 26 bit in bit flip עשרים וחמש Sub-string used in automation name for 25 bit in bit flip עשרים וארבע Sub-string used in automation name for 24 bit in bit flip עשרים ושלוש Sub-string used in automation name for 23 bit in bit flip עשרים ושתיים Sub-string used in automation name for 22 bit in bit flip עשרים ואחת Sub-string used in automation name for 21 bit in bit flip עשרים Sub-string used in automation name for 20 bit in bit flip תשע עשרה Sub-string used in automation name for 19 bit in bit flip שמונה עשרה Sub-string used in automation name for 18 bit in bit flip שבע עשרה Sub-string used in automation name for 17 bit in bit flip שש עשרה Sub-string used in automation name for 16 bit in bit flip חמש עשרה Sub-string used in automation name for 15 bit in bit flip ארבע עשרה Sub-string used in automation name for 14 bit in bit flip שלוש עשרה Sub-string used in automation name for 13 bit in bit flip שתיים עשרה Sub-string used in automation name for 12 bit in bit flip אחת עשרה Sub-string used in automation name for 11 bit in bit flip עשר Sub-string used in automation name for 10 bit in bit flip תשיעית Sub-string used in automation name for 9 bit in bit flip שמינית Sub-string used in automation name for 8 bit in bit flip שביעית Sub-string used in automation name for 7 bit in bit flip שישית Sub-string used in automation name for 6 bit in bit flip חמישית Sub-string used in automation name for 5 bit in bit flip רביעית Sub-string used in automation name for 4 bit in bit flip שלישית Sub-string used in automation name for 3 bit in bit flip שנייה Sub-string used in automation name for 2 bit in bit flip ראשונה Sub-string used in automation name for 1 bit in bit flip הסיבית הכי פחות חשובה Used to describe the first bit of a binary number. Used in bit flip פתח תפריט נשלף של זיכרון This is the automation name and label for the memory button when the memory flyout is closed. סגור תפריט נשלף של זיכרון This is the automation name and label for the memory button when the memory flyout is open. שמור למעלה This is the tool tip automation name for the always-on-top button when out of always-on-top mode. חזרה לתצוגה מלאה This is the tool tip automation name for the always-on-top button when in always-on-top mode. זיכרון This is the tool tip automation name for the memory button. היסטוריה (Ctrl+H) This is the tool tip automation name for the history button. מקלדת החלפת סיביות This is the tool tip automation name for the bitFlip button. מקלדת מלאה This is the tool tip automation name for the numberPad button. נקה את כל הזיכרון (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. זיכרון The text that shows as the header for the memory list זיכרון The automation name for the Memory pivot item that is shown when Calculator is in wide layout. היסטוריה The text that shows as the header for the history list היסטוריה The automation name for the History pivot item that is shown when Calculator is in wide layout. ממיר Label for a control that activates the unit converter mode. מדעי Label for a control that activates scientific mode calculator layout רגיל Label for a control that activates standard mode calculator layout. מצב ממיר Screen reader prompt for a control that activates the unit converter mode. מצב מדעי Screen reader prompt for a control that activates scientific mode calculator layout מצב רגיל Screen reader prompt for a control that activates standard mode calculator layout. נקה את כל ההיסטוריה "ClearHistory" used on the calculator history pane that stores the calculation history. נקה את כל ההיסטוריה This is the tool tip automation name for the Clear History button. הסתר "HideHistory" used on the calculator history pane that stores the calculation history. רגיל The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. מדעי The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. מתכנת The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. ממיר The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". מחשבון The text that shows in the dropdown navigation control for the calculator group. ממיר The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". מחשבון The text that shows in the dropdown navigation control for the calculator group in upper case. ממירים Pluralized version of the converter group text, used for the screen reader prompt. מחשבונים Pluralized version of the calculator group text, used for the screen reader prompt. התצוגה היא %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". הביטוי %1 הוא, הקלט הנוכחי הוא %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". התצוגה היא %1 נק' {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. הביטוי הוא %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". הצג ערך שהועתק ללוח Screen reader prompt for the Calculator display copy button, when the button is invoked. היסטוריה Screen reader prompt for the history flyout זיכרון Screen reader prompt for the memory flyout הקסדצימלי %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". עשרוני %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". אוקטלי %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". בינארי %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". נקה את כל ההיסטוריה Screen reader prompt for the Calculator History Clear button ההיסטוריה נוקתה Screen reader prompt for the Calculator History Clear button, when the button is invoked. הסתר היסטוריה Screen reader prompt for the Calculator History Hide button פתח תפריט נשלף של היסטוריה Screen reader prompt for the Calculator History button, when the flyout is closed. סגור תפריט נשלף של היסטוריה Screen reader prompt for the Calculator History button, when the flyout is open. מאגר זיכרון Screen reader prompt for the Calculator Memory button אחסן בזיכרון (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. נקה את כל הזיכרון Screen reader prompt for the Calculator Clear Memory button הזיכרון נוקה Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. אחזור מהזיכרון Screen reader prompt for the Calculator Memory Recall button אחזור מהזיכרון (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. חיבור מהזיכרון Screen reader prompt for the Calculator Memory Add button הוספה מהזיכרון (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. חיסור מהזיכרון Screen reader prompt for the Calculator Memory Subtract button חיסור מהזיכרון (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. פריט ניקוי זיכרון Screen reader prompt for the Calculator Clear Memory button פריט ניקוי זיכרון This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. פריט הוספה מהזיכרון Screen reader prompt for the Calculator Memory Add button in the Memory list פריט הוספה מהזיכרון This is the tool tip automation name for the Calculator Memory Add button in the Memory list פריט חיסור מהזיכרון Screen reader prompt for the Calculator Memory Subtract button in the Memory list פריט חיסור מהזיכרון This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list פריט ניקוי זיכרון Screen reader prompt for the Calculator Clear Memory button פריט ניקוי זיכרון Text string for the Calculator Clear Memory option in the Memory list context menu פריט הוספה מהזיכרון Screen reader prompt for the Calculator Memory Add swipe button in the Memory list פריט הוספה מהזיכרון Text string for the Calculator Memory Add option in the Memory list context menu פריט חיסור מהזיכרון Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list פריט חיסור מהזיכרון Text string for the Calculator Memory Subtract option in the Memory list context menu מחק Text string for the Calculator Delete swipe button in the History list העתק Text string for the Calculator Copy option in the History list context menu מחק Text string for the Calculator Delete option in the History list context menu מחק פריט היסטוריה Screen reader prompt for the Calculator Delete swipe button in the History list מחק פריט היסטוריה Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button אפס Screen reader prompt for the Calculator number "0" button אחת Screen reader prompt for the Calculator number "1" button שתיים Screen reader prompt for the Calculator number "2" button שלוש Screen reader prompt for the Calculator number "3" button ארבע Screen reader prompt for the Calculator number "4" button חמש Screen reader prompt for the Calculator number "5" button שש Screen reader prompt for the Calculator number "6" button שבע Screen reader prompt for the Calculator number "7" button שמונה Screen reader prompt for the Calculator number "8" button תשע Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button וגם Screen reader prompt for the Calculator And button או Screen reader prompt for the Calculator Or button לא Screen reader prompt for the Calculator Not button סובב שמאלה Screen reader prompt for the Calculator ROL button סובב ימינה Screen reader prompt for the Calculator ROR button מקש shift שמאלי Screen reader prompt for the Calculator LSH button מקש shift ימני Screen reader prompt for the Calculator RSH button XOR Screen reader prompt for the Calculator XOR button החלפת מילה מרובעת Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". החלפת מילה כפולה Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". החלפת מילה Screen reader prompt for the Calculator word button. Should read as "Word toggle button". החלפת בתים Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". מקלדת החלפת סיביות Screen reader prompt for the Calculator bitFlip button מקלדת מלאה Screen reader prompt for the Calculator numberPad button תו הפרדה עשרוני Screen reader prompt for the "." button נקה ערך Screen reader prompt for the "CE" button נקה Screen reader prompt for the "C" button חלק ב Screen reader prompt for the divide button on the number pad הכפל ב Screen reader prompt for the multiply button on the number pad שווה Screen reader prompt for the equals button on the scientific operator keypad פונקציה הפיכה Screen reader prompt for the shift button on the number pad in scientific mode. פחות Screen reader prompt for the minus button on the number pad פחות We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 ועוד Screen reader prompt for the plus button on the number pad שורש ריבועי Screen reader prompt for the square root button on the scientific operator keypad אחוז Screen reader prompt for the percent button on the scientific operator keypad חיובי שלילי Screen reader prompt for the negate button on the scientific operator keypad חיובי שלילי Screen reader prompt for the negate button on the converter operator keypad הופכי Screen reader prompt for the invert button on the scientific operator keypad סוגר שמאלי Screen reader prompt for the Calculator "(" button on the scientific operator keypad סוגריים שמאליים, פתח ספירת סוגריים %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". סוגר ימני Screen reader prompt for the Calculator ")" button on the scientific operator keypad ספירת תווי סוגריים פותחים %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". אין תווי סוגריים פותחים לסגירה. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". סימון מדעי Screen reader prompt for the Calculator F-E the scientific operator keypad פונקציה היפרבולית Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad סינוס Screen reader prompt for the Calculator sin button on the scientific operator keypad קוסינוס Screen reader prompt for the Calculator cos button on the scientific operator keypad טנגנס Screen reader prompt for the Calculator tan button on the scientific operator keypad סינוס היפרבולי Screen reader prompt for the Calculator sinh button on the scientific operator keypad קוסינוס היפרבולי Screen reader prompt for the Calculator cosh button on the scientific operator keypad טנגנס היפרבולי Screen reader prompt for the Calculator tanh button on the scientific operator keypad ריבוע Screen reader prompt for the x squared on the scientific operator keypad. קוביה Screen reader prompt for the x cubed on the scientific operator keypad. ארקסינוס Screen reader prompt for the inverted sin on the scientific operator keypad. ארקוסינוס Screen reader prompt for the inverted cos on the scientific operator keypad. ארקטנגנס Screen reader prompt for the inverted tan on the scientific operator keypad. ארקסינוס היפרבולי Screen reader prompt for the inverted sinh on the scientific operator keypad. ארקוסינוס היפרבולי Screen reader prompt for the inverted cosh on the scientific operator keypad. ארקטנגנס היפרבולי Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' בחזקת Screen reader prompt for x power y button on the scientific operator keypad. עשר בחזקת Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' בחזקת Screen reader for the e power x on the scientific operator keypad. שורש 'y' של 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. לוגריתם Screen reader for the log base 10 on the scientific operator keypad לוגריתם טבעי Screen reader for the log base e on the scientific operator keypad מודולו Screen reader for the mod button on the scientific operator keypad מעריכי Screen reader for the exp button on the scientific operator keypad מעלה דקה שניה Screen reader for the exp button on the scientific operator keypad מעלות Screen reader for the exp button on the scientific operator keypad חלק השלם Screen reader for the int button on the scientific operator keypad חלק השבר Screen reader for the frac button on the scientific operator keypad עצרת Screen reader for the factorial button on the basic operator keypad החלפת מעלות This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". החלפת גראדים This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". החלפת רדיאנים This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". רשימה נפתחת של מצבים Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. רשימה נפתחת של קטגוריות Screen reader prompt for the Categories dropdown field. שמור למעלה Screen reader prompt for the Always-on-Top button when in normal mode. חזרה לתצוגה מלאה Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. שמור למעלה (Alt + חץ למעלה) This is the tool tip automation name for the Always-on-Top button when in normal mode. חזרה לתצוגה מלאה (Alt + חץ למטה) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. המר מ- %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. המר מ- %1 נקודה %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. ממיר ל- %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 שווה %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. יחידת קלט Screen reader prompt for the Unit Converter Units1 i.e. top units field. יחידת פלט Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. שטח Unit conversion category name called Area (eg. area of a sports field in square meters) נתונים Unit conversion category name called Data אנרגיה Unit conversion category name called Energy. (eg. the energy in a battery or in food) אורך Unit conversion category name called Length הספק Unit conversion category name called Power (eg. the power of an engine or a light bulb) מהירות Unit conversion category name called Speed זמן Unit conversion category name called Time נפח Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) טמפרטורה Unit conversion category name called Temperature משקל ומסה Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. לחץ Unit conversion category name called Pressure זווית Unit conversion category name called Angle מטבע Unit conversion category name called Currency אונקיות נוזליות (בריטניה) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אונקיה נוזלית (בריטניה) An abbreviation for a measurement unit of volume אונקיות נוזליות (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אונקיה נוזלית (ארה"ב) An abbreviation for a measurement unit of volume גלונים (בריטניה) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גלון (בריטניה) An abbreviation for a measurement unit of volume גלונים (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גלון (ארה"ב) An abbreviation for a measurement unit of volume ליטרים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume מיליליטרים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מ"ל An abbreviation for a measurement unit of volume פינטים (בריטניה) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פיינט (בריטניה) An abbreviation for a measurement unit of volume פינטים (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פיינט (ארה"ב) An abbreviation for a measurement unit of volume כפות (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כף (ארה"ב) An abbreviation for a measurement unit of volume כפיות (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כפית (ארה"ב) An abbreviation for a measurement unit of volume כפות (בריטניה) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כף (בריטניה) An abbreviation for a measurement unit of volume כפיות (בריטניה) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כפית (בריטניה) An abbreviation for a measurement unit of volume רבעי גלון (בריטניה) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רבע גלון (בריטניה) An abbreviation for a measurement unit of volume רבעי גלון (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רבע גלון (ארה"ב) An abbreviation for a measurement unit of volume כוסות (ארה"ב) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כוס (ארה"ב) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length אקר An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/דקה An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data קלוריה An abbreviation for a measurement unit of energy ס"מ An abbreviation for a measurement unit of length ס"מ לשניה An abbreviation for a measurement unit of speed סמ"ק An abbreviation for a measurement unit of volume רגל מעוקב An abbreviation for a measurement unit of volume אינץ' מעוקב An abbreviation for a measurement unit of volume מ"ק An abbreviation for a measurement unit of volume יארד מעוקב An abbreviation for a measurement unit of volume יום An abbreviation for a measurement unit of time מעלות צלזיוס An abbreviation for "degrees Celsius" מעלות פרנהייט An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy רגל An abbreviation for a measurement unit of length רגל לשניה An abbreviation for a measurement unit of speed רגל-פאונד An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data הקטר An abbreviation for a measurement unit of area כ"ס (ארה"ב) An abbreviation for a measurement unit of power שע' An abbreviation for a measurement unit of time אינץ' An abbreviation for a measurement unit of length ג'אול An abbreviation for a measurement unit of energy קוט"ש An abbreviation for a measurement unit of electricity consumption קלווין An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data קק"ל An abbreviation for a measurement unit of energy ק' ג'אול An abbreviation for a measurement unit of energy ק"מ An abbreviation for a measurement unit of length קמ"ש An abbreviation for a measurement unit of speed ק"ו An abbreviation for a measurement unit of power קשר An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data מ' An abbreviation for a measurement unit of length מ' לשניה An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time מייל An abbreviation for a measurement unit of length מייל לשעה An abbreviation for a measurement unit of speed מ"מ An abbreviation for a measurement unit of length אלפיות שניה An abbreviation for a measurement unit of time דקה An abbreviation for a measurement unit of time מייל ימי An abbreviation for a measurement unit of length מייל ימי An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data רגל-פאונד לדקה An abbreviation for a measurement unit of power שנייה An abbreviation for a measurement unit of time סמ"ר An abbreviation for a measurement unit of area רגל מרובע An abbreviation for a measurement unit of area אינץ' מרובע An abbreviation for a measurement unit of area קמ"ר An abbreviation for a measurement unit of area מ"ר An abbreviation for a measurement unit of area מייל מרובע An abbreviation for a measurement unit of area ממ"ר An abbreviation for a measurement unit of area יארד מרובע An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data ואט An abbreviation for a measurement unit of power שבוע An abbreviation for a measurement unit of time יארד An abbreviation for a measurement unit of length שנה An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data אקרים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יחידות תרמיות בריטיות A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יחידות BTU לדקה A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קלוריות תרמיות A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סנטימטרים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סנטימטרים לשניה A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סנטימטרים מעוקבים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ‏‏רגל מעוקב A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אינצ'ים מעוקבים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטרים מעוקבים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יארדים מעוקבים A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ימים A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) צלזיוס An option in the unit converter to select degrees Celsius פרנהייט An option in the unit converter to select degrees Fahrenheit אלקטרון וולטים A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רגל A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ‏‏רגל לשניה A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רגל-פאונדים A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רגל-פאונדים לדקה A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ג'יגה-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ג'יגה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) הקטרים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כוח סוס (ארה"ב) A measurement unit for power שעות A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אינצ'ים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ג'אולים A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילו-ואט לשעה A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קלווין An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". קילו-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילו-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קלוריות מזון A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילו-ג'אולים A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילומטרים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילומטרים לשעה A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילו-ואטים A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ‏‏קשרים A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מאך A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) מגה-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מגה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטרים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטרים לשניה A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיקרונים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיליוניות שניה A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיילים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיילים לשעה A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מילימטרים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אלפיות שניה A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) דקות A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) חצי בייט A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ננומטרים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יחידות אנגסטרום A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיילים ימיים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פטה-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פטה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) שניות A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סנטימטרים רבועים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) רגל רבועה A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אינצ'ים רבועים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילומטרים מרובעים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטרים מרובעים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיילים מרובעים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מילימטרים רבועים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יארדים רבועים A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טרה-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טרה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ואטים A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) שבועות A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יארדים A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) שנים A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קראט An abbreviation for a measurement unit of weight מעלות An abbreviation for a measurement unit of Angle רדיאן An abbreviation for a measurement unit of Angle גראד An abbreviation for a measurement unit of Angle אטמוספירות An abbreviation for a measurement unit of Pressure באר An abbreviation for a measurement unit of Pressure קילו פסקל An abbreviation for a measurement unit of Pressure מילימטר כספית An abbreviation for a measurement unit of Pressure פסקל An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure ס"ג An abbreviation for a measurement unit of weight דק"ג An abbreviation for a measurement unit of weight דצ"ג An abbreviation for a measurement unit of weight ג' An abbreviation for a measurement unit of weight הקטוגרם An abbreviation for a measurement unit of weight ק"ג An abbreviation for a measurement unit of weight טון (בריטניה) An abbreviation for a measurement unit of weight מ"ג An abbreviation for a measurement unit of weight אונקיה An abbreviation for a measurement unit of weight פאונד An abbreviation for a measurement unit of weight טון (ארה"ב) An abbreviation for a measurement unit of weight סטון An abbreviation for a measurement unit of weight ט' An abbreviation for a measurement unit of weight קראטים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מעלות A measurement unit for Angle. רדיאנים A measurement unit for Angle. גראדים A measurement unit for Angle. אטמוספירות A measurement unit for Pressure. בארים A measurement unit for Pressure. קילו פסקל A measurement unit for Pressure. מילימטרים כספית A measurement unit for Pressure. פסקל A measurement unit for Pressure. פאונד לאינץ' רבוע A measurement unit for Pressure. סנטיגרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) דקגרמים A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) דציגרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) הקטוגרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קילוגרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טונות ארוכות (בריטניה) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מיליגרמים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אונקיות A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פאונדים A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טונות קצרות (ארה"ב) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סטון A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טונות מטריות A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) תקליטורים A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) תקליטורים A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מגרשי כדורגל A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מגרשי כדורגל A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) תקליטונים A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) תקליטונים A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) דיסקי DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) דיסקי DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סוללות AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סוללות AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אטבי נייר A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אטבי נייר A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטוסי ג'מבו A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטוסי ג'מבו A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) נורות חשמל A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) נורות חשמל A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סוסים A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) סוסים A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אמבטיות A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אמבטיות A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פתיתי שלג A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פתיתי שלג A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פילים An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פילים An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) צבים A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) צבים A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטוסי סילון A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מטוסי סילון A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) לוויתנים A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) לוויתנים A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ספלי קפה A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ספלי קפה A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) בריכות שחייה An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) בריכות שחייה An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ידיים A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ידיים A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גליונות נייר A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גליונות נייר A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טירות A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טירות A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) בננות A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) בננות A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פרוסות עוגה A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פרוסות עוגה A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קטרים A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קטרים A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כדורי רגל A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) כדורי רגל A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פריט מהזיכרון Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) הקודם Screen reader prompt for the About panel back button הקודם Content of tooltip being displayed on AboutControlBackButton תנאי רשיון התוכנה של Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel תצוגה מקדימה Label displayed next to upcoming features הצהרת הפרטיות של Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel ‎© %1 Microsoft. כל הזכויות שמורות. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) כדי ללמוד כיצד תוכל לתרום לחשבון Windows, הוצא את הפרוייקט ב%HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel אודות Subtitle of about message on Settings page שלח משוב The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app אין היסטוריה עדיין. The text that shows as the header for the history list אין שום דבר שנשמר בזיכרון. The text that shows as the header for the memory list זיכרון Screen reader prompt for the negate button on the converter operator keypad לא ניתן להדביק ביטוי זה The paste operation cannot be performed, if the expression is invalid. גיבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) גיבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קיבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) קיבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) מבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) פבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) טבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אקסה-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אקסה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אקסבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) אקסבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) זטא-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) זטא-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) זבי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) זבי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יוטאביטים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יוטה-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יובי-סיביות A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) יובי-בתים A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) חישוב תאריך מצב חישוב Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". הוסף Add toggle button text הוסף או החסר ימים Add or Subtract days option תאריך Date result label הפרש בין תאריכים Date difference option ימים Add/Subtract Days label הפרש Difference result label מ From Date Header for Difference Date Picker חודשים Add/Subtract Months label חיסור Subtract toggle button text עד To Date Header for Difference Date Picker שנים Add/Subtract Years label תאריך מחוץ לגבול Out of bound message shown as result when the date calculation exceeds the bounds יום ימים חודש חודשים ‏‏אותם תאריכים שבוע שבועות שנה שנים הפרש %1 Automation name for reading out the date difference. %1 = Date difference התאריך שהתקבל %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date מצב מחשבון %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. מצב ממיר %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. מצב חישוב תאריך Automation name for when the mode header is focused and the current mode is Date calculation. רשימות זיכרון והיסטוריה Automation name for the group of controls for history and memory lists. פקדי זיכרון Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) פונקציות רגילות Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) פקדי תצוגה Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) אופרטורים רגילים Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) מקלדת מספרית Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) אופרטורי זוויות Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) פונקציות מדעיות Automation name for the group of Scientific functions. בחירת בסיס Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix אופרטורים של מתכנת Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). בחירת מצב קלט Automation name for the group of input mode toggling buttons. מקלדת להחלפת מצב סיביות Automation name for the group of bit toggling buttons. גלול שמאלה בביטוי Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. גלול ימינה בביטוי Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. הגעת למספר הספרות המרבי. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 נשמר בזיכרון {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". חריץ זיכרון %1 הוא %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". חריץ הזיכרון %1 נוקה {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". מחולק ב- Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. פעמים Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. פחות Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. ועוד Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. בחזקת Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. שורש y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. תזוזה שמאלה Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. תזוזה ימינה Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. או Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. XOR Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. וגם Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. עודכן ב- %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" עדכן שערים The text displayed for a hyperlink button that refreshes currency converter ratios. ייתכן שתחויב בתשלום עבור נתונים. The text displayed when users are on a metered connection and using currency converter. לא היתה אפשרות לקבל שערים חדשים. נסה שוב מאוחר יותר. The text displayed when currency ratio data fails to load. לא מקוון. בדוק את %HL%הגדרות הרשת%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} מעדכן שערי מטבע This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. שערי המטבע עודכנו This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. לא ניתן לעדכן שערי מטבע This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} נקה את כל הזיכרון (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. נקה את כל הזיכרון Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} מעלות סינוס Name for the sine function in degrees mode. Used by screen readers. רדיאני סינוס Name for the sine function in radians mode. Used by screen readers. גראדי סינוס Name for the sine function in gradians mode. Used by screen readers. מעלות סינוס הופכי Name for the inverse sine function in degrees mode. Used by screen readers. רדיאני סינוס הופכי Name for the inverse sine function in radians mode. Used by screen readers. גראדי סינוס הופכי Name for the inverse sine function in gradians mode. Used by screen readers. סינוס היפרבולי Name for the hyperbolic sine function. Used by screen readers. סינוס היפרבולי הופכי Name for the inverse hyperbolic sine function. Used by screen readers. מעלות קוסינוס Name for the cosine function in degrees mode. Used by screen readers. רדיאני קוסינוס Name for the cosine function in radians mode. Used by screen readers. גראדי קוסינוס Name for the cosine function in gradians mode. Used by screen readers. מעלות קוסינוס הופכי Name for the inverse cosine function in degrees mode. Used by screen readers. רדיאני קוסינוס הופכי Name for the inverse cosine function in radians mode. Used by screen readers. גרדיאנט קוסינוס הופכי Name for the inverse cosine function in gradians mode. Used by screen readers. קוסינוס היפרבולי Name for the hyperbolic cosine function. Used by screen readers. קוסינוס היפרבולי הופכי Name for the inverse hyperbolic cosine function. Used by screen readers. מעלות טנגנס Name for the tangent function in degrees mode. Used by screen readers. רדיאני טנגנס Name for the tangent function in radians mode. Used by screen readers. גראדיטנגנס Name for the tangent function in gradians mode. Used by screen readers. מעלות טנגנס הופכי Name for the inverse tangent function in degrees mode. Used by screen readers. רדיאני טנגנס הופכי Name for the inverse tangent function in radians mode. Used by screen readers. גראדי טנגנס הופכי Name for the inverse tangent function in gradians mode. Used by screen readers. טנגנס היפרבולי Name for the hyperbolic tangent function. Used by screen readers. טנגנס היפרבולי הופכי Name for the inverse hyperbolic tangent function. Used by screen readers. מעלות סקנס Name for the secant function in degrees mode. Used by screen readers. רדיאנים סקנס Name for the secant function in radians mode. Used by screen readers. גרדיאנים סקנס Name for the secant function in gradians mode. Used by screen readers. מעלות סקנס הופכי Name for the inverse secant function in degrees mode. Used by screen readers. רדיאנים סקנס הופכי Name for the inverse secant function in radians mode. Used by screen readers. גרדיאנים סקנס הופכי Name for the inverse secant function in gradians mode. Used by screen readers. סקנס היפרבולי Name for the hyperbolic secant function. Used by screen readers. סקנס היפרבולי הופכי Name for the inverse hyperbolic secant function. Used by screen readers. מעלות קוסקנס Name for the cosecant function in degrees mode. Used by screen readers. רדיאנים קוסקנס Name for the cosecant function in radians mode. Used by screen readers. גרדיאנים קוסקנט Name for the cosecant function in gradians mode. Used by screen readers. מעלות קוסקנס הופכי Name for the inverse cosecant function in degrees mode. Used by screen readers. רדיאנים קוסקנס הופכי Name for the inverse cosecant function in radians mode. Used by screen readers. גרדיאנים קוסקנס הופכי Name for the inverse cosecant function in gradians mode. Used by screen readers. קוסקנס היפרבולי Name for the hyperbolic cosecant function. Used by screen readers. קוסקנס היפרבולי הופכי Name for the inverse hyperbolic cosecant function. Used by screen readers. מעלות קוטנגנס Name for the cotangent function in degrees mode. Used by screen readers. רדיאנים קוטנגנס Name for the cotangent function in radians mode. Used by screen readers. גרדיאנים קוטנגנס Name for the cotangent function in gradians mode. Used by screen readers. מעלות קוטנגנס הופכי Name for the inverse cotangent function in degrees mode. Used by screen readers. רדיאנים קוטנגנס הופכי Name for the inverse cotangent function in radians mode. Used by screen readers. גרדיאנים קוטנגנס הופכי Name for the inverse cotangent function in gradians mode. Used by screen readers. קוטנגנס היפרבולי Name for the hyperbolic cotangent function. Used by screen readers. קוטנגנס היפרבולי הופכי Name for the inverse hyperbolic cotangent function. Used by screen readers. שורש בחזקה שלישית Name for the cube root function. Used by screen readers. רשום בסיס Name for the logbasey function. Used by screen readers. ערך מוחלט Name for the absolute value function. Used by screen readers. תזוזה שמאלה Name for the programmer function that shifts bits to the left. Used by screen readers. תזוזה ימינה Name for the programmer function that shifts bits to the right. Used by screen readers. עצרת Name for the factorial function. Used by screen readers. מעלה דקה שניה Name for the degree minute second (dms) function. Used by screen readers. לוגריתם טבעי Name for the natural log (ln) function. Used by screen readers. ריבוע Name for the square function. Used by screen readers. שורש y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". קטגוריית %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". הסכם השירותים של Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information פיונג An abbreviation for a measurement unit of area. פיונג A measurement unit for area. מ From Date Header for AddSubtract Date Picker גלול תוצאת חישוב שמאלה Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. גלול תוצאת חישוב ימינה Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. החישוב נכשל Text displayed when the application is not able to do a calculation רשום בסיס Y Screen reader prompt for the logBaseY button טריגונומטריה Displayed on the button that contains a flyout for the trig functions in scientific mode. פונקציה Displayed on the button that contains a flyout for the general functions in scientific mode. אי-שיוויונות Displayed on the button that contains a flyout for the inequality functions. אי-שיוויונות Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. תזוזת ביט Displayed on the button that contains a flyout for the bit shift functions in programmer mode. פונקציה הפיכה Screen reader prompt for the shift button in the trig flyout in scientific mode. פונקציה היפרבולית Screen reader prompt for the Calculator button HYP in the scientific flyout keypad סקנס Screen reader prompt for the Calculator button sec in the scientific flyout keypad סקאנס היפרבולי Screen reader prompt for the Calculator button sech in the scientific flyout keypad ארקסקאנס Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ארקסקאנס היפרבולי Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad קוסקנס Screen reader prompt for the Calculator button csc in the scientific flyout keypad קוסקאנס היפרבולי Screen reader prompt for the Calculator button csch in the scientific flyout keypad ארק-קוסקאנס Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ארק-קוסקאנס היפרבולי Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad קוטנגנס Screen reader prompt for the Calculator button cot in the scientific flyout keypad קוטנגנס היפרבולי Screen reader prompt for the Calculator button coth in the scientific flyout keypad ארק-קוטנגנס Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ארק-קוטנגנס היפרבולי Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad רצפה Screen reader prompt for the Calculator button floor in the scientific flyout keypad תקרה Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad אקראי Screen reader prompt for the Calculator button random in the scientific flyout keypad ערך מוחלט Screen reader prompt for the Calculator button abs in the scientific flyout keypad מספר אוילר Screen reader prompt for the Calculator button e in the scientific flyout keypad בחזקת שתיים Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. ולא Screen reader prompt for the Calculator button nor in the scientific flyout keypad ולא Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. סובב שמאלה עם העברה Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad סובב ימינה עם העברה Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad תזוזה שמאלה Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad מקש shift שמאלי Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. תזוזה ימינה Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad מקש shift ימני Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. תזוזה אריתמטי Label for a radio button that toggles arithmetic shift behavior for the shift operations. תזוזה לוגית Label for a radio button that toggles logical shift behavior for the shift operations. סיבוב תזוזה מעגלית Label for a radio button that toggles rotate circular behavior for the shift operations. סיבוב באמצעות תזוזת נשיאה מעגלית Label for a radio button that toggles rotate circular with carry behavior for the shift operations. שורש קוביה Screen reader prompt for the cube root button on the scientific operator keypad טריגונומטריה Screen reader prompt for the square root button on the scientific operator keypad פונקציות Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad לוחות אופרטורים מדעיים Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad לוחות אופרטורים של מתכנת Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad הסיבית הכי חשובה Used to describe the last bit of a binary number. Used in bit flip הצגת גרף Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. בצע התוויית נתונים Screen reader prompt for the plot button on the graphing calculator operator keypad רענן תצוגה באופן אוטומטי (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. תצוגת גרף Screen reader prompt for the graph view button. התאמה מיטבית אוטומטית Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set התאמה ידנית Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set תצוגת גרף אופסה Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph הגדל תצוגה (מקש Ctrl + מקש חיבור ('+')) This is the tool tip automation name for the Calculator zoom in button. הגדל תצוגה Screen reader prompt for the zoom in button. הקטן תצוגה (מקש Ctrl + מקש חיסור ('-')) This is the tool tip automation name for the Calculator zoom out button. הקטן תצוגה Screen reader prompt for the zoom out button. הוסף משוואה Placeholder text for the equation input button אין אפשרות לשתף כעת. If there is an error in the sharing action will display a dialog with this text. אישור Used on the dismiss button of the share action error dialog. ראה איזה גרף יצרתי עם 'מחשבון Windows' Sent as part of the shared content. The title for the share. משוואות Header that appears over the equations section when sharing משתנים Header that appears over the variables section when sharing תמונה של גרף עם משוואות Alt text for the graph image when output via Share משתנים Header text for variables area שלב Label text for the step text box Min Label text for the min text box Max Label text for the max text box צבע Label for the Line Color section of the style picker סגנון Label for the Line Style section of the style picker ניתוח פונקציה Title for KeyGraphFeatures Control הפונקציה אינה כוללת אסימפטוטות אופקיות. Message displayed when the graph does not have any horizontal asymptotes הפונקציה אינה כוללת נקודות פיתול. Message displayed when the graph does not have any inflection points הפונקציה אינה כוללת נקודות מקסימום. Message displayed when the graph does not have any maxima הפונקציה אינה כוללת נקודות מינימום. Message displayed when the graph does not have any minima קבוע String describing constant monotonicity of a function פוחתת String describing decreasing monotonicity of a function לא ניתן לקבוע את המונוטוניות של הפונקציה. Error displayed when monotonicity cannot be determined גודלת String describing increasing monotonicity of a function המונוטוניות של הפונקציה אינה ידועה. Error displayed when monotonicity is unknown לפונקציה אין אסימפטוטים אלכסוניות. Message displayed when the graph does not have any oblique asymptotes אין אפשרות לקבוע את הזוגיות של הפונקציה. Error displayed when parity is cannot be determined הפונקציה זוגית. Message displayed with the function parity is even הפונקציה אינה זוגית ואינה לא זוגית. Message displayed with the function parity is neither even nor odd הפונקציה לא זוגית. Message displayed with the function parity is odd זוגיות הפונקציה אינה ידועה. Error displayed when parity is unknown מחזוריות אינה נתמכת בפונקציה זו. Error displayed when periodicity is not supported הפונקציה אינה מחזורית. Message displayed with the function periodicity is not periodic מחזוריות הפונקציה אינה ידועה. Message displayed with the function periodicity is unknown תכונות אלה מורכבות מדי לחישוב 'מחשבון': Error displayed when analysis features cannot be calculated הפונקציה אינה כוללת אסימפטוטות אנכיות. Message displayed when the graph does not have any vertical asymptotes הפונקציה אינה כוללת נקודות חיתוך עם ציר x. Message displayed when the graph does not have any x-intercepts הפונקציה אינה כוללת נקודות חיתוך עם ציר y. Message displayed when the graph does not have any y-intercepts תחום Title for KeyGraphFeatures Domain Property אסימפטוטות אופקיות Title for KeyGraphFeatures Horizontal aysmptotes Property נקודות הטיה Title for KeyGraphFeatures Inflection points Property אין תמיכה בניתוח עבור פונקציה זו. Error displayed when graph analysis is not supported or had an error. הניתוח נתמך רק עבור פונקציות בתבנית f(x). דוגמה: y=x Error displayed when graph analysis detects the function format is not f(x). מקסימום Title for KeyGraphFeatures Maxima Property מינימום Title for KeyGraphFeatures Minima Property מונוטוניות Title for KeyGraphFeatures Monotonicity Property אסימפטוטות אלכסוניות Title for KeyGraphFeatures Oblique asymptotes Property זוגיות Title for KeyGraphFeatures Parity Property מחזור Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. טווח Title for KeyGraphFeatures Range Property אסימפטוטות אנכיות Title for KeyGraphFeatures Vertical asymptotes Property חיתוך עם ציר X Title for KeyGraphFeatures XIntercept Property חיתוך עם ציר Y Title for KeyGraphFeatures YIntercept Property לא היתה אפשרות לבצע ניתוח עבור הפונקציה. אין אפשרות לחשב את התחום עבור פונקציה זו. Error displayed when Domain is not returned from the analyzer. אין אפשרות לחשב את הטווח עבור פונקציה זו. Error displayed when Range is not returned from the analyzer. גלישה (המספר גדול מדי) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. מצב רדיאנים נדרש כדי ליצור גרף של המשוואה הזאת. Error that occurs during graphing when radians is required. פונקציה זו מורכבת מדי כדי ליצור גרף Error that occurs during graphing when the equation is too complex. מצב מעלות נדרש כדי ליצור גרף של הפונקציה הזאת Error that occurs during graphing when degrees is required פונקציית עצרת מכילה ארגומנט לא חוקי Error that occurs during graphing when a factorial function has an invalid argument. פונקציית עצרת מכילה ארגומנט גדול מדי לגרף Error that occurs during graphing when a factorial has a large n ניתן להשתמש ב-Modulo רק עם מספרים שלמים Error that occurs during graphing when modulo is used with a float. למשוואה אין פתרון Error that occurs during graphing when the equation has no solution. לא ניתן לחלק באפס Error that occurs during graphing when a divison by zero occurs. המשוואה מכילה תנאים לוגיים בלעדיים באופן הדדי Error that occurs during graphing when mutually exclusive conditions are used. המשוואה היא מתוך תחום Error that occurs during graphing when the equation is out of domain. הצגת גרף של משוואה זו אינה נתמכת Error that occurs during graphing when the equation is not supported. חסר תו סוגריים פותח במשוואה Error that occurs during graphing when the equation is missing a ( חסר תו סוגריים סוגר במשוואה Error that occurs during graphing when the equation is missing a ) יש יותר מדי נקודות עשרוניות במספר Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 לנקודה עשרונית חסרות ספרות Error that occurs during graphing with a decimal point without digits ‏‏סוף ביטוי בלתי צפוי Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* תווים לא צפויים בביטוי Error that occurs during graphing when there is an unexpected token. תווים לא חוקיים בביטוי Error that occurs during graphing when there is an invalid token. יש יותר מדי סימני שווה Error that occurs during graphing when there are too many equals. הפונקציה צריכה להכיל לפחות משתנה x או y אחד Error that occurs during graphing when the equation is missing x or y. ביטוי לא חוקי Error that occurs during graphing when an invalid syntax is used. הביטוי ריק Error that occurs during graphing when the expression is empty נעשה שימוש ב‘שווה‘ ללא משוואה Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) חסרים סוגריים לאחר שם פונקציה Error that occurs during graphing when parenthesis are missing after a function. פעולה מתמטית מכילה את מספר הפרמטרים הלא נכון Error that occurs during graphing when a function has the wrong number of parameters שם המשתנה אינו חוקי Error that occurs during graphing when a variable name is invalid. חסר תו סוגריים מרובעים פותח במשוואה Error that occurs during graphing when a { is missing חסר תו סוגריים מרובעים סוגר במשוואה Error that occurs during graphing when a } is missing. לא ניתן להשתמש ב-"i" וב-"I" כשמות משתנים Error that occurs during graphing when i or I is used. לא ניתן ליצור גרף למשוואה General error that occurs during graphing. לא ניתן היה לפתור את הספרה עבור הבסיס הנתון Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). הבסיס חייב להיות גדול מ-2 וקטן מ-36 Error that occurs during graphing when the base is out of range. פעולה מתמטית מחייבת לאחד מהפרמטרים שלה להיות משתנה Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. המשוואה מערבולת אופרנדים לוגיים וסקלריים Error that occurs during graphing when operands are mixed. Such as true and 1. לא ניתן להשתמש ב-x או ב-y בגבולות העליון או התחתון Error that occurs during graphing when x or y is used in integral upper limits. לא ניתן להשתמש ב-x או ב-y בנקודת ההגבלה Error that occurs during graphing when x or y is used in the limit point. לא ניתן להשתמש באינסוף מורכב Error that occurs during graphing when complex infinity is used לא ניתן להשתמש במספרים מורכבים במצב אי-שוויון Error that occurs during graphing when complex numbers are used in inequalities. חזרה לרשימת הפונקציות This is the tooltip for the back button in the equation analysis page in the graphing calculator חזרה לרשימת הפונקציות This is the automation name for the back button in the equation analysis page in the graphing calculator נתח פונקציה This is the tooltip for the analyze function button נתח פונקציה This is the automation name for the analyze function button נתח פונקציה This is the text for the for the analyze function context menu command הסר משוואה This is the tooltip for the graphing calculator remove equation buttons הסר משוואה This is the automation name for the graphing calculator remove equation buttons הסר משוואה This is the text for the for the remove equation context menu command שתף This is the automation name for the graphing calculator share button. שתף This is the tooltip for the graphing calculator share button. שנה סגנון משוואה This is the tooltip for the graphing calculator equation style button שנה סגנון משוואה This is the automation name for the graphing calculator equation style button שנה סגנון משוואה This is the text for the for the equation style context menu command הצג משוואה This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. הסתר משוואה This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. הצג את משוואה %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. הסתר את משוואה %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. הפסק מעקב This is the tooltip/automation name for the graphing calculator stop tracing button התחל מעקב This is the tooltip/automation name for the graphing calculator start tracing button חלון הצגה של גרף, ציר x המאוגד על-ידי %1 ו%2, ציר y המאוגד על-ידי %3 ו%4, מציג משוואות %5 {Locked="%1","%2", "%3", "%4", "%5"}. קבע תצורת מחוון This is the tooltip text for the slider options button in Graphing Calculator קבע תצורת מחוון This is the automation name text for the slider options button in Graphing Calculator עבור למצב משוואה Used in Graphing Calculator to switch the view to the equation mode עבור למצב גרף Used in Graphing Calculator to switch the view to the graph mode עבור למצב משוואה Used in Graphing Calculator to switch the view to the equation mode המצב הנוכחי הוא מצב משוואה Announcement used in Graphing Calculator when switching to the equation mode המצב הנוכחי הוא מצב גרף Announcement used in Graphing Calculator when switching to the graph mode חלון Heading for window extents on the settings מעלות Degrees mode on settings page גראדים Gradian mode on settings page רדיאנים Radians mode on settings page יחידות Heading for Unit's on the settings איפוס תצוגה Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header אפשרויות גרף This is the tooltip text for the graph options button in Graphing Calculator אפשרויות גרף This is the automation name text for the graph options button in Graphing Calculator אפשרויות גרף Heading for the Graph options flyout in Graphing mode. אפשרויות משתנה Screen reader prompt for the variable settings toggle button החלף אפשרויות משתנה Tool tip for the variable settings toggle button עובי קו Heading for the Graph options flyout in Graphing mode. אפשרויות קו Heading for the equation style flyout in Graphing mode. רוחב קו קטן Automation name for line width setting רוחב קו בינוני Automation name for line width setting רוחב קו גדול Automation name for line width setting רוחב קו גדול מאוד Automation name for line width setting הזן ביטוי this is the placeholder text used by the textbox to enter an equation העתק Copy menu item for the graph context menu גזור Cut menu item from the Equation TextBox העתק Copy menu item from the Equation TextBox הדבק Paste menu item from the Equation TextBox בטל Undo menu item from the Equation TextBox בחר הכול Select all menu item from the Equation TextBox קלט של פונקציה The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. קלט של פונקציה The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. חלונית קלט של פונקציה The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. לוח משתנים The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. רשימת משתנים The automation name for the Variable ListView that is shown when Calculator is in graphing mode. פריט רשימת %1 של משתנים The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. תיבת טקסט של ערך משתנה The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. מחוון של ערך משתנה The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. תיבת טקסט של ערך משתנה מינימלי The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. תיבת טקסט של ערך שלב של משתנה The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. תיבת טקסט של ערך משתנה מקסימלי The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. סגנון קו מלא Name of the solid line style for a graphed equation סגנון קו מנוקד Name of the dotted line style for a graphed equation סגנון קו מקווקו Name of the dashed line style for a graphed equation כחול-צי Name of color in the color picker קצף ים Name of color in the color picker סגול Name of color in the color picker ירוק Name of color in the color picker ירוק מנטה Name of color in the color picker ירוק כהה Name of color in the color picker פחם Name of color in the color picker אדום Name of color in the color picker שזיף בהיר Name of color in the color picker מגנטה Name of color in the color picker זהב צהוב Name of color in the color picker כתום בהיר Name of color in the color picker חום Name of color in the color picker שחור Name of color in the color picker לבן Name of color in the color picker צבע 1 Name of color in the color picker צבע 2 Name of color in the color picker ‏‏צבע 3 Name of color in the color picker ‏‏צבע 4 Name of color in the color picker ערכת נושא של גרף Graph settings heading for the theme options בהיר תמיד Graph settings option to set graph to light theme התאם ערכת נושא של יישום Graph settings option to set graph to match the app theme ערכת נושא This is the automation name text for the Graph settings heading for the theme options בהיר תמיד This is the automation name text for the Graph settings option to set graph to light theme התאם ערכת נושא של יישום This is the automation name text for the Graph settings option to set graph to match the app theme הפונקציה הוסרה Announcement used in Graphing Calculator when a function is removed from the function list תיבת משוואה של ניתוח פונקציות This is the automation name text for the equation box in the function analysis panel שווה Screen reader prompt for the equal button on the graphing calculator operator keypad קטן מ: Screen reader prompt for the Less than button קטן או שווה Screen reader prompt for the Less than or equal button שווה Screen reader prompt for the Equal button גדול או שווה Screen reader prompt for the Greater than or equal button גדול מ: Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad שלח Screen reader prompt for the submit button on the graphing calculator operator keypad ניתוח פונקציה Screen reader prompt for the function analysis grid אפשרויות גרף Screen reader prompt for the graph options panel רשימות זיכרון והיסטוריה Automation name for the group of controls for history and memory lists. רשימת זיכרון Automation name for the group of controls for memory list. חריץ ההיסטוריה %1 נוקה {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". מחשבון תמיד עליון Announcement to indicate calculator window is always shown on top. מחשבון בחזרה לתצוגה מלאה Announcement to indicate calculator window is now back to full view. האפשרות 'תזוזה אריתמטית' נבחרה Label for a radio button that toggles arithmetic shift behavior for the shift operations. האפשרות 'תזוזה לוגית' נבחרה Label for a radio button that toggles logical shift behavior for the shift operations. האפשרות 'סובב תזוזה מעגלית' נבחרה Label for a radio button that toggles rotate circular behavior for the shift operations. האפשרות 'סובב באמצעות תזוזה מעגלית' נבחרה Label for a radio button that toggles rotate circular with carry behavior for the shift operations. הגדרות Header text of Settings page מראה Subtitle of appearance setting on Settings page ערכת הנושא של האפליקציה Title of App theme expander בחר איזו ערכת נושא של אפליקציה תוצג Description of App theme expander בהיר Lable for light theme option כהה Lable for dark theme option השתמש בהגדרות המערכת Lable for the app theme option to use system setting הקודם Screen reader prompt for the Back button in title bar to back to main page דף ההגדרות Announcement used when Settings page is opened פתח את התפריט תלוי ההקשר כדי להציג את הפעולות הזמינות Screen reader prompt for the context menu of the expression box אישור The text of OK button to dismiss an error dialog. לא הצלחנו לשחזר צילום זה. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/hi-IN/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 अमान्य इनपुट Error message shown when the input makes a function fail, like log(-1) परिणाम अनिश्चित है Error message shown when there's no possible value for a function. पर्याप्त मेमोरी नहीं Error message shown when we run out of memory during a calculation. ओवरफ़्लो Error message shown when there's an overflow during the calculation. परिणाम निश्चित नहीं है Same as 101 परिणाम निश्चित नहीं है Same 101 ओवरफ़्लो Same as 107 ओवरफ़्लो Same 107 शून्य से भाग नहीं दिया जा सकता Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/hi-IN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 कैल्क्यूलेटर {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. कैल्क्यूलेटर [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows कैल्‍क्‍यूलेटर {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows कैल्‍क्‍यूलेटर [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. कैल्क्यूलेटर {@Appx_Description@} This description is used for the official application when published through Windows Store. कैल्क्यूलेटर [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. प्रतिलिपि बनाएँ Copy context menu string चिपकाएँ Paste context menu string लगभग इसके बराबर है The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, मान %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 बिट {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63वाँ Sub-string used in automation name for 63 bit in bit flip 62वाँ Sub-string used in automation name for 62 bit in bit flip 61वाँ Sub-string used in automation name for 61 bit in bit flip 60वाँ Sub-string used in automation name for 60 bit in bit flip 59वाँ Sub-string used in automation name for 59 bit in bit flip 58वाँ Sub-string used in automation name for 58 bit in bit flip 57वाँ Sub-string used in automation name for 57 bit in bit flip 56वाँ Sub-string used in automation name for 56 bit in bit flip 55वाँ Sub-string used in automation name for 55 bit in bit flip 54वाँ Sub-string used in automation name for 54 bit in bit flip 53वाँ Sub-string used in automation name for 53 bit in bit flip 52वाँ Sub-string used in automation name for 52 bit in bit flip 51वाँ Sub-string used in automation name for 51 bit in bit flip 50वाँ Sub-string used in automation name for 50 bit in bit flip 49वाँ Sub-string used in automation name for 49 bit in bit flip 48वाँ Sub-string used in automation name for 48 bit in bit flip 47वाँ Sub-string used in automation name for 47 bit in bit flip 46वाँ Sub-string used in automation name for 46 bit in bit flip 45वाँ Sub-string used in automation name for 45 bit in bit flip 44वाँ Sub-string used in automation name for 44 bit in bit flip 43वाँ Sub-string used in automation name for 43 bit in bit flip 42वाँ Sub-string used in automation name for 42 bit in bit flip 41वाँ Sub-string used in automation name for 41 bit in bit flip 40वाँ Sub-string used in automation name for 40 bit in bit flip 39वाँ Sub-string used in automation name for 39 bit in bit flip 38वाँ Sub-string used in automation name for 38 bit in bit flip 37वाँ Sub-string used in automation name for 37 bit in bit flip 36वाँ Sub-string used in automation name for 36 bit in bit flip 35वाँ Sub-string used in automation name for 35 bit in bit flip 34वाँ Sub-string used in automation name for 34 bit in bit flip 33वाँ Sub-string used in automation name for 33 bit in bit flip 32वाँ Sub-string used in automation name for 32 bit in bit flip 31वाँ Sub-string used in automation name for 31 bit in bit flip 30वाँ Sub-string used in automation name for 30 bit in bit flip 29वाँ Sub-string used in automation name for 29 bit in bit flip 28वाँ Sub-string used in automation name for 28 bit in bit flip 27वाँ Sub-string used in automation name for 27 bit in bit flip 26वाँ Sub-string used in automation name for 26 bit in bit flip 25वाँ Sub-string used in automation name for 25 bit in bit flip 24वाँ Sub-string used in automation name for 24 bit in bit flip 23वाँ Sub-string used in automation name for 23 bit in bit flip 22वाँ Sub-string used in automation name for 22 bit in bit flip 21वाँ Sub-string used in automation name for 21 bit in bit flip 20वाँ Sub-string used in automation name for 20 bit in bit flip 19वाँ Sub-string used in automation name for 19 bit in bit flip 18वाँ Sub-string used in automation name for 18 bit in bit flip 17वाँ Sub-string used in automation name for 17 bit in bit flip 16वाँ Sub-string used in automation name for 16 bit in bit flip 15वाँ Sub-string used in automation name for 15 bit in bit flip 14वाँ Sub-string used in automation name for 14 bit in bit flip 13वाँ Sub-string used in automation name for 13 bit in bit flip 12वाँ Sub-string used in automation name for 12 bit in bit flip 11वाँ Sub-string used in automation name for 11 bit in bit flip 10वाँ Sub-string used in automation name for 10 bit in bit flip 9वाँ Sub-string used in automation name for 9 bit in bit flip 8वाँ Sub-string used in automation name for 8 bit in bit flip 7वाँ Sub-string used in automation name for 7 bit in bit flip 6वाँ Sub-string used in automation name for 6 bit in bit flip 5वाँ Sub-string used in automation name for 5 bit in bit flip 4था Sub-string used in automation name for 4 bit in bit flip 3रा Sub-string used in automation name for 3 bit in bit flip 2रा Sub-string used in automation name for 2 bit in bit flip 1ला Sub-string used in automation name for 1 bit in bit flip कम से कम महत्वपूर्ण बिट Used to describe the first bit of a binary number. Used in bit flip मेमोरी फ़्लाईआउट खोलें This is the automation name and label for the memory button when the memory flyout is closed. मेमोरी फ़्लाईआउट बंद करें This is the automation name and label for the memory button when the memory flyout is open. शीर्ष पर रखें This is the tool tip automation name for the always-on-top button when out of always-on-top mode. पूर्ण दृश्य पर वापस जाएँ This is the tool tip automation name for the always-on-top button when in always-on-top mode. मेमोरी This is the tool tip automation name for the memory button. इतिहास (Ctrl+H) This is the tool tip automation name for the history button. बिट टॉगल करने वाला कीपैड This is the tool tip automation name for the bitFlip button. पूर्ण कीपैड This is the tool tip automation name for the numberPad button. सभी मेमोरी साफ़ करें (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. मेमोरी The text that shows as the header for the memory list मेमोरी The automation name for the Memory pivot item that is shown when Calculator is in wide layout. इतिहास The text that shows as the header for the history list इतिहास The automation name for the History pivot item that is shown when Calculator is in wide layout. कन्वर्टर Label for a control that activates the unit converter mode. वैज्ञानिक Label for a control that activates scientific mode calculator layout मानक Label for a control that activates standard mode calculator layout. परिर्वतक मोड Screen reader prompt for a control that activates the unit converter mode. वैज्ञानिक मोड Screen reader prompt for a control that activates scientific mode calculator layout मानक मोड Screen reader prompt for a control that activates standard mode calculator layout. सभी इतिहास साफ़ करें "ClearHistory" used on the calculator history pane that stores the calculation history. सभी इतिहास साफ़ करें This is the tool tip automation name for the Clear History button. छुपाएँ "HideHistory" used on the calculator history pane that stores the calculation history. मानक The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. वैज्ञानिक The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. प्रोग्रामर The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. कनवर्टर The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". कैल्क्यूलेटर The text that shows in the dropdown navigation control for the calculator group. कनवर्टर The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". कैल्क्यूलेटर The text that shows in the dropdown navigation control for the calculator group in upper case. कनवर्टर्स Pluralized version of the converter group text, used for the screen reader prompt. कैल्क्यूलेटर्स Pluralized version of the calculator group text, used for the screen reader prompt. प्रदर्शन %1 है {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". व्यंजक %1 है, वर्तमान इनपुट %2 है {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". प्रदर्शन %1 पॉइंट है {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. व्यंजक है %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". क्लिपबोर्ड पर प्रतिलिपि किया गया मान प्रदर्शित करें Screen reader prompt for the Calculator display copy button, when the button is invoked. इतिहास Screen reader prompt for the history flyout मेमोरी Screen reader prompt for the memory flyout हेक्साडेसिमल %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". दशमलव %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ऑक्टल %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". बाइनरी %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". सभी इतिहास साफ़ करें Screen reader prompt for the Calculator History Clear button इतिहास साफ़ किया गया Screen reader prompt for the Calculator History Clear button, when the button is invoked. इतिहास को छुपाएँ Screen reader prompt for the Calculator History Hide button इतिहास फ़्लाईआउट खोलें Screen reader prompt for the Calculator History button, when the flyout is closed. इतिहास फ़्लाईआउट बंद करें Screen reader prompt for the Calculator History button, when the flyout is open. मेमोरी संग्रह Screen reader prompt for the Calculator Memory button मेमोरी संग्रह (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. सभी मेमोरी साफ़ करें Screen reader prompt for the Calculator Clear Memory button मेमोरी साफ़ की गई Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. मेमोरी रिकॉल Screen reader prompt for the Calculator Memory Recall button मेमोरी रिकॉल (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. मेमोरी जोड़ें Screen reader prompt for the Calculator Memory Add button मेमोरी जोड़ें (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. मेमोरी घटाएँ Screen reader prompt for the Calculator Memory Subtract button मेमोरी घटाएँ (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. मेमोरी आइटम साफ़ करें Screen reader prompt for the Calculator Clear Memory button मेमोरी आइटम साफ़ करें This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. मेमोरी आइटम में जोड़ें Screen reader prompt for the Calculator Memory Add button in the Memory list मेमोरी आइटम में जोड़ें This is the tool tip automation name for the Calculator Memory Add button in the Memory list मेमोरी आइटम से घटाएँ Screen reader prompt for the Calculator Memory Subtract button in the Memory list मेमोरी आइटम से घटाएँ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list मेमोरी आइटम साफ़ करें Screen reader prompt for the Calculator Clear Memory button मेमोरी आइटम साफ़ करें Text string for the Calculator Clear Memory option in the Memory list context menu मेमोरी आइटम में जोड़ें Screen reader prompt for the Calculator Memory Add swipe button in the Memory list मेमोरी आइटम में जोड़ें Text string for the Calculator Memory Add option in the Memory list context menu मेमोरी आइटम से घटाएँ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list मेमोरी आइटम से घटाएँ Text string for the Calculator Memory Subtract option in the Memory list context menu हटाएँ Text string for the Calculator Delete swipe button in the History list प्रतिलिपि बनाएँ Text string for the Calculator Copy option in the History list context menu हटाएँ Text string for the Calculator Delete option in the History list context menu इतिहास आइटम हटाएँ Screen reader prompt for the Calculator Delete swipe button in the History list इतिहास आइटम हटाएँ Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button शून्य Screen reader prompt for the Calculator number "0" button एक Screen reader prompt for the Calculator number "1" button दो Screen reader prompt for the Calculator number "2" button तीन Screen reader prompt for the Calculator number "3" button चार Screen reader prompt for the Calculator number "4" button पाँच Screen reader prompt for the Calculator number "5" button छः Screen reader prompt for the Calculator number "6" button सात Screen reader prompt for the Calculator number "7" button आठ Screen reader prompt for the Calculator number "8" button नौ Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button और Screen reader prompt for the Calculator And button अथवा Screen reader prompt for the Calculator Or button नहीं Screen reader prompt for the Calculator Not button बाईं ओर घुमाएँ Screen reader prompt for the Calculator ROL button दाईं ओर घुमाएँ Screen reader prompt for the Calculator ROR button बायाँ shift Screen reader prompt for the Calculator LSH button दायाँ शिफ्ट Screen reader prompt for the Calculator RSH button अनन्य या Screen reader prompt for the Calculator XOR button चौगुना शब्द टॉगल Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". दोहरा शब्द टॉगल Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". शब्द टॉगल Screen reader prompt for the Calculator word button. Should read as "Word toggle button". बाइट टॉगल Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". बिट टॉगल करने वाला कीपैड Screen reader prompt for the Calculator bitFlip button पूर्ण कीपैड Screen reader prompt for the Calculator numberPad button दशमलव विभाजक Screen reader prompt for the "." button प्रविष्टि साफ़ करें Screen reader prompt for the "CE" button साफ़ करें Screen reader prompt for the "C" button इससे विभाजित Screen reader prompt for the divide button on the number pad इससे गुणा करें Screen reader prompt for the multiply button on the number pad बराबर Screen reader prompt for the equals button on the scientific operator keypad इन्वर्स फ़ंक्शन Screen reader prompt for the shift button on the number pad in scientific mode. माइनस Screen reader prompt for the minus button on the number pad माइनस We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 धन Screen reader prompt for the plus button on the number pad वर्ग मूल Screen reader prompt for the square root button on the scientific operator keypad प्रतिशत Screen reader prompt for the percent button on the scientific operator keypad धनात्मक ऋणात्मक Screen reader prompt for the negate button on the scientific operator keypad धनात्मक ऋणात्मक Screen reader prompt for the negate button on the converter operator keypad व्युत्क्रम Screen reader prompt for the invert button on the scientific operator keypad बायाँ कोष्ठक Screen reader prompt for the Calculator "(" button on the scientific operator keypad बायाँ कोष्ठक, खुले कोष्ठक की संख्या %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". दायाँ कोष्ठक Screen reader prompt for the Calculator ")" button on the scientific operator keypad खुला कोष्ठक संख्या %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". बंद करने के लिए कोई खुला कोष्ठक नहीं है. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". वैज्ञानिक नोटेशन Screen reader prompt for the Calculator F-E the scientific operator keypad अतिपरवलयिक फ़ंक्शन Screen reader prompt for the Calculator button HYP in the scientific operator keypad पाई Screen reader prompt for the Calculator pi button on the scientific operator keypad ज्या Screen reader prompt for the Calculator sin button on the scientific operator keypad कोज्या Screen reader prompt for the Calculator cos button on the scientific operator keypad स्पर्शज्या Screen reader prompt for the Calculator tan button on the scientific operator keypad हाइपरबॉलिक साइन Screen reader prompt for the Calculator sinh button on the scientific operator keypad हाइपरबॉलिक कोसाइन Screen reader prompt for the Calculator cosh button on the scientific operator keypad हाइपरबॉलिक टैंजेंट Screen reader prompt for the Calculator tanh button on the scientific operator keypad वर्ग Screen reader prompt for the x squared on the scientific operator keypad. क्यूब Screen reader prompt for the x cubed on the scientific operator keypad. चाप ज्या Screen reader prompt for the inverted sin on the scientific operator keypad. चाप कोज्या Screen reader prompt for the inverted cos on the scientific operator keypad. चाप स्पर्शज्या Screen reader prompt for the inverted tan on the scientific operator keypad. हाइपरबॉलिक चाप ज्या Screen reader prompt for the inverted sinh on the scientific operator keypad. हाइपरबॉलिक चाप कोज्या Screen reader prompt for the inverted cosh on the scientific operator keypad. हाइपरबॉलिक चाप स्पर्शज्या Screen reader prompt for the inverted tanh on the scientific operator keypad. घातांक का 'X' Screen reader prompt for x power y button on the scientific operator keypad. घातांक का दस Screen reader prompt for the 10 power x button on the scientific operator keypad. घातांक का 'e' Screen reader for the e power x on the scientific operator keypad. ‘x’ का ‘y’ वर्गमूल Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. लघुगणक Screen reader for the log base 10 on the scientific operator keypad प्राकृतिक लघुगणक Screen reader for the log base e on the scientific operator keypad मापांक Screen reader for the mod button on the scientific operator keypad घातांक Screen reader for the exp button on the scientific operator keypad डिग्री मिनट सेकंड Screen reader for the exp button on the scientific operator keypad डिग्री Screen reader for the exp button on the scientific operator keypad पूर्णांक भाग Screen reader for the int button on the scientific operator keypad भिन्नात्मक भाग Screen reader for the frac button on the scientific operator keypad क्रमगुणन Screen reader for the factorial button on the basic operator keypad डिग्री टॉगल This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". ग्रेडियंस टॉगल This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". रेडियन टॉगल This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". मोड ड्रॉपडाउन Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. श्रेणियाँ ड्रॉपडाउन Screen reader prompt for the Categories dropdown field. शीर्ष पर रखें Screen reader prompt for the Always-on-Top button when in normal mode. पूर्ण दृश्य पर वापस जाएँ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. शीर्ष पर रखें (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. पूर्ण दृश्य पर वापस जाएँ (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 से कनवर्ट करें Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 दशमलव %2 से कनवर्ट करें {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 में रूपांतरित करता है Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 बराबर %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. इनपुट इकाई Screen reader prompt for the Unit Converter Units1 i.e. top units field. आउटपुट इकाई Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. क्षेत्र Unit conversion category name called Area (eg. area of a sports field in square meters) डेटा Unit conversion category name called Data ऊर्जा Unit conversion category name called Energy. (eg. the energy in a battery or in food) लंबाई Unit conversion category name called Length पावर Unit conversion category name called Power (eg. the power of an engine or a light bulb) गति Unit conversion category name called Speed समय Unit conversion category name called Time वॉल्यूम Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) तापमान Unit conversion category name called Temperature भार और द्रव्यमान Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. दाब Unit conversion category name called Pressure कोण Unit conversion category name called Angle मुद्रा Unit conversion category name called Currency फ़्लूड आउंस (यूके) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (यूके) An abbreviation for a measurement unit of volume फ़्लूड आउंस (यूएस) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ्लूड आउंस (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume गैलन (यूके) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) गैलन (यूके) An abbreviation for a measurement unit of volume गैलन (संयुक्त राज्य अमेरिका) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) गैलन (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume लीटर A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume मिलीलीटर A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मि.ली. An abbreviation for a measurement unit of volume पिंट्स (यूके) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (यूके) An abbreviation for a measurement unit of volume पिंट्स (यूएस) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume टेबलस्पून्स (संयुक्त राज्य अमेरिका) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेबलस्पून (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume टीस्पून्स (संयुक्त राज्य अमेरिका) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टीस्पून (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume टेबलस्पून (यूके) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेबलस्पून (यूके) An abbreviation for a measurement unit of volume टीस्पून्स (यूके) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टीस्पून (यूके) An abbreviation for a measurement unit of volume क्वार्ट्ज़ (यूके) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्वार्ट (यूके) An abbreviation for a measurement unit of volume क्वार्ट्ज़ (संयुक्त राज्य अमेरिका) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्वार्ट (यूएस) An abbreviation for a measurement unit of volume कप्स (संयुक्त राज्य अमेरिका) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कप (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/मिनट An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data कैलोरी An abbreviation for a measurement unit of energy सेमी An abbreviation for a measurement unit of length सेमी/सेकंड An abbreviation for a measurement unit of speed सेमी³ An abbreviation for a measurement unit of volume फ़ीट³ An abbreviation for a measurement unit of volume इंच³ An abbreviation for a measurement unit of volume मी³ An abbreviation for a measurement unit of volume यार्ड³ An abbreviation for a measurement unit of volume दिन An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy फ़ीट An abbreviation for a measurement unit of length फ़ीट/वर्ग An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (संयुक्त राज्य) An abbreviation for a measurement unit of power घंटे An abbreviation for a measurement unit of time इंच An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data कि. कैलोरी An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy किमी An abbreviation for a measurement unit of length किमी/घंटे An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data मी An abbreviation for a measurement unit of length मी/सेकंड An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time मी An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed मिमी An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time मिनट An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data पेटाबाइट An abbreviation for a measurement unit of data फ़ीट•पाउंड/मिनट An abbreviation for a measurement unit of power सेकंड An abbreviation for a measurement unit of time सेमी² An abbreviation for a measurement unit of area फ़ीट² An abbreviation for a measurement unit of area इंच² An abbreviation for a measurement unit of area किमी² An abbreviation for a measurement unit of area मी² An abbreviation for a measurement unit of area मी² An abbreviation for a measurement unit of area मिमी² An abbreviation for a measurement unit of area यार्ड² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time यार्ड An abbreviation for a measurement unit of length वर्ष An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data पाई An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data यी An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data एकड़ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बिट A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ब्रिटिश थर्मल इकाइयाँ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/मिनट A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) थर्मल कैलोरी A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सेंटीमीटर A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सेंटीमीटर प्रति सेकंड A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्यूबिक सेंटीमीटर A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्यूबिक फ़ीट A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्यूबिक इंच A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्यूबिक मीटर A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) क्यूबिक यार्ड A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) दिन A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सेल्सियस An option in the unit converter to select degrees Celsius फ़ारेनहाइट An option in the unit converter to select degrees Fahrenheit इलेक्ट्रॉन वोल्ट A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़ीट A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़ीट प्रति सेकंड A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़ुट-पाउंड A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़ुट-पाउंड/मिनट A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) गीगाबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) गीगाबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हेक्टेयर A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हॉर्सपावर (यूएस) A measurement unit for power घंटे A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) इंच A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) जूल A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोवाट-घंटे A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) केल्विन An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". किलोबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़ूड कैलोरीज़ A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोजूल A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोमीटर A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोमीटर प्रति घंटे A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोवॉट्स A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) नॉट A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मैक A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) मेगाबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मेगाबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मीटर A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मीटर प्रति सेकंड A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) माइक्रॉन A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) माइक्रोसेकंड A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मील A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मील प्रति घंटे A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मिलीमीटर A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मिलीसेकंड A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मिनट A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कुतरना / कुतरें A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) नैनोमीटर A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) एंग्स्ट्रॉम A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) नॉटिकल मील A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेटाबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेटाबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सेकंड A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग सेंटीमीटर A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग फ़ीट A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग इंच A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग किलोमीटर A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग मीटर A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग मील A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग मिलीमीटर A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ग यार्ड A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेराबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेराबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वॉट्स A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सप्ताह A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) यार्ड A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) वर्ष A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight डिग्री An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle ग्रेड An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kpa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight डेकाग्रा An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight किग्रा An abbreviation for a measurement unit of weight टन (यूके) An abbreviation for a measurement unit of weight मिग्रा An abbreviation for a measurement unit of weight आउंस An abbreviation for a measurement unit of weight पाउंड An abbreviation for a measurement unit of weight टन (संयुक्त राज्य अमेरिका) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight कैरट A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) डिग्री A measurement unit for Angle. रेडियन A measurement unit for Angle. ग्रेडियन A measurement unit for Angle. वायुमंडल A measurement unit for Pressure. बार A measurement unit for Pressure. किलोपास्कल A measurement unit for Pressure. मिलीमीटर पारा A measurement unit for Pressure. पास्कल A measurement unit for Pressure. पाउंड प्रति वर्ग इंच A measurement unit for Pressure. सेंटीग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) डेकाग्राम A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) डेसीग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हेक्टोग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किलोग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) लॉन्ग टन (यूके) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मिलीग्राम A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) आउंस A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पाउंड A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) शॉर्ट टन (यूएस) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्टोन A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मीट्रिक टन A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सॉकर फ़ील्ड्स A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सॉकर फ़ील्ड्स A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़्लॉपी डिस्क A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) फ़्लॉपी डिस्क A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बैटरी AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बैटरी AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेपरक्लिप्स A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेपरक्लिप्स A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) जंबो जेट A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) जंबो जेट्स A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) लाइट बल्ब A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) लाइट बल्ब A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हॉर्स A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) अश्व A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बाथटब A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) बाथटब A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्नोफ़्लेक्स A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्नोफ़्लेक्स A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हाथी An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हाथी An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टर्टल A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टर्टल A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) जेट A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) जेट A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) व्हेल्स A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) व्हेल्स A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कॉफ़ी कप A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कॉफ़ी कप A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्विमिंग पूल An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्विमिंग पूल An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हाथ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) हाथ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेपर की शीट A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेपर की शीट A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कैसल A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) कैसल A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) केले A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) केले A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) स्लाइस ऑफ़ केक A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) केक का टुकड़ा A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ट्रेन इंजिन A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ट्रेन इंजिन A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सॉकर बॉल्स A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) सॉकर बॉल्स A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मेमोरी आइटम Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) वापस Screen reader prompt for the About panel back button वापस Content of tooltip being displayed on AboutControlBackButton Microsoft सॉफ़्टवेयर लायसेंस की शर्तें Displayed on a link to the Microsoft Software License Terms on the About panel पूर्वावलोकन / पूर्वावलोकन करें Label displayed next to upcoming features Microsoft गोपनीयता कथन Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft। सर्वाधिकार सुरक्षित। {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) यह जानने के लिए कि आप Windows कैल्क्यूलेटर में कैसे योगदान कर सकते हैं, %HL%GitHub%HL% पर प्रोजेक्ट देखें. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel के बारे में Subtitle of about message on Settings page प्रतिक्रिया भेजें The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app अभी तक कोई इतिहास नहीं है. The text that shows as the header for the history list मेमोरी में कुछ भी नहीं सहेजा गया है. The text that shows as the header for the memory list मेमोरी Screen reader prompt for the negate button on the converter operator keypad इस एक्सप्रेशन को चिपकाया नहीं जा सकता The paste operation cannot be performed, if the expression is invalid. गिबीबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) गिबीबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) किबीबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मेबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) मेबिबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) पेबिबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) टेबीबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) एक्साबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) एक्साबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) एक्सबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) एक्सबिबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ज़ेटाबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ज़ेटाबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ज़ेबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ज़ेबिबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) योबिबिट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) योबिबाइट्स A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) दिनांक परिकलन परिकलन मोड Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". जोड़ें Add toggle button text दिनों को जोड़ें या घटाएँ Add or Subtract days option दिनांक Date result label दिनांकों के बीच अंतर Date difference option दिन Add/Subtract Days label अंतर Difference result label इससे From Date Header for Difference Date Picker माह Add/Subtract Months label घटाएँ Subtract toggle button text इस तक To Date Header for Difference Date Picker वर्ष Add/Subtract Years label दिनांक सीमा से बाहर की है Out of bound message shown as result when the date calculation exceeds the bounds दिन दिन माह माह समान दिनांक सप्ताह सप्ताह वर्ष वर्ष अंतर %1 Automation name for reading out the date difference. %1 = Date difference परिणामी दिनांक %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 कैल्क्यूलेटर मोड {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 कनवर्टर मोड {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. दिनांक परिकलन मोड Automation name for when the mode header is focused and the current mode is Date calculation. इतिहास और मेमोरी सूचियाँ Automation name for the group of controls for history and memory lists. मेमोरी नियंत्रण Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) मानक फ़ंक्शन Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) प्रदर्शन नियंत्रण Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) मानक ऑपरेटर Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) संख्या पैड Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) कोण ऑपरेटर Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) वैज्ञानिक फ़ंक्शन Automation name for the group of Scientific functions. मूलांक का चयन Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix प्रोग्रामर ऑपरेटर Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). इनपुट मोड का चयन Automation name for the group of input mode toggling buttons. बिट टॉगलिंग कीपैड Automation name for the group of bit toggling buttons. एक्सप्रेशन बाईं ओर स्क्रॉल करें Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. एक्सप्रेशन दाईं ओर स्क्रॉल करें Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. अधिकतम अंकों की सीमा पार हो गई. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 को मेमोरी में सहेजा गया {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". मेमोरी स्लॉट %1, %2 है {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". मेमोरी स्लॉट %1 साफ़ किया गया {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". इससे विभाजित किया गया Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. समय Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ऋण Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. प्लस Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. शक्ति को Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y मूल Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. मॉड Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. बायाँ शिफ़्ट Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. दायाँ शिफ़्ट Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. या Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x या Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. %1 %2 को अपडेट किया गया The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" दरों को अद्यतन करें The text displayed for a hyperlink button that refreshes currency converter ratios. डेटा शुल्क लग सकता है. The text displayed when users are on a metered connection and using currency converter. नई दर नहीं मिल सके. कुछ समय बाद पुनः प्रयास करें. The text displayed when currency ratio data fails to load. ऑफ़लाइन. कृपया अपनी%HL%नेटवर्क सेटिंग%HL% देखें Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} मुद्रा दरों का अद्यतन कर रहे हैं This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. मुद्रा की दरें अद्यतन की गई This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. दरें अद्यतन नहीं कर सके This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} सभी मेमोरी साफ़ करें (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. सभी मेमोरी साफ़ करें Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ज्या डिग्री Name for the sine function in degrees mode. Used by screen readers. ज्या रेडियन Name for the sine function in radians mode. Used by screen readers. ज्या ग्रेडियन Name for the sine function in gradians mode. Used by screen readers. प्रतिलोम ज्या डिग्री Name for the inverse sine function in degrees mode. Used by screen readers. प्रतिलोम ज्या रेडियन Name for the inverse sine function in radians mode. Used by screen readers. प्रतिलोम ज्या ग्रेडियन Name for the inverse sine function in gradians mode. Used by screen readers. अतिपरवलयिक ज्या Name for the hyperbolic sine function. Used by screen readers. प्रतिलोम अतिपरवलयिक ज्या Name for the inverse hyperbolic sine function. Used by screen readers. कोज्या डिग्री Name for the cosine function in degrees mode. Used by screen readers. कोज्या रेडियन Name for the cosine function in radians mode. Used by screen readers. कोज्या ग्रेडियन Name for the cosine function in gradians mode. Used by screen readers. प्रतिलोम कोज्या की डिग्री Name for the inverse cosine function in degrees mode. Used by screen readers. प्रतिलोम कोज्या रेडियन Name for the inverse cosine function in radians mode. Used by screen readers. प्रतिलोम कोज्या ग्रेडियन Name for the inverse cosine function in gradians mode. Used by screen readers. अतिपरवलयिक कोज्या Name for the hyperbolic cosine function. Used by screen readers. प्रतिलोम अतिपरवलयिक कोज्या Name for the inverse hyperbolic cosine function. Used by screen readers. स्पर्शज्या की डिग्री Name for the tangent function in degrees mode. Used by screen readers. स्पर्शज्या रेडियन Name for the tangent function in radians mode. Used by screen readers. स्पर्शज्या ग्रेडियन Name for the tangent function in gradians mode. Used by screen readers. प्रतिलोम स्पर्शज्या डिग्री Name for the inverse tangent function in degrees mode. Used by screen readers. प्रतिलोम स्पर्शज्या रेडियन Name for the inverse tangent function in radians mode. Used by screen readers. प्रतिलोम स्पर्शज्या ग्रेडियन Name for the inverse tangent function in gradians mode. Used by screen readers. अतिपरवलयिक स्पर्शज्या Name for the hyperbolic tangent function. Used by screen readers. प्रतिलोम अतिपरवलयिक स्पर्शज्या Name for the inverse hyperbolic tangent function. Used by screen readers. कोटिज्या डिग्री Name for the secant function in degrees mode. Used by screen readers. कोटिज्या रेडियन Name for the secant function in radians mode. Used by screen readers. कोटिज्या ग्रेडियन Name for the secant function in gradians mode. Used by screen readers. प्रतिलोम कोटिज्या डिग्री Name for the inverse secant function in degrees mode. Used by screen readers. प्रतिलोम कोटिज्या रेडियन Name for the inverse secant function in radians mode. Used by screen readers. प्रतिलोम कोटिज्या ग्रेडियन Name for the inverse secant function in gradians mode. Used by screen readers. अतिपरवलयिक कोटिज्या Name for the hyperbolic secant function. Used by screen readers. प्रतिलोम अतिपरवलयिक कोटिज्या Name for the inverse hyperbolic secant function. Used by screen readers. व्युत्क्रमज्या डिग्री Name for the cosecant function in degrees mode. Used by screen readers. व्युत्क्रमज्या रेडियन Name for the cosecant function in radians mode. Used by screen readers. व्युत्क्रमज्या ग्रेडियन Name for the cosecant function in gradians mode. Used by screen readers. प्रतिलोम व्युत्क्रमज्या डिग्री Name for the inverse cosecant function in degrees mode. Used by screen readers. प्रतिलोम व्युत्क्रमज्या रेडियन Name for the inverse cosecant function in radians mode. Used by screen readers. प्रतिलोम व्युत्क्रमज्या ग्रेडियन Name for the inverse cosecant function in gradians mode. Used by screen readers. अतिपरवलयिक व्युत्क्रमज्या Name for the hyperbolic cosecant function. Used by screen readers. प्रतिलोम अतिपरवलयिक व्युत्क्रमज्या Name for the inverse hyperbolic cosecant function. Used by screen readers. कोटिस्पर्शज्या डिग्री Name for the cotangent function in degrees mode. Used by screen readers. कोटिस्पर्शज्या रेडियन Name for the cotangent function in radians mode. Used by screen readers. कोटिस्पर्शज्या ग्रेडियन Name for the cotangent function in gradians mode. Used by screen readers. प्रतिलोम कोटिस्पर्शज्या डिग्री Name for the inverse cotangent function in degrees mode. Used by screen readers. प्रतिलोम कोटिस्पर्शज्या रेडियन Name for the inverse cotangent function in radians mode. Used by screen readers. प्रतिलोम कोटिस्पर्शज्या ग्रेडियन Name for the inverse cotangent function in gradians mode. Used by screen readers. अतिपरवलयिक कोटिस्पर्शज्या Name for the hyperbolic cotangent function. Used by screen readers. प्रतिलोम अतिपरवलयिक कोटिस्पर्शज्या Name for the inverse hyperbolic cotangent function. Used by screen readers. घन रूट Name for the cube root function. Used by screen readers. लॉग बेस Name for the logbasey function. Used by screen readers. निरपेक्ष मान Name for the absolute value function. Used by screen readers. बायाँ शिफ़्ट Name for the programmer function that shifts bits to the left. Used by screen readers. दायाँ शिफ़्ट Name for the programmer function that shifts bits to the right. Used by screen readers. क्रमगुणन Name for the factorial function. Used by screen readers. डिग्री मिनट सेकंड Name for the degree minute second (dms) function. Used by screen readers. प्राकृतिक लघुगणक Name for the natural log (ln) function. Used by screen readers. वर्ग Name for the square function. Used by screen readers. y मूल Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 श्रेणी {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft सेवा अनुबंध Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. इससे From Date Header for AddSubtract Date Picker परिकलन परिणाम बाईं ओर स्क्रॉल करें Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. परिकलन परिणाम दाईं ओर स्क्रॉल करें Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. गणना विफल Text displayed when the application is not able to do a calculation लॉग बेस Y Screen reader prompt for the logBaseY button त्रिकोणमिति Displayed on the button that contains a flyout for the trig functions in scientific mode. फलन Displayed on the button that contains a flyout for the general functions in scientific mode. असमानताएँ Displayed on the button that contains a flyout for the inequality functions. असमानताएँ Screen reader prompt for the Inequalities button बिटवाइज़ Displayed on the button that contains a flyout for the bitwise functions in programmer mode. बिट शिफ़्ट Displayed on the button that contains a flyout for the bit shift functions in programmer mode. इन्वर्स फ़ंक्शन Screen reader prompt for the shift button in the trig flyout in scientific mode. अतिपरवलयिक फलन Screen reader prompt for the Calculator button HYP in the scientific flyout keypad कोटिज्या Screen reader prompt for the Calculator button sec in the scientific flyout keypad हाइपरबॉलिक सेकेंट Screen reader prompt for the Calculator button sech in the scientific flyout keypad आर्क सेकेंट Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad हाइपरबॉलिक आर्क सेकेंट Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad व्युत्क्रमज्या Screen reader prompt for the Calculator button csc in the scientific flyout keypad हाइपरबॉलिक कोसेकेंट Screen reader prompt for the Calculator button csch in the scientific flyout keypad आर्क कोसेकेंट Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad हाइपरबॉलिक आर्क कोसेकेंट Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad कोटिस्पर्शज्या Screen reader prompt for the Calculator button cot in the scientific flyout keypad हाइपरबॉलिक कोटैंजेंट Screen reader prompt for the Calculator button coth in the scientific flyout keypad आर्क कोटैंजेंट Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad हाइपरबॉलिक आर्क कोटैंजेंट Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad फलक Screen reader prompt for the Calculator button floor in the scientific flyout keypad सीलिंग Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad यादृच्छिक Screen reader prompt for the Calculator button random in the scientific flyout keypad निरपेक्ष मान Screen reader prompt for the Calculator button abs in the scientific flyout keypad यूलर की संख्या Screen reader prompt for the Calculator button e in the scientific flyout keypad घातांक पर दो Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad तथा पूरक Screen reader prompt for the Calculator button nand in the scientific flyout keypad तथा पूरक Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. अथवा पूरक Screen reader prompt for the Calculator button nor in the scientific flyout keypad अथवा पूरक Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. कैर्री के साथ बाईं ओर घुमाएँ Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad कैर्री के साथ दाईं ओर घुमाएँ Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad बायाँ शिफ़्ट Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad बायाँ शिफ़्ट Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. दायाँ शिफ्ट Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad दायाँ शिफ़्ट Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. अंकगणित शिफ़्ट Label for a radio button that toggles arithmetic shift behavior for the shift operations. लॉजिकल शिफ़्ट Label for a radio button that toggles logical shift behavior for the shift operations. वृत्ताकार शिफ़्ट घुमाएँ Label for a radio button that toggles rotate circular behavior for the shift operations. कैरी वृत्ताकार शिफ़्ट के माध्यम से घुमाएँ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. घन मूल Screen reader prompt for the cube root button on the scientific operator keypad त्रिकोणमिति Screen reader prompt for the square root button on the scientific operator keypad फलन Screen reader prompt for the square root button on the scientific operator keypad बिटवाइज़ Screen reader prompt for the square root button on the scientific operator keypad बिटशिफ़्ट Screen reader prompt for the square root button on the scientific operator keypad वैज्ञानिक ऑपरेटर फ़लक Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad प्रोग्रामर ऑपरेटर फ़लक Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad सबसे अधिक महत्वपूर्ण बिट Used to describe the last bit of a binary number. Used in bit flip ग्राफ़िंग Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. प्लॉट Screen reader prompt for the plot button on the graphing calculator operator keypad स्वचालित रूप से दृश्य ताज़ा करें (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. ग्राफ़ दृश्य Screen reader prompt for the graph view button. स्वतः श्रेष्ठ फ़िट Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set मैन्युअल समायोजन Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set ग्राफ़ दृश्य रीसेट किया जा चुका है Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph ज़ूम इन करें (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. ज़ूम इन Screen reader prompt for the zoom in button. ज़ूम आउट करें (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. ज़ूम आउट Screen reader prompt for the zoom out button. समीकरण जोड़ें Placeholder text for the equation input button इस समय साझा करने में असमर्थ. If there is an error in the sharing action will display a dialog with this text. ठीक Used on the dismiss button of the share action error dialog. देखें कि Windows कैल्क्यूलेटर के साथ मैंने क्या ग्राफ़ बनाया है Sent as part of the shared content. The title for the share. समीकरण Header that appears over the equations section when sharing चर Header that appears over the variables section when sharing समीकरणों के साथ ग्राफ़ की छवि Alt text for the graph image when output via Share चर Header text for variables area चरण Label text for the step text box न्यून Label text for the min text box अधिक Label text for the max text box रंग Label for the Line Color section of the style picker शैली Label for the Line Style section of the style picker फ़ंक्शन विश्लेषण Title for KeyGraphFeatures Control फ़ंक्शन में कोई भी क्षैतिज अनंतस्पर्शी नहीं हैं. Message displayed when the graph does not have any horizontal asymptotes फ़ंक्शन में कोई भी मोड़ बिंदु नहीं हैं. Message displayed when the graph does not have any inflection points फ़ंक्शन में कोई भी अधिकतम बिंदु नहीं हैं. Message displayed when the graph does not have any maxima फ़ंक्शन में कोई भी न्यूनतम बिंदु नहीं हैं. Message displayed when the graph does not have any minima लगातार String describing constant monotonicity of a function कम होते हुए String describing decreasing monotonicity of a function फ़ंक्शन का एकदिष्टता निर्धारित करने में असमर्थ. Error displayed when monotonicity cannot be determined बढ़ते हुए String describing increasing monotonicity of a function फ़ंक्शन की एकदिष्टता अज्ञात है. Error displayed when monotonicity is unknown फ़ंक्शन में कोई भी तिर्यक अनंतस्पर्शी नहीं हैं. Message displayed when the graph does not have any oblique asymptotes फ़ंक्शन की समता को निर्धारित करने में असमर्थ. Error displayed when parity is cannot be determined फ़ंक्शन सम है. Message displayed with the function parity is even फ़ंक्शन न तो सम है और न ही विषम. Message displayed with the function parity is neither even nor odd फ़ंक्शन विषम है. Message displayed with the function parity is odd फ़ंक्शन समता अज्ञात है. Error displayed when parity is unknown इस फ़ंक्शन के लिए आवधिकता समर्थित नहीं है. Error displayed when periodicity is not supported फ़ंक्शन आवधिक नहीं है. Message displayed with the function periodicity is not periodic फ़ंक्शन आवधिकता अज्ञात है. Message displayed with the function periodicity is unknown कैल्क्यूलेटर की गणना करने के लिए ये सुविधाएँ बहुत जटिल हैं: Error displayed when analysis features cannot be calculated फ़ंक्शन में कोई भी अनुलंब अनंतस्पर्शी नहीं हैं. Message displayed when the graph does not have any vertical asymptotes फ़ंक्शन में कोई भी x-अवरोधन नहीं हैं. Message displayed when the graph does not have any x-intercepts फ़ंक्शन में कोई भी y-अवरोधन नहीं हैं. Message displayed when the graph does not have any y-intercepts डोमेन Title for KeyGraphFeatures Domain Property क्षैतिज एसिमटोट्स Title for KeyGraphFeatures Horizontal aysmptotes Property इंफ़्लेक्शन पॉइंट Title for KeyGraphFeatures Inflection points Property इस फ़ंक्शन के लिए विश्लेषण समर्थित नहीं है. Error displayed when graph analysis is not supported or had an error. विश्लेषण केवल f(x) फ़ॉर्मेट में फ़ंक्शन के लिए समर्थित है. उदाहरण: y=x Error displayed when graph analysis detects the function format is not f(x). अधिकतम Title for KeyGraphFeatures Maxima Property न्यूनतम Title for KeyGraphFeatures Minima Property एकदिष्टता Title for KeyGraphFeatures Monotonicity Property ऑब्लिक अनंतस्पर्शी Title for KeyGraphFeatures Oblique asymptotes Property समता Title for KeyGraphFeatures Parity Property अवधि Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. रेंज Title for KeyGraphFeatures Range Property अनुलंब एसिमटोट्स Title for KeyGraphFeatures Vertical asymptotes Property X-अवरोधन Title for KeyGraphFeatures XIntercept Property Y-अवरोधन Title for KeyGraphFeatures YIntercept Property फ़ंक्शन के लिए विश्लेषण निष्पादित नहीं किया जा सका. इस फ़ंक्शन के लिए डोमेन की गणना करने में असमर्थ. Error displayed when Domain is not returned from the analyzer. इस फ़ंक्शन के लिए श्रेणी की गणना करने में असमर्थ. Error displayed when Range is not returned from the analyzer. ओवरफ़्लो (संख्या अत्यधिक बड़ी है) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. इस समीकरण को ग्राफ़ करने के लिए रेडियंस मोड आवश्यक है. Error that occurs during graphing when radians is required. यह फ़ंक्शन ग्राफ़ करने के लिए अत्यधिक जटिल है Error that occurs during graphing when the equation is too complex. इस फ़ंक्शन को ग्राफ़ करने के लिए डिग्री मोड आवश्यक है Error that occurs during graphing when degrees is required गुणक फ़ंक्शन में एक अमान्य तर्क है Error that occurs during graphing when a factorial function has an invalid argument. गुणक फ़ंक्शन में एक तर्क है जो ग्राफ़ करने के लिए अत्यधिक बड़ा है Error that occurs during graphing when a factorial has a large n Modulo का उपयोग केवल पूर्ण संख्याओं के साथ किया जा सकता है Error that occurs during graphing when modulo is used with a float. समीकरण का कोई समाधान नहीं है Error that occurs during graphing when the equation has no solution. शून्य से भाग नहीं कर सकते Error that occurs during graphing when a divison by zero occurs. समीकरण में तार्किक शर्तें शामिल हैं, जो पारस्परिक रूप से अनन्य होती हैं Error that occurs during graphing when mutually exclusive conditions are used. समीकरण डोमेन से बाहर है Error that occurs during graphing when the equation is out of domain. इस समीकरण की ग्राफ़िंग समर्थित नहीं है Error that occurs during graphing when the equation is not supported. समीकरण में प्रारंभिक कोष्ठक नहीं है Error that occurs during graphing when the equation is missing a ( समीकरण में समाप्ति कोष्ठक नहीं है Error that occurs during graphing when the equation is missing a ) किसी संख्या में बहुत अधिक दशमलव बिंदु हैं Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 एक दशमलव बिंदु के साथ अंक नहीं हैं Error that occurs during graphing with a decimal point without digits व्यंजक का अनपेक्षित अंत Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* व्यंजक में अनपेक्षित वर्ण Error that occurs during graphing when there is an unexpected token. अभिव्यक्ति/व्यंजक में अमान्य वर्ण Error that occurs during graphing when there is an invalid token. समान संकेत अत्यधिक हैं Error that occurs during graphing when there are too many equals. फ़ंक्शन में कम से कम एक x या y चर होना चाहिए Error that occurs during graphing when the equation is missing x or y. अमान्य व्यंजक Error that occurs during graphing when an invalid syntax is used. व्यंजक रिक्त है Error that occurs during graphing when the expression is empty समान का उपयोग बिना समीकरण किया गया था Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) फ़ंक्शन नाम के बाद कोष्ठक नहीं है Error that occurs during graphing when parenthesis are missing after a function. एक गणितीय प्रक्रिया में पैरामीटर्स की गलत संख्या है Error that occurs during graphing when a function has the wrong number of parameters एक परिवर्तनीय नाम अमान्य है Error that occurs during graphing when a variable name is invalid. समीकरण में प्रारंभिक कोष्ठक नहीं है Error that occurs during graphing when a { is missing समीकरण में समाप्ति कोष्ठक नहीं है Error that occurs during graphing when a } is missing. "i" और "I" का परिवर्तनीय नामों के रूप में उपयोग नहीं किया जा सकता Error that occurs during graphing when i or I is used. समीकरण ग्राफ़ नहीं किया जा सका General error that occurs during graphing. दिए गए आधार के लिए अंक का समाधान नहीं किया जा सका Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). आधार 2 से अधिक और ३६ से कम होना चाहिए Error that occurs during graphing when the base is out of range. एक गणितीय कार्रवाई के पैरामीटर्स में से किसी एक को चर होना चाहिए Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. समीकरण तार्किक और अदिश ऑपरेंड्स को मिला रहा है Error that occurs during graphing when operands are mixed. Such as true and 1. ऊपरी या निचली सीमाओं में x या y का उपयोग नहीं किया जा सकता Error that occurs during graphing when x or y is used in integral upper limits. सीमा बिंदु/लिमिट पॉइंट में x या y का उपयोग नहीं किया जा सकता Error that occurs during graphing when x or y is used in the limit point. सम्मिश्र इन्फिनिटी का उपयोग नहीं कर सकते Error that occurs during graphing when complex infinity is used असमानताओं में सम्मिश्र संख्याओं का उपयोग नहीं कर सकते Error that occurs during graphing when complex numbers are used in inequalities. फ़ंक्शन सूची पर वापस जाएँ This is the tooltip for the back button in the equation analysis page in the graphing calculator फ़ंक्शन सूची पर वापस जाएँ This is the automation name for the back button in the equation analysis page in the graphing calculator फ़ंक्शन का विश्लेषण करें This is the tooltip for the analyze function button फ़ंक्शन का विश्लेषण करें This is the automation name for the analyze function button फ़ंक्शन का विश्लेषण करें This is the text for the for the analyze function context menu command समीकरण निकालें This is the tooltip for the graphing calculator remove equation buttons समीकरण निकालें This is the automation name for the graphing calculator remove equation buttons समीकरण निकालें This is the text for the for the remove equation context menu command साझा करें This is the automation name for the graphing calculator share button. साझा करें This is the tooltip for the graphing calculator share button. समीकरण शैली परिवर्तित करें This is the tooltip for the graphing calculator equation style button समीकरण शैली परिवर्तित करें This is the automation name for the graphing calculator equation style button समीकरण शैली परिवर्तित करें This is the text for the for the equation style context menu command समीकरण दिखाएँ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. समीकरण छुपाएँ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. समीकरण %1 दिखाएँ {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. समीकरण %1 छुपाएँ {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ट्रेसिंग रोकें This is the tooltip/automation name for the graphing calculator stop tracing button ट्रेसिंग प्रारंभ करें This is the tooltip/automation name for the graphing calculator start tracing button ग्राफ़ दृश्य विंडो, x-अक्ष, %1 और %2 द्वारा बाउंड है, %3 और %4 द्वारा बाउंड किए गए y-अक्ष, %5 समीकरणों को प्रदर्शित करते हुए {Locked="%1","%2", "%3", "%4", "%5"}. स्लाइडर कॉन्फ़िगर करें This is the tooltip text for the slider options button in Graphing Calculator स्लाइडर कॉन्फ़िगर करें This is the automation name text for the slider options button in Graphing Calculator समीकरण मोड पर स्विच करें Used in Graphing Calculator to switch the view to the equation mode ग्राफ़ मोड पर स्विच करें Used in Graphing Calculator to switch the view to the graph mode समीकरण मोड पर स्विच करें Used in Graphing Calculator to switch the view to the equation mode वर्तमान मोड समीकरण मोड है Announcement used in Graphing Calculator when switching to the equation mode वर्तमान मोड ग्राफ़ मोड है Announcement used in Graphing Calculator when switching to the graph mode विंडो Heading for window extents on the settings डिग्री Degrees mode on settings page ग्रेडियन Gradian mode on settings page रेडियन Radians mode on settings page इकाइयाँ Heading for Unit's on the settings दृश्य रीसेट करें Hyperlink button to reset the view of the graph X-अधिकतम X maximum value header X-न्यूनतम X minimum value header Y-अधिकतम Y Maximum value header Y-न्यूनतम Y minimum value header ग्राफ़ विकल्प This is the tooltip text for the graph options button in Graphing Calculator ग्राफ़ विकल्प This is the automation name text for the graph options button in Graphing Calculator ग्राफ़ विकल्प Heading for the Graph options flyout in Graphing mode. चर विकल्प Screen reader prompt for the variable settings toggle button परिवर्तनशील विकल्प टॉगल करें Tool tip for the variable settings toggle button पंक्ति की मोटाई Heading for the Graph options flyout in Graphing mode. पंक्ति के विकल्प Heading for the equation style flyout in Graphing mode. छोटी पंक्ति चौड़ाई Automation name for line width setting मध्यम पंक्ति चौड़ाई Automation name for line width setting बड़ी पंक्ति चौड़ाई Automation name for line width setting अधिक बड़ी पंक्ति चौड़ाई Automation name for line width setting कोई व्यंजक दर्ज करें this is the placeholder text used by the textbox to enter an equation प्रतिलिपि बनाएँ Copy menu item for the graph context menu काटें Cut menu item from the Equation TextBox प्रतिलिपि बनाएँ Copy menu item from the Equation TextBox चिपकाएँ Paste menu item from the Equation TextBox पूर्ववत् करें Undo menu item from the Equation TextBox सभी का चयन करें Select all menu item from the Equation TextBox फ़ंक्शन इनपुट The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. फ़ंक्शन इनपुट The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. फ़ंक्शन इनपुट पैनल The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. चर फ़लक The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. चर सूची The automation name for the Variable ListView that is shown when Calculator is in graphing mode. चर %1 सूची आइटम The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. चर मान पाठ बॉक्स The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. चर मान स्लाइडर The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. चर न्यूनतम मान पाठ बॉक्स The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. चर चरण मान पाठ बॉक्स The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. चर अधिकतम मान पाठ बॉक्स The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ठोस रेखा शैली Name of the solid line style for a graphed equation डॉट रेखा शैली Name of the dotted line style for a graphed equation डैश रेखा शैली Name of the dashed line style for a graphed equation गहरा नीला Name of color in the color picker सीफ़ोम Name of color in the color picker बैंगनी Name of color in the color picker हरा Name of color in the color picker मिंट हरा Name of color in the color picker गहरा हरा Name of color in the color picker चारकोल Name of color in the color picker लाल Name of color in the color picker प्लम लाइट Name of color in the color picker मैजेंटा/रानी Name of color in the color picker येलो गोल्ड Name of color in the color picker ऑरेंज ब्राइट Name of color in the color picker भूरा Name of color in the color picker काला Name of color in the color picker सफ़ेद Name of color in the color picker रंग 1 Name of color in the color picker रंग 2 Name of color in the color picker रंग 3 Name of color in the color picker रंग 4 Name of color in the color picker ग्राफ़ थीम Graph settings heading for the theme options हमेशा हल्का/हल्की Graph settings option to set graph to light theme ऐप विषयवस्तु से मिलाएँ Graph settings option to set graph to match the app theme थीम This is the automation name text for the Graph settings heading for the theme options हमेशा हल्का/हल्की This is the automation name text for the Graph settings option to set graph to light theme ऐप विषयवस्तु से मिलाएँ This is the automation name text for the Graph settings option to set graph to match the app theme फ़ंक्शन निकाला गया Announcement used in Graphing Calculator when a function is removed from the function list फ़ंक्शन विश्लेषण समीकरण बॉक्स This is the automation name text for the equation box in the function analysis panel बराबर Screen reader prompt for the equal button on the graphing calculator operator keypad इससे कम Screen reader prompt for the Less than button इससे कम या बराबर Screen reader prompt for the Less than or equal button बराबर Screen reader prompt for the Equal button इससे अधिक या बराबर Screen reader prompt for the Greater than or equal button इससे बड़ा Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad सबमिट करें Screen reader prompt for the submit button on the graphing calculator operator keypad फ़ंक्शन विश्लेषण Screen reader prompt for the function analysis grid ग्राफ़ विकल्प Screen reader prompt for the graph options panel इतिहास और मेमोरी सूचियाँ Automation name for the group of controls for history and memory lists. मेमोरी सूची Automation name for the group of controls for memory list. इतिहास स्लॉट %1 साफ़ किया गया {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". कैल्क्यूलेटर हमेशा पहले चालू होता है Announcement to indicate calculator window is always shown on top. कैल्क्यूलेटर पूर्ण दृश्य पर वापस जाएँ Announcement to indicate calculator window is now back to full view. अंकगणित शिफ़्ट चयनित Label for a radio button that toggles arithmetic shift behavior for the shift operations. लॉजिकल शिफ़्ट चयनित Label for a radio button that toggles logical shift behavior for the shift operations. वृत्ताकार शिफ़्ट चयनित घुमाएँ Label for a radio button that toggles rotate circular behavior for the shift operations. चयनित कैरी वृत्ताकार शिफ़्ट के माध्यम से घुमाएँ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. सेटिंग Header text of Settings page प्रकटन Subtitle of appearance setting on Settings page ऐप थीम Title of App theme expander जो ऐप थीम प्रदर्शित करनी है, वह चुनें Description of App theme expander लाइट Lable for light theme option डार्क Lable for dark theme option सिस्टम सेटिंग का उपयोग करें Lable for the app theme option to use system setting वापस Screen reader prompt for the Back button in title bar to back to main page सेटिंग्स पृष्ठ Announcement used when Settings page is opened उपलब्ध क्रियाओं के लिए प्रसंग मेनू खोलें Screen reader prompt for the context menu of the expression box ठीक The text of OK button to dismiss an error dialog. इस स्नैपशॉट को पुनर्स्थापित नहीं किया जा सका. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/hr-HR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Unos nije valjan Error message shown when the input makes a function fail, like log(-1) Rezultat nije definiran Error message shown when there's no possible value for a function. Nema dovoljno memorije Error message shown when we run out of memory during a calculation. Prelijevanje Error message shown when there's an overflow during the calculation. Rezultat nije definiran Same as 101 Rezultat nije definiran Same 101 Prelijevanje Same as 107 Prelijevanje Same 107 Ne možete dijeliti s nulom Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/hr-HR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows kalkulator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows kalkulator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiraj Copy context menu string Zalijepi Paste context menu string Približno jednako The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, vrijednost %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip najmanje značajan dio Used to describe the first bit of a binary number. Used in bit flip Otvori potpaletu memorije This is the automation name and label for the memory button when the memory flyout is closed. Zatvori potpaletu memorije This is the automation name and label for the memory button when the memory flyout is open. Zadrži na vrhu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Natrag na puni prikaz This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memorija This is the tool tip automation name for the memory button. Povijest (Ctrl+H) This is the tool tip automation name for the history button. Tipkovnica s prebacivanjem bitova This is the tool tip automation name for the bitFlip button. Cijela tipkovnica This is the tool tip automation name for the numberPad button. Čišćenje cijele memorije (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memorija The text that shows as the header for the memory list Memorija The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Povijest The text that shows as the header for the history list Povijest The automation name for the History pivot item that is shown when Calculator is in wide layout. Pretvornik Label for a control that activates the unit converter mode. Znanstveni Label for a control that activates scientific mode calculator layout Standardni Label for a control that activates standard mode calculator layout. Način rada za pretvorbu Screen reader prompt for a control that activates the unit converter mode. Znanstveni način rada Screen reader prompt for a control that activates scientific mode calculator layout Standardni način rada Screen reader prompt for a control that activates standard mode calculator layout. Očisti svu povijest "ClearHistory" used on the calculator history pane that stores the calculation history. Očisti svu povijest This is the tool tip automation name for the Clear History button. Sakrij "HideHistory" used on the calculator history pane that stores the calculation history. Standardni The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Znanstveni The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programerski The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Pretvornik The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Pretvornik The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Pretvornici Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatori Pluralized version of the calculator group text, used for the screen reader prompt. Prikazuje se %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Izraz je %1, trenutni unos je %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Prikazuje se %1 bod {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Izraz je %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Prikaži vrijednost kopiranu u međuspremnik Screen reader prompt for the Calculator display copy button, when the button is invoked. Povijest Screen reader prompt for the history flyout Memorija Screen reader prompt for the memory flyout Heksadecimalno %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimalno %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktalno %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binarno %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Očisti svu povijest Screen reader prompt for the Calculator History Clear button Povijest je izbrisana Screen reader prompt for the Calculator History Clear button, when the button is invoked. Sakrij povijest Screen reader prompt for the Calculator History Hide button Otvori potpaletu povijesti Screen reader prompt for the Calculator History button, when the flyout is closed. Zatvori potpaletu povijesti Screen reader prompt for the Calculator History button, when the flyout is open. Spremište memorije Screen reader prompt for the Calculator Memory button Pohrana memorije (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Očisti cijelu memoriju Screen reader prompt for the Calculator Clear Memory button Memorija je izbrisana Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Prizivanje memorije Screen reader prompt for the Calculator Memory Recall button Pozivanje memorije (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Dodavanje memorije Screen reader prompt for the Calculator Memory Add button Dodavanje memorije (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Oduzimanje memorije Screen reader prompt for the Calculator Memory Subtract button Oduzimanje memorije (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Čišćenje stavke memorije Screen reader prompt for the Calculator Clear Memory button Čišćenje stavke memorije This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Dodaj u stavku memorije Screen reader prompt for the Calculator Memory Add button in the Memory list Dodaj u stavku memorije This is the tool tip automation name for the Calculator Memory Add button in the Memory list Oduzmi od stavke memorije Screen reader prompt for the Calculator Memory Subtract button in the Memory list Oduzmi od stavke memorije This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Čišćenje stavke memorije Screen reader prompt for the Calculator Clear Memory button Čišćenje stavke memorije Text string for the Calculator Clear Memory option in the Memory list context menu Dodaj u stavku memorije Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Dodaj u stavku memorije Text string for the Calculator Memory Add option in the Memory list context menu Oduzmi od stavke memorije Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Oduzmi od stavke memorije Text string for the Calculator Memory Subtract option in the Memory list context menu Izbriši Text string for the Calculator Delete swipe button in the History list Kopiraj Text string for the Calculator Copy option in the History list context menu Izbriši Text string for the Calculator Delete option in the History list context menu Izbriši stavku povijesti Screen reader prompt for the Calculator Delete swipe button in the History list Izbriši stavku povijesti Screen reader prompt for the Calculator Delete option in the History list context menu Tipka Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nula Screen reader prompt for the Calculator number "0" button Jedan Screen reader prompt for the Calculator number "1" button Dva Screen reader prompt for the Calculator number "2" button Tri Screen reader prompt for the Calculator number "3" button Četiri Screen reader prompt for the Calculator number "4" button Pet Screen reader prompt for the Calculator number "5" button Šest Screen reader prompt for the Calculator number "6" button Sedam Screen reader prompt for the Calculator number "7" button Osam Screen reader prompt for the Calculator number "8" button Devet Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Nije Screen reader prompt for the Calculator Not button Rotiraj ulijevo Screen reader prompt for the Calculator ROL button Rotiraj udesno Screen reader prompt for the Calculator ROR button Lijevi Shift Screen reader prompt for the Calculator LSH button Desni Shift Screen reader prompt for the Calculator RSH button Isključivo ili Screen reader prompt for the Calculator XOR button Prebacivanje četverostruke riječi Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Prebacivanje dvostruke riječi Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Prebacivanje riječi Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Prebacivanje bajtova Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tipkovnica s prebacivanjem bitova Screen reader prompt for the Calculator bitFlip button Cijela tipkovnica Screen reader prompt for the Calculator numberPad button Decimalni razdjelnik Screen reader prompt for the "." button Očisti unos Screen reader prompt for the "CE" button Očisti Screen reader prompt for the "C" button Podijeli s Screen reader prompt for the divide button on the number pad Pomnoži s Screen reader prompt for the multiply button on the number pad Jednaki Screen reader prompt for the equals button on the scientific operator keypad Inverzna funkcija Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Drugi korijen Screen reader prompt for the square root button on the scientific operator keypad Postotak Screen reader prompt for the percent button on the scientific operator keypad Pozitivno negativno Screen reader prompt for the negate button on the scientific operator keypad Pozitivno negativno Screen reader prompt for the negate button on the converter operator keypad Recipročna vrijednost Screen reader prompt for the invert button on the scientific operator keypad Lijeva zagrada Screen reader prompt for the Calculator "(" button on the scientific operator keypad Lijeva zagrada, broj otvorenih zagrada %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Desna zagrada Screen reader prompt for the Calculator ")" button on the scientific operator keypad Broj otvorenih zagrada %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Trenutno nema otvorenih zagrada koje treba zatvoriti. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Znanstvena notacija Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolna funkcija Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolički sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolički kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolički tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kocka Screen reader prompt for the x cubed on the scientific operator keypad. Arkus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkus kosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolni arkus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolni arkus kosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperbolni arkus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. „X” na potenciju Screen reader prompt for x power y button on the scientific operator keypad. Deset na potenciju Screen reader prompt for the 10 power x button on the scientific operator keypad. „e” na potenciju Screen reader for the e power x on the scientific operator keypad. y-ti korijen od „x” Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Zapisnik Screen reader for the log base 10 on the scientific operator keypad Prirodni logaritam Screen reader for the log base e on the scientific operator keypad Modul Screen reader for the mod button on the scientific operator keypad Eksponencijalno Screen reader for the exp button on the scientific operator keypad Stupanj minuta sekunda Screen reader for the exp button on the scientific operator keypad Stupnjevi Screen reader for the exp button on the scientific operator keypad Dio cijelog broja Screen reader for the int button on the scientific operator keypad Dio razlomka Screen reader for the frac button on the scientific operator keypad Faktorijela Screen reader for the factorial button on the basic operator keypad Prebacivanje stupnjeva This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Prebacivanje gradijana This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Prebacivanje radijana This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Padajući izbornik za način rada Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Padajući izbornik s kategorijama Screen reader prompt for the Categories dropdown field. Zadrži na vrhu Screen reader prompt for the Always-on-Top button when in normal mode. Natrag na puni prikaz Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Zadrži na vrhu (Alt+gore) This is the tool tip automation name for the Always-on-Top button when in normal mode. Natrag na puni prikaz (Alt+dolje) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Pretvori iz %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Pretvara iz %1 zarez %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Pretvara u %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 jednako je %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Ulazna jedinica Screen reader prompt for the Unit Converter Units1 i.e. top units field. Izlazna jedinica Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Površina Unit conversion category name called Area (eg. area of a sports field in square meters) Podaci Unit conversion category name called Data Energija Unit conversion category name called Energy. (eg. the energy in a battery or in food) Dužina Unit conversion category name called Length Snaga Unit conversion category name called Power (eg. the power of an engine or a light bulb) Brzina Unit conversion category name called Speed Vrijeme Unit conversion category name called Time Obujam Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Težina i masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tlak Unit conversion category name called Pressure Kut Unit conversion category name called Angle Valuta Unit conversion category name called Currency Tekućih unci (VB) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (VB) An abbreviation for a measurement unit of volume Tekućih unci (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (SAD) An abbreviation for a measurement unit of volume Galona (VB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (VB) An abbreviation for a measurement unit of volume Galona (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (SAD) An abbreviation for a measurement unit of volume Litara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pinti (VB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (VB) An abbreviation for a measurement unit of volume Pinti (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (SAD) An abbreviation for a measurement unit of volume Žlica (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žlica (SAD) An abbreviation for a measurement unit of volume Žličica (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žličica (SAD) An abbreviation for a measurement unit of volume Žlica (VB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žlica (VB) An abbreviation for a measurement unit of volume Žličica (VB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žličica (VB) An abbreviation for a measurement unit of volume Četvrtina galona (VB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (VB) An abbreviation for a measurement unit of volume Četvrtina galona (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (SAD) An abbreviation for a measurement unit of volume Šalica (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šalica (SAD) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length AC An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area konjska snaga (SAD) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kB An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) MB An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time Mj An abbreviation for a measurement unit of length milja/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power tj. An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length god. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mj An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data JB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akera A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britanskih termalnih jedinica A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/min A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajtova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toplinskih kalorija A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetara u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubičnih centimetara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubičnih stopa A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubičnih inča A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubičnih metara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubičnih jarda A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dana A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celzijevi stupnjevi An option in the unit converter to select degrees Celsius Stupnjevi Fahrenheita An option in the unit converter to select degrees Fahrenheit Elektron-volta A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa-funti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa-funti/min A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabajta A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Konjska snaga (SAD) A measurement unit for power Sati A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inča A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Džula A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatsati A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobitova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobajta A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorija hrane A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodžula A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometara na sat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovata A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čvorova A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabajti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metara u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrona A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekunda A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milja A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milja na sat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuta A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstremi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautičkih milja A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih centimetara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih stopa A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih inča A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih kilometara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni metri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih milja A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih milimetara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Četvornih jardi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabajta A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vata A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tjedana A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Godine A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight stup. An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (VB) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tona (SAD) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karata A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stupnjevi A measurement unit for Angle. Radijani A measurement unit for Angle. Gradijeni A measurement unit for Angle. Atmosfere A measurement unit for Pressure. Bari A measurement unit for Pressure. Kilopaskal A measurement unit for Pressure. Millimetri živina stupca A measurement unit for Pressure. Paskali A measurement unit for Pressure. Funte po četvornom inču A measurement unit for Pressure. Centigrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrama A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektograma A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilograma A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dugih tona (VB) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unci A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Funti A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kratkih tona (SAD) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kamen A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metričkih tona A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ova A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ova A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometnih igrališta A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometnih igrališta A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ova A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ova A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterija AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterija AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spajalica A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spajalica A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jetova A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jetova A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žarulje A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žarulje A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konja A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konja A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kada A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kada A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snježnih pahuljica A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snježnih pahuljica A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonova An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonova An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kornjača A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kornjača A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mlažnjaka A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mlažnjaka A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kitova A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kitova A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šalica kave A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šalica kave A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazena An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazena An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pedalja A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pedalja A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listova papira A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listova papira A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dvoraca A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dvoraca A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kriški torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kriški torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometnih lopti A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometnih lopti A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stavka memorije Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Natrag Screen reader prompt for the About panel back button Natrag Content of tooltip being displayed on AboutControlBackButton Licencne odredbe za Microsoftov softver Displayed on a link to the Microsoft Software License Terms on the About panel Pretpregled Label displayed next to upcoming features Microsoftova Izjava o zaštiti privatnosti Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Sva prava pridržana. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Da biste saznali kako možete sudjelovati u Windows Kalkulator, pogledajte projekt na %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel O programu Subtitle of about message on Settings page Slanje povratnih informacija The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Još nema povijesti. The text that shows as the header for the history list Ništa nije spremljeno u memoriju. The text that shows as the header for the memory list Memorija Screen reader prompt for the negate button on the converter operator keypad Taj se izraz ne može zalijepiti The paste operation cannot be performed, if the expression is invalid. Gibibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibajtova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabitova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabajtova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibitova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibajtova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibajtova A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Izračun datuma Način za izračun Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Dodaj Add toggle button text Dodaj ili oduzmi dane Add or Subtract days option Datum Date result label Razlika između datuma Date difference option Dana Add/Subtract Days label Razlika Difference result label Pošiljatelj From Date Header for Difference Date Picker Mjeseci Add/Subtract Months label Oduzmi Subtract toggle button text Primatelj To Date Header for Difference Date Picker Godine Add/Subtract Years label Datum izvan granice Out of bound message shown as result when the date calculation exceeds the bounds dan dani mjesec mjeseci Isti datumi tjedan tjedana godina godine Razlika %1 Automation name for reading out the date difference. %1 = Date difference Izračunati datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Način rada kalkulatora – %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Način rada za pretvorbu – %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Način rada za izračun datuma Automation name for when the mode header is focused and the current mode is Date calculation. Popisi povijesti i memorije Automation name for the group of controls for history and memory lists. Kontrole memorije Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardne funkcije Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kontrole prikaza Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardni operatori Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerička tipkovnica Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operatori za kutove Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Znanstvene funkcije Automation name for the group of Scientific functions. Odabir baze Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operatori za programere Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Odabir načina ulaza Automation name for the group of input mode toggling buttons. Binarna tipkovnica Automation name for the group of bit toggling buttons. Pomakni izraz ulijevo Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Pomakni izraz udesno Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Dosegnut maks. broj znamenaka. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 spremljeno u memoriju {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Vrijednost u memorijskom mjestu %1 je %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Utor za memoriju %1 je izbrisan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". podijeljeno sa Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. Times Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. na Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-ti korijen Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. pomak ulijevo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. pomak udesno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ili Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ili Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. i Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Ažurirano %1 u %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Ažuriraj stope The text displayed for a hyperlink button that refreshes currency converter ratios. Mogući su troškovi podataka. The text displayed when users are on a metered connection and using currency converter. Dohvaćanje novih cijena nije uspjelo. Pokušajte ponovo kasnije. The text displayed when currency ratio data fails to load. Izvan mreže. Provjerite svoje%HL%Mrežne postavke%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Ažuriranje valutnih tečajeva This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valutni tečajevi ažurirani This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nije moguće ažurirati cijene This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Čišćenje cijele memorije (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Očisti cijelu memoriju Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus u stupnjevima Name for the sine function in degrees mode. Used by screen readers. sinus u radijanima Name for the sine function in radians mode. Used by screen readers. sinus u gradijanima Name for the sine function in gradians mode. Used by screen readers. inverzni sinus u stupnjevima Name for the inverse sine function in degrees mode. Used by screen readers. inverzni sinus u radijanima Name for the inverse sine function in radians mode. Used by screen readers. inverzni sinus u gradijanima Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolni sinus Name for the hyperbolic sine function. Used by screen readers. inverzni hiperbolni sinus Name for the inverse hyperbolic sine function. Used by screen readers. kosinus u stupnjevima Name for the cosine function in degrees mode. Used by screen readers. kosinus u radijanima Name for the cosine function in radians mode. Used by screen readers. kosinus u gradijanima Name for the cosine function in gradians mode. Used by screen readers. inverzni kosinus u stupnjevima Name for the inverse cosine function in degrees mode. Used by screen readers. inverzni kosinus u radijanima Name for the inverse cosine function in radians mode. Used by screen readers. inverzni kosinus u gradijanima Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolni kosinus Name for the hyperbolic cosine function. Used by screen readers. inverzni hiperbolni kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens u stupnjevima Name for the tangent function in degrees mode. Used by screen readers. tangens u radijanima Name for the tangent function in radians mode. Used by screen readers. tangens u gradijanima Name for the tangent function in gradians mode. Used by screen readers. inverzni tangens u stupnjevima Name for the inverse tangent function in degrees mode. Used by screen readers. inverzni tangens u radijanima Name for the inverse tangent function in radians mode. Used by screen readers. inverzni tangens u gradijanima Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolni tangens Name for the hyperbolic tangent function. Used by screen readers. inverzni hiperbolni tangens Name for the inverse hyperbolic tangent function. Used by screen readers. stupnjevi sekansa Name for the secant function in degrees mode. Used by screen readers. radijani sekansa Name for the secant function in radians mode. Used by screen readers. gradi sekansa Name for the secant function in gradians mode. Used by screen readers. inverzni stupnjevi sekansa Name for the inverse secant function in degrees mode. Used by screen readers. inverzni radijani sekansa Name for the inverse secant function in radians mode. Used by screen readers. inverzni gradi sekansa Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolički sekans Name for the hyperbolic secant function. Used by screen readers. inverzni hiperbolički sekans Name for the inverse hyperbolic secant function. Used by screen readers. stupnjevi kosekansa Name for the cosecant function in degrees mode. Used by screen readers. radijani kosekansa Name for the cosecant function in radians mode. Used by screen readers. gradi kosekansa Name for the cosecant function in gradians mode. Used by screen readers. inverzni stupnjevi kosekansa Name for the inverse cosecant function in degrees mode. Used by screen readers. inverzni radijani kosekansa Name for the inverse cosecant function in radians mode. Used by screen readers. inverzni gradi kosekansa Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolički kosekans Name for the hyperbolic cosecant function. Used by screen readers. inverzni hiperbolički kosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. stupnjevi kotangensa Name for the cotangent function in degrees mode. Used by screen readers. Radijani kotangensa Name for the cotangent function in radians mode. Used by screen readers. gradi kotangensa Name for the cotangent function in gradians mode. Used by screen readers. inverzni stupnjevi kotangensa Name for the inverse cotangent function in degrees mode. Used by screen readers. inverzni radijani kotangensa Name for the inverse cotangent function in radians mode. Used by screen readers. inverzni gradi kotangensa Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolički kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverzni hiperbolički kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Treći korijen Name for the cube root function. Used by screen readers. Logaritamska baza Name for the logbasey function. Used by screen readers. Apsolutna vrijednost Name for the absolute value function. Used by screen readers. pomak ulijevo Name for the programmer function that shifts bits to the left. Used by screen readers. pomak udesno Name for the programmer function that shifts bits to the right. Used by screen readers. faktorijel Name for the factorial function. Used by screen readers. stupanj minuta sekunda Name for the degree minute second (dms) function. Used by screen readers. prirodni logaritam Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. y-ti korijen Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategorija {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoftov ugovor o pružanju usluga Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Pošiljatelj From Date Header for AddSubtract Date Picker Pomaknite rezultat izračuna ulijevo Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Pomaknite rezultat izračuna udesno Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Izračun nije uspio Text displayed when the application is not able to do a calculation Logaritamska baza Y Screen reader prompt for the logBaseY button Trigonometrija Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcija Displayed on the button that contains a flyout for the general functions in scientific mode. Nejednakosti Displayed on the button that contains a flyout for the inequality functions. Nejednakosti Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitovni pomak Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverzna funkcija Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolička funkcija Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolički sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Sekans luka Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolički sekans luka Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolički kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Kosekans luka Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolički kosekans luka Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolički kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Kotangens luka Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolički kotangens luka Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Donja granica Screen reader prompt for the Calculator button floor in the scientific flyout keypad Gornja granica Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Slučajan Screen reader prompt for the Calculator button random in the scientific flyout keypad Apsolutna vrijednost Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerov broj Screen reader prompt for the Calculator button e in the scientific flyout keypad Dva na potenciju Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Niti Screen reader prompt for the Calculator button nor in the scientific flyout keypad Niti Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotiranje ulijevo uz nošenje Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotiranje udesno uz nošenje Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Pomak ulijevo Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Pomak ulijevo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Pomak udesno Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Pomak udesno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetički pomak Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logički pomak Label for a radio button that toggles logical shift behavior for the shift operations. Rotiraj kružni pomak Label for a radio button that toggles rotate circular behavior for the shift operations. Rotiranje kroz kružni pomak nošenja Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Treći korijen Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrija Screen reader prompt for the square root button on the scientific operator keypad Funkcije Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Ploče znanstvenog operatora Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Ploče operatora programera Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad najznačajniji dio Used to describe the last bit of a binary number. Used in bit flip Izrada grafikona Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Ucrtaj Screen reader prompt for the plot button on the graphing calculator operator keypad Automatsko osvježavanje prikaza (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Prikaz grafikona Screen reader prompt for the graph view button. Automatsko najbolje pristajanje Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ručno prilagođavanje Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Prikaz grafikona ponovno je postavljen Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Povećaj (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Povećaj Screen reader prompt for the zoom in button. Smanji (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Smanji Screen reader prompt for the zoom out button. Dodaj jednadžbu Placeholder text for the equation input button Trenutno nije moguće dijeliti. If there is an error in the sharing action will display a dialog with this text. U redu Used on the dismiss button of the share action error dialog. Pogledajte grafikon koji sam izradio/la pomoću aplikacije Windows kalkulator Sent as part of the shared content. The title for the share. Jednadžbe Header that appears over the equations section when sharing Varijable Header that appears over the variables section when sharing Slika grafikona s jednadžbama Alt text for the graph image when output via Share Varijable Header text for variables area Korak Label text for the step text box Minimum Label text for the min text box Maksimum Label text for the max text box Boja Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Analiza funkcije Title for KeyGraphFeatures Control Funkcija nema vodoravne asimptote. Message displayed when the graph does not have any horizontal asymptotes Funkcija nema prijevojnih točaka. Message displayed when the graph does not have any inflection points Funkcija ne sadrži točke maksimuma. Message displayed when the graph does not have any maxima Funkcija ne sadrži točke minimuma. Message displayed when the graph does not have any minima Konstanta String describing constant monotonicity of a function Padajuće String describing decreasing monotonicity of a function Nije moguće utvrditi monotonost funkcije. Error displayed when monotonicity cannot be determined Rastuća String describing increasing monotonicity of a function Monotonost funkcije nije poznata. Error displayed when monotonicity is unknown Funkcija ne sadrži niti jednu kosu asimptotu. Message displayed when the graph does not have any oblique asymptotes Nije moguće utvrditi parnost funkcije. Error displayed when parity is cannot be determined Funkcija je parna. Message displayed with the function parity is even Funkcija nije ni parna ni neparna. Message displayed with the function parity is neither even nor odd Funkcija je neparna. Message displayed with the function parity is odd Parnost funkcije nije poznata. Error displayed when parity is unknown Za ovu funkciju nije podržana periodičnost. Error displayed when periodicity is not supported Funkcija nije periodična. Message displayed with the function periodicity is not periodic Periodičnost funkcije nije poznata. Message displayed with the function periodicity is unknown Ove su značajke previše složene da bi Kalkulator mogao izračunati: Error displayed when analysis features cannot be calculated Funkcija nema okomitih asimptota. Message displayed when the graph does not have any vertical asymptotes Funkcija ne sadrži niti jedno sjecište x-osi. Message displayed when the graph does not have any x-intercepts Funkcija ne sadrži niti jedno sjecište y-osi. Message displayed when the graph does not have any y-intercepts Domena Title for KeyGraphFeatures Domain Property Vodoravne asimptote Title for KeyGraphFeatures Horizontal aysmptotes Property Točke infleksije Title for KeyGraphFeatures Inflection points Property Za ovu funkciju nije podržana analiza. Error displayed when graph analysis is not supported or had an error. Analiza je podržana samo za funkcije u obliku f(x). Primjer: y=x Error displayed when graph analysis detects the function format is not f(x). Točka maksimuma Title for KeyGraphFeatures Maxima Property Točka minimuma Title for KeyGraphFeatures Minima Property Monotonost Title for KeyGraphFeatures Monotonicity Property Kose asimptote Title for KeyGraphFeatures Oblique asymptotes Property Parnost Title for KeyGraphFeatures Parity Property Ciklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Raspon Title for KeyGraphFeatures Range Property Okomite asimptote Title for KeyGraphFeatures Vertical asymptotes Property Sjecište x-osi Title for KeyGraphFeatures XIntercept Property Sjecište y-osi Title for KeyGraphFeatures YIntercept Property Nije moguće izvršiti analizu za tu funkciju. Nije moguće izračunati domenu za ovu funkciju. Error displayed when Domain is not returned from the analyzer. Nije moguće izračunati raspon za tu funkciju. Error displayed when Range is not returned from the analyzer. Preljev (broj je prevelik) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Za crtanje grafa te jednadžbe nužan je način rada u radijanima. Error that occurs during graphing when radians is required. Ta je funkcija prekompleksna za crtanje grafa Error that occurs during graphing when the equation is too complex. Za crtanje grafa te funkcije nužan je način rada u stupnjevima Error that occurs during graphing when degrees is required Funkcija faktorijela ima argument koji nije valjan Error that occurs during graphing when a factorial function has an invalid argument. Funkcija faktorijela ima argument prevelik za crtanje grafa Error that occurs during graphing when a factorial has a large n Modulo se može koristiti samo s cijelim brojevima Error that occurs during graphing when modulo is used with a float. Jednadžba nema rješenja Error that occurs during graphing when the equation has no solution. Ne možete dijeliti s nulom Error that occurs during graphing when a divison by zero occurs. Jednadžba sadrži međusobno isključujuće logičke uvjete Error that occurs during graphing when mutually exclusive conditions are used. Jednadžba izlazi iz domene Error that occurs during graphing when the equation is out of domain. Izrada grafikona za tu jednadžbu nije podržana Error that occurs during graphing when the equation is not supported. U jednadžbi nedostaje otvorena zagrada Error that occurs during graphing when the equation is missing a ( U jednadžbi nedostaje zatvorena zagrada Error that occurs during graphing when the equation is missing a ) Broj ima previše decimalnih točaka Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Decimalnoj točki nedostaju znamenke Error that occurs during graphing with a decimal point without digits Neočekivan kraj izraza Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Izraz sadrži neočekivane znakove Error that occurs during graphing when there is an unexpected token. Izraz sadrži znakove koji nisu valjani Error that occurs during graphing when there is an invalid token. Previše znakova jednakosti Error that occurs during graphing when there are too many equals. Funkcija mora sadržavati barem jednu varijablu x ili y Error that occurs during graphing when the equation is missing x or y. Izraz nije valjan Error that occurs during graphing when an invalid syntax is used. Izraz je prazan Error that occurs during graphing when the expression is empty Znak jednakosti korišten je bez jednadžbe Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Nedostaje zagrada iza naziva funkcije Error that occurs during graphing when parenthesis are missing after a function. Matematička operacija ima neispravan broj parametara Error that occurs during graphing when a function has the wrong number of parameters Naziv varijable nije valjan Error that occurs during graphing when a variable name is invalid. U jednadžbi nedostaje otvorena uglata zagrada Error that occurs during graphing when a { is missing U jednadžbi nedostaje zatvorena uglata zagrada Error that occurs during graphing when a } is missing. „ja” i „Ja” ne mogu se upotrebljavati kao nazivi varijabli Error that occurs during graphing when i or I is used. Nije moguće nacrtati graf jednadžbe General error that occurs during graphing. Nije moguće riješiti znamenku za zadanu bazu Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Osnovno mora biti veća od 2 i manja od 36 Error that occurs during graphing when the base is out of range. Matematička operacija zahtijeva da jedan od njezinih parametara bude varijabla Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. U jednadžbi se kombiniraju logički i skalarni operandi Error that occurs during graphing when operands are mixed. Such as true and 1. x ili y ne mogu se koristiti u gornjim ili donjim graničnim vrijednostima Error that occurs during graphing when x or y is used in integral upper limits. x ili y ne mogu se koristiti u graničnoj vrijednosti Error that occurs during graphing when x or y is used in the limit point. Nije moguće koristiti kompleksnu beskonačnu vrijednost Error that occurs during graphing when complex infinity is used U nejednakostima se ne mogu koristiti kompleksni brojevi Error that occurs during graphing when complex numbers are used in inequalities. Natrag na popis funkcija This is the tooltip for the back button in the equation analysis page in the graphing calculator Natrag na popis funkcija This is the automation name for the back button in the equation analysis page in the graphing calculator Analiziraj funkciju This is the tooltip for the analyze function button Analiziraj funkciju This is the automation name for the analyze function button Analiziraj funkciju This is the text for the for the analyze function context menu command Ukloni jednadžbu This is the tooltip for the graphing calculator remove equation buttons Ukloni jednadžbu This is the automation name for the graphing calculator remove equation buttons Ukloni jednadžbu This is the text for the for the remove equation context menu command Zajednički koristi This is the automation name for the graphing calculator share button. Podijeli This is the tooltip for the graphing calculator share button. Promijeni stil jednadžbe This is the tooltip for the graphing calculator equation style button Promijeni stil jednadžbe This is the automation name for the graphing calculator equation style button Promijeni stil jednadžbe This is the text for the for the equation style context menu command Prikaži jednadžbu This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Sakrij jednadžbu This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Prikaži jednadžbu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Sakrij jednadžbu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Prekini ucrtavanje This is the tooltip/automation name for the graphing calculator stop tracing button Započni ucrtavanje This is the tooltip/automation name for the graphing calculator start tracing button Prozor za prikaz grafikona, x-OS bounded %1 i %2, os y bounded %3 i %4, prikazuje %5 jednadžbe {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguriraj klizač This is the tooltip text for the slider options button in Graphing Calculator Konfiguriraj klizač This is the automation name text for the slider options button in Graphing Calculator Prebaci na način jednadžbe Used in Graphing Calculator to switch the view to the equation mode Prebaci na način grafikona Used in Graphing Calculator to switch the view to the graph mode Prebaci na način jednadžbe Used in Graphing Calculator to switch the view to the equation mode Trenutni način rada je način jednadžbe Announcement used in Graphing Calculator when switching to the equation mode Trenutni je način rada je način grafikona Announcement used in Graphing Calculator when switching to the graph mode Prozor Heading for window extents on the settings Stupnjevi Degrees mode on settings page Gradijenti Gradian mode on settings page Radijani Radians mode on settings page Jedinice Heading for Unit's on the settings Vrati izvorni prikaz Hyperlink button to reset the view of the graph X-maks. X maximum value header X-min. X minimum value header Y-maks. Y Maximum value header Y-min. Y minimum value header Mogućnosti grafikona This is the tooltip text for the graph options button in Graphing Calculator Mogućnosti grafikona This is the automation name text for the graph options button in Graphing Calculator Mogućnosti grafikona Heading for the Graph options flyout in Graphing mode. Mogućnosti varijable Screen reader prompt for the variable settings toggle button Uključivanje/isključivanje mogućnosti varijable Tool tip for the variable settings toggle button Debljina crte Heading for the Graph options flyout in Graphing mode. Mogućnosti crte Heading for the equation style flyout in Graphing mode. Mala debljina crte Automation name for line width setting Srednja debljina crte Automation name for line width setting Velika debljina crte Automation name for line width setting Vrlo velika debljina crte Automation name for line width setting Unesite izraz this is the placeholder text used by the textbox to enter an equation Kopiraj Copy menu item for the graph context menu Izreži Cut menu item from the Equation TextBox Kopiraj Copy menu item from the Equation TextBox Zalijepi Paste menu item from the Equation TextBox Poništi Undo menu item from the Equation TextBox Odaberi sve Select all menu item from the Equation TextBox Unos funkcije The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Unos funkcije The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Ploča za unos funkcija The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Ploča s varijablama The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Popis varijabli The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Stavka popisa varijable %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Tekstni okvir za vrijednost varijable The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Klizač za vrijednost varijable The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Tekstni okvir za minimalnu vrijednost varijable The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Tekstni okvir za vrijednost koraka varijable The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Tekstni okvir za maksimalnu vrijednost varijable The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Stil pune crte Name of the solid line style for a graphed equation Stil isprekidane linije Name of the dotted line style for a graphed equation Stil crtkaste linije Name of the dashed line style for a graphed equation Mornarski plava Name of color in the color picker Morska pjena Name of color in the color picker Ljubičasta Name of color in the color picker Zelena Name of color in the color picker Menta zelena Name of color in the color picker Tamnozelena Name of color in the color picker Boja ugljena Name of color in the color picker Crvena Name of color in the color picker Svijetla šljiva Name of color in the color picker Magenta Name of color in the color picker Zlatnožuta Name of color in the color picker Svijetlonarančasta Name of color in the color picker Smeđa Name of color in the color picker Crna Name of color in the color picker Bijela Name of color in the color picker Boja 1 Name of color in the color picker Boja 2 Name of color in the color picker Boja 3 Name of color in the color picker Boja 4 Name of color in the color picker Tema grafikona Graph settings heading for the theme options Uvijek svijetlo Graph settings option to set graph to light theme Uskladi s temom aplikacije Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Uvijek svijetlo This is the automation name text for the Graph settings option to set graph to light theme Uskladi s temom aplikacije This is the automation name text for the Graph settings option to set graph to match the app theme Funkcija je uklonjena Announcement used in Graphing Calculator when a function is removed from the function list Okvir jednadžbe za analizu funkcije This is the automation name text for the equation box in the function analysis panel Jednako Screen reader prompt for the equal button on the graphing calculator operator keypad Manje je od Screen reader prompt for the Less than button Manje od ili jednako Screen reader prompt for the Less than or equal button Jednako Screen reader prompt for the Equal button Veće od ili jednako Screen reader prompt for the Greater than or equal button Veće je od Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Pošalji Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza funkcije Screen reader prompt for the function analysis grid Mogućnosti grafikona Screen reader prompt for the graph options panel Popisi povijesti i memorije Automation name for the group of controls for history and memory lists. Popis memorije Automation name for the group of controls for memory list. Utor za povijest %1 je izbrisan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator uvijek na vrhu Announcement to indicate calculator window is always shown on top. Kalkulator natrag na puni prikaz Announcement to indicate calculator window is now back to full view. Odabran je aritmetički pomak Label for a radio button that toggles arithmetic shift behavior for the shift operations. Odabran je logički pomak Label for a radio button that toggles logical shift behavior for the shift operations. Odabrano je rotiranje kružnog pomaka Label for a radio button that toggles rotate circular behavior for the shift operations. Odabrano je rotiranje kroz kružni pomak nošenja Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Postavke Header text of Settings page Izgled Subtitle of appearance setting on Settings page Tema aplikacije Title of App theme expander Odaberite temu aplikacije koja će se prikazati Description of App theme expander Svijetlo Lable for light theme option Tamno Lable for dark theme option Koristi postavku sustava Lable for the app theme option to use system setting Natrag Screen reader prompt for the Back button in title bar to back to main page Stranica postavki Announcement used when Settings page is opened Otvorite kontekstni izbornik za dostupne akcije Screen reader prompt for the context menu of the expression box U redu The text of OK button to dismiss an error dialog. Nije moguće vratiti ovu snimku stanja. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/hu-HU/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Érvénytelen a beírt érték Error message shown when the input makes a function fail, like log(-1) Nem definiált eredmény Error message shown when there's no possible value for a function. Nincs elég memória Error message shown when we run out of memory during a calculation. Túlfolyás Error message shown when there's an overflow during the calculation. Nincs definiálva az eredmény Same as 101 Nincs definiálva az eredmény Same 101 Túlfolyás Same as 107 Túlfolyás Same 107 Nullával nem lehet osztani Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/hu-HU/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Számológép {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Számológép [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Számológép {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Számológép [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Számológép {@Appx_Description@} This description is used for the official application when published through Windows Store. Számológép [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Másolás Copy context menu string Beillesztés Paste context menu string Körülbelül annyi, mint The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, érték: %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip legkevésbé fontos bit Used to describe the first bit of a binary number. Used in bit flip Memória úszó paneljének megnyitása This is the automation name and label for the memory button when the memory flyout is closed. Memória úszó paneljének bezárása This is the automation name and label for the memory button when the memory flyout is open. Mindig felül legyen This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Vissza a teljes nézethez This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memória This is the tool tip automation name for the memory button. Előzmények (Ctrl+H) This is the tool tip automation name for the history button. Bitváltó gomb This is the tool tip automation name for the bitFlip button. Teljes billentyűzet This is the tool tip automation name for the numberPad button. Memória törlése (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memória The text that shows as the header for the memory list Memória The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Előzmények The text that shows as the header for the history list Előzmények The automation name for the History pivot item that is shown when Calculator is in wide layout. Mértékegységváltó Label for a control that activates the unit converter mode. Tudományos Label for a control that activates scientific mode calculator layout Általános Label for a control that activates standard mode calculator layout. Átváltás mód Screen reader prompt for a control that activates the unit converter mode. Tudományos mód Screen reader prompt for a control that activates scientific mode calculator layout Általános mód Screen reader prompt for a control that activates standard mode calculator layout. Minden előzmény törlése "ClearHistory" used on the calculator history pane that stores the calculation history. Minden előzmény törlése This is the tool tip automation name for the Clear History button. Elrejtés "HideHistory" used on the calculator history pane that stores the calculation history. Általános The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Tudományos The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programozó The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Mértékegységváltó The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Számológép The text that shows in the dropdown navigation control for the calculator group. Mértékegységváltó The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Számológép The text that shows in the dropdown navigation control for the calculator group in upper case. Átváltók Pluralized version of the converter group text, used for the screen reader prompt. Számológépek Pluralized version of the calculator group text, used for the screen reader prompt. Megjelenített érték: %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Kifejezés: %1, aktuális bevitel: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Megjelenített érték: %1 pont {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Kifejezés: %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Megjelenítendő érték a vágólapra másolva Screen reader prompt for the Calculator display copy button, when the button is invoked. Előzmények Screen reader prompt for the history flyout Memória Screen reader prompt for the memory flyout Hexadecimális érték: %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimális érték: %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktális érték: %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Bináris érték: %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Minden előzmény törlése Screen reader prompt for the Calculator History Clear button Az előzmények törölve. Screen reader prompt for the Calculator History Clear button, when the button is invoked. Előzmények elrejtése Screen reader prompt for the Calculator History Hide button Előzmények úszó paneljének megnyitása Screen reader prompt for the Calculator History button, when the flyout is closed. Előzmények úszó paneljének bezárása Screen reader prompt for the Calculator History button, when the flyout is open. Tárolás a memóriában Screen reader prompt for the Calculator Memory button Tárolás a memóriában (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Memória törlése Screen reader prompt for the Calculator Clear Memory button Memória törölve Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Memória visszahívása Screen reader prompt for the Calculator Memory Recall button Memória visszahívása (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Memória hozzáadása Screen reader prompt for the Calculator Memory Add button Memória hozzáadása (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Memória kivonása Screen reader prompt for the Calculator Memory Subtract button Memória kivonása (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Memóriaelem törlése Screen reader prompt for the Calculator Clear Memory button Memóriaelem törlése This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Hozzáadás a memóriaelemhez Screen reader prompt for the Calculator Memory Add button in the Memory list Hozzáadás a memóriaelemhez This is the tool tip automation name for the Calculator Memory Add button in the Memory list Kivonás a memóriaelemből Screen reader prompt for the Calculator Memory Subtract button in the Memory list Kivonás a memóriaelemből This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Memóriaelem törlése Screen reader prompt for the Calculator Clear Memory button Memóriaelem törlése Text string for the Calculator Clear Memory option in the Memory list context menu Hozzáadás a memóriaelemhez Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Hozzáadás a memóriaelemhez Text string for the Calculator Memory Add option in the Memory list context menu Kivonás a memóriaelemből Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Kivonás a memóriaelemből Text string for the Calculator Memory Subtract option in the Memory list context menu Törlés Text string for the Calculator Delete swipe button in the History list Másolás Text string for the Calculator Copy option in the History list context menu Törlés Text string for the Calculator Delete option in the History list context menu Előzmény törlése Screen reader prompt for the Calculator Delete swipe button in the History list Előzmény törlése Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nulla Screen reader prompt for the Calculator number "0" button Egy Screen reader prompt for the Calculator number "1" button Kettő Screen reader prompt for the Calculator number "2" button Három Screen reader prompt for the Calculator number "3" button Négy Screen reader prompt for the Calculator number "4" button Öt Screen reader prompt for the Calculator number "5" button Hat Screen reader prompt for the Calculator number "6" button Hét Screen reader prompt for the Calculator number "7" button Nyolc Screen reader prompt for the Calculator number "8" button Kilenc Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button És Screen reader prompt for the Calculator And button Vagy Screen reader prompt for the Calculator Or button Nem Screen reader prompt for the Calculator Not button Elforgatás balra Screen reader prompt for the Calculator ROL button Elforgatás jobbra Screen reader prompt for the Calculator ROR button Bal shift Screen reader prompt for the Calculator LSH button Jobb shift Screen reader prompt for the Calculator RSH button Kizáró vagy Screen reader prompt for the Calculator XOR button Négyszó váltógomb Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Duplaszó váltógomb Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Szó váltógomb Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Bájt váltógomb Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitváltó gomb Screen reader prompt for the Calculator bitFlip button Teljes billentyűzet Screen reader prompt for the Calculator numberPad button Tizedesjel Screen reader prompt for the "." button Beírás törlése Screen reader prompt for the "CE" button Törlés Screen reader prompt for the "C" button Osztás Screen reader prompt for the divide button on the number pad Szorzás Screen reader prompt for the multiply button on the number pad Egyenlő Screen reader prompt for the equals button on the scientific operator keypad Inverz függvény Screen reader prompt for the shift button on the number pad in scientific mode. Mínusz Screen reader prompt for the minus button on the number pad Mínusz We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plusz Screen reader prompt for the plus button on the number pad Négyzetgyök Screen reader prompt for the square root button on the scientific operator keypad Százalék Screen reader prompt for the percent button on the scientific operator keypad Plusz Mínusz Screen reader prompt for the negate button on the scientific operator keypad Plusz Mínusz Screen reader prompt for the negate button on the converter operator keypad Reciprok Screen reader prompt for the invert button on the scientific operator keypad Nyitó zárójel Screen reader prompt for the Calculator "(" button on the scientific operator keypad Bal oldali, nyitó zárójelek száma: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Berekesztő zárójel Screen reader prompt for the Calculator ")" button on the scientific operator keypad Nyitó zárójelek száma: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nincsenek bezárandó nyitó zárójelek. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Normál alak Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolikus függvény Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Szinusz Screen reader prompt for the Calculator sin button on the scientific operator keypad Koszinusz Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolikus szinusz Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolikus koszinusz Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolikus tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Négyzetre emelés Screen reader prompt for the x squared on the scientific operator keypad. Köbre emelés Screen reader prompt for the x cubed on the scientific operator keypad. Arkuszszinusz Screen reader prompt for the inverted sin on the scientific operator keypad. Arkuszkoszinusz Screen reader prompt for the inverted cos on the scientific operator keypad. Arkusztangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolikus arkuszszinusz Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolikus arkuszkoszinusz Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolikus arkusztangens Screen reader prompt for the inverted tanh on the scientific operator keypad. x hatványra emelése Screen reader prompt for x power y button on the scientific operator keypad. Tíz hatványra emelése Screen reader prompt for the 10 power x button on the scientific operator keypad. e hatványra emelése Screen reader for the e power x on the scientific operator keypad. x y-adik gyöke Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmus Screen reader for the log base 10 on the scientific operator keypad Természetes logaritmus Screen reader for the log base e on the scientific operator keypad Moduló Screen reader for the mod button on the scientific operator keypad Kitevős Screen reader for the exp button on the scientific operator keypad Fok perc másodperc Screen reader for the exp button on the scientific operator keypad Fok Screen reader for the exp button on the scientific operator keypad Egész szám Screen reader for the int button on the scientific operator keypad Törtrész Screen reader for the frac button on the scientific operator keypad Faktoriális Screen reader for the factorial button on the basic operator keypad Fok váltógomb This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradián váltógomb This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radián váltógomb This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Mód legördülő lista Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategóriák legördülő lista Screen reader prompt for the Categories dropdown field. Mindig felül legyen Screen reader prompt for the Always-on-Top button when in normal mode. Vissza a teljes nézethez Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mindig felül legyen (Alt+fel) This is the tool tip automation name for the Always-on-Top button when in normal mode. Vissza a teljes nézethez (Alt+le) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Átalakítás a következőről: %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Átalakítás a következőről: %1 pont %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Átalakítás a következőre: %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 egyenlő %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Bemeneti egység Screen reader prompt for the Unit Converter Units1 i.e. top units field. Kimeneti egység Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Terület Unit conversion category name called Area (eg. area of a sports field in square meters) Adat Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Hossz Unit conversion category name called Length Teljesítmény Unit conversion category name called Power (eg. the power of an engine or a light bulb) Sebesség Unit conversion category name called Speed Idő Unit conversion category name called Time Térfogat Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Hőmérséklet Unit conversion category name called Temperature Súly és tömeg Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Nyomás Unit conversion category name called Pressure Szög Unit conversion category name called Angle Pénznem Unit conversion category name called Currency folyadék uncia (brit) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (brit) An abbreviation for a measurement unit of volume folyadék uncia (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (USA) An abbreviation for a measurement unit of volume gallon (brit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (brit) An abbreviation for a measurement unit of volume gallon (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (USA) An abbreviation for a measurement unit of volume liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) l An abbreviation for a measurement unit of volume milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume pint (brit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (brit) An abbreviation for a measurement unit of volume pint A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (USA) An abbreviation for a measurement unit of volume evőkanál (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ek (USA) An abbreviation for a measurement unit of volume teáskanál (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tk (USA) An abbreviation for a measurement unit of volume evőkanál (brit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ek (brit) An abbreviation for a measurement unit of volume teáskanál (brit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tk (brit) An abbreviation for a measurement unit of volume quart (brit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (brit) An abbreviation for a measurement unit of volume quart (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (USA) An abbreviation for a measurement unit of volume csésze (amerikai) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cs An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume n An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy láb An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area LE (USA) An abbreviation for a measurement unit of power óra An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power cs An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mf An abbreviation for a measurement unit of length mérföld/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time perc An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length tmf An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power mp An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mf² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area TB An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power hét An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length év An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data mf An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data falat An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data hold A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/perc A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kalória A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centiméter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centiméter/s A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) köbcentiméter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) köbláb A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) köbhüvelyk A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) köbméter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) köbyard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nap A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius-fok An option in the unit converter to select degrees Celsius Fahrenheit-fok An option in the unit converter to select degrees Fahrenheit elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) láb A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) láb/másodperc A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lábfont A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lábfont/perc A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektár A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lóerő (amerikai) A measurement unit for power óra A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hüvelyk A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowattóra A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilobájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilokalória A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilométer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilométer/óra A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) csomó A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) megabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) méter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) méter/s A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milliomod másodperc A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mérföld A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mérföld/óra A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milliméter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ezredmásodperc A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) perc A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Falat A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nanométer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tengeri mérföld A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) másodperc A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetcentiméter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetláb A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzethüvelyk A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetkilométer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetméter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetmérföld A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetmilliméter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) négyzetyard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hét A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Év A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kt An abbreviation for a measurement unit of weight fok An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure Hgmm An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure PSI An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dkg An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonna (brit) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonna (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight karát A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fok A measurement unit for Angle. radián A measurement unit for Angle. gradián A measurement unit for Angle. atmoszféra A measurement unit for Pressure. bar A measurement unit for Pressure. kilopascal A measurement unit for Pressure. higanymilliméter A measurement unit for Pressure. pascal A measurement unit for Pressure. font/négyzethüvelyk A measurement unit for Pressure. centigramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagramm A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) decigramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektogramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) angol tonna A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milligramm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uncia A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) font A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) amerikai tonna A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tonna A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focipálya A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focipálya A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hajlékonylemez A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hajlékonylemez A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ceruzaelem AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ceruzaelem AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gemkapocs A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gemkapocs A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) óriás-repülőgép A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) óriás-repülőgépek A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) villanykörte A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) villanykörte A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fürdőkád A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fürdőkád A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hópehely A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hópehely A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefánt An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefánt An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) teknősbéka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) teknősbéka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sugárhajtású repülő A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sugárhajtású repülő A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bálna A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bálna A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávéscsésze A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávéscsésze A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) úszómedence An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) úszómedence An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kéz A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kéz A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papírlap A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papírlap A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vár A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vár A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banán A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banán A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) süteményszelet A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) süteményszelet A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mozdonymotor A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mozdonymotor A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focilabda A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) focilabda A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Memóriaelem Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Vissza Screen reader prompt for the About panel back button Vissza Content of tooltip being displayed on AboutControlBackButton A Microsoft szoftverlicenc-szerződése Displayed on a link to the Microsoft Software License Terms on the About panel Előnézet Label displayed next to upcoming features A Microsoft adatvédelmi nyilatkozata Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Minden jog fenntartva. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Ha tudni szeretné, hogy miként működhet közre a Windows Számológép számára, nézze meg a projektet a %HL%GitHub%HL% szolgáltatásban. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Névjegy Subtitle of about message on Settings page Visszajelzés küldése The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Még nincsenek előzmények. The text that shows as the header for the history list Semmi sincs a memóriába mentve. The text that shows as the header for the memory list Memória Screen reader prompt for the negate button on the converter operator keypad A kifejezést nem lehet beilleszteni The paste operation cannot be performed, if the expression is invalid. gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gibibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kibibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mebibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pebibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tebibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) exbibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zetabájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zebibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jobibájt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dátumszámítás Számítási mód Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Összeadás Add toggle button text Napok összeadása vagy kivonása Add or Subtract days option Dátum Date result label Dátumok közti különbség Date difference option Nap Add/Subtract Days label Különbség Difference result label Kezdő dátum From Date Header for Difference Date Picker Hónap Add/Subtract Months label Kivonás Subtract toggle button text Záró dátum To Date Header for Difference Date Picker Év Add/Subtract Years label Tartományon kívüli dátum Out of bound message shown as result when the date calculation exceeds the bounds nap nap hónap hónap Egyező dátumok hét hét év év Különbség%1 Automation name for reading out the date difference. %1 = Date difference Kapott dátum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 számológépmód {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 átváltási mód {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Dátumszámítási mód Automation name for when the mode header is focused and the current mode is Date calculation. Előzmények és memórialisták Automation name for the group of controls for history and memory lists. Memóriavezérlők Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Szabványos funkciók Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Képernyővezérlők Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Szabványos operátorok Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Számbillentyűzet Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Szög operátorok Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Tudományos funkciók Automation name for the group of Scientific functions. Alapszám kiválasztása Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programozói operátorok Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Beviteli mód kiválasztása Automation name for the group of input mode toggling buttons. Bitváltós billentyűzet Automation name for the group of bit toggling buttons. Kifejezés görgetése balra Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Kifejezés görgetése jobbra Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Elérte a számjegyek maximális számát. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 mentve a memóriába {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". A(z) %1 memóriahely %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". A(z) %1 memóriahely törölve. {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". osztva: Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. alkalommal Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. mínusz Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plusz Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. a következő hatványa: Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y-adik gyöke Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. bal Shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. jobb Shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. vagy Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x vagy Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. és Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Frissítve: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Díjak frissítése The text displayed for a hyperlink button that refreshes currency converter ratios. Adatforgalmi díjak lehetnek érvényben. The text displayed when users are on a metered connection and using currency converter. Nem sikerült lekérni az új mértékeket. Később próbálja meg újból. The text displayed when currency ratio data fails to load. Offline. Ellenőrizze a%HL%Hálózati beállításokat%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Árfolyamok frissítése This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Árfolyamok frissítve This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nem sikerült az árfolyamok frissítése This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Memória törlése (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Memória törlése Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} szinusz fok Name for the sine function in degrees mode. Used by screen readers. szinusz radián Name for the sine function in radians mode. Used by screen readers. szinusz gradián Name for the sine function in gradians mode. Used by screen readers. inverz szinusz fok Name for the inverse sine function in degrees mode. Used by screen readers. inverz szinusz radián Name for the inverse sine function in radians mode. Used by screen readers. inverz szinusz gradián Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolikus szinusz Name for the hyperbolic sine function. Used by screen readers. inverz hiperbolikus szinusz Name for the inverse hyperbolic sine function. Used by screen readers. koszinusz fok Name for the cosine function in degrees mode. Used by screen readers. koszinusz radián Name for the cosine function in radians mode. Used by screen readers. koszinusz gradián Name for the cosine function in gradians mode. Used by screen readers. inverz koszinusz fok Name for the inverse cosine function in degrees mode. Used by screen readers. inverz koszinusz radián Name for the inverse cosine function in radians mode. Used by screen readers. inverz koszinusz gradián Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolikus koszinusz Name for the hyperbolic cosine function. Used by screen readers. inverz hiperbolikus koszinusz Name for the inverse hyperbolic cosine function. Used by screen readers. tangens fok Name for the tangent function in degrees mode. Used by screen readers. tangens radián Name for the tangent function in radians mode. Used by screen readers. tangens gradián Name for the tangent function in gradians mode. Used by screen readers. inverz tangens fok Name for the inverse tangent function in degrees mode. Used by screen readers. inverz tangens radián Name for the inverse tangent function in radians mode. Used by screen readers. inverz tangens gradián Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolikus tangens Name for the hyperbolic tangent function. Used by screen readers. inverz hiperbolikus tangens Name for the inverse hyperbolic tangent function. Used by screen readers. szekáns (fok) Name for the secant function in degrees mode. Used by screen readers. szekáns (radián) Name for the secant function in radians mode. Used by screen readers. szekáns (gradián) Name for the secant function in gradians mode. Used by screen readers. inverz szekáns (fok) Name for the inverse secant function in degrees mode. Used by screen readers. inverz szekáns (radián) Name for the inverse secant function in radians mode. Used by screen readers. inverz szekáns (gradián) Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolikus szekáns Name for the hyperbolic secant function. Used by screen readers. inverz hiperbolikus szekáns Name for the inverse hyperbolic secant function. Used by screen readers. koszekáns (fok) Name for the cosecant function in degrees mode. Used by screen readers. koszekáns (radián) Name for the cosecant function in radians mode. Used by screen readers. koszekáns (gradián) Name for the cosecant function in gradians mode. Used by screen readers. inverz koszekáns (fok) Name for the inverse cosecant function in degrees mode. Used by screen readers. inverz koszekáns (radián) Name for the inverse cosecant function in radians mode. Used by screen readers. inverz koszekáns (gradián) Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolikus koszekáns Name for the hyperbolic cosecant function. Used by screen readers. inverz hiperbolikus koszekáns Name for the inverse hyperbolic cosecant function. Used by screen readers. koszekáns (fok) Name for the cotangent function in degrees mode. Used by screen readers. Tangens (radián) Name for the cotangent function in radians mode. Used by screen readers. kotangens (gradián) Name for the cotangent function in gradians mode. Used by screen readers. inverz kotangens (fok) Name for the inverse cotangent function in degrees mode. Used by screen readers. inverz kotangens (radián) Name for the inverse cotangent function in radians mode. Used by screen readers. inverz kotangens (gradián) Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolikus kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverz hiperbolikus kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Köbgyök Name for the cube root function. Used by screen readers. Y alapú logaritmus Name for the logbasey function. Used by screen readers. Abszolút érték Name for the absolute value function. Used by screen readers. bal Shift Name for the programmer function that shifts bits to the left. Used by screen readers. jobb Shift Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriális Name for the factorial function. Used by screen readers. fok perc másodperc Name for the degree minute second (dms) function. Used by screen readers. természetes logaritmus Name for the natural log (ln) function. Used by screen readers. négyzetre emelés Name for the square function. Used by screen readers. y-adik gyöke Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategória {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". A Microsoft szolgáltatási szerződése Displayed on a link to the Microsoft Services Agreement in the about this app information pyeong An abbreviation for a measurement unit of area. pyeong A measurement unit for area. Kezdő dátum From Date Header for AddSubtract Date Picker Számítási eredmény balra görgetése Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Számítási eredmény jobbra görgetése Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. A számítás nem sikerült. Text displayed when the application is not able to do a calculation Y alapú logaritmus Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Függvény Displayed on the button that contains a flyout for the general functions in scientific mode. Egyenlőtlenségek Displayed on the button that contains a flyout for the inequality functions. Egyenlőtlenségek Screen reader prompt for the Inequalities button Bitenként Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Biteltolás Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverz függvény Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolikus függvény Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Szekáns Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolikus szekáns Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkusz szekáns Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolikus arkusz szekáns Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Koszekáns Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolikus koszekáns Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkusz koszekáns Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolikus arkusz koszekáns Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolikus kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkusz kotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolikus arkusz kotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Alsó határ Screen reader prompt for the Calculator button floor in the scientific flyout keypad Felső határ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Véletlenszerű Screen reader prompt for the Calculator button random in the scientific flyout keypad Abszolút érték Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler-féle szám Screen reader prompt for the Calculator button e in the scientific flyout keypad Kettő hatványra emelése Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Forgatás balra, átvitellel Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Forgatás jobbra, átvitellel Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Bal shift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Balra tolás Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Jobb shift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Jobbra tolás Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetikai eltolás Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logikai eltolás Label for a radio button that toggles logical shift behavior for the shift operations. Forgatás körkörös eltolással Label for a radio button that toggles rotate circular behavior for the shift operations. Forgatás átvitellel, körkörös eltolással Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Köbgyök Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Függvények Screen reader prompt for the square root button on the scientific operator keypad Bitenként Screen reader prompt for the square root button on the scientific operator keypad Biteltolás Screen reader prompt for the square root button on the scientific operator keypad Tudományos műveleti panelek Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programozói operátori panelek Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad legfontosabb bit Used to describe the last bit of a binary number. Used in bit flip Grafikus Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Elhelyezés Screen reader prompt for the plot button on the graphing calculator operator keypad Nézet automatikus frissítése (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafikonnézet Screen reader prompt for the graph view button. Automatikus legjobb illeszkedés Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuális igazítás Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set A Grafikon nézet alaphelyzetbe állítva Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Nagyítás (Ctrl + pluszjel) This is the tool tip automation name for the Calculator zoom in button. Nagyítás Screen reader prompt for the zoom in button. Kicsinyítés (Ctrl + mínuszjel) This is the tool tip automation name for the Calculator zoom out button. Kicsinyítés Screen reader prompt for the zoom out button. Egyenlet hozzáadása Placeholder text for the equation input button A megosztás jelenleg nem lehetséges. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Ezt a grafikont készítettem a Windows Számológéppel! Sent as part of the shared content. The title for the share. Egyenletek Header that appears over the equations section when sharing Változók Header that appears over the variables section when sharing Egyenletekkel ellátott grafikon képe Alt text for the graph image when output via Share Változók Header text for variables area Lépték Label text for the step text box Min. Label text for the min text box Max. Label text for the max text box Szín Label for the Line Color section of the style picker Stílus Label for the Line Style section of the style picker Függvényelemzés Title for KeyGraphFeatures Control A függvénynek nincs vízszintes aszimptotája. Message displayed when the graph does not have any horizontal asymptotes A függvénynek nincs inflexiós pontja. Message displayed when the graph does not have any inflection points A függvénynek nincs maximumpontja. Message displayed when the graph does not have any maxima A függvénynek nincs minimumpontja. Message displayed when the graph does not have any minima Állandó String describing constant monotonicity of a function Csökkenő String describing decreasing monotonicity of a function Nem sikerült megállapítani a függvény monotonitását. Error displayed when monotonicity cannot be determined Növekvő String describing increasing monotonicity of a function A függvény monotonitása ismeretlen. Error displayed when monotonicity is unknown A függvénynek nincs ferde aszimptotája. Message displayed when the graph does not have any oblique asymptotes Nem sikerült megállapítani a függvény paritását. Error displayed when parity is cannot be determined A függvény páros. Message displayed with the function parity is even A függvény se nem páros, se nem páratlan. Message displayed with the function parity is neither even nor odd A függvény páratlan. Message displayed with the function parity is odd A függvény paritása ismeretlen. Error displayed when parity is unknown Ez a függvény nem támogatja a periodicitást. Error displayed when periodicity is not supported A függvény nem periodikus. Message displayed with the function periodicity is not periodic A függvény periodicitása ismeretlen. Message displayed with the function periodicity is unknown Ezek a jellemzők túl összetettek a Számológép általi kiszámításhoz: Error displayed when analysis features cannot be calculated A függvénynek nincs függőleges aszimptotája. Message displayed when the graph does not have any vertical asymptotes A függvénynek nincs x tengelymetszete. Message displayed when the graph does not have any x-intercepts A függvénynek nincs y tengelymetszete. Message displayed when the graph does not have any y-intercepts Értelmezési tartomány Title for KeyGraphFeatures Domain Property Vízszintes aszimptoták Title for KeyGraphFeatures Horizontal aysmptotes Property Inflexiós pontok Title for KeyGraphFeatures Inflection points Property Ez a függvény nem támogatja az elemzést. Error displayed when graph analysis is not supported or had an error. Az elemzés csak az f(x) formátumú függvényeket támogatja. Példa: y=x Error displayed when graph analysis detects the function format is not f(x). Maximum Title for KeyGraphFeatures Maxima Property Minimum Title for KeyGraphFeatures Minima Property Monotonitás Title for KeyGraphFeatures Monotonicity Property Ferde aszimptoták Title for KeyGraphFeatures Oblique asymptotes Property Paritás Title for KeyGraphFeatures Parity Property Ciklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Értékkészlet Title for KeyGraphFeatures Range Property Függőleges aszimptoták Title for KeyGraphFeatures Vertical asymptotes Property X tengelymetszet Title for KeyGraphFeatures XIntercept Property Y tengelymetszet Title for KeyGraphFeatures YIntercept Property Nem sikerült elvégezni az elemzést a függvényhez. Nem lehet kiszámítani a függvény értelmezési tartományát. Error displayed when Domain is not returned from the analyzer. Nem lehet kiszámítani a függvény értékkészletét. Error displayed when Range is not returned from the analyzer. Túlcsordulás (a szám túl nagy) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Az egyenlet grafikonon történő ábrázolásához radián mód szükséges. Error that occurs during graphing when radians is required. A függvény túl bonyolult a grafikonon történő ábrázoláshoz Error that occurs during graphing when the equation is too complex. A függvén grafikonon történő ábrázolásához fok mód szükséges Error that occurs during graphing when degrees is required A faktoriális függvény egyik argumentuma érvénytelen Error that occurs during graphing when a factorial function has an invalid argument. A faktoriális függvény egyik argumentuma túl nagy a grafikonon történő ábrázoláshoz Error that occurs during graphing when a factorial has a large n A maradékos osztás csak egész számokkal használható Error that occurs during graphing when modulo is used with a float. Az egyenletnek nincs megoldása Error that occurs during graphing when the equation has no solution. Nullával nem lehet osztani Error that occurs during graphing when a divison by zero occurs. Az egyenletben egymást kölcsönösen kizáró logikai feltételeket tartalmaz Error that occurs during graphing when mutually exclusive conditions are used. Az egyenlet tartományon kívül van Error that occurs during graphing when the equation is out of domain. Ennek az egyenletnek a grafikonon történő ábrázolása nem támogatott Error that occurs during graphing when the equation is not supported. Az egyenletből hiányzik egy nyitó kerek zárójel Error that occurs during graphing when the equation is missing a ( Az egyenletből hiányzik egy záró kerek zárójel Error that occurs during graphing when the equation is missing a ) Egy számban túl sok tizedesvessző van Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Egy tizedesvesszőnél számjegyek hiányoznak Error that occurs during graphing with a decimal point without digits Nem várt kifejezésvégződés Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* A kifejezés váratlan karaktereket tartalmaz Error that occurs during graphing when there is an unexpected token. A kifejezés érvénytelen karaktereket tartalmaz Error that occurs during graphing when there is an invalid token. Túl sok egyenlőségjel Error that occurs during graphing when there are too many equals. A függvénynek legalább egy x vagy y változót tartalmaznia kell. Error that occurs during graphing when the equation is missing x or y. Érvénytelen kifejezés Error that occurs during graphing when an invalid syntax is used. A kifejezés üres Error that occurs during graphing when the expression is empty Az egyenlőségjelet egyenlet nélkül használták Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) A függvény neve után hiányzik a kerek zárójel Error that occurs during graphing when parenthesis are missing after a function. Egy matematikai művelet nem megfelelő számú paraméterrel rendelkezik Error that occurs during graphing when a function has the wrong number of parameters Egy változónév érvénytelen Error that occurs during graphing when a variable name is invalid. Az egyenletből hiányzik egy nyitó szögletes zárójel Error that occurs during graphing when a { is missing Az egyenletből hiányzik egy záró szögletes zárójel Error that occurs during graphing when a } is missing. Az „i“ és az „I“ nem használható változónévként Error that occurs during graphing when i or I is used. Az egyenlet nem ábrázolható grafikonon General error that occurs during graphing. A számjegy nem oldható fel a megadott alapra Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Az alapnak nagyobbnak kell lennie, mint 2, mint 36 Error that occurs during graphing when the base is out of range. A matematikai művelethez szükséges, hogy az egyik paramétere változó legyen Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Az egyenlet keveri a logikai és a skaláris operandusokat Error that occurs during graphing when operands are mixed. Such as true and 1. x vagy y nem használható a felső vagy alsó határokkal Error that occurs during graphing when x or y is used in integral upper limits. Az x vagy y nem használható a határpontban Error that occurs during graphing when x or y is used in the limit point. Nem használható komplex végtelen Error that occurs during graphing when complex infinity is used Komplex számok nem használhatók az egyenlőtlenségekben Error that occurs during graphing when complex numbers are used in inequalities. Vissza a függvénylistára This is the tooltip for the back button in the equation analysis page in the graphing calculator Vissza a függvénylistára This is the automation name for the back button in the equation analysis page in the graphing calculator Függvény elemzése This is the tooltip for the analyze function button Függvény elemzése This is the automation name for the analyze function button Függvény elemzése This is the text for the for the analyze function context menu command Egyenlet eltávolítása This is the tooltip for the graphing calculator remove equation buttons Egyenlet eltávolítása This is the automation name for the graphing calculator remove equation buttons Egyenlet eltávolítása This is the text for the for the remove equation context menu command Megosztás This is the automation name for the graphing calculator share button. Megosztás This is the tooltip for the graphing calculator share button. Egyenlet stílusának módosítása This is the tooltip for the graphing calculator equation style button Egyenlet stílusának módosítása This is the automation name for the graphing calculator equation style button Egyenlet stílusának módosítása This is the text for the for the equation style context menu command Egyenlet megjelenítése This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Egyenlet elrejtése This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1. egyenlet megjelenítése {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. %1. egyenlet elrejtése {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Ábrázolás leállítása This is the tooltip/automation name for the graphing calculator stop tracing button Ábrázolás indítása This is the tooltip/automation name for the graphing calculator start tracing button A diagram kötött, az x tengely a %1 és a %2, az y tengely kötött, %3 és %4 között %5 egyenletek megjelenítése {Locked="%1","%2", "%3", "%4", "%5"}. Csúszka konfigurálása This is the tooltip text for the slider options button in Graphing Calculator Csúszka konfigurálása This is the automation name text for the slider options button in Graphing Calculator Váltás egyenlet módba Used in Graphing Calculator to switch the view to the equation mode Váltás grafikon módba Used in Graphing Calculator to switch the view to the graph mode Váltás egyenlet módba Used in Graphing Calculator to switch the view to the equation mode A jelenlegi mód az egyenlet mód Announcement used in Graphing Calculator when switching to the equation mode A jelenlegi mód a grafikon mód Announcement used in Graphing Calculator when switching to the graph mode Ablak Heading for window extents on the settings Fok Degrees mode on settings page Gradián Gradian mode on settings page Radián Radians mode on settings page Egységek Heading for Unit's on the settings Nézet alaphelyzetbe állítása Hyperlink button to reset the view of the graph X max. X maximum value header X min. X minimum value header Y max. Y Maximum value header Y min. Y minimum value header Grafikon beállításai This is the tooltip text for the graph options button in Graphing Calculator Grafikon beállításai This is the automation name text for the graph options button in Graphing Calculator Grafikon beállításai Heading for the Graph options flyout in Graphing mode. Változó beállításai Screen reader prompt for the variable settings toggle button Változóbeállítások be- és kikapcsolása Tool tip for the variable settings toggle button Vonal vastagsága Heading for the Graph options flyout in Graphing mode. Vonalbeállítások Heading for the equation style flyout in Graphing mode. Kis vonalvastagság Automation name for line width setting Közepes vonalvastagság Automation name for line width setting Nagy vonalvastagság Automation name for line width setting Extra nagy vonalvastagság Automation name for line width setting Adjon meg egy kifejezést this is the placeholder text used by the textbox to enter an equation Másolás Copy menu item for the graph context menu Kivágás Cut menu item from the Equation TextBox Másolás Copy menu item from the Equation TextBox Beillesztés Paste menu item from the Equation TextBox Visszavonás Undo menu item from the Equation TextBox Az összes kijelölése Select all menu item from the Equation TextBox Függvénybemenet The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Függvénybemenet The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Függvény beviteli panel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Változópanel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Változólista The automation name for the Variable ListView that is shown when Calculator is in graphing mode. %1 változólista eleme The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Változóérték szövegbeviteli mező The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Változóérték csúszkája The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Változó minimumértéke szövegmező The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Változó lépésközértéke szövegmező The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Változó maximumértéke szövegmező The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Folytonos vonalstílus Name of the solid line style for a graphed equation Pontozott vonalstílus Name of the dotted line style for a graphed equation Szaggatott vonalstílus Name of the dashed line style for a graphed equation Matrózkék Name of color in the color picker Türkizzöld Name of color in the color picker Lila Name of color in the color picker Zöld Name of color in the color picker Mentazöld Name of color in the color picker Sötétzöld Name of color in the color picker Szénfekete Name of color in the color picker Piros Name of color in the color picker Világos szilvakék Name of color in the color picker Magenta Name of color in the color picker Aranysárga Name of color in the color picker Világos narancssárga Name of color in the color picker Barna Name of color in the color picker Fekete Name of color in the color picker Fehér Name of color in the color picker 1. szín Name of color in the color picker 2. szín Name of color in the color picker 3. szín Name of color in the color picker 4. szín Name of color in the color picker Grafikon témája Graph settings heading for the theme options Mindig világos Graph settings option to set graph to light theme Apptéma egyeztetése Graph settings option to set graph to match the app theme Téma This is the automation name text for the Graph settings heading for the theme options Mindig világos This is the automation name text for the Graph settings option to set graph to light theme Apptéma egyeztetése This is the automation name text for the Graph settings option to set graph to match the app theme Függvény eltávolítva Announcement used in Graphing Calculator when a function is removed from the function list Függvényelemzési egyenlet mező This is the automation name text for the equation box in the function analysis panel Egyenlő Screen reader prompt for the equal button on the graphing calculator operator keypad Kisebb, mint Screen reader prompt for the Less than button Kisebb vagy egyenlő Screen reader prompt for the Less than or equal button Egyenlő Screen reader prompt for the Equal button Nagyobb vagy egyenlő Screen reader prompt for the Greater than or equal button Nagyobb, mint Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Küldés Screen reader prompt for the submit button on the graphing calculator operator keypad Függvényelemzés Screen reader prompt for the function analysis grid Grafikon beállításai Screen reader prompt for the graph options panel Előzmények és memórialisták Automation name for the group of controls for history and memory lists. Memórialista Automation name for the group of controls for memory list. A(z) %1 előzménybejegyzés törölve {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". A számológép mindig látszik Announcement to indicate calculator window is always shown on top. A számológép visszaállítása teljes nézetre Announcement to indicate calculator window is now back to full view. Aritmetikai eltolás kijelölve Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logikai eltolás kijelölve Label for a radio button that toggles logical shift behavior for the shift operations. Forgatás körkörös eltolással kijelölve Label for a radio button that toggles rotate circular behavior for the shift operations. Forgatás átvitellel, körkörös eltolással kijelölve Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Beállítások Header text of Settings page Megjelenés Subtitle of appearance setting on Settings page Alkalmazástéma Title of App theme expander Válassza ki a megjelenítendő alkalmazástémát Description of App theme expander Világos Lable for light theme option Sötét Lable for dark theme option Rendszerbeállítás használata Lable for the app theme option to use system setting Vissza Screen reader prompt for the Back button in title bar to back to main page Beállítások lap Announcement used when Settings page is opened Az elérhető műveletek helyi menüjének megnyitása Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Nem sikerült visszaállítani ezt a pillanatképet. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/id-ID/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Input tidak valid Error message shown when the input makes a function fail, like log(-1) Hasil tidak ditentukan Error message shown when there's no possible value for a function. Memori tidak cukup Error message shown when we run out of memory during a calculation. Luapan Error message shown when there's an overflow during the calculation. Hasil tidak terdefinisikan Same as 101 Hasil tidak terdefinisikan Same 101 Luapan Same as 107 Luapan Same 107 Tidak dapat dibagi nol Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/id-ID/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kalkulator Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Kalkulator Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Salin Copy context menu string Tempel Paste context menu string Hampir sama dengan The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, nilai %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) Ke-63 Sub-string used in automation name for 63 bit in bit flip Ke-62 Sub-string used in automation name for 62 bit in bit flip Ke-61 Sub-string used in automation name for 61 bit in bit flip Ke-60 Sub-string used in automation name for 60 bit in bit flip Ke-59 Sub-string used in automation name for 59 bit in bit flip Ke-58 Sub-string used in automation name for 58 bit in bit flip Ke-57 Sub-string used in automation name for 57 bit in bit flip Ke-56 Sub-string used in automation name for 56 bit in bit flip Ke-55 Sub-string used in automation name for 55 bit in bit flip Ke-54 Sub-string used in automation name for 54 bit in bit flip Ke-53 Sub-string used in automation name for 53 bit in bit flip Ke-52 Sub-string used in automation name for 52 bit in bit flip Ke-51 Sub-string used in automation name for 51 bit in bit flip Ke-50 Sub-string used in automation name for 50 bit in bit flip Ke-49 Sub-string used in automation name for 49 bit in bit flip Ke-48 Sub-string used in automation name for 48 bit in bit flip Ke-47 Sub-string used in automation name for 47 bit in bit flip Ke-46 Sub-string used in automation name for 46 bit in bit flip Ke-45 Sub-string used in automation name for 45 bit in bit flip Ke-44 Sub-string used in automation name for 44 bit in bit flip Ke-43 Sub-string used in automation name for 43 bit in bit flip Ke-42 Sub-string used in automation name for 42 bit in bit flip Ke-41 Sub-string used in automation name for 41 bit in bit flip Ke-40 Sub-string used in automation name for 40 bit in bit flip Ke-39 Sub-string used in automation name for 39 bit in bit flip Ke-38 Sub-string used in automation name for 38 bit in bit flip Ke-37 Sub-string used in automation name for 37 bit in bit flip Ke-36 Sub-string used in automation name for 36 bit in bit flip Ke-35 Sub-string used in automation name for 35 bit in bit flip Ke-34 Sub-string used in automation name for 34 bit in bit flip Ke-33 Sub-string used in automation name for 33 bit in bit flip Ke-32 Sub-string used in automation name for 32 bit in bit flip Ke-31 Sub-string used in automation name for 31 bit in bit flip Ke-30 Sub-string used in automation name for 30 bit in bit flip Ke-29 Sub-string used in automation name for 29 bit in bit flip Ke-28 Sub-string used in automation name for 28 bit in bit flip Ke-27 Sub-string used in automation name for 27 bit in bit flip Ke-26 Sub-string used in automation name for 26 bit in bit flip Ke-25 Sub-string used in automation name for 25 bit in bit flip Ke-24 Sub-string used in automation name for 24 bit in bit flip Ke-23 Sub-string used in automation name for 23 bit in bit flip Ke-22 Sub-string used in automation name for 22 bit in bit flip Ke-21 Sub-string used in automation name for 21 bit in bit flip Ke-20 Sub-string used in automation name for 20 bit in bit flip Ke-19 Sub-string used in automation name for 19 bit in bit flip Ke-18 Sub-string used in automation name for 18 bit in bit flip Ke-17 Sub-string used in automation name for 17 bit in bit flip Ke-16 Sub-string used in automation name for 16 bit in bit flip Ke-15 Sub-string used in automation name for 15 bit in bit flip Ke-14 Sub-string used in automation name for 14 bit in bit flip Ke-13 Sub-string used in automation name for 13 bit in bit flip Ke-12 Sub-string used in automation name for 12 bit in bit flip Ke-11 Sub-string used in automation name for 11 bit in bit flip Ke-10 Sub-string used in automation name for 10 bit in bit flip Ke-9 Sub-string used in automation name for 9 bit in bit flip Ke-8 Sub-string used in automation name for 8 bit in bit flip Ke-7 Sub-string used in automation name for 7 bit in bit flip Ke-6 Sub-string used in automation name for 6 bit in bit flip Ke-5 Sub-string used in automation name for 5 bit in bit flip Ke-4 Sub-string used in automation name for 4 bit in bit flip Ke-3 Sub-string used in automation name for 3 bit in bit flip Ke-2 Sub-string used in automation name for 2 bit in bit flip Ke-1 Sub-string used in automation name for 1 bit in bit flip bit paling tidak signifikan Used to describe the first bit of a binary number. Used in bit flip Membuka flyout memori This is the automation name and label for the memory button when the memory flyout is closed. Menutup flyout memori This is the automation name and label for the memory button when the memory flyout is open. Tetap di atas This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Kembali ke tampilan penuh This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memori This is the tool tip automation name for the memory button. Riwayat (Ctrl+H) This is the tool tip automation name for the history button. Tombol pengubah bit This is the tool tip automation name for the bitFlip button. Keypad lengkap This is the tool tip automation name for the numberPad button. Menghapus semua memori (Ctrl + L) This is the tool tip automation name for the Clear Memory (MC) button. Memori The text that shows as the header for the memory list Memori The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Riwayat The text that shows as the header for the history list Riwayat The automation name for the History pivot item that is shown when Calculator is in wide layout. Pengonversi Label for a control that activates the unit converter mode. Ilmiah Label for a control that activates scientific mode calculator layout Standar Label for a control that activates standard mode calculator layout. Mode pengonversi Screen reader prompt for a control that activates the unit converter mode. Mode ilmiah Screen reader prompt for a control that activates scientific mode calculator layout Mode standar Screen reader prompt for a control that activates standard mode calculator layout. Bersihkan semua riwayat "ClearHistory" used on the calculator history pane that stores the calculation history. Bersihkan semua riwayat This is the tool tip automation name for the Clear History button. Sembunyikan "HideHistory" used on the calculator history pane that stores the calculation history. Standar The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Ilmiah The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Pengonversi The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Pengonversi The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Pengonversi Pluralized version of the converter group text, used for the screen reader prompt. Kalkulator Pluralized version of the calculator group text, used for the screen reader prompt. Tampilan adalah %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Ekspresinya adalah %1, Input saat ini adalah %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Tampilan adalah titik %1 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Ekspresi adalah %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Nilai tampilan disalin ke clipboard Screen reader prompt for the Calculator display copy button, when the button is invoked. Riwayat Screen reader prompt for the history flyout Memori Screen reader prompt for the memory flyout Heksadesimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Biner %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Bersihkan semua riwayat Screen reader prompt for the Calculator History Clear button Riwayat dihapus Screen reader prompt for the Calculator History Clear button, when the button is invoked. Sembunyikan riwayat Screen reader prompt for the Calculator History Hide button Buka flyout riwayat Screen reader prompt for the Calculator History button, when the flyout is closed. Tutup flyout riwayat Screen reader prompt for the Calculator History button, when the flyout is open. Penyimpanan memori Screen reader prompt for the Calculator Memory button Penyimpanan memori (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Hapus semua memori Screen reader prompt for the Calculator Clear Memory button Memori dibersihkan Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Pemanggilan ulang memori Screen reader prompt for the Calculator Memory Recall button Penarikan kembali memori (Ctrl + R) This is the tool tip automation name for the Memory Recall (MR) button. Penambahan memori Screen reader prompt for the Calculator Memory Add button Tambahkan memori (Ctrl + P) This is the tool tip automation name for the Memory Add (M+) button. Pengurangan memori Screen reader prompt for the Calculator Memory Subtract button Mengurangi memori (Ctrl + Q) This is the tool tip automation name for the Memory Subtract (M-) button. Menghapus item memori Screen reader prompt for the Calculator Clear Memory button Menghapus item memori This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Menambahkan item memori Screen reader prompt for the Calculator Memory Add button in the Memory list Menambahkan item memori This is the tool tip automation name for the Calculator Memory Add button in the Memory list Kurangi dari item memori Screen reader prompt for the Calculator Memory Subtract button in the Memory list Kurangi dari item memori This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Menghapus item memori Screen reader prompt for the Calculator Clear Memory button Menghapus item memori Text string for the Calculator Clear Memory option in the Memory list context menu Menambahkan item memori Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Menambahkan item memori Text string for the Calculator Memory Add option in the Memory list context menu Kurangi dari item memori Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Kurangi dari item memori Text string for the Calculator Memory Subtract option in the Memory list context menu Hapus Text string for the Calculator Delete swipe button in the History list Salin Text string for the Calculator Copy option in the History list context menu Hapus Text string for the Calculator Delete option in the History list context menu Hapus item riwayat Screen reader prompt for the Calculator Delete swipe button in the History list Hapus item riwayat Screen reader prompt for the Calculator Delete option in the History list context menu Spasi mundur Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nol Screen reader prompt for the Calculator number "0" button Satu Screen reader prompt for the Calculator number "1" button Dua Screen reader prompt for the Calculator number "2" button Tiga Screen reader prompt for the Calculator number "3" button Empat Screen reader prompt for the Calculator number "4" button Lima Screen reader prompt for the Calculator number "5" button Enam Screen reader prompt for the Calculator number "6" button Tujuh Screen reader prompt for the Calculator number "7" button Delapan Screen reader prompt for the Calculator number "8" button Sembilan Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Dan Screen reader prompt for the Calculator And button Atau Screen reader prompt for the Calculator Or button Bukan Screen reader prompt for the Calculator Not button Putar ke sebelah kiri Screen reader prompt for the Calculator ROL button Putar ke sebelah kanan Screen reader prompt for the Calculator ROR button Shift kiri Screen reader prompt for the Calculator LSH button Shift kanan Screen reader prompt for the Calculator RSH button Eksklusif atau Screen reader prompt for the Calculator XOR button Pengalihan Kata Lipat Empat Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Pengalihan Kata Ganda Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Pengalihan kata Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Pengalihan bita Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tombol pengubah bit Screen reader prompt for the Calculator bitFlip button Keypad lengkap Screen reader prompt for the Calculator numberPad button Pemisah desimal Screen reader prompt for the "." button Hapus entri Screen reader prompt for the "CE" button Hapus Screen reader prompt for the "C" button Bagi dengan Screen reader prompt for the divide button on the number pad Kalikan dengan Screen reader prompt for the multiply button on the number pad Sama Dengan Screen reader prompt for the equals button on the scientific operator keypad Fungsi balikkan Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Akar kuadrat Screen reader prompt for the square root button on the scientific operator keypad Persen Screen reader prompt for the percent button on the scientific operator keypad Negatif positif Screen reader prompt for the negate button on the scientific operator keypad Negatif positif Screen reader prompt for the negate button on the converter operator keypad Resiprokal Screen reader prompt for the invert button on the scientific operator keypad Tanda kurung kiri Screen reader prompt for the Calculator "(" button on the scientific operator keypad Kurung buka kiri, menghitung kurung buka %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Tanda kurung kanan Screen reader prompt for the Calculator ")" button on the scientific operator keypad Buka jumlah tanda kurung %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Tidak ada tanda kurung tutup yang diperlukan. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notasi ilmiah Screen reader prompt for the Calculator F-E the scientific operator keypad Fungsi hiperbolik Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangen Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperbolis Screen reader prompt for the Calculator sinh button on the scientific operator keypad Kosinus hiperbolis Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangen hiperbolis Screen reader prompt for the Calculator tanh button on the scientific operator keypad Persegi Screen reader prompt for the x squared on the scientific operator keypad. Kubik Screen reader prompt for the x cubed on the scientific operator keypad. Sinus Arc Screen reader prompt for the inverted sin on the scientific operator keypad. Kosinus Arc Screen reader prompt for the inverted cos on the scientific operator keypad. Tangen Arc Screen reader prompt for the inverted tan on the scientific operator keypad. Sinus arc hiperbolik Screen reader prompt for the inverted sinh on the scientific operator keypad. Kosinus arc hiperbolik Screen reader prompt for the inverted cosh on the scientific operator keypad. Tangen arc hiperbolik Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' untuk eksponen Screen reader prompt for x power y button on the scientific operator keypad. Sepuluh pangkat eksponen Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' untuk eksponen Screen reader for the e power x on the scientific operator keypad. akar ‘y’ dari ‘x’ Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Log Natural Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Eksponensial Screen reader for the exp button on the scientific operator keypad Derajat menit detik Screen reader for the exp button on the scientific operator keypad Derajat Screen reader for the exp button on the scientific operator keypad Bagian integer Screen reader for the int button on the scientific operator keypad Bagian fraksional Screen reader for the frac button on the scientific operator keypad Faktorial Screen reader for the factorial button on the basic operator keypad Pengalihan derajat This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Pengalihan gradien This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Pengalihan radian This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Drop-down mode Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Drop-down kategori Screen reader prompt for the Categories dropdown field. Tetap di atas Screen reader prompt for the Always-on-Top button when in normal mode. Kembali ke tampilan penuh Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Tetapkan di atas (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Kembali ke tampilan penuh (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Mengonversi dari %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Mengonversi dari %1 poin %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Mengonversi menjadi %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 adalah %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unit input Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unit output Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energi Unit conversion category name called Energy. (eg. the energy in a battery or in food) Panjang Unit conversion category name called Length Daya Unit conversion category name called Power (eg. the power of an engine or a light bulb) Kecepatan Unit conversion category name called Speed Waktu Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Suhu Unit conversion category name called Temperature Berat dan massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tekanan Unit conversion category name called Pressure Sudut Unit conversion category name called Angle Mata Uang Unit conversion category name called Currency Cairan ons (Inggris) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Inggris) An abbreviation for a measurement unit of volume Cairan ons (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Inggris) An abbreviation for a measurement unit of volume Galon (Inggris) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Inggris) An abbreviation for a measurement unit of volume Galon (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gal (AS) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililiter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pint (Inggris) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Inggris) An abbreviation for a measurement unit of volume Pint (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (AS) An abbreviation for a measurement unit of volume Sendok makan (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (AS) An abbreviation for a measurement unit of volume Sendok teh (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (AS) An abbreviation for a measurement unit of volume Sendok makan (Inggris) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (Inggris) An abbreviation for a measurement unit of volume Sendok teh (Inggris) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp.(Inggris) An abbreviation for a measurement unit of volume Kuart (Inggris) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Inggris) An abbreviation for a measurement unit of volume Kuart (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qT (AS) An abbreviation for a measurement unit of volume Cangkir (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cangkir (AS) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/d An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length kaki/d An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (AS) An abbreviation for a measurement unit of power jam An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kkal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/j An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/d An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length μs An abbreviation for a measurement unit of time mil An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length md An abbreviation for a measurement unit of time menit An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/mnt An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power minggu An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length thn An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Satuan termal Britania Raya A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/menit A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori termal A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter per detik A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter kubik A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki kubik A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci kubik A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter kubik A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard Kubik A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hari A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Selsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Volt elektron A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki per detik A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki-pon A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki-pon/menit A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tenaga kuda (AS) A measurement unit for power Jam A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-jam A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori makanan A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer per jam A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knot A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter per detik A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrodetik A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil per jam A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milidetik A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Menit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstrom A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil laut A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Detik A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mil persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimeter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minggu A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tahun A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight der An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Inggris) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (AS) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Derajat A measurement unit for Angle. Radian A measurement unit for Angle. Gradian A measurement unit for Angle. Atmosfer A measurement unit for Pressure. Batang A measurement unit for Pressure. Kilo Pascal A measurement unit for Pressure. Milimeter air raksa A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pound per kuadrat inci A measurement unit for Pressure. Sentigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Desigrams A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ton panjang (Inggris) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ons A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pound A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ton pendek (AS) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batu A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ton metrik A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lapangan sepak bola A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lapangan sepak bola A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disket A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disket A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Baterai AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Baterai AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) penjepit kertas A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) penjepit kertas A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bohlam A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bohlam A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuda A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuda A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bak A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bak A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kepingan salju A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kepingan salju A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gajah An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gajah An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kura-kura A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kura-kura A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pancuran A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pancuran A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paus A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paus A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cangkir kopi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cangkir kopi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kolam renang An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kolam renang An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tangan A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tangan A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lembar kertas A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lembar kertas A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastil A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastil A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pisang A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pisang A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) potongan kue A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) potongan kue A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mesin kereta api A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mesin kereta api A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bola sepak A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bola sepak A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Item memori Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Kembali Screen reader prompt for the About panel back button Kembali Content of tooltip being displayed on AboutControlBackButton Ketentuan Lisensi Perangkat Lunak Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Pratinjau Label displayed next to upcoming features Pernyataan Privasi Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Hak cipta dilindungi undang-undang. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Untuk mempelajari bagaimana Anda dapat berkontribusi ke Kalkulator Windows, lihat proyek di %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Tentang Subtitle of about message on Settings page Kirim tanggapan The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Belum ada riwayat. The text that shows as the header for the history list Tidak ada yang disimpan dalam memori. The text that shows as the header for the memory list Memori Screen reader prompt for the negate button on the converter operator keypad Ekspresi ini tidak dapat ditempelkan The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibita A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Penghitungan tanggal Mode Penghitungan Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Tambah Add toggle button text Menambah atau mengurangi hari Add or Subtract days option Tanggal Date result label Perbedaan antara tanggal Date difference option Hari Add/Subtract Days label Perbedaan Difference result label Dari From Date Header for Difference Date Picker Bulan Add/Subtract Months label Mengurangi Subtract toggle button text Sampai To Date Header for Difference Date Picker Tahun Add/Subtract Years label Tanggal di luar Batas Out of bound message shown as result when the date calculation exceeds the bounds hari hari bulan bulan Hari yang sama minggu minggu tahun tahun Perbedaan %1 Automation name for reading out the date difference. %1 = Date difference Tanggal yang dihasilkan %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Mode Kalkulator {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Mode konverter {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mode penghitungan tanggal Automation name for when the mode header is focused and the current mode is Date calculation. Daftar Riwayat dan Memori Automation name for the group of controls for history and memory lists. Kontrol memori Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Fungsi standar Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kontrol tampilan Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operator standar Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Nomor pad Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operator sudut Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Fungsi ilmiah Automation name for the group of Scientific functions. Pemilihan radix Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operator programmer Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Pilihan mode input Automation name for the group of input mode toggling buttons. Keypad pengubah bit Automation name for the group of bit toggling buttons. Gulir ekspresi ke kiri Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Gulir ekspresi ke kanan Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Digit maks tercapai. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 disimpan ke memori {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Slot memori %1 adalah %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Slot memori %1 dibersihkan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dibagi dengan Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. waktu Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. pangkatkan dengan Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. akar y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. modular Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. shift kiri Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. shift kanan Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. atau Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x atau Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. dan Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Diperbarui %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Perbarui tarif The text displayed for a hyperlink button that refreshes currency converter ratios. Biaya data mungkin berlaku. The text displayed when users are on a metered connection and using currency converter. Tidak dapat memperoleh harga baru. Coba lagi nanti. The text displayed when currency ratio data fails to load. Offline. Silakan periksa%HL%Pengaturan Jaringan%HL%Anda Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Memperbarui kurs mata uang This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Harga mata uang diperbarui This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Tidak dapat memperbarui tarif This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Menghapus semua memori (Ctrl + L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Hapus semua memori Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} derajat sinus Name for the sine function in degrees mode. Used by screen readers. radian sinus Name for the sine function in radians mode. Used by screen readers. gradien sinus Name for the sine function in gradians mode. Used by screen readers. Inversi derajat sinus Name for the inverse sine function in degrees mode. Used by screen readers. Inversi radian sinus Name for the inverse sine function in radians mode. Used by screen readers. Inversi gradian sinus Name for the inverse sine function in gradians mode. Used by screen readers. Sinus Hiperbolik Name for the hyperbolic sine function. Used by screen readers. Inversi sinus hiperbola Name for the inverse hyperbolic sine function. Used by screen readers. derajat kosinus Name for the cosine function in degrees mode. Used by screen readers. radian kosinus Name for the cosine function in radians mode. Used by screen readers. gradien kosinus Name for the cosine function in gradians mode. Used by screen readers. Inversi derajat kosinus Name for the inverse cosine function in degrees mode. Used by screen readers. inversi radian kosinus Name for the inverse cosine function in radians mode. Used by screen readers. inversi gradien kosinus Name for the inverse cosine function in gradians mode. Used by screen readers. kosinus hiperbolik Name for the hyperbolic cosine function. Used by screen readers. Inversi kosinus hiperbola Name for the inverse hyperbolic cosine function. Used by screen readers. derajat tangen Name for the tangent function in degrees mode. Used by screen readers. radian tangen Name for the tangent function in radians mode. Used by screen readers. gradien tangen Name for the tangent function in gradians mode. Used by screen readers. Invesi derajat tangen Name for the inverse tangent function in degrees mode. Used by screen readers. Invesi radian tangen Name for the inverse tangent function in radians mode. Used by screen readers. Invesi gradien tangen Name for the inverse tangent function in gradians mode. Used by screen readers. tangen hiperbolik Name for the hyperbolic tangent function. Used by screen readers. Inversi tangen hiperbola Name for the inverse hyperbolic tangent function. Used by screen readers. derajat sekan Name for the secant function in degrees mode. Used by screen readers. radian sekan Name for the secant function in radians mode. Used by screen readers. gradien sekan Name for the secant function in gradians mode. Used by screen readers. derajat sekan terbalik Name for the inverse secant function in degrees mode. Used by screen readers. radian sekan terbalik Name for the inverse secant function in radians mode. Used by screen readers. gradien sekan terbalik Name for the inverse secant function in gradians mode. Used by screen readers. sekan hiperbolis Name for the hyperbolic secant function. Used by screen readers. sekan hiperbolis terbalik Name for the inverse hyperbolic secant function. Used by screen readers. derajat kosekan Name for the cosecant function in degrees mode. Used by screen readers. radian kosekan Name for the cosecant function in radians mode. Used by screen readers. gradien kosekan Name for the cosecant function in gradians mode. Used by screen readers. derajat kosekan terbalik Name for the inverse cosecant function in degrees mode. Used by screen readers. radian kosekan terbalik Name for the inverse cosecant function in radians mode. Used by screen readers. gradien kosekan terbalik Name for the inverse cosecant function in gradians mode. Used by screen readers. kosekan hiperbolis Name for the hyperbolic cosecant function. Used by screen readers. kosekan hiperbolis terbalik Name for the inverse hyperbolic cosecant function. Used by screen readers. derajat kotangen Name for the cotangent function in degrees mode. Used by screen readers. Radian kotangen Name for the cotangent function in radians mode. Used by screen readers. gradien kotangen Name for the cotangent function in gradians mode. Used by screen readers. derajat kotangen terbalik Name for the inverse cotangent function in degrees mode. Used by screen readers. radian kotangen terbalik Name for the inverse cotangent function in radians mode. Used by screen readers. gradien kotangen terbalik Name for the inverse cotangent function in gradians mode. Used by screen readers. kotangen hiperbolis Name for the hyperbolic cotangent function. Used by screen readers. kotangen hiperbolis terbalik Name for the inverse hyperbolic cotangent function. Used by screen readers. Akar pangkat tiga Name for the cube root function. Used by screen readers. Log dasar Name for the logbasey function. Used by screen readers. Nilai mutlak Name for the absolute value function. Used by screen readers. shift kiri Name for the programmer function that shifts bits to the left. Used by screen readers. shift kanan Name for the programmer function that shifts bits to the right. Used by screen readers. faktorial Name for the factorial function. Used by screen readers. derajat menit detik Name for the degree minute second (dms) function. Used by screen readers. log natural Name for the natural log (ln) function. Used by screen readers. persegi Name for the square function. Used by screen readers. akar y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategori {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Perjanjian Layanan Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Dari From Date Header for AddSubtract Date Picker Gulir hasil penghitungan ke kiri Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Gulir Hasil penghitungan ke kanan Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Penghitungan gagal Text displayed when the application is not able to do a calculation Log dasar Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Fungsi Displayed on the button that contains a flyout for the general functions in scientific mode. Pertidaksamaan Displayed on the button that contains a flyout for the inequality functions. Pertidaksamaan Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Pergeseran bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Fungsi balikkan Screen reader prompt for the shift button in the trig flyout in scientific mode. Fungsi hiperbolis Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekan Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sekan hiperbolis Screen reader prompt for the Calculator button sech in the scientific flyout keypad Sekan busur Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Secant busur hiperbolis Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekan Screen reader prompt for the Calculator button csc in the scientific flyout keypad Kosekan hiperbolis Screen reader prompt for the Calculator button csch in the scientific flyout keypad Kosekan busur Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kosekan busur hiperbolis Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangen Screen reader prompt for the Calculator button cot in the scientific flyout keypad Kotangen hiperbolis Screen reader prompt for the Calculator button coth in the scientific flyout keypad Kotangen busur Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Kotangen busur hiperbolis Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Ke bawah Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ke atas Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Acak Screen reader prompt for the Calculator button random in the scientific flyout keypad Nilai mutlak Screen reader prompt for the Calculator button abs in the scientific flyout keypad Bilangan Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dua kali eksponen Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Putar di kiri dengan carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Putar di kanan dengan carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Shift kiri Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Pergeseran ke kiri Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Shift kanan Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Pergeseran ke kanan Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Pergeseran aritmatika Label for a radio button that toggles arithmetic shift behavior for the shift operations. Pergeseran logis Label for a radio button that toggles logical shift behavior for the shift operations. Putar pergeseran melingkar Label for a radio button that toggles rotate circular behavior for the shift operations. Putar melalui carry pergeseran melingkar Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Akar pangkat tiga Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Fungsi Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Pergeseran bit Screen reader prompt for the square root button on the scientific operator keypad Panel operator ilmiah Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panel operator pemrogram Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit paling signifikan Used to describe the last bit of a binary number. Used in bit flip Pembuatan grafik Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plot Screen reader prompt for the plot button on the graphing calculator operator keypad Refresh tampilan secara otomatis (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Tampilan grafis Screen reader prompt for the graph view button. Kecocokan terbaik otomatis Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Penyesuaian manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Tampilan grafik telah diatur ulang Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Perbesar (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Perbesar tampilan Screen reader prompt for the zoom in button. Perkecil (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Perkecil tampilan Screen reader prompt for the zoom out button. Tambahkan persamaan Placeholder text for the equation input button Tidak dapat berbagi untuk saat ini. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Lihat apa yang saya grafikkan dengan Kalkulator Windows Sent as part of the shared content. The title for the share. Persamaan Header that appears over the equations section when sharing Variabel Header that appears over the variables section when sharing Gambar grafik dengan persamaan Alt text for the graph image when output via Share Variabel Header text for variables area Langkah Label text for the step text box Min Label text for the min text box Maks Label text for the max text box Warna Label for the Line Color section of the style picker Gaya Label for the Line Style section of the style picker Analisis fungsi Title for KeyGraphFeatures Control Fungsi tidak memiliki asimtot horizontal apa pun. Message displayed when the graph does not have any horizontal asymptotes Fungsi tidak memiliki titik infleksi apa pun. Message displayed when the graph does not have any inflection points Fungsi tidak memiliki titik maksima apa pun. Message displayed when the graph does not have any maxima Fungsi tidak memiliki titik minima apa pun. Message displayed when the graph does not have any minima Konstan String describing constant monotonicity of a function Menurun String describing decreasing monotonicity of a function Tidak dapat menentukan monotonisitas fungsi. Error displayed when monotonicity cannot be determined Meningkat String describing increasing monotonicity of a function Monotonisitas fungsi tidak diketahui. Error displayed when monotonicity is unknown Fungsi tidak memiliki asimtot serong apa pun. Message displayed when the graph does not have any oblique asymptotes Tidak dapat menentukan paritas fungsi. Error displayed when parity is cannot be determined Fungsi ini genap. Message displayed with the function parity is even Fungsi ini tidak genap maupun ganjil. Message displayed with the function parity is neither even nor odd Fungsi ini ganjil. Message displayed with the function parity is odd Paritas fungsi tidak diketahui. Error displayed when parity is unknown Periodisitas tidak didukung untuk fungsi ini. Error displayed when periodicity is not supported Fungsi tidak periodik. Message displayed with the function periodicity is not periodic Periodisitas fungsi tidak diketahui. Message displayed with the function periodicity is unknown Fitur ini terlalu rumit untuk penghitungan Kalkulator: Error displayed when analysis features cannot be calculated Fungsi tidak memiliki asimtot vertikal apa pun. Message displayed when the graph does not have any vertical asymptotes Fungsi tidak memiliki intersepsi x apa pun. Message displayed when the graph does not have any x-intercepts Fungsi tidak memiliki intersepsi y apa pun. Message displayed when the graph does not have any y-intercepts Domain Title for KeyGraphFeatures Domain Property Asimtot horizontal Title for KeyGraphFeatures Horizontal aysmptotes Property Titik infleksi Title for KeyGraphFeatures Inflection points Property Analisis tidak didukung untuk fungsi ini. Error displayed when graph analysis is not supported or had an error. Analisis hanya didukung untuk fungsi dalam format f(x). Contoh: y=x Error displayed when graph analysis detects the function format is not f(x). Maksima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonisitas Title for KeyGraphFeatures Monotonicity Property Asimtot miring Title for KeyGraphFeatures Oblique asymptotes Property Paritas Title for KeyGraphFeatures Parity Property Siklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Rentang Title for KeyGraphFeatures Range Property Asimtot vertikal Title for KeyGraphFeatures Vertical asymptotes Property Intersepsi X Title for KeyGraphFeatures XIntercept Property Intersepsi Y Title for KeyGraphFeatures YIntercept Property Analisis tidak dapat dilakukan untuk fungsi tersebut. Tidak dapat menghitung domain untuk fungsi ini. Error displayed when Domain is not returned from the analyzer. Tidak dapat menghitung rentang untuk fungsi ini. Error displayed when Range is not returned from the analyzer. Luapan (angkanya terlalu besar) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Mode radian diperlukan untuk grafik persamaan ini. Error that occurs during graphing when radians is required. Fungsi ini terlalu kompleks untuk digrafik Error that occurs during graphing when the equation is too complex. Mode derajat diperlukan untuk melakukan graf pada fungsi ini Error that occurs during graphing when degrees is required Fungsi faktorial memiliki argumen yang tidak valid Error that occurs during graphing when a factorial function has an invalid argument. Fungsi faktorial memiliki argumen yang terlalu besar untuk grafik Error that occurs during graphing when a factorial has a large n Modulo hanya bisa digunakan dengan bilangan bulat Error that occurs during graphing when modulo is used with a float. Persamaan ini tidak mempunyai solusi Error that occurs during graphing when the equation has no solution. Tidak dapat dibagi nol Error that occurs during graphing when a divison by zero occurs. Persamaan berisi kondisi logis yang saling eksklusif Error that occurs during graphing when mutually exclusive conditions are used. Persamaan di luar domain Error that occurs during graphing when the equation is out of domain. Pembuatan grafik untuk persamaan ini tidak didukung Error that occurs during graphing when the equation is not supported. Persamaan ini kurang kurung buka Error that occurs during graphing when the equation is missing a ( Persamaan tidak terdapat kurung tutup Error that occurs during graphing when the equation is missing a ) Terlalu banyak titik desimal dalam angka Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Titik desimal tidak terdapat angka Error that occurs during graphing with a decimal point without digits Akhir ekspresi yang tidak terduga Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Karakter yang tidak terduga di ekspresi Error that occurs during graphing when there is an unexpected token. Karakter tidak valid di ekspresi Error that occurs during graphing when there is an invalid token. Ada terlalu banyak tanda sama dengan Error that occurs during graphing when there are too many equals. Fungsi harus memiliki setidaknya satu variabel x atau y Error that occurs during graphing when the equation is missing x or y. Ekspresi tidak valid. Error that occurs during graphing when an invalid syntax is used. Ekspresi tersebut kosong Error that occurs during graphing when the expression is empty Sama dengan digunakan tanpa persamaan Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Tanda kurung tidak dapat ditemukan setelah nama fungsi Error that occurs during graphing when parenthesis are missing after a function. Operasi matematika memiliki jumlah parameter yang salah Error that occurs during graphing when a function has the wrong number of parameters Nama variabel tidak valid. Error that occurs during graphing when a variable name is invalid. Persamaan kurang kurung buka Error that occurs during graphing when a { is missing Persamaan kurang kurung tutup Error that occurs during graphing when a } is missing. "i" dan "I" tidak dapat digunakan sebagai nama variabel Error that occurs during graphing when i or I is used. Persamaan tidak dapat digrafikkan General error that occurs during graphing. Digit tidak dapat diatasi untuk basis tersebut Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Basis harus lebih besar dari 2 dan kurang dari 36 Error that occurs during graphing when the base is out of range. Operasi matematika memerlukan salah satu paramaternya berupa variabel Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Persamaan adalah mencampur operand logika dan skalar Error that occurs during graphing when operands are mixed. Such as true and 1. x atau y tidak dapat digunakan di batas atas atau bawah Error that occurs during graphing when x or y is used in integral upper limits. x atau y tidak dapat digunakan di poin limit Error that occurs during graphing when x or y is used in the limit point. Tidak dapat menggunakan kompleks tak terhingga Error that occurs during graphing when complex infinity is used Tidak dapat gunakan bilangan kompleks dalam pertidaksamaan. Error that occurs during graphing when complex numbers are used in inequalities. Kembali ke daftar fungsi This is the tooltip for the back button in the equation analysis page in the graphing calculator Kembali ke daftar fungsi This is the automation name for the back button in the equation analysis page in the graphing calculator Lakukan analisis fungsi This is the tooltip for the analyze function button Lakukan analisis fungsi This is the automation name for the analyze function button Lakukan analisis fungsi This is the text for the for the analyze function context menu command Hapus persamaan This is the tooltip for the graphing calculator remove equation buttons Hapus persamaan This is the automation name for the graphing calculator remove equation buttons Hapus persamaan This is the text for the for the remove equation context menu command Berbagi This is the automation name for the graphing calculator share button. Bagikan This is the tooltip for the graphing calculator share button. Ubah gaya persamaan This is the tooltip for the graphing calculator equation style button Ubah gaya persamaan This is the automation name for the graphing calculator equation style button Ubah gaya persamaan This is the text for the for the equation style context menu command Tampilkan persamaan This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Sembunyikan persamaan This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Tampilkan persamaan %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Sembunyikan persamaan %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Berhenti merunut This is the tooltip/automation name for the graphing calculator stop tracing button Mulai merunut This is the tooltip/automation name for the graphing calculator start tracing button Jendela tampilan grafik, oleh sumbu x dengan %1 dan %2, sumbu-y oleh oleh %3 dan %4, menampilkan persamaan %5 {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurasikan penggeser This is the tooltip text for the slider options button in Graphing Calculator Konfigurasikan penggeser This is the automation name text for the slider options button in Graphing Calculator Beralih ke mode persamaan Used in Graphing Calculator to switch the view to the equation mode Beralih ke mode grafik Used in Graphing Calculator to switch the view to the graph mode Beralih ke mode persamaan Used in Graphing Calculator to switch the view to the equation mode Mode saat ini adalah mode persamaan Announcement used in Graphing Calculator when switching to the equation mode Mode saat ini adalah mode grafik Announcement used in Graphing Calculator when switching to the graph mode Jendela Heading for window extents on the settings Derajat Degrees mode on settings page Gradien Gradian mode on settings page Radian Radians mode on settings page Unit Heading for Unit's on the settings Atur ulang tampilan Hyperlink button to reset the view of the graph X-Maks X maximum value header X-Min X minimum value header Y-Maks Y Maximum value header Y-Min Y minimum value header Opsi grafik This is the tooltip text for the graph options button in Graphing Calculator Opsi grafik This is the automation name text for the graph options button in Graphing Calculator Opsi grafis Heading for the Graph options flyout in Graphing mode. Opsi variabel Screen reader prompt for the variable settings toggle button Ubah opsi variabel Tool tip for the variable settings toggle button Ketebalan garis Heading for the Graph options flyout in Graphing mode. Opsi garis Heading for the equation style flyout in Graphing mode. Lebar garis kecil Automation name for line width setting Lebar garis sedang Automation name for line width setting Lebar garis besar Automation name for line width setting Lebar garis sangat besar Automation name for line width setting Masukkan ekspresi this is the placeholder text used by the textbox to enter an equation Salin Copy menu item for the graph context menu Potong Cut menu item from the Equation TextBox Salin Copy menu item from the Equation TextBox Tempel Paste menu item from the Equation TextBox Batalkan Undo menu item from the Equation TextBox Pilih semua Select all menu item from the Equation TextBox Input fungsi The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Input fungsi The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel input fungsi The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel variabel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Daftar variabel The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Item daftar %1 variabel The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Kotak teks nilai variabel The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Penggeser nilai variabel The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Kotak teks nilai minimum variabel The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Kotak teks nilai langkah variabel The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Kotak teks nilai maksimum variabel The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Model garis solid Name of the solid line style for a graphed equation Model garis titik-titik Name of the dotted line style for a graphed equation Model garis putus-putus Name of the dashed line style for a graphed equation Biru gelap Name of color in the color picker Biru Toska Name of color in the color picker Lembayung Name of color in the color picker Hijau Name of color in the color picker Hijau mint Name of color in the color picker Hijau gelap Name of color in the color picker Hitam Arang Name of color in the color picker Merah Name of color in the color picker Prem muda Name of color in the color picker Magenta Name of color in the color picker Kuning emas Name of color in the color picker Oranye terang Name of color in the color picker Cokelat Name of color in the color picker Hitam Name of color in the color picker Putih Name of color in the color picker Warna 1 Name of color in the color picker Warna 2 Name of color in the color picker Warna 3 Name of color in the color picker Warna 4 Name of color in the color picker Tema Grafis Graph settings heading for the theme options Selalu terang Graph settings option to set graph to light theme Cocokkan tema aplikasi Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Selalu terang This is the automation name text for the Graph settings option to set graph to light theme Cocokkan tema aplikasi This is the automation name text for the Graph settings option to set graph to match the app theme Fungsi dihapus Announcement used in Graphing Calculator when a function is removed from the function list Kotak persamaan analisis fungsi This is the automation name text for the equation box in the function analysis panel Sama dengan Screen reader prompt for the equal button on the graphing calculator operator keypad Kurang dari Screen reader prompt for the Less than button Kurang dari atau sama dengan Screen reader prompt for the Less than or equal button Sama Dengan Screen reader prompt for the Equal button Lebih besar atau sama dengan Screen reader prompt for the Greater than or equal button Lebih besar dari Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Kirim Screen reader prompt for the submit button on the graphing calculator operator keypad Analisis fungsi Screen reader prompt for the function analysis grid Opsi grafis Screen reader prompt for the graph options panel Daftar Riwayat dan Memori Automation name for the group of controls for history and memory lists. Daftar Memori Automation name for the group of controls for memory list. Slot riwayat %1 dibersihkan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator selalu di atas Announcement to indicate calculator window is always shown on top. Kalkulator kembali ke tampilan penuh Announcement to indicate calculator window is now back to full view. Pergeseran aritmatika dipilih Label for a radio button that toggles arithmetic shift behavior for the shift operations. Pergeseran logis dipilih Label for a radio button that toggles logical shift behavior for the shift operations. Putar pergeseran melingkar dipilih Label for a radio button that toggles rotate circular behavior for the shift operations. Putar melalui carry pergeseran melingkar dipilih Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Pengaturan Header text of Settings page Tampilan Subtitle of appearance setting on Settings page Tema aplikasi Title of App theme expander Pilih tema aplikasi yang akan ditampilkan Description of App theme expander Terang Lable for light theme option Gelap Lable for dark theme option Gunakan pengaturan sistem Lable for the app theme option to use system setting Kembali Screen reader prompt for the Back button in title bar to back to main page Halaman pengaturan Announcement used when Settings page is opened Buka menu konteks untuk melihat tindakan yang tersedia Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Tidak dapat memulihkan snapshot ini. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/is-IS/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ógilt inntak Error message shown when the input makes a function fail, like log(-1) Niðurstaðan er óskilgreind Error message shown when there's no possible value for a function. Ekki nóg minni Error message shown when we run out of memory during a calculation. Yfirflæði Error message shown when there's an overflow during the calculation. Niðurstaða ekki skilgreind Same as 101 Niðurstaða ekki skilgreind Same 101 Yfirflæði Same as 107 Yfirflæði Same 107 Ekki er hægt að deila með núlli Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/is-IS/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Reiknivél {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Reiknivél [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows-reiknivél {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows-reiknivél [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Reiknivél {@Appx_Description@} This description is used for the official application when published through Windows Store. Reiknivél [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Afrita Copy context menu string Líma Paste context menu string Jafngildir u.þ.b. The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, gildi %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 biti {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip gildislægsti biti Used to describe the first bit of a binary number. Used in bit flip Opna hliðarglugga úr minni This is the automation name and label for the memory button when the memory flyout is closed. Loka hliðarglugga úr minni This is the automation name and label for the memory button when the memory flyout is open. Hafa efst This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Aftur í heildaryfirlit This is the tool tip automation name for the always-on-top button when in always-on-top mode. Minni This is the tool tip automation name for the memory button. Ferill (Ctrl+H) This is the tool tip automation name for the history button. Takkaborð fyrir bitabreytingar This is the tool tip automation name for the bitFlip button. Fullt takkaborð This is the tool tip automation name for the numberPad button. Hreinsa allt minni (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Minni The text that shows as the header for the memory list Minni The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Ferill The text that shows as the header for the history list Ferill The automation name for the History pivot item that is shown when Calculator is in wide layout. Umbreytir Label for a control that activates the unit converter mode. Vísindaleg Label for a control that activates scientific mode calculator layout Venjuleg Label for a control that activates standard mode calculator layout. Umbreytistilling Screen reader prompt for a control that activates the unit converter mode. Vísindaleg stilling Screen reader prompt for a control that activates scientific mode calculator layout Venjuleg stilling Screen reader prompt for a control that activates standard mode calculator layout. Hreinsa allan feril "ClearHistory" used on the calculator history pane that stores the calculation history. Hreinsa allan feril This is the tool tip automation name for the Clear History button. Fela "HideHistory" used on the calculator history pane that stores the calculation history. Venjuleg The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Vísindaleg The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Forritari The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Umbreytir The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Reiknivél The text that shows in the dropdown navigation control for the calculator group. Umbreytir The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Reiknivél The text that shows in the dropdown navigation control for the calculator group in upper case. Umbreytar Pluralized version of the converter group text, used for the screen reader prompt. Reiknivélar Pluralized version of the calculator group text, used for the screen reader prompt. Skjár er %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Segð er %1, núverandi inntak er %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Skjárinn er %1 punktar {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Segð er %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Birta gildi sem er afritað á klippiborð Screen reader prompt for the Calculator display copy button, when the button is invoked. Ferill Screen reader prompt for the history flyout Minni Screen reader prompt for the memory flyout Sextándakerfi %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Tugakerfi %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Áttundakerfi %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Tvíundarkerfi %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Hreinsa allan feril Screen reader prompt for the Calculator History Clear button Ferill hreinsaður Screen reader prompt for the Calculator History Clear button, when the button is invoked. Fela feril Screen reader prompt for the Calculator History Hide button Opna ferilshliðarglugga Screen reader prompt for the Calculator History button, when the flyout is closed. Loka ferilshliðarglugga Screen reader prompt for the Calculator History button, when the flyout is open. Geyma í minni Screen reader prompt for the Calculator Memory button Geyma í minni (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Hreinsa allt minni Screen reader prompt for the Calculator Clear Memory button Minni hreinsað Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Kalla úr minni Screen reader prompt for the Calculator Memory Recall button Kalla úr minni (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Leggja við úr minni Screen reader prompt for the Calculator Memory Add button Bæta við minni (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Draga frá úr minni Screen reader prompt for the Calculator Memory Subtract button Draga frá úr minni (CTRL+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Hreinsa minnisatriði Screen reader prompt for the Calculator Clear Memory button Hreinsa minnisatriði This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Bæta við minnisatriði Screen reader prompt for the Calculator Memory Add button in the Memory list Bæta við minnisatriði This is the tool tip automation name for the Calculator Memory Add button in the Memory list Draga frá úr minnisatriði Screen reader prompt for the Calculator Memory Subtract button in the Memory list Draga frá úr minnisatriði This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Hreinsa minnisatriði Screen reader prompt for the Calculator Clear Memory button Hreinsa minnisatriði Text string for the Calculator Clear Memory option in the Memory list context menu Bæta við minnisatriði Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Bæta við minnisatriði Text string for the Calculator Memory Add option in the Memory list context menu Draga frá úr minnisatriði Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Draga frá úr minnisatriði Text string for the Calculator Memory Subtract option in the Memory list context menu Eyða Text string for the Calculator Delete swipe button in the History list Afrita Text string for the Calculator Copy option in the History list context menu Eyða Text string for the Calculator Delete option in the History list context menu Eyða atriði úr ferli Screen reader prompt for the Calculator Delete swipe button in the History list Eyða atriði úr ferli Screen reader prompt for the Calculator Delete option in the History list context menu Bakklykill Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Núll Screen reader prompt for the Calculator number "0" button Einn Screen reader prompt for the Calculator number "1" button Tveir Screen reader prompt for the Calculator number "2" button Þrír Screen reader prompt for the Calculator number "3" button Fjórir Screen reader prompt for the Calculator number "4" button Fimm Screen reader prompt for the Calculator number "5" button Sex Screen reader prompt for the Calculator number "6" button Sjö Screen reader prompt for the Calculator number "7" button Átta Screen reader prompt for the Calculator number "8" button Níu Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Og Screen reader prompt for the Calculator And button Eða Screen reader prompt for the Calculator Or button Ekki Screen reader prompt for the Calculator Not button Snúa til vinstri Screen reader prompt for the Calculator ROL button Snúa til hægri Screen reader prompt for the Calculator ROR button Vinstri hliðrun Screen reader prompt for the Calculator LSH button Hægri hliðrun Screen reader prompt for the Calculator RSH button Annaðhvort eða Screen reader prompt for the Calculator XOR button Víxla á milli fjögurra orða Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Víxla á milli tveggja orða Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Víxla á milli orða Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Víxla bætum Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Takkaborð fyrir bitabreytingar Screen reader prompt for the Calculator bitFlip button Fullt takkaborð Screen reader prompt for the Calculator numberPad button Tugabrotsskiltákn Screen reader prompt for the "." button Hreinsa færslu Screen reader prompt for the "CE" button Hreinsa Screen reader prompt for the "C" button Deila með Screen reader prompt for the divide button on the number pad Margfalda með Screen reader prompt for the multiply button on the number pad Jafngildir Screen reader prompt for the equals button on the scientific operator keypad Andhverft fall Screen reader prompt for the shift button on the number pad in scientific mode. Mínus Screen reader prompt for the minus button on the number pad Mínus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plús Screen reader prompt for the plus button on the number pad Kvaðratrót Screen reader prompt for the square root button on the scientific operator keypad Prósenta Screen reader prompt for the percent button on the scientific operator keypad Jákvæð neikvæð Screen reader prompt for the negate button on the scientific operator keypad Jákvæð neikvæð Screen reader prompt for the negate button on the converter operator keypad Umhverfa Screen reader prompt for the invert button on the scientific operator keypad Vinstri svigi Screen reader prompt for the Calculator "(" button on the scientific operator keypad Vinstri svigi, opnir svigar telja %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Hægri svigi Screen reader prompt for the Calculator ")" button on the scientific operator keypad Fjöldi opinna sviga: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Engir opnir svigar til að loka. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Vísindaleg táknun Screen reader prompt for the Calculator F-E the scientific operator keypad Breiðbogafall Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sínus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kósínus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Breiðbogasínus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Breiðbogakósínus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Breiðbogatangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Ferningur Screen reader prompt for the x squared on the scientific operator keypad. Teningur Screen reader prompt for the x cubed on the scientific operator keypad. Arkarsínus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkarkósínus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkartangens Screen reader prompt for the inverted tan on the scientific operator keypad. Breiðbogaarkarsínus Screen reader prompt for the inverted sinh on the scientific operator keypad. Breiðbogaarkarkósínus Screen reader prompt for the inverted cosh on the scientific operator keypad. Breiðbogaarkartangens Screen reader prompt for the inverted tanh on the scientific operator keypad. X í veldisvísi Screen reader prompt for x power y button on the scientific operator keypad. Tíu í veldinu Screen reader prompt for the 10 power x button on the scientific operator keypad. e í veldisvísi Screen reader for the e power x on the scientific operator keypad. y rót af x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Lógaritmi Screen reader for the log base 10 on the scientific operator keypad Náttúrulegur lógaritmi Screen reader for the log base e on the scientific operator keypad Módulus Screen reader for the mod button on the scientific operator keypad Veldisvísir Screen reader for the exp button on the scientific operator keypad Gráða mínúta sekúnda Screen reader for the exp button on the scientific operator keypad Gráður Screen reader for the exp button on the scientific operator keypad Heiltöluhluti Screen reader for the int button on the scientific operator keypad Brotahluti Screen reader for the frac button on the scientific operator keypad Hrópmerkt Screen reader for the factorial button on the basic operator keypad Skipta á milli gráða This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Víxla nýgráðum This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Víxla bogamálum This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Fellilisti fyrir stillingar Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Fellilisti fyrir flokka Screen reader prompt for the Categories dropdown field. Hafa efst Screen reader prompt for the Always-on-Top button when in normal mode. Aftur í heildaryfirlit Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Hafa efst (Alt+upp) This is the tool tip automation name for the Always-on-Top button when in normal mode. Aftur í heildaryfirlit (Alt+niður) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Breyta úr %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Breyta úr %1 komma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Breytir í %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 er %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Inntakseining Screen reader prompt for the Unit Converter Units1 i.e. top units field. Úttakseining Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Flatarmál Unit conversion category name called Area (eg. area of a sports field in square meters) Gögn Unit conversion category name called Data Orka Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lengd Unit conversion category name called Length Afl Unit conversion category name called Power (eg. the power of an engine or a light bulb) Hraði Unit conversion category name called Speed Tími Unit conversion category name called Time Rúmmál Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Hitastig Unit conversion category name called Temperature Þyngd og massi Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Þrýstingur Unit conversion category name called Pressure Horn Unit conversion category name called Angle Gjaldmiðill Unit conversion category name called Currency Únsur (Bretl.) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Bretl.) An abbreviation for a measurement unit of volume Únsur (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Bandar.) An abbreviation for a measurement unit of volume Gallon (Bretl.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Bretl.) An abbreviation for a measurement unit of volume Gallon (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (BNA) An abbreviation for a measurement unit of volume Lítrar A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilítrar A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Hálfpottar (Bretl.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Bretl.) An abbreviation for a measurement unit of volume Hálfpottar (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Bandar.) An abbreviation for a measurement unit of volume Matskeiðar (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) msk (Bandar.) An abbreviation for a measurement unit of volume Teskeiðar (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk (BNA) An abbreviation for a measurement unit of volume Matskeiðar (Bretl.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) msk (Bretl.) An abbreviation for a measurement unit of volume Teskeiðar (Bretl.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk (Bretl.) An abbreviation for a measurement unit of volume Lítrar (Bretl.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Bretl.) An abbreviation for a measurement unit of volume Lítrar (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (BNA) An abbreviation for a measurement unit of volume Bollar (BNA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bolli (BNA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/mín. An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data kal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/sek. An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume to.³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy fet An abbreviation for a measurement unit of length fet/sek. An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (BNA) An abbreviation for a measurement unit of power klst An abbreviation for a measurement unit of time í An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kkal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/klst. An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/sek. An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mí. An abbreviation for a measurement unit of length mí./klst. An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time mín. An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length sjóm. An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/mín. An abbreviation for a measurement unit of power sek. An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area to.² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mí.² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power v. An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length ár An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Ekrur A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Breskar varmaeiningar A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/mínútu A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hitaeiningar A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimetrar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimetrar á sekúndu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Rúmsentimetrar A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Rúmfet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Rúmtommur A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Rúmmetrar A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Rúmyardar A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dagar A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsíus An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Rafeindavolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fet A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fet á sekúndu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pundfet A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pundfet/mínútu A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gígabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gígabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektarar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hestöfl (BNA) A measurement unit for power Klukkustundir A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tommur A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Júl A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílóvatt-klukkustundir A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kílóbitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílóbæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaloríur A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílójúl A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílómetrar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílómetrar á klukkustund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílóvött A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hnútar A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrar á sekúndu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Míkron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Míkrósekúndur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mílur A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mílur á klukkustund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimetrar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekúndur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mínútur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nart A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanómetrar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sjómílur A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekúndur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fersentimetrar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ferfet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fertommur A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ferkílómetrar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fermetrar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fermílur A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fermillimetrar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Feryardar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vött A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vikur A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardar A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ár A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonn (Bretl.) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonn (BNA) An abbreviation for a measurement unit of weight st. An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karöt A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gráður A measurement unit for Angle. Bogamál A measurement unit for Angle. Nýgráður A measurement unit for Angle. Loftþyngdareiningar A measurement unit for Pressure. Bör A measurement unit for Pressure. Kílópasköl A measurement unit for Pressure. Millimetrar kvikasilfurs A measurement unit for Pressure. Pasköl A measurement unit for Pressure. Pund á fertommu A measurement unit for Pressure. Sentigrömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrömm A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Desigrömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektógrömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kílógrömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stór tonn (Bretl.) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrömm A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Únsur A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pund A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lítil tonn (BNA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonn A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Geisladiskar A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Geisladiskar A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fótboltavellir A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fótboltavellir A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disklingar A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disklingar A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-diskar A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-diskar A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rafhlöður AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rafhlöður AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bréfaklemmur A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bréfaklemmur A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) júmbóþotur A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) júmbóþotur A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ljósaperur A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ljósaperur A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hestar A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hestar A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baðker A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baðker A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snjókorn A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snjókorn A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fílar An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fílar An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skjaldbökur A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skjaldbökur A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) þotur A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) þotur A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvalir A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvalir A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffibollar A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffibollar A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sundlaugar An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sundlaugar An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hendur A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hendur A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) blöð A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) blöð A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastalar A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastalar A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananar A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananar A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kökusneiðar A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kökusneiðar A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lestir A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lestir A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fótboltar A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fótboltar A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minnisatriði Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Til baka Screen reader prompt for the About panel back button Til baka Content of tooltip being displayed on AboutControlBackButton Leyfisskilmálar Microsoft hugbúnaðar Displayed on a link to the Microsoft Software License Terms on the About panel Forskoðun Label displayed next to upcoming features Yfirlýsing Microsoft um persónuvernd Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Allur réttur áskilinn. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Kynntu þér verkefnið á %HL%GitHub%HL% til að fá upplýsingar um hvernig þú getur lagt þitt af mörkum í Windows-reiknivélina. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Um Subtitle of about message on Settings page Senda athugasemd The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Enginn ferill enn. The text that shows as the header for the history list Ekkert hefur verið vistað í minni. The text that shows as the header for the memory list Minni Screen reader prompt for the negate button on the converter operator keypad Ekki er hægt að líma þessa segð The paste operation cannot be performed, if the expression is invalid. Gibibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibæti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Útreikningur dagsetningar Reiknistilling Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Bæta við Add toggle button text Bæta dögum við eða draga frá Add or Subtract days option Dagsetning Date result label Mismunur milli dagsetninga Date difference option Dagar Add/Subtract Days label Mismunur Difference result label Frá From Date Header for Difference Date Picker Mánuðir Add/Subtract Months label Draga frá Subtract toggle button text Til To Date Header for Difference Date Picker Ár Add/Subtract Years label Dagsetning utan marka Out of bound message shown as result when the date calculation exceeds the bounds dagur dagar mánuður mánuðir Sömu dagsetningar vika vikur ár ár Mismunur %1 Automation name for reading out the date difference. %1 = Date difference Niðurstöðudagsetning %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 stilling fyrir reiknivél {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 umbreytistilling {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Stilling fyrir úttreikning dagsetningar Automation name for when the mode header is focused and the current mode is Date calculation. Ferils- og minnislistar Automation name for the group of controls for history and memory lists. Minnisstýringar Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Venjulegar aðgerðir Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Skjástýringar Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Venjuleg virknitákn Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Talnaborð Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Virknitákn fyrir horn Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Vísindalegar aðgerðir Automation name for the group of Scientific functions. Radix-val Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Virknitákn fyrir forritara Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Val innsláttarstillingar Automation name for the group of input mode toggling buttons. Takkaborð fyrir bitabreytingar Automation name for the group of bit toggling buttons. Fletta segð til vinstri Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Fletta segð til hægri Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Hámarksfjölda tölustafa náð. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 vistuð í minni {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Minnisrauf %1 er %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Minnisrauf %1 hreinsuð {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". deilt með Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. sinnum Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. mínus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plús Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. að afli sem nemur Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y rót Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. gerð Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. vinstri hliðrun Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. hægri hliðrun Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. eða Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x eða Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. og Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Uppfært %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Uppfæra taxta The text displayed for a hyperlink button that refreshes currency converter ratios. Gagnaflutningsgjöld kunna að eiga við. The text displayed when users are on a metered connection and using currency converter. Ekki tókst að sækja ný verð. Reyndu aftur síðar. The text displayed when currency ratio data fails to load. Utan nets. Athugaðu%HL%netstillingarnar%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Uppfærir gengi gjaldmiðla This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Gengi gjaldmiðla uppfært This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Ekki var hægt að uppfæra gengi This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Hreinsa allt minni (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Hreinsa allt minni Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sínusgráður Name for the sine function in degrees mode. Used by screen readers. sínusbogamálseiningar Name for the sine function in radians mode. Used by screen readers. sínusnýgráður Name for the sine function in gradians mode. Used by screen readers. andhverfar sínusgráður Name for the inverse sine function in degrees mode. Used by screen readers. andhverfar sínusbogamálseiningar Name for the inverse sine function in radians mode. Used by screen readers. andhverfar sínusnýgráður Name for the inverse sine function in gradians mode. Used by screen readers. breiðbogasínus Name for the hyperbolic sine function. Used by screen readers. andhverfur breiðbogasínus Name for the inverse hyperbolic sine function. Used by screen readers. kósínusgráður Name for the cosine function in degrees mode. Used by screen readers. kósínusbogamálseiningar Name for the cosine function in radians mode. Used by screen readers. kósínusnýgráður Name for the cosine function in gradians mode. Used by screen readers. andhverfar kósínusgráður Name for the inverse cosine function in degrees mode. Used by screen readers. andhverfar kósínusbogamálseiningar Name for the inverse cosine function in radians mode. Used by screen readers. andhverfar kósínusnýgráður Name for the inverse cosine function in gradians mode. Used by screen readers. breiðbogakósínus Name for the hyperbolic cosine function. Used by screen readers. andhverfur breiðbogakósínus Name for the inverse hyperbolic cosine function. Used by screen readers. tangensgráður Name for the tangent function in degrees mode. Used by screen readers. tangensbogamálseiningar Name for the tangent function in radians mode. Used by screen readers. tangensnýgráður Name for the tangent function in gradians mode. Used by screen readers. andhverfar tangensgráður Name for the inverse tangent function in degrees mode. Used by screen readers. andhverfar tangensbogamálseiningar Name for the inverse tangent function in radians mode. Used by screen readers. andhverfar tangensnýgráður Name for the inverse tangent function in gradians mode. Used by screen readers. breiðbogatangens Name for the hyperbolic tangent function. Used by screen readers. andhverfur breiðbogatangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekansgráður Name for the secant function in degrees mode. Used by screen readers. sekanshorn Name for the secant function in radians mode. Used by screen readers. sekansnýgráður Name for the secant function in gradians mode. Used by screen readers. andhverfar sekansgráður Name for the inverse secant function in degrees mode. Used by screen readers. andhverft sekanshorn Name for the inverse secant function in radians mode. Used by screen readers. andhverfar sekansnýgráður Name for the inverse secant function in gradians mode. Used by screen readers. breiðbogasekans Name for the hyperbolic secant function. Used by screen readers. andhverfur breiðbogasekans Name for the inverse hyperbolic secant function. Used by screen readers. kósekansgráður Name for the cosecant function in degrees mode. Used by screen readers. kósekanshorn Name for the cosecant function in radians mode. Used by screen readers. kósekansnýgráður Name for the cosecant function in gradians mode. Used by screen readers. andhverfar kósekansgráður Name for the inverse cosecant function in degrees mode. Used by screen readers. andhverft kósekanshorn Name for the inverse cosecant function in radians mode. Used by screen readers. andhverfar kósekansnýgráður Name for the inverse cosecant function in gradians mode. Used by screen readers. breiðbogakósekans Name for the hyperbolic cosecant function. Used by screen readers. andhverfur breiðbogakósekans Name for the inverse hyperbolic cosecant function. Used by screen readers. kótangensgráður Name for the cotangent function in degrees mode. Used by screen readers. Kótangenshorn Name for the cotangent function in radians mode. Used by screen readers. kótangensnýgráður Name for the cotangent function in gradians mode. Used by screen readers. andhverfar kótangensgráður Name for the inverse cotangent function in degrees mode. Used by screen readers. andhverft kótangenshorn Name for the inverse cotangent function in radians mode. Used by screen readers. andhverfar kótangensnýgráður Name for the inverse cotangent function in gradians mode. Used by screen readers. breiðbogakótangens Name for the hyperbolic cotangent function. Used by screen readers. andhverfur breiðbogakótangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Þriðja rót Name for the cube root function. Used by screen readers. Log-grunnur Name for the logbasey function. Used by screen readers. Algildi Name for the absolute value function. Used by screen readers. vinstri hliðrun Name for the programmer function that shifts bits to the left. Used by screen readers. hægri hliðrun Name for the programmer function that shifts bits to the right. Used by screen readers. aðfeldi Name for the factorial function. Used by screen readers. gráða mínúta sekúnda Name for the degree minute second (dms) function. Used by screen readers. náttúrulegur lógaritmi Name for the natural log (ln) function. Used by screen readers. ferningur Name for the square function. Used by screen readers. y rót Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 flokkur {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Þjónustusamningur Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Frá From Date Header for AddSubtract Date Picker Fletta útreikningsniðurstöðu til vinstri Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Fletta útreikningsniðurstöðu til hægri Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Útreikningur mistókst Text displayed when the application is not able to do a calculation Log-grunnur Y Screen reader prompt for the logBaseY button Hornafræði Displayed on the button that contains a flyout for the trig functions in scientific mode. Virkni Displayed on the button that contains a flyout for the general functions in scientific mode. Ójöfnuður Displayed on the button that contains a flyout for the inequality functions. Ójöfnuður Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitahliðrun Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Andhverft fall Screen reader prompt for the shift button in the trig flyout in scientific mode. Gleiðbogafall Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Breiðbogasekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkarsekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Gleiðbogaarkarsekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kósekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Breiðbogakósekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkarkósekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Gleiðbogaarkarkósekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kótangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Breiðbogakótangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkarkótangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Gleiðbogaarkarkótangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Hæð Screen reader prompt for the Calculator button floor in the scientific flyout keypad Efri mörk Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Af handahófi Screen reader prompt for the Calculator button random in the scientific flyout keypad Algildi Screen reader prompt for the Calculator button abs in the scientific flyout keypad Tala Eulers Screen reader prompt for the Calculator button e in the scientific flyout keypad Tveir í veldinu Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NOR Screen reader prompt for the Calculator button nor in the scientific flyout keypad NOR Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Snúa til vinstri með geymd Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Snúa til hægri með geymd Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Vinstri hliðrun Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Vinstri hliðrun Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Hægri hliðrun Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Hægri hliðrun Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Reikningshliðrun Label for a radio button that toggles arithmetic shift behavior for the shift operations. Rökleg hliðrun Label for a radio button that toggles logical shift behavior for the shift operations. Snúa hringhliðrun Label for a radio button that toggles rotate circular behavior for the shift operations. Hringhliðrun snúnings með geymd Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Þriðja rót Screen reader prompt for the cube root button on the scientific operator keypad Hornafræði Screen reader prompt for the square root button on the scientific operator keypad Föll Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitahliðrun Screen reader prompt for the square root button on the scientific operator keypad Vísindastilling Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Forritarastilling Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad gildishæsti biti Used to describe the last bit of a binary number. Used in bit flip Birtir gröf Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Teikna Screen reader prompt for the plot button on the graphing calculator operator keypad Endurnýja yfirlit sjálfvirkt (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafyfirlit Screen reader prompt for the graph view button. Sjálfvirk kjörstærð Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Handvirk leiðrétting Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafyfirlit hefur verið endurstillt Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Auka aðdrátt (Ctrl + plús) This is the tool tip automation name for the Calculator zoom in button. Auka aðdrátt Screen reader prompt for the zoom in button. Minnka aðdrátt (Ctrl + mínus) This is the tool tip automation name for the Calculator zoom out button. Minnka aðdrátt Screen reader prompt for the zoom out button. Bæta jöfnu við Placeholder text for the equation input button Ekki er hægt að deila eins og er. If there is an error in the sharing action will display a dialog with this text. Í lagi Used on the dismiss button of the share action error dialog. Sjáðu grafið sem ég bjó til með Windows-reiknivél Sent as part of the shared content. The title for the share. Jöfnur Header that appears over the equations section when sharing Breytur Header that appears over the variables section when sharing Mynd af grafi með jöfnum Alt text for the graph image when output via Share Breytur Header text for variables area Skref Label text for the step text box Lágmark Label text for the min text box Hámark Label text for the max text box Litur Label for the Line Color section of the style picker Stíll Label for the Line Style section of the style picker Greining falls Title for KeyGraphFeatures Control Engar láréttar aðfellur eru í þessu falli. Message displayed when the graph does not have any horizontal asymptotes Engir hverfipunktar eru fallinu. Message displayed when the graph does not have any inflection points Engin hágildi eru í fallinu. Message displayed when the graph does not have any maxima Engin lággildi eru í fallinu. Message displayed when the graph does not have any minima Fasti String describing constant monotonicity of a function Lækkandi String describing decreasing monotonicity of a function Ekki er hægt að ákvarða einhalla fallsins. Error displayed when monotonicity cannot be determined Hækkandi String describing increasing monotonicity of a function Einhalli fallsins er óþekktur. Error displayed when monotonicity is unknown Engar skásettar aðfellur eru í þessu falli. Message displayed when the graph does not have any oblique asymptotes Ekki er hægt að ákvarða formerki fallsins. Error displayed when parity is cannot be determined Fallið er slétt tala. Message displayed with the function parity is even Fallið er hvorki oddatala né slétt tala. Message displayed with the function parity is neither even nor odd Fallið er oddatala. Message displayed with the function parity is odd Formerki falls er óþekkt. Error displayed when parity is unknown Lotubinding er ekki studd í þessu falli. Error displayed when periodicity is not supported Fallið er ekki reglubundið. Message displayed with the function periodicity is not periodic Lotubinding fallsins þekkist ekki. Message displayed with the function periodicity is unknown Þessir eiginleikar eru of flóknir fyrir reiknivélina: Error displayed when analysis features cannot be calculated Engar lóðréttar aðfellur eru í þessu falli. Message displayed when the graph does not have any vertical asymptotes Engin x-ássnið eru í fallinu. Message displayed when the graph does not have any x-intercepts Engin y-ássnið eru í fallinu. Message displayed when the graph does not have any y-intercepts Lén Title for KeyGraphFeatures Domain Property Láréttar aðfellur Title for KeyGraphFeatures Horizontal aysmptotes Property Hverfipunktar Title for KeyGraphFeatures Inflection points Property Greining er ekki studd fyrir þetta fall. Error displayed when graph analysis is not supported or had an error. Greining er aðeins studd fyrir aðgerðir í sniðinu f(x). Dæmi: y=x Error displayed when graph analysis detects the function format is not f(x). Hágildi Title for KeyGraphFeatures Maxima Property Lággildi Title for KeyGraphFeatures Minima Property Einhalli Title for KeyGraphFeatures Monotonicity Property Skásettar aðfellur Title for KeyGraphFeatures Oblique asymptotes Property Sammerking Title for KeyGraphFeatures Parity Property Punktur Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Svið Title for KeyGraphFeatures Range Property Lóðréttar aðfellur Title for KeyGraphFeatures Vertical asymptotes Property X-ássnið Title for KeyGraphFeatures XIntercept Property Y-ássnið Title for KeyGraphFeatures YIntercept Property Ekki var hægt að framkvæma greininguna fyrir fallið. Ekki er hægt að reikna heilbaug fyrir þetta fall. Error displayed when Domain is not returned from the analyzer. Ekki er hægt að reikna mengi þessa falls. Error displayed when Range is not returned from the analyzer. Yfirflæði (talan er of stór) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Áskilið er að hafa bogamálssnið til að mynda þessa jöfnu. Error that occurs during graphing when radians is required. Aðgerðin er of flókin til að mynda Error that occurs during graphing when the equation is too complex. Krafist er gráðustillingar til að mynda þessa aðgerð Error that occurs during graphing when degrees is required Hrópmerkta aðgerðin inniheldur ógilda frumbreytu Error that occurs during graphing when a factorial function has an invalid argument. Hrópmerkta aðgerðin inniheldur frumbreytu sem er of stór til að mynda Error that occurs during graphing when a factorial has a large n Aðeins er hægt að nota leifar með heilum tölum Error that occurs during graphing when modulo is used with a float. Jafnan hefur enga lausn Error that occurs during graphing when the equation has no solution. Ekki er hægt að deila með núlli Error that occurs during graphing when a divison by zero occurs. Jafnan inniheldur rökræn skilyrði sem útiloka hvert annað Error that occurs during graphing when mutually exclusive conditions are used. Jafnan er utan léns Error that occurs during graphing when the equation is out of domain. Myndun þessarar jöfnu er ekki studd Error that occurs during graphing when the equation is not supported. Það vantar vinstri sviga í jöfnuna Error that occurs during graphing when the equation is missing a ( Það vantar hægri sviga í jöfnuna Error that occurs during graphing when the equation is missing a ) Það eru of mörg tugabrot í tölu Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Tölustafi vantar í tugabrot Error that occurs during graphing with a decimal point without digits Óvæntur endir á segð Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Óvæntir stafir í segð Error that occurs during graphing when there is an unexpected token. Ógildir stafir í segð Error that occurs during graphing when there is an invalid token. Það eru of mörg samasem merki Error that occurs during graphing when there are too many equals. Aðgerðin verður að innihalda minnst eina x- eða y-breytu Error that occurs during graphing when the equation is missing x or y. Ógild segð Error that occurs during graphing when an invalid syntax is used. Segðin er tóm Error that occurs during graphing when the expression is empty Samasem var notað án jöfnu Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Sviga vantar eftir heiti aðgerðar Error that occurs during graphing when parenthesis are missing after a function. Reikniaðgerð inniheldur rangan fjölda færibreyta Error that occurs during graphing when a function has the wrong number of parameters Breytunafn er ógilt Error that occurs during graphing when a variable name is invalid. Það vantar opnunarsviga í jöfnuna Error that occurs during graphing when a { is missing Það vantar lokunarsviga í jöfnuna Error that occurs during graphing when a } is missing. Ekki er hægt að nota „i“ og „I“ sem breytumerki Error that occurs during graphing when i or I is used. Ekki var hægt að mynda jöfnuna General error that occurs during graphing. Ekki var hægt að leysa úr tölustafnum fyrir tilgreinda grunninn Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Grunnurinn verður að vera meiri en 2 og minni en 36 Error that occurs during graphing when the base is out of range. Í reikniaðgerð þarf ein færibreytan að vera breyta Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Jafnan blandar saman rökrænum og tölulegum þolendum Error that occurs during graphing when operands are mixed. Such as true and 1. Ekki er hægt að nota x eða y í efri eða neðri mörkum Error that occurs during graphing when x or y is used in integral upper limits. Ekki má nota x eða y í markpunkti Error that occurs during graphing when x or y is used in the limit point. Ekki hægt að nota flókinn óendanleika Error that occurs during graphing when complex infinity is used Ekki er hægt að nota tvinntölur í ójöfnum Error that occurs during graphing when complex numbers are used in inequalities. Aftur á aðgerðalista This is the tooltip for the back button in the equation analysis page in the graphing calculator Aftur á aðgerðalista This is the automation name for the back button in the equation analysis page in the graphing calculator Greina fall This is the tooltip for the analyze function button Greina fall This is the automation name for the analyze function button Greina fall This is the text for the for the analyze function context menu command Fjarlægja jöfnu This is the tooltip for the graphing calculator remove equation buttons Fjarlægja jöfnu This is the automation name for the graphing calculator remove equation buttons Fjarlægja jöfnu This is the text for the for the remove equation context menu command Deila This is the automation name for the graphing calculator share button. Deila This is the tooltip for the graphing calculator share button. Breyta jöfnustíl This is the tooltip for the graphing calculator equation style button Breyta jöfnustíl This is the automation name for the graphing calculator equation style button Breyta jöfnustíl This is the text for the for the equation style context menu command Sýna jöfnu This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Fela jöfnu This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Sýna jöfnu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Fela jöfnu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stöðva rakningu This is the tooltip/automation name for the graphing calculator stop tracing button Hefja rakningu This is the tooltip/automation name for the graphing calculator start tracing button Skoðunargluggi grafs, x-ás bundinn af %1 og %2, y-ás bundinn af %3 og %4, birtir %5 jöfnur {Locked="%1","%2", "%3", "%4", "%5"}. Stilla sleða This is the tooltip text for the slider options button in Graphing Calculator Stilla sleða This is the automation name text for the slider options button in Graphing Calculator Skipta yfir í jöfnustillingu Used in Graphing Calculator to switch the view to the equation mode Skipta yfir í grafsstillingu Used in Graphing Calculator to switch the view to the graph mode Skipta yfir í jöfnustillingu Used in Graphing Calculator to switch the view to the equation mode Núverandi stilling er jöfnustilling Announcement used in Graphing Calculator when switching to the equation mode Núverandi stilling er grafsstilling Announcement used in Graphing Calculator when switching to the graph mode Gluggi Heading for window extents on the settings Gráður Degrees mode on settings page Nýgráður Gradian mode on settings page Bogamál Radians mode on settings page Einingar Heading for Unit's on the settings Endurstilla yfirlit Hyperlink button to reset the view of the graph X-hám. X maximum value header X-lágm. X minimum value header Y-hám. Y Maximum value header Y-lágm. Y minimum value header Valkostir grafs This is the tooltip text for the graph options button in Graphing Calculator Valkostir grafs This is the automation name text for the graph options button in Graphing Calculator Valkostir grafs Heading for the Graph options flyout in Graphing mode. Breytuvalkostir Screen reader prompt for the variable settings toggle button Víxla breytuvalkostum Tool tip for the variable settings toggle button Línuþykkt Heading for the Graph options flyout in Graphing mode. Línuvalkostir Heading for the equation style flyout in Graphing mode. Lítil línubreidd Automation name for line width setting Miðlungslínubreidd Automation name for line width setting Stór línubreidd Automation name for line width setting Mjög stór línubreidd Automation name for line width setting Sláðu inn segð this is the placeholder text used by the textbox to enter an equation Afrita Copy menu item for the graph context menu Klippa Cut menu item from the Equation TextBox Afrita Copy menu item from the Equation TextBox Líma Paste menu item from the Equation TextBox Afturkalla Undo menu item from the Equation TextBox Velja allt Select all menu item from the Equation TextBox Setja inn fall The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Setja inn fall The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Innsláttargluggi The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Breytusvæði The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Breytulisti The automation name for the Variable ListView that is shown when Calculator is in graphing mode. %1 listaatriði The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Gildistextareitur The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Gildissleði The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textareitur fyrir lágmarksgildi The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textareitur fyrir þrepagildi The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textareitur fyrir hámarksgildi The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Óbrotinn línustíll Name of the solid line style for a graphed equation Punktalínustíll Name of the dotted line style for a graphed equation Strikalínustíll Name of the dashed line style for a graphed equation Dökkblár Name of color in the color picker Blágrænn Name of color in the color picker Fjólublár Name of color in the color picker Grænn Name of color in the color picker Myntugrænn Name of color in the color picker Dökkgrænn Name of color in the color picker Kolagrár Name of color in the color picker Rauður Name of color in the color picker Ljósplómulitaður Name of color in the color picker Blárauður Name of color in the color picker Gulllitaður Name of color in the color picker Skærappelsínugulur Name of color in the color picker Brúnn Name of color in the color picker Svartur Name of color in the color picker Hvítur Name of color in the color picker Litur 1 Name of color in the color picker Litur 2 Name of color in the color picker Litur 3 Name of color in the color picker Litur 4 Name of color in the color picker Grafþema Graph settings heading for the theme options Alltaf ljós Graph settings option to set graph to light theme Samræma forritaþema Graph settings option to set graph to match the app theme Þema This is the automation name text for the Graph settings heading for the theme options Alltaf ljós This is the automation name text for the Graph settings option to set graph to light theme Samræma forritaþema This is the automation name text for the Graph settings option to set graph to match the app theme Aðgerð fjarlægð Announcement used in Graphing Calculator when a function is removed from the function list Aðgerðargreining fyrir jöfnureit This is the automation name text for the equation box in the function analysis panel Er jafnt og Screen reader prompt for the equal button on the graphing calculator operator keypad Minna en Screen reader prompt for the Less than button Minna en eða jafnt og Screen reader prompt for the Less than or equal button Jafnt og Screen reader prompt for the Equal button Stærra en eða jafnt og Screen reader prompt for the Greater than or equal button Stærra en Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Senda Screen reader prompt for the submit button on the graphing calculator operator keypad Greining falls Screen reader prompt for the function analysis grid Valkostir grafs Screen reader prompt for the graph options panel Ferils- og minnislistar Automation name for the group of controls for history and memory lists. Minnislisti Automation name for the group of controls for memory list. Ferilsrauf %1 hreinsuð {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Reiknivél alltaf efst Announcement to indicate calculator window is always shown on top. Reiknivél aftur í fulla skjámynd Announcement to indicate calculator window is now back to full view. Reikningshliðrun valin Label for a radio button that toggles arithmetic shift behavior for the shift operations. Rökræn hliðrun valin Label for a radio button that toggles logical shift behavior for the shift operations. „Snúa hringhliðrun“ valið Label for a radio button that toggles rotate circular behavior for the shift operations. „Hringhliðrun snúnings með geymd“ valið Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Stillingar Header text of Settings page Útlit Subtitle of appearance setting on Settings page Þema forrits Title of App theme expander Velja hvaða forritaþema á að birta Description of App theme expander Ljóst Lable for light theme option Dökkt Lable for dark theme option Nota kerfisstillingu Lable for the app theme option to use system setting Til baka Screen reader prompt for the Back button in title bar to back to main page Stillingarsíða Announcement used when Settings page is opened Opnaðu flýtivalmyndina fyrir tiltækar aðgerðir Screen reader prompt for the context menu of the expression box Í lagi The text of OK button to dismiss an error dialog. Ekki tókst að endurheimta þessa skyndimynd. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/it-IT/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Input non valido Error message shown when the input makes a function fail, like log(-1) Risultato indefinito Error message shown when there's no possible value for a function. Memoria insufficiente Error message shown when we run out of memory during a calculation. Overflow Error message shown when there's an overflow during the calculation. Risultato non definito Same as 101 Risultato non definito Same 101 Overflow Same as 107 Overflow Same 107 Impossibile dividere per zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/it-IT/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calcolatrice {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calcolatrice [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calcolatrice Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calcolatrice Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calcolatrice {@Appx_Description@} This description is used for the official application when published through Windows Store. Calcolatrice [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copia Copy context menu string Incolla Paste context menu string Circa uguale a The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valore %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63° Sub-string used in automation name for 63 bit in bit flip 62° Sub-string used in automation name for 62 bit in bit flip 61° Sub-string used in automation name for 61 bit in bit flip 60° Sub-string used in automation name for 60 bit in bit flip 59° Sub-string used in automation name for 59 bit in bit flip 58° Sub-string used in automation name for 58 bit in bit flip 57° Sub-string used in automation name for 57 bit in bit flip 56° Sub-string used in automation name for 56 bit in bit flip 55° Sub-string used in automation name for 55 bit in bit flip 54° Sub-string used in automation name for 54 bit in bit flip 53° Sub-string used in automation name for 53 bit in bit flip 52° Sub-string used in automation name for 52 bit in bit flip 51° Sub-string used in automation name for 51 bit in bit flip 50° Sub-string used in automation name for 50 bit in bit flip 49° Sub-string used in automation name for 49 bit in bit flip 48° Sub-string used in automation name for 48 bit in bit flip 47° Sub-string used in automation name for 47 bit in bit flip 46° Sub-string used in automation name for 46 bit in bit flip 45° Sub-string used in automation name for 45 bit in bit flip 44° Sub-string used in automation name for 44 bit in bit flip 43° Sub-string used in automation name for 43 bit in bit flip 42° Sub-string used in automation name for 42 bit in bit flip 41° Sub-string used in automation name for 41 bit in bit flip 40° Sub-string used in automation name for 40 bit in bit flip 39° Sub-string used in automation name for 39 bit in bit flip 38° Sub-string used in automation name for 38 bit in bit flip 37° Sub-string used in automation name for 37 bit in bit flip 36° Sub-string used in automation name for 36 bit in bit flip 35° Sub-string used in automation name for 35 bit in bit flip 34° Sub-string used in automation name for 34 bit in bit flip 33° Sub-string used in automation name for 33 bit in bit flip 32° Sub-string used in automation name for 32 bit in bit flip 31° Sub-string used in automation name for 31 bit in bit flip 30° Sub-string used in automation name for 30 bit in bit flip 29° Sub-string used in automation name for 29 bit in bit flip 28° Sub-string used in automation name for 28 bit in bit flip 27° Sub-string used in automation name for 27 bit in bit flip 26° Sub-string used in automation name for 26 bit in bit flip 25° Sub-string used in automation name for 25 bit in bit flip 24° Sub-string used in automation name for 24 bit in bit flip 23° Sub-string used in automation name for 23 bit in bit flip 22° Sub-string used in automation name for 22 bit in bit flip 21° Sub-string used in automation name for 21 bit in bit flip 20° Sub-string used in automation name for 20 bit in bit flip 19° Sub-string used in automation name for 19 bit in bit flip 18° Sub-string used in automation name for 18 bit in bit flip 17° Sub-string used in automation name for 17 bit in bit flip 16° Sub-string used in automation name for 16 bit in bit flip 15° Sub-string used in automation name for 15 bit in bit flip 14° Sub-string used in automation name for 14 bit in bit flip 13° Sub-string used in automation name for 13 bit in bit flip 12° Sub-string used in automation name for 12 bit in bit flip 11° Sub-string used in automation name for 11 bit in bit flip 10° Sub-string used in automation name for 10 bit in bit flip Sub-string used in automation name for 9 bit in bit flip Sub-string used in automation name for 8 bit in bit flip Sub-string used in automation name for 7 bit in bit flip Sub-string used in automation name for 6 bit in bit flip Sub-string used in automation name for 5 bit in bit flip Sub-string used in automation name for 4 bit in bit flip Sub-string used in automation name for 3 bit in bit flip Sub-string used in automation name for 2 bit in bit flip Sub-string used in automation name for 1 bit in bit flip bit meno significativo Used to describe the first bit of a binary number. Used in bit flip Apri riquadro a comparsa della memoria This is the automation name and label for the memory button when the memory flyout is closed. Chiudi riquadro a comparsa della memoria This is the automation name and label for the memory button when the memory flyout is open. Mantieni in primo piano This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Torna a visualizzazione completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Cronologia (CTRL+H) This is the tool tip automation name for the history button. Tastierino per numeri binari This is the tool tip automation name for the bitFlip button. Tastierino numerico completo This is the tool tip automation name for the numberPad button. Cancella tutta la memoria (CTRL+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Cronologia The text that shows as the header for the history list Cronologia The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertitore Label for a control that activates the unit converter mode. Scientifica Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Modalità convertitore Screen reader prompt for a control that activates the unit converter mode. Modalità scientifica Screen reader prompt for a control that activates scientific mode calculator layout Modalità standard Screen reader prompt for a control that activates standard mode calculator layout. Cancella tutta la cronologia "ClearHistory" used on the calculator history pane that stores the calculation history. Cancella tutta la cronologia This is the tool tip automation name for the Clear History button. Nascondi "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Scientifica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmatore The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertitore The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calcolatrice The text that shows in the dropdown navigation control for the calculator group. Convertitore The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calcolatrice The text that shows in the dropdown navigation control for the calculator group in upper case. Convertitori Pluralized version of the converter group text, used for the screen reader prompt. Calcolatrici Pluralized version of the calculator group text, used for the screen reader prompt. Lo schermo è %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". L'espressione è %1, L'input corrente è %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Lo schermo è %1 virgola {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. L'espressione è %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Visualizza il valore copiato negli appunti Screen reader prompt for the Calculator display copy button, when the button is invoked. Cronologia Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout Esadecimale %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimale %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Ottale %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binario %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Cancella tutta la cronologia Screen reader prompt for the Calculator History Clear button Cronologia cancellata Screen reader prompt for the Calculator History Clear button, when the button is invoked. Nascondi cronologia Screen reader prompt for the Calculator History Hide button Apri riquadro a comparsa della cronologia Screen reader prompt for the Calculator History button, when the flyout is closed. Chiudi riquadro a comparsa della cronologia Screen reader prompt for the Calculator History button, when the flyout is open. Salvataggio in memoria Screen reader prompt for the Calculator Memory button Salvataggio in memoria (CTRL+M) This is the tool tip automation name for the Memory Store (MS) button. Cancella tutta la memoria Screen reader prompt for the Calculator Clear Memory button Memoria cancellata Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Richiamo memoria Screen reader prompt for the Calculator Memory Recall button Richiamo memoria (CTRL+R) This is the tool tip automation name for the Memory Recall (MR) button. Aggiunta alla memoria Screen reader prompt for the Calculator Memory Add button Aggiunta alla memoria (CTRL+P) This is the tool tip automation name for the Memory Add (M+) button. Sottrazione dalla memoria Screen reader prompt for the Calculator Memory Subtract button Sottrazione dalla memoria (CTRL+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Cancella elemento in memoria Screen reader prompt for the Calculator Clear Memory button Cancella elemento in memoria This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Aggiungi a elemento in memoria Screen reader prompt for the Calculator Memory Add button in the Memory list Aggiungi a elemento in memoria This is the tool tip automation name for the Calculator Memory Add button in the Memory list Sottrai dall'elemento in memoria Screen reader prompt for the Calculator Memory Subtract button in the Memory list Sottrai dall'elemento in memoria This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Cancella elemento in memoria Screen reader prompt for the Calculator Clear Memory button Cancella elemento in memoria Text string for the Calculator Clear Memory option in the Memory list context menu Aggiungi a elemento in memoria Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Aggiungi a elemento in memoria Text string for the Calculator Memory Add option in the Memory list context menu Sottrai dall'elemento in memoria Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Sottrai dall'elemento in memoria Text string for the Calculator Memory Subtract option in the Memory list context menu Elimina Text string for the Calculator Delete swipe button in the History list Copia Text string for the Calculator Copy option in the History list context menu Elimina Text string for the Calculator Delete option in the History list context menu Elimina elemento della cronologia Screen reader prompt for the Calculator Delete swipe button in the History list Elimina elemento della cronologia Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Uno Screen reader prompt for the Calculator number "1" button Due Screen reader prompt for the Calculator number "2" button Tre Screen reader prompt for the Calculator number "3" button Quattro Screen reader prompt for the Calculator number "4" button Cinque Screen reader prompt for the Calculator number "5" button Sei Screen reader prompt for the Calculator number "6" button Sette Screen reader prompt for the Calculator number "7" button Otto Screen reader prompt for the Calculator number "8" button Nove Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Rotazione a sinistra Screen reader prompt for the Calculator ROL button Rotazione a destra Screen reader prompt for the Calculator ROR button Spostamento a sinistra Screen reader prompt for the Calculator LSH button Spostamento a destra Screen reader prompt for the Calculator RSH button XOR Screen reader prompt for the Calculator XOR button Attivazione/Disattivazione qword Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Attivazione/Disattivazione dword Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Attivazione/Disattivazione word Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Attivazione/Disattivazione byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tastierino per numeri binari Screen reader prompt for the Calculator bitFlip button Tastierino numerico completo Screen reader prompt for the Calculator numberPad button Separatore decimale Screen reader prompt for the "." button Cancella immissione Screen reader prompt for the "CE" button Cancella Screen reader prompt for the "C" button Divisione Screen reader prompt for the divide button on the number pad Moltiplicazione Screen reader prompt for the multiply button on the number pad Uguale Screen reader prompt for the equals button on the scientific operator keypad Funzione inversa Screen reader prompt for the shift button on the number pad in scientific mode. Meno Screen reader prompt for the minus button on the number pad Meno We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Più Screen reader prompt for the plus button on the number pad Radice quadrata Screen reader prompt for the square root button on the scientific operator keypad Percentuale Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Reciproco Screen reader prompt for the invert button on the scientific operator keypad Parentesi aperta Screen reader prompt for the Calculator "(" button on the scientific operator keypad Parentesi aperta, numero %1 parentesi aperte {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parentesi chiusa Screen reader prompt for the Calculator ")" button on the scientific operator keypad Numero di parentesi aperte %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Non sono presenti parentesi aperte da chiudere. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notazione scientifica Screen reader prompt for the Calculator F-E the scientific operator keypad Funzione iperbolica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi greco Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Coseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno iperbolico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Coseno iperbolico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente iperbolica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Quadrato Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arcoseno Screen reader prompt for the inverted sin on the scientific operator keypad. Arco coseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arco tangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arcoseno iperbolico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arcocoseno iperbolico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arcotangente iperbolica Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' elevato all'esponente Screen reader prompt for x power y button on the scientific operator keypad. 10 elevato all'esponente Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' elevato all'esponente Screen reader for the e power x on the scientific operator keypad. 'y' radice di 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmo Screen reader for the log base 10 on the scientific operator keypad Logaritmo naturale Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Esponenziale Screen reader for the exp button on the scientific operator keypad Grado minuto secondo Screen reader for the exp button on the scientific operator keypad Gradi Screen reader for the exp button on the scientific operator keypad Parte intera Screen reader for the int button on the scientific operator keypad Parte frazionaria Screen reader for the frac button on the scientific operator keypad Fattoriale Screen reader for the factorial button on the basic operator keypad Attivazione/Disattivazione gradi This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Attivazione/Disattivazione gradienti This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Attivazione/Disattivazione radianti This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Elenco a discesa Modalità Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Elenco a discesa Categorie Screen reader prompt for the Categories dropdown field. Mantieni in primo piano Screen reader prompt for the Always-on-Top button when in normal mode. Torna a visualizzazione completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mantieni in primo piano (ALT + freccia SU) This is the tool tip automation name for the Always-on-Top button when in normal mode. Torna a visualizzazione completa (ALT + freccia GIÙ) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converti da %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converte da %1 virgola %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converte in %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 è %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unità di input Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unità di output Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Area Unit conversion category name called Area (eg. area of a sports field in square meters) Dati Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lunghezza Unit conversion category name called Length Potenza Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocità Unit conversion category name called Speed Orario Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso e massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressione Unit conversion category name called Pressure Angolo Unit conversion category name called Angle Valuta Unit conversion category name called Currency Once fluide (Regno Unito) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Regno Unito) An abbreviation for a measurement unit of volume Once fluide (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Stati Uniti) An abbreviation for a measurement unit of volume Galloni (Regno Unito) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Regno Unito) An abbreviation for a measurement unit of volume Galloni (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Stati Uniti) An abbreviation for a measurement unit of volume Litri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Millilitri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pinte (Regno Unito) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Regno Unito) An abbreviation for a measurement unit of volume Pinte (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Stati Uniti) An abbreviation for a measurement unit of volume Cucchiai da tavola (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (Stati Uniti) An abbreviation for a measurement unit of volume Cucchiaini da tè (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (Stati Uniti) An abbreviation for a measurement unit of volume Cucchiai da tavola (Regno Unito) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (Regno Unito) An abbreviation for a measurement unit of volume Cucchiaini da tè (Regno Unito) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (Regno Unito) An abbreviation for a measurement unit of volume Quarti (Regno Unito) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Regno Unito) An abbreviation for a measurement unit of volume Quarti (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Stati Uniti) An abbreviation for a measurement unit of volume Tazze (Stati Uniti) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazza (Stati Uniti) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume g An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (Stati Uniti) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length a An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi greco An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) British Thermal Unit A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorie termiche A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri al secondo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piedi cubici A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pollici cubici A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iarde cubiche A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Giorni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elettronvolt (eV) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piedi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piedi al secondo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piede per libbra A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piede per libbra/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ettari A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cavallo vapore (Stati Uniti) A measurement unit for power Ore A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pollici A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chilowattora A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorie alimentari A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chilometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chilometri all'ora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nodi A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri al secondo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsecondi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miglia A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miglia all'ora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisecondi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuti A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstrom A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miglia nautiche A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Secondi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piedi quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pollici quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chilometri quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miglia quadrate A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimetri quadrati A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iarde quadrate A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Settimane A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iarde A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Regno Unito) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (Stati Uniti) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carati A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gradi A measurement unit for Angle. Radianti A measurement unit for Angle. Gradienti A measurement unit for Angle. Atmosfere A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascals A measurement unit for Pressure. Millimetri di mercurio A measurement unit for Pressure. Pascal A measurement unit for Pressure. Libbre per pollice quadrato A measurement unit for Pressure. Centigrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagrammi A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ettogrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Chilogrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnellate lunghe (Regno Unito) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligrammi A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Once A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libbre A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnellate corte (Stati Uniti) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonnellate metriche A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campi da calcio A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campi da calcio A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dischi floppy A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dischi floppy A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) graffette A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) graffette A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lampadine A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lampadine A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalli A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalli A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vasche da bagno A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vasche da bagno A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fiocchi di neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fiocchi di neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanti An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanti An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarughe A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarughe A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balene A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balene A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazze da tè A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tazze da tè A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscine An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscine An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mani A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mani A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fogli di carta A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fogli di carta A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelli A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelli A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fette di torta A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fette di torta A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) motori del treno A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotive A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palloni da calcio A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palloni da calcio A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Elemento in memoria Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Indietro Screen reader prompt for the About panel back button Indietro Content of tooltip being displayed on AboutControlBackButton Condizioni di licenza software Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Anteprima Label displayed next to upcoming features Informativa sulla privacy di Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Tutti i diritti sono riservati. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Per informazioni su come contribuire a calcolatrice di Windows, controllare il progetto in %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Informazioni Subtitle of about message on Settings page Invia feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Non è ancora presente la cronologia. The text that shows as the header for the history list Nessun elemento salvato in memoria. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad Non è possibile incollare l'espressione The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calcolo della data Modalità di calcolo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Aggiungi Add toggle button text Aggiungi o sottrai giorni Add or Subtract days option Data Date result label Differenza tra date Date difference option Giorni Add/Subtract Days label Differenza Difference result label Da From Date Header for Difference Date Picker Mesi Add/Subtract Months label Sottrai Subtract toggle button text A To Date Header for Difference Date Picker Anni Add/Subtract Years label Data fuori intervallo Out of bound message shown as result when the date calculation exceeds the bounds giorno giorni mese mesi Stesse date settimana settimane anno anni Differenza %1 Automation name for reading out the date difference. %1 = Date difference Data risultante %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modalità calcolatrice %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modalità convertitore %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modalità di calcolo della data Automation name for when the mode header is focused and the current mode is Date calculation. Cronologia ed elenchi di memoria Automation name for the group of controls for history and memory lists. Controlli di memoria Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funzioni standard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controlli di visualizzazione Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operatori standard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Tastierino numerico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operatori angolo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funzioni scientifiche Automation name for the group of Scientific functions. Selezione della base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operatori di programmazione Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selezione modalità input Automation name for the group of input mode toggling buttons. Tastierino per numeri binari Automation name for the group of bit toggling buttons. Scorri espressione a sinistra Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Scorri espressione a destra Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Numero massimo di cifre raggiunto. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 è stato salvato nella memoria {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Lo slot di memoria %1 è %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Slot di memoria %1 cancellato {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". diviso per Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. volte Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. meno Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. più Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. alla potenza di Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y radice Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. spostamento a sinistra Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. spostamento a destra Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. o Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x o Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. e Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Aggiornato il %1 alle %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Aggiorna tariffe The text displayed for a hyperlink button that refreshes currency converter ratios. Potrebbero essere applicati addebiti per i dati. The text displayed when users are on a metered connection and using currency converter. Non è possibile ottenere nuove percentuali. Riprova più tardi. The text displayed when currency ratio data fails to load. Offline. Verifica le %HL%impostazioni di rete%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Aggiornamento tassi di cambio in corso This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Tassi di cambio aggiornati This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Non è stato possibile aggiornare le tariffe This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Cancella tutta la memoria (CTRL+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Cancella tutta la memoria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} gradi sinusoidali Name for the sine function in degrees mode. Used by screen readers. radianti seno Name for the sine function in radians mode. Used by screen readers. gradienti seno Name for the sine function in gradians mode. Used by screen readers. gradi seno inverso Name for the inverse sine function in degrees mode. Used by screen readers. radianti seno inverso Name for the inverse sine function in radians mode. Used by screen readers. gradienti seno inverso Name for the inverse sine function in gradians mode. Used by screen readers. Seno iperbolico Name for the hyperbolic sine function. Used by screen readers. seno iperbolico inverso Name for the inverse hyperbolic sine function. Used by screen readers. gradi coseno Name for the cosine function in degrees mode. Used by screen readers. radianti coseno Name for the cosine function in radians mode. Used by screen readers. gradienti coseno Name for the cosine function in gradians mode. Used by screen readers. gradi coseno inverso Name for the inverse cosine function in degrees mode. Used by screen readers. radianti coseno inverso Name for the inverse cosine function in radians mode. Used by screen readers. gradienti coseno inverso Name for the inverse cosine function in gradians mode. Used by screen readers. Coseno iperbolico Name for the hyperbolic cosine function. Used by screen readers. coseno iperbolico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. gradi tangente Name for the tangent function in degrees mode. Used by screen readers. radianti tangente Name for the tangent function in radians mode. Used by screen readers. gradienti tangente Name for the tangent function in gradians mode. Used by screen readers. gradi tangente inversa Name for the inverse tangent function in degrees mode. Used by screen readers. gradienti tangente inversa Name for the inverse tangent function in radians mode. Used by screen readers. gradienti tangente inversa Name for the inverse tangent function in gradians mode. Used by screen readers. Tangente iperbolica Name for the hyperbolic tangent function. Used by screen readers. tangente iperbolica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. gradi secante Name for the secant function in degrees mode. Used by screen readers. radianti secante Name for the secant function in radians mode. Used by screen readers. gradienti secante Name for the secant function in gradians mode. Used by screen readers. gradi secante inversa Name for the inverse secant function in degrees mode. Used by screen readers. radianti secante inversa Name for the inverse secant function in radians mode. Used by screen readers. gradienti secante inversa Name for the inverse secant function in gradians mode. Used by screen readers. secante iperbolica Name for the hyperbolic secant function. Used by screen readers. secante iperbolica inversa Name for the inverse hyperbolic secant function. Used by screen readers. gradi cosecante Name for the cosecant function in degrees mode. Used by screen readers. radianti cosecante Name for the cosecant function in radians mode. Used by screen readers. gradienti cosecante Name for the cosecant function in gradians mode. Used by screen readers. gradi cosecante inversa Name for the inverse cosecant function in degrees mode. Used by screen readers. radianti cosecante inversa Name for the inverse cosecant function in radians mode. Used by screen readers. gradienti cosecante inversa Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecante iperbolica Name for the hyperbolic cosecant function. Used by screen readers. cosecante iperbolica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. gradi cotangente Name for the cotangent function in degrees mode. Used by screen readers. Radianti cotangente Name for the cotangent function in radians mode. Used by screen readers. gradienti cotangente Name for the cotangent function in gradians mode. Used by screen readers. gradi cotangente inversa Name for the inverse cotangent function in degrees mode. Used by screen readers. radianti cotangente inversa Name for the inverse cotangent function in radians mode. Used by screen readers. gradienti cotangente inversa Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente iperbolica Name for the hyperbolic cotangent function. Used by screen readers. cotangente iperbolica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Radice cubica Name for the cube root function. Used by screen readers. Registro di base Name for the logbasey function. Used by screen readers. Valore assoluto Name for the absolute value function. Used by screen readers. spostamento a sinistra Name for the programmer function that shifts bits to the left. Used by screen readers. spostamento a destra Name for the programmer function that shifts bits to the right. Used by screen readers. fattoriale Name for the factorial function. Used by screen readers. grado minuto secondo Name for the degree minute second (dms) function. Used by screen readers. logaritmo naturale Name for the natural log (ln) function. Used by screen readers. quadrato Name for the square function. Used by screen readers. y radice Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contratto di Servizi Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Da From Date Header for AddSubtract Date Picker Scorri il risultato del calcolo verso sinistra Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Scorri il risultato del calcolo verso destra Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Calcolo non riuscito Text displayed when the application is not able to do a calculation Registro di base Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funzione Displayed on the button that contains a flyout for the general functions in scientific mode. Disuguaglianze Displayed on the button that contains a flyout for the inequality functions. Disuguaglianze Screen reader prompt for the Inequalities button Bit per bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Scorrimento bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Funzione inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Funzione iperbolica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante iperbolica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arcosecante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arcosecante iperbolica Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecante iperbolica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arcocosecante Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arcocosecante iperbolica Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente iperbolica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arcocotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arcocotangente iperbolica Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Arrotondamento per difetto Screen reader prompt for the Calculator button floor in the scientific flyout keypad Arrotondamento per eccesso Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Casuale Screen reader prompt for the Calculator button random in the scientific flyout keypad Valore assoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Numero di Eulero Screen reader prompt for the Calculator button e in the scientific flyout keypad Due elevato all'esponente Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Ruota RLC Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Ruota RRC Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Spostamento a sinistra Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Scorrimento a sinistra Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Spostamento a destra Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Scorrimento a destra Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Scorrimento aritmetico Label for a radio button that toggles arithmetic shift behavior for the shift operations. Scorrimento logico Label for a radio button that toggles logical shift behavior for the shift operations. Ruota CS Label for a radio button that toggles rotate circular behavior for the shift operations. Ruota CCS Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Radice cubica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funzioni Screen reader prompt for the square root button on the scientific operator keypad Bit per bit Screen reader prompt for the square root button on the scientific operator keypad BitShift Screen reader prompt for the square root button on the scientific operator keypad Pannelli operatore scientifico Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Pannelli operatore programmatore Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit più significativo Used to describe the last bit of a binary number. Used in bit flip Rappresentazione grafica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Tracciato Screen reader prompt for the plot button on the graphing calculator operator keypad Aggiorna automaticamente la visualizzazione (CTRL + 0) This is the tool tip automation name for the Calculator graph view button. Grafico Screen reader prompt for the graph view button. Imposta automaticamente il più adatto Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Regolazione manuale Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set La visualizzazione grafico è stata reimpostata Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom avanti (CTRL + segno più) This is the tool tip automation name for the Calculator zoom in button. Zoom avanti Screen reader prompt for the zoom in button. Zoom indietro (CTRL+segno meno) This is the tool tip automation name for the Calculator zoom out button. Zoom indietro Screen reader prompt for the zoom out button. Aggiungi equazione Placeholder text for the equation input button Impossibile condividere in questo momento. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Guarda il grafo creato con Calcolatrice Windows Sent as part of the shared content. The title for the share. Equazioni Header that appears over the equations section when sharing Variabili Header that appears over the variables section when sharing Immagine di un grafo con equazioni Alt text for the graph image when output via Share Variabili Header text for variables area Passaggio Label text for the step text box Minimo Label text for the min text box Massimo Label text for the max text box Colore Label for the Line Color section of the style picker Stile Label for the Line Style section of the style picker Analisi funzioni Title for KeyGraphFeatures Control La funzione non contiene asintoti orizzontali. Message displayed when the graph does not have any horizontal asymptotes La funzione non include punti di flesso. Message displayed when the graph does not have any inflection points La funzione non include punti massimi. Message displayed when the graph does not have any maxima La funzione non include punti minimi. Message displayed when the graph does not have any minima Costante String describing constant monotonicity of a function Decrescente String describing decreasing monotonicity of a function Impossibile determinare la monotonicità della funzione. Error displayed when monotonicity cannot be determined Crescente String describing increasing monotonicity of a function La monotonicità della funzione è sconosciuta. Error displayed when monotonicity is unknown La funzione non include alcun asintoto obliquo. Message displayed when the graph does not have any oblique asymptotes Impossibile determinare la parità della funzione. Error displayed when parity is cannot be determined La funzione è pari. Message displayed with the function parity is even La funzione non è né pari né dispari. Message displayed with the function parity is neither even nor odd La funzione è dispari. Message displayed with the function parity is odd Parità di funzione sconosciuta. Error displayed when parity is unknown La periodicità non è supportata per questa funzione. Error displayed when periodicity is not supported La funzione non è periodica. Message displayed with the function periodicity is not periodic La periodicità della funzione è sconosciuta. Message displayed with the function periodicity is unknown Queste funzionalità sono troppo complesse per il calcolo tramite Calcolatrice: Error displayed when analysis features cannot be calculated La funzione non contiene asintoti verticali. Message displayed when the graph does not have any vertical asymptotes La funzione non contiene intersezioni con l'asse x. Message displayed when the graph does not have any x-intercepts La funzione non contiene intersezioni con l'asse y. Message displayed when the graph does not have any y-intercepts Dominio Title for KeyGraphFeatures Domain Property Asintoti orizzontali Title for KeyGraphFeatures Horizontal aysmptotes Property Punti di flesso Title for KeyGraphFeatures Inflection points Property L'analisi non è supportata per questa funzione. Error displayed when graph analysis is not supported or had an error. L'analisi è supportata solo per le funzioni nel formato f (x). Esempio: y = x Error displayed when graph analysis detects the function format is not f(x). Massimi Title for KeyGraphFeatures Maxima Property Minimi Title for KeyGraphFeatures Minima Property Monotonicità Title for KeyGraphFeatures Monotonicity Property Asintoti obliqui Title for KeyGraphFeatures Oblique asymptotes Property Parità Title for KeyGraphFeatures Parity Property Ciclo Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervallo Title for KeyGraphFeatures Range Property Asintoti verticali Title for KeyGraphFeatures Vertical asymptotes Property Intersezione X Title for KeyGraphFeatures XIntercept Property Intersezione Y Title for KeyGraphFeatures YIntercept Property Impossibile eseguire l'analisi per la funzione. Impossibile calcolare il dominio per questa funzione. Error displayed when Domain is not returned from the analyzer. Impossibile calcolare l'intervallo per questa funzione. Error displayed when Range is not returned from the analyzer. Overflow (il numero è troppo grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Per tracciare il grafico di questa equazione, è necessaria la modalità Radianti. Error that occurs during graphing when radians is required. Questa funzione è troppo complessa per tracciarne il grafico Error that occurs during graphing when the equation is too complex. La modalità gradi è necessaria per il grafico della funzione Error that occurs during graphing when degrees is required La funzione fattoriale contiene un argomento non valido Error that occurs during graphing when a factorial function has an invalid argument. L'argomento della funzione fattoriale è troppo grande per il grafico Error that occurs during graphing when a factorial has a large n È possibile usare il modulo solo con numeri interi Error that occurs during graphing when modulo is used with a float. Non è disponibile alcuna soluzione per l'equazione Error that occurs during graphing when the equation has no solution. Non è possibile dividere per zero Error that occurs during graphing when a divison by zero occurs. L'equazione contiene condizioni logiche che si escludono a vicenda Error that occurs during graphing when mutually exclusive conditions are used. L'equazione è esterna al dominio Error that occurs during graphing when the equation is out of domain. La rappresentazione grafica di questa equazione non è supportata Error that occurs during graphing when the equation is not supported. Nell'equazione manca una parentesi di apertura Error that occurs during graphing when the equation is missing a ( Nell'equazione manca una parentesi di chiusura Error that occurs during graphing when the equation is missing a ) Sono presenti troppe virgole decimali in un numero Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Mancano cifre con la virgola decimale Error that occurs during graphing with a decimal point without digits Fine imprevista dell'espressione Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Sono presenti caratteri imprevisti nell'espressione Error that occurs during graphing when there is an unexpected token. Sono presenti caratteri non validi nell'espressione Error that occurs during graphing when there is an invalid token. Sono presenti troppi segni di uguale Error that occurs during graphing when there are too many equals. La funzione deve contenere almeno una variabile x o y. Error that occurs during graphing when the equation is missing x or y. Espressione non valida Error that occurs during graphing when an invalid syntax is used. L'espressione è vuota Error that occurs during graphing when the expression is empty È stato usato un segno di uguale senza un'equazione Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parentesi mancante dopo il nome della funzione Error that occurs during graphing when parenthesis are missing after a function. Il numero di parametri dell'operazione matematiche non è corretto Error that occurs during graphing when a function has the wrong number of parameters Un nome di variabile non è valido Error that occurs during graphing when a variable name is invalid. Nell'equazione manca una parentesi quadra di apertura Error that occurs during graphing when a { is missing Nell'equazione manca una parentesi quadra chiusa Error that occurs during graphing when a } is missing. Non è possibile usare "i" e "I" come nomi di variabile Error that occurs during graphing when i or I is used. Non è possibile tracciare il grafico dell'equazione General error that occurs during graphing. Non è stato possibile risolvere la cifra per la base specificata Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). La base deve essere maggiore di 2 e minore di 36 Error that occurs during graphing when the base is out of range. Uno dei parametri di un'operazione matematica deve essere una variabile Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Nell'equazione vengono combinati operandi logici e scalari Error that occurs during graphing when operands are mixed. Such as true and 1. Impossibile utilizzare x o y nei limiti superiori o inferiori Error that occurs during graphing when x or y is used in integral upper limits. Impossibile utilizzare x o y nel punto di limite Error that occurs during graphing when x or y is used in the limit point. Non è possibile usare l'infinito complesso Error that occurs during graphing when complex infinity is used Non è possibile usare numeri complessi nelle disuguaglianze Error that occurs during graphing when complex numbers are used in inequalities. Torna all'elenco di funzioni This is the tooltip for the back button in the equation analysis page in the graphing calculator Torna all'elenco di funzioni This is the automation name for the back button in the equation analysis page in the graphing calculator Analizza funzione This is the tooltip for the analyze function button Analizza funzione This is the automation name for the analyze function button Analizza funzione This is the text for the for the analyze function context menu command Rimuovi equazione This is the tooltip for the graphing calculator remove equation buttons Rimuovi equazione This is the automation name for the graphing calculator remove equation buttons Rimuovi equazione This is the text for the for the remove equation context menu command Condividi This is the automation name for the graphing calculator share button. Condividi This is the tooltip for the graphing calculator share button. Cambia stile equazione This is the tooltip for the graphing calculator equation style button Cambia stile equazione This is the automation name for the graphing calculator equation style button Cambia stile equazione This is the text for the for the equation style context menu command Mostra equazione This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Nascondi equazione This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostra equazione %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Nascondi equazione %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Arresta traccia This is the tooltip/automation name for the graphing calculator stop tracing button Avvia traccia This is the tooltip/automation name for the graphing calculator start tracing button Finestra di visualizzazione del grafico, vincolato asse x %1 e %2, l'asse y vincolato %3 e %4, visualizzando le equazioni %5 {Locked="%1","%2", "%3", "%4", "%5"}. Configura dispositivo di scorrimento This is the tooltip text for the slider options button in Graphing Calculator Configura dispositivo di scorrimento This is the automation name text for the slider options button in Graphing Calculator Passa alla modalità equazione Used in Graphing Calculator to switch the view to the equation mode Passa alla modalità grafo Used in Graphing Calculator to switch the view to the graph mode Passa alla modalità equazione Used in Graphing Calculator to switch the view to the equation mode La modalità corrente è la modalità equazione Announcement used in Graphing Calculator when switching to the equation mode La modalità corrente è la modalità grafo Announcement used in Graphing Calculator when switching to the graph mode Finestra Heading for window extents on the settings Gradi Degrees mode on settings page Gradienti Gradian mode on settings page Radianti Radians mode on settings page Unità Heading for Unit's on the settings Reimposta visualizzazione Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Opzioni grafico This is the tooltip text for the graph options button in Graphing Calculator Opzioni grafico This is the automation name text for the graph options button in Graphing Calculator Opzioni grafico Heading for the Graph options flyout in Graphing mode. Opzioni variabili Screen reader prompt for the variable settings toggle button Attiva/disattiva opzioni variabili Tool tip for the variable settings toggle button Spessore linea Heading for the Graph options flyout in Graphing mode. Opzioni linea Heading for the equation style flyout in Graphing mode. Spessore linea piccola Automation name for line width setting Spessore linea media Automation name for line width setting Spessore linea grande Automation name for line width setting Spessore linea molto grande Automation name for line width setting Immetti un'espressione this is the placeholder text used by the textbox to enter an equation Copia Copy menu item for the graph context menu Taglia Cut menu item from the Equation TextBox Copia Copy menu item from the Equation TextBox Incolla Paste menu item from the Equation TextBox Annulla Undo menu item from the Equation TextBox Seleziona tutto Select all menu item from the Equation TextBox Input delle funzioni The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Input delle funzioni The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Pannello input della funzione The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Pannello variabile The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Elenco variabili The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Voce di elenco variabile %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Casella di testo con il valore della variabile The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Dispositivo di scorrimento del valore della variabile The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Casella di testo con il valore minimo della variabile The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Casella di testo del valore di incremento della variabile The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Casella di testo con il valore massimo della variabile The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Stile linea continua Name of the solid line style for a graphed equation Stile linee punto Name of the dotted line style for a graphed equation Stile linea trattino Name of the dashed line style for a graphed equation Blu scuro Name of color in the color picker Verde acqua Name of color in the color picker Viola Name of color in the color picker Verde Name of color in the color picker Menta verde Name of color in the color picker Verde scuro Name of color in the color picker Carbone Name of color in the color picker Rosso Name of color in the color picker Prugna chiaro Name of color in the color picker Magenta Name of color in the color picker Giallo oro Name of color in the color picker Arancione brillante Name of color in the color picker Marrone Name of color in the color picker Nero Name of color in the color picker Bianco Name of color in the color picker Colore 1 Name of color in the color picker Colore 2 Name of color in the color picker Colore 3 Name of color in the color picker Colore 4 Name of color in the color picker Tema grafico Graph settings heading for the theme options Sempre chiaro Graph settings option to set graph to light theme Rispecchia tema del sistema Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Sempre chiaro This is the automation name text for the Graph settings option to set graph to light theme Rispecchia tema del sistema This is the automation name text for the Graph settings option to set graph to match the app theme Funzione rimossa Announcement used in Graphing Calculator when a function is removed from the function list Casella equazione di analisi della funzione This is the automation name text for the equation box in the function analysis panel Uguale Screen reader prompt for the equal button on the graphing calculator operator keypad Minore di Screen reader prompt for the Less than button Minore o uguale a Screen reader prompt for the Less than or equal button Uguale a Screen reader prompt for the Equal button Maggiore o uguale a Screen reader prompt for the Greater than or equal button Maggiore di Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Invia Screen reader prompt for the submit button on the graphing calculator operator keypad Analisi funzioni Screen reader prompt for the function analysis grid Opzioni grafico Screen reader prompt for the graph options panel Cronologia ed elenchi di memoria Automation name for the group of controls for history and memory lists. Elenco di memoria Automation name for the group of controls for memory list. Cronologia %1 cancellata {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calcolatrice sempre in primo piano Announcement to indicate calculator window is always shown on top. Calcolatrice alla visualizzazione completa Announcement to indicate calculator window is now back to full view. Turno aritmetico selezionato Label for a radio button that toggles arithmetic shift behavior for the shift operations. Turno logico selezionato Label for a radio button that toggles logical shift behavior for the shift operations. Ruota CS selezionato Label for a radio button that toggles rotate circular behavior for the shift operations. Ruota CCS selezionato Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Impostazioni Header text of Settings page Aspetto Subtitle of appearance setting on Settings page Tema dell'app Title of App theme expander Seleziona il tema dell'app da mostrare Description of App theme expander Chiaro Lable for light theme option Scuro Lable for dark theme option Usa impostazione di sistema Lable for the app theme option to use system setting Indietro Screen reader prompt for the Back button in title bar to back to main page Pagina Impostazioni Announcement used when Settings page is opened Apri il menu di scelta rapida per le azioni disponibili Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Non è possibile ripristinare questo snapshot. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ja-JP/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 無効な入力です Error message shown when the input makes a function fail, like log(-1) 結果が定義されていません Error message shown when there's no possible value for a function. メモリが不足しています Error message shown when we run out of memory during a calculation. オーバーフロー Error message shown when there's an overflow during the calculation. 結果が定義されていません Same as 101 結果が定義されていません Same 101 オーバーフロー Same as 107 オーバーフロー Same 107 0 で割ることはできません Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ja-JP/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 電卓 {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. 電卓 [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows 電卓 {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows 電卓 [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. 電卓 {@Appx_Description@} This description is used for the official application when published through Windows Store. 電卓 [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. コピー Copy context menu string 貼り付け Paste context menu string 次にほぼ等しい The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1、値 %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 ビット {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 第 63 Sub-string used in automation name for 63 bit in bit flip 第 62 Sub-string used in automation name for 62 bit in bit flip 第 61 Sub-string used in automation name for 61 bit in bit flip 第 60 Sub-string used in automation name for 60 bit in bit flip 第 59 Sub-string used in automation name for 59 bit in bit flip 第 58 Sub-string used in automation name for 58 bit in bit flip 第 57 Sub-string used in automation name for 57 bit in bit flip 第 56 Sub-string used in automation name for 56 bit in bit flip 第 55 Sub-string used in automation name for 55 bit in bit flip 第 54 Sub-string used in automation name for 54 bit in bit flip 第 53 Sub-string used in automation name for 53 bit in bit flip 第 52 Sub-string used in automation name for 52 bit in bit flip 第 51 Sub-string used in automation name for 51 bit in bit flip 第 50 Sub-string used in automation name for 50 bit in bit flip 第 49 Sub-string used in automation name for 49 bit in bit flip 第 48 Sub-string used in automation name for 48 bit in bit flip 第 47 Sub-string used in automation name for 47 bit in bit flip 第 46 Sub-string used in automation name for 46 bit in bit flip 第 45 Sub-string used in automation name for 45 bit in bit flip 第 44 Sub-string used in automation name for 44 bit in bit flip 第 43 Sub-string used in automation name for 43 bit in bit flip 第 42 Sub-string used in automation name for 42 bit in bit flip 第 41 Sub-string used in automation name for 41 bit in bit flip 第 40 Sub-string used in automation name for 40 bit in bit flip 第 39 Sub-string used in automation name for 39 bit in bit flip 第 38 Sub-string used in automation name for 38 bit in bit flip 第 37 Sub-string used in automation name for 37 bit in bit flip 第 36 Sub-string used in automation name for 36 bit in bit flip 第 35 Sub-string used in automation name for 35 bit in bit flip 第 34 Sub-string used in automation name for 34 bit in bit flip 第 33 Sub-string used in automation name for 33 bit in bit flip 第 32 Sub-string used in automation name for 32 bit in bit flip 第 31 Sub-string used in automation name for 31 bit in bit flip 第 30 Sub-string used in automation name for 30 bit in bit flip 第 29 Sub-string used in automation name for 29 bit in bit flip 第 28 Sub-string used in automation name for 28 bit in bit flip 第 27 Sub-string used in automation name for 27 bit in bit flip 第 26 Sub-string used in automation name for 26 bit in bit flip 第 25 Sub-string used in automation name for 25 bit in bit flip 第 24 Sub-string used in automation name for 24 bit in bit flip 第 23 Sub-string used in automation name for 23 bit in bit flip 第 22 Sub-string used in automation name for 22 bit in bit flip 第 21 Sub-string used in automation name for 21 bit in bit flip 第 20 Sub-string used in automation name for 20 bit in bit flip 第 19 Sub-string used in automation name for 19 bit in bit flip 第 18 Sub-string used in automation name for 18 bit in bit flip 第 17 Sub-string used in automation name for 17 bit in bit flip 第 16 Sub-string used in automation name for 16 bit in bit flip 第 15 Sub-string used in automation name for 15 bit in bit flip 第 14 Sub-string used in automation name for 14 bit in bit flip 第 13 Sub-string used in automation name for 13 bit in bit flip 第 12 Sub-string used in automation name for 12 bit in bit flip 第 11 Sub-string used in automation name for 11 bit in bit flip 第 10 Sub-string used in automation name for 10 bit in bit flip 第 9 Sub-string used in automation name for 9 bit in bit flip 第 8 Sub-string used in automation name for 8 bit in bit flip 第 7 Sub-string used in automation name for 7 bit in bit flip 第 6 Sub-string used in automation name for 6 bit in bit flip 第 5 Sub-string used in automation name for 5 bit in bit flip 第 4 Sub-string used in automation name for 4 bit in bit flip 第 3 Sub-string used in automation name for 3 bit in bit flip 第 2 Sub-string used in automation name for 2 bit in bit flip 第 1 Sub-string used in automation name for 1 bit in bit flip 最下位ビット Used to describe the first bit of a binary number. Used in bit flip メモリのポップアップを開く This is the automation name and label for the memory button when the memory flyout is closed. メモリのポップアップを閉じる This is the automation name and label for the memory button when the memory flyout is open. 常に手前に表示 This is the tool tip automation name for the always-on-top button when out of always-on-top mode. 全画面表示に戻る This is the tool tip automation name for the always-on-top button when in always-on-top mode. メモリ This is the tool tip automation name for the memory button. 履歴 (Ctrl+H) This is the tool tip automation name for the history button. ビット反転キーパッド This is the tool tip automation name for the bitFlip button. フル キーパッド This is the tool tip automation name for the numberPad button. すべてのメモリをクリア (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. メモリ The text that shows as the header for the memory list メモリ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. 履歴 The text that shows as the header for the history list 履歴 The automation name for the History pivot item that is shown when Calculator is in wide layout. コンバーター Label for a control that activates the unit converter mode. 関数電卓 Label for a control that activates scientific mode calculator layout 標準 Label for a control that activates standard mode calculator layout. コンバーター モード Screen reader prompt for a control that activates the unit converter mode. 関数電卓モード Screen reader prompt for a control that activates scientific mode calculator layout 標準モード Screen reader prompt for a control that activates standard mode calculator layout. すべての履歴をクリア "ClearHistory" used on the calculator history pane that stores the calculation history. すべての履歴をクリア This is the tool tip automation name for the Clear History button. 非表示 "HideHistory" used on the calculator history pane that stores the calculation history. 標準 The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. 関数電卓 The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. プログラマー The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. コンバーター The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". 電卓 The text that shows in the dropdown navigation control for the calculator group. コンバーター The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". 電卓 The text that shows in the dropdown navigation control for the calculator group in upper case. コンバーター Pluralized version of the converter group text, used for the screen reader prompt. 電卓 Pluralized version of the calculator group text, used for the screen reader prompt. 表示は %1 です {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". 式は %1 で、現在の入力値は %2 です {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". 表示は %1 ポイントです {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. 式は %1 です {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". クリップボードにコピーされた値を表示します Screen reader prompt for the Calculator display copy button, when the button is invoked. 履歴 Screen reader prompt for the history flyout メモリ Screen reader prompt for the memory flyout 16 進数 %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". 10 進数 %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". 8 進数 %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". 2 進数 %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". すべての履歴をクリア Screen reader prompt for the Calculator History Clear button 履歴がクリアされました Screen reader prompt for the Calculator History Clear button, when the button is invoked. 履歴の非表示 Screen reader prompt for the Calculator History Hide button 履歴のポップアップを開く Screen reader prompt for the Calculator History button, when the flyout is closed. 履歴のポップアップを閉じる Screen reader prompt for the Calculator History button, when the flyout is open. メモリ保存 Screen reader prompt for the Calculator Memory button メモリ保存 (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. すべてのメモリをクリア Screen reader prompt for the Calculator Clear Memory button メモリがクリアされました Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. メモリ呼び出し Screen reader prompt for the Calculator Memory Recall button メモリ呼び出し (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. メモリ加算 Screen reader prompt for the Calculator Memory Add button メモリ加算 (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. メモリ減算 Screen reader prompt for the Calculator Memory Subtract button メモリ減算 (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. メモリ項目のクリア Screen reader prompt for the Calculator Clear Memory button メモリ項目のクリア This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. メモリ項目に加算 Screen reader prompt for the Calculator Memory Add button in the Memory list メモリ項目に加算 This is the tool tip automation name for the Calculator Memory Add button in the Memory list メモリ項目から減算 Screen reader prompt for the Calculator Memory Subtract button in the Memory list メモリ項目から減算 This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list メモリ項目のクリア Screen reader prompt for the Calculator Clear Memory button メモリ項目のクリア Text string for the Calculator Clear Memory option in the Memory list context menu メモリ項目に加算 Screen reader prompt for the Calculator Memory Add swipe button in the Memory list メモリ項目に加算 Text string for the Calculator Memory Add option in the Memory list context menu メモリ項目から減算 Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list メモリ項目から減算 Text string for the Calculator Memory Subtract option in the Memory list context menu 削除 Text string for the Calculator Delete swipe button in the History list コピー Text string for the Calculator Copy option in the History list context menu 削除 Text string for the Calculator Delete option in the History list context menu 履歴の項目の削除 Screen reader prompt for the Calculator Delete swipe button in the History list 履歴の項目の削除 Screen reader prompt for the Calculator Delete option in the History list context menu バックスペース Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button 2 Screen reader prompt for the Calculator number "2" button 3 Screen reader prompt for the Calculator number "3" button 4 Screen reader prompt for the Calculator number "4" button 5 Screen reader prompt for the Calculator number "5" button 6 Screen reader prompt for the Calculator number "6" button 7 Screen reader prompt for the Calculator number "7" button 8 Screen reader prompt for the Calculator number "8" button 9 Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button 論理積 Screen reader prompt for the Calculator And button 論理和 Screen reader prompt for the Calculator Or button 否定 Screen reader prompt for the Calculator Not button 左回転 Screen reader prompt for the Calculator ROL button 右回転 Screen reader prompt for the Calculator ROR button 左シフト Screen reader prompt for the Calculator LSH button 右シフト Screen reader prompt for the Calculator RSH button 排他的論理和 Screen reader prompt for the Calculator XOR button 4 倍長語切り替え Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". ダブルワード切り替え Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". ワード切り替え Screen reader prompt for the Calculator word button. Should read as "Word toggle button". バイト切り替え Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". ビット反転キーパッド Screen reader prompt for the Calculator bitFlip button フル キーパッド Screen reader prompt for the Calculator numberPad button 小数点 Screen reader prompt for the "." button 入力のクリア Screen reader prompt for the "CE" button クリア Screen reader prompt for the "C" button 除算 Screen reader prompt for the divide button on the number pad 乗算 Screen reader prompt for the multiply button on the number pad 等号 Screen reader prompt for the equals button on the scientific operator keypad 逆関数 Screen reader prompt for the shift button on the number pad in scientific mode. マイナス Screen reader prompt for the minus button on the number pad マイナス We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 プラス Screen reader prompt for the plus button on the number pad 平方根算出 Screen reader prompt for the square root button on the scientific operator keypad % Screen reader prompt for the percent button on the scientific operator keypad 正負 Screen reader prompt for the negate button on the scientific operator keypad 正負 Screen reader prompt for the negate button on the converter operator keypad 逆数 Screen reader prompt for the invert button on the scientific operator keypad 始め丸かっこ Screen reader prompt for the Calculator "(" button on the scientific operator keypad 左かっこ、開きかっこの数 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 終わり丸かっこ Screen reader prompt for the Calculator ")" button on the scientific operator keypad 開きかっこの数 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 閉じかっこを指定できる開きかっこはありません。 {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". 指数表記 Screen reader prompt for the Calculator F-E the scientific operator keypad 双曲線関数 Screen reader prompt for the Calculator button HYP in the scientific operator keypad パイ Screen reader prompt for the Calculator pi button on the scientific operator keypad サイン Screen reader prompt for the Calculator sin button on the scientific operator keypad コサイン Screen reader prompt for the Calculator cos button on the scientific operator keypad 正接 Screen reader prompt for the Calculator tan button on the scientific operator keypad 双曲正弦 Screen reader prompt for the Calculator sinh button on the scientific operator keypad 双曲余弦 Screen reader prompt for the Calculator cosh button on the scientific operator keypad 双曲正接 Screen reader prompt for the Calculator tanh button on the scientific operator keypad 2 乗 Screen reader prompt for the x squared on the scientific operator keypad. 3 乗 Screen reader prompt for the x cubed on the scientific operator keypad. アーク サイン Screen reader prompt for the inverted sin on the scientific operator keypad. アーク コサイン Screen reader prompt for the inverted cos on the scientific operator keypad. アーク タンジェント Screen reader prompt for the inverted tan on the scientific operator keypad. 双曲アーク サイン Screen reader prompt for the inverted sinh on the scientific operator keypad. 双曲アーク コサイン Screen reader prompt for the inverted cosh on the scientific operator keypad. 双曲アーク タンジェント Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" を指数に Screen reader prompt for x power y button on the scientific operator keypad. 10 を指数に Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" を指数に Screen reader for the e power x on the scientific operator keypad. "x" の "y" ルート Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. ログ Screen reader for the log base 10 on the scientific operator keypad 自然対数 Screen reader for the log base e on the scientific operator keypad 剰余 Screen reader for the mod button on the scientific operator keypad 指数近似曲線 Screen reader for the exp button on the scientific operator keypad 度分秒 Screen reader for the exp button on the scientific operator keypad Screen reader for the exp button on the scientific operator keypad 整数部 Screen reader for the int button on the scientific operator keypad 小数部 Screen reader for the frac button on the scientific operator keypad 階乗 Screen reader for the factorial button on the basic operator keypad 角度切り替え This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". グラジアン切り替え This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". ラジアン切り替え This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". モードをドロップダウン Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. カテゴリ化のドロップダウン Screen reader prompt for the Categories dropdown field. 常に手前に表示 Screen reader prompt for the Always-on-Top button when in normal mode. 全画面表示に戻る Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. 常に手前に表示 (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. 全画面表示に戻る (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 から変換 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 点 %2 から変換 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 に変換 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 は %3 %4 です Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. 入力単位 Screen reader prompt for the Unit Converter Units1 i.e. top units field. 出力単位 Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. 面積 Unit conversion category name called Area (eg. area of a sports field in square meters) データ Unit conversion category name called Data エネルギー Unit conversion category name called Energy. (eg. the energy in a battery or in food) 長さ Unit conversion category name called Length 電力/動力 Unit conversion category name called Power (eg. the power of an engine or a light bulb) 速度 Unit conversion category name called Speed 時間 Unit conversion category name called Time ボリューム Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) 温度 Unit conversion category name called Temperature 重量と質量 Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. 圧力 Unit conversion category name called Pressure 角度 Unit conversion category name called Angle 通貨 Unit conversion category name called Currency 液量オンス (英国) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (英国) An abbreviation for a measurement unit of volume 液量オンス (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (米国) An abbreviation for a measurement unit of volume ガロン (英国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ガル (英国) An abbreviation for a measurement unit of volume ガロン (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ガル (米国) An abbreviation for a measurement unit of volume リットル A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume ミリリットル A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume パイント (英国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (英国) An abbreviation for a measurement unit of volume パイント (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (米国) An abbreviation for a measurement unit of volume 大さじ (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (米国) An abbreviation for a measurement unit of volume 小さじ (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (米国) An abbreviation for a measurement unit of volume 大さじ (英国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (英国) An abbreviation for a measurement unit of volume 小さじ (英国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (英国) An abbreviation for a measurement unit of volume クォート (英国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (英国) An abbreviation for a measurement unit of volume クォート (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (米国) An abbreviation for a measurement unit of volume カップ (米国) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) カップ (米国) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/分 An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data カロリー An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/秒 An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (米国) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data キロカロリー An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ミリ秒 An abbreviation for a measurement unit of time An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data パイ An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data エーカー A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英熱単位 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/分 A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 熱量カロリー A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) センチメートル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) センチメートル/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方センチメートル A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方フィート A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方インチ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方メートル A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方ヤード A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 摂氏 An option in the unit converter to select degrees Celsius 華氏 An option in the unit converter to select degrees Fahrenheit 電子ボルト A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フィート A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フィート/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フートポンド A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フィートポンド/分 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ギガビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ギガバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヘクタール A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 馬力 (米国) A measurement unit for power 時間 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) インチ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ジュール A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロワット時間 A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ケルビン An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". キロビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 食品カロリー A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロジュール A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロメートル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロメートル毎時 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キロワット A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ノット A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) マッハ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) メガビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メガバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メートル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メートル/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ミクロン A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) マイクロ秒 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) マイル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) マイル毎時 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ミリメートル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ミリ秒 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ひとかじり A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ナノメートル A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) オングストローム A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 海里 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペタビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペタバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方センチメートル A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方フィート A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方インチ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方キロメートル A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方メートル A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方マイル A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方ミリメートル A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方ヤード A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) テラビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) テラバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ワット A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヤード A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight トン (英国) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight トン (米国) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight カラット A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for Angle. ラジアン A measurement unit for Angle. グラジアン A measurement unit for Angle. 気圧 A measurement unit for Pressure. バール A measurement unit for Pressure. キロパスカル A measurement unit for Pressure. 水銀柱ミリメートル A measurement unit for Pressure. パスカル A measurement unit for Pressure. ポンド/平方インチ A measurement unit for Pressure. センチグラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) デカグラム A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) デシグラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) グラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヘクトグラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キログラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ロング トン (英国) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ミリグラム A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) オンス A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ポンド A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ショート トン (米国) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ストーン A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メトリック トン A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) サッカー場 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) サッカー場 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フロッピー ディスク A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) フロッピー ディスク A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バッテリー AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バッテリー AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペーパークリップ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペーパークリップ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ジャンボ ジェット機分 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ジャンボ ジェット機分 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 電球 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 電球 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バスタブ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バスタブ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 雪の結晶 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 雪の結晶 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ジェット機 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ジェット機 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) コーヒー カップ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) コーヒー カップ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) スイミング プール An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) スイミング プール An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) レター サイズ用紙 A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) レター サイズ用紙 A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バナナ A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) バナナ A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ケーキ一切れ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ケーキ一切れ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 機関車 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 機関車 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) サッカー ボール A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) サッカー ボール A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メモリ項目 Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) 戻る Screen reader prompt for the About panel back button 戻る Content of tooltip being displayed on AboutControlBackButton Microsoft ソフトウェアライセンス条項 Displayed on a link to the Microsoft Software License Terms on the About panel プレビュー Label displayed next to upcoming features Microsoft プライバシー ステートメント Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. All rights reserved. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows 電卓への投稿方法については、%HL%GitHub%HL% でプロジェクトをご覧ください。 {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel バージョン情報 Subtitle of about message on Settings page フィードバックの送信 The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app まだ履歴がありません。 The text that shows as the header for the history list メモリに何も保存されていません。 The text that shows as the header for the memory list メモリ Screen reader prompt for the negate button on the converter operator keypad この式は貼り付けられません The paste operation cannot be performed, if the expression is invalid. ギビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ギビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) キビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) メビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ペビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) テビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) テビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) エクサビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) エクサバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) エクシビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) エクシビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ゼタビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ゼタバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ゼビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ゼビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヨタビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヨタバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヨビビット A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ヨビバイト A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 日付の計算 計算モード Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". 加算 Add toggle button text 指定した日付の加算または減算 Add or Subtract days option 日付 Date result label 2 つの日付の差を計算 Date difference option Add/Subtract Days label Difference result label 開始 From Date Header for Difference Date Picker Add/Subtract Months label 減算 Subtract toggle button text 終了 To Date Header for Difference Date Picker Add/Subtract Years label 日付が範囲外です Out of bound message shown as result when the date calculation exceeds the bounds 日付が同じです 差 %1 Automation name for reading out the date difference. %1 = Date difference 結果の日付 %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 電卓モード {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 コンバーター モード {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. 日付計算モード Automation name for when the mode header is focused and the current mode is Date calculation. 履歴とメモリの一覧 Automation name for the group of controls for history and memory lists. メモリ コントロール Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) 標準関数 Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) ディスプレイ コントロール Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) 標準演算子 Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) 数字パッド Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) 角度演算子 Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) 科学関数 Automation name for the group of Scientific functions. 基数の選択 Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix プログラマー演算子 Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). 入力モードの選択 Automation name for the group of input mode toggling buttons. ビット反転キーパッド Automation name for the group of bit toggling buttons. 式を左へスクロール Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. 式を右へスクロール Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. 最大の数値に達しました。%1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 をメモリに保存しました {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". メモリ スロット %1 が %2 になります {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". メモリ スロット %1 がクリアされました {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". 割る Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. 引く Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. 足す Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. 累乗 Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y ルート Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. 剰余 Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. 左シフト Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. 右シフト Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. 論理和 Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. 排他的論理和 Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. 論理積 Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. %1 %2 が更新されました The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" 為替レートの更新 The text displayed for a hyperlink button that refreshes currency converter ratios. データ通信の料金が発生する場合があります。 The text displayed when users are on a metered connection and using currency converter. 新しいレートを取得できませんでした。後でもう一度お試しください。 The text displayed when currency ratio data fails to load. オフラインです。%HL%ネットワーク設定%HL%を確認してください Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} 通貨レートを更新しています This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. 通貨レートが更新されました This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. レートを更新できませんでした This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} すべてのメモリをクリア (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. すべてのメモリをクリア Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} 正弦ディグリー Name for the sine function in degrees mode. Used by screen readers. 正弦ラジアン Name for the sine function in radians mode. Used by screen readers. 正弦グラジアン Name for the sine function in gradians mode. Used by screen readers. 逆正弦ディグリー Name for the inverse sine function in degrees mode. Used by screen readers. 逆正弦ラジアン Name for the inverse sine function in radians mode. Used by screen readers. 逆正弦グラジアン Name for the inverse sine function in gradians mode. Used by screen readers. 双曲正弦 Name for the hyperbolic sine function. Used by screen readers. 逆双曲正弦 Name for the inverse hyperbolic sine function. Used by screen readers. 余弦ディグリー Name for the cosine function in degrees mode. Used by screen readers. 余弦ラジアン Name for the cosine function in radians mode. Used by screen readers. 余弦グラジアン Name for the cosine function in gradians mode. Used by screen readers. 逆余弦ディグリー Name for the inverse cosine function in degrees mode. Used by screen readers. 逆余弦ラジアン Name for the inverse cosine function in radians mode. Used by screen readers. 逆余弦グラジアン Name for the inverse cosine function in gradians mode. Used by screen readers. 双曲余弦 Name for the hyperbolic cosine function. Used by screen readers. 逆双曲余弦 Name for the inverse hyperbolic cosine function. Used by screen readers. 正接ディグリー Name for the tangent function in degrees mode. Used by screen readers. 正接ラジアン Name for the tangent function in radians mode. Used by screen readers. 正接グラジアン Name for the tangent function in gradians mode. Used by screen readers. 逆正接ディグリー Name for the inverse tangent function in degrees mode. Used by screen readers. 逆正接ラジアン Name for the inverse tangent function in radians mode. Used by screen readers. 逆正接グラジアン Name for the inverse tangent function in gradians mode. Used by screen readers. 双曲正接 Name for the hyperbolic tangent function. Used by screen readers. 逆双曲正接 Name for the inverse hyperbolic tangent function. Used by screen readers. 正割ディグリー Name for the secant function in degrees mode. Used by screen readers. 正割ラジアン Name for the secant function in radians mode. Used by screen readers. 正割グラジアン Name for the secant function in gradians mode. Used by screen readers. 逆正割ディグリー Name for the inverse secant function in degrees mode. Used by screen readers. 逆正割ラジアン Name for the inverse secant function in radians mode. Used by screen readers. 逆正割グラジアン Name for the inverse secant function in gradians mode. Used by screen readers. 双曲線正割 Name for the hyperbolic secant function. Used by screen readers. 逆双曲線正割 Name for the inverse hyperbolic secant function. Used by screen readers. 余割ディグリー Name for the cosecant function in degrees mode. Used by screen readers. 余割ラジアン Name for the cosecant function in radians mode. Used by screen readers. 余割グラジアン Name for the cosecant function in gradians mode. Used by screen readers. 逆余割ディグリー Name for the inverse cosecant function in degrees mode. Used by screen readers. 逆余割ラジアン Name for the inverse cosecant function in radians mode. Used by screen readers. 逆余割グラジアン Name for the inverse cosecant function in gradians mode. Used by screen readers. 双曲線余割 Name for the hyperbolic cosecant function. Used by screen readers. 逆双曲線余割 Name for the inverse hyperbolic cosecant function. Used by screen readers. 余接ディグリー Name for the cotangent function in degrees mode. Used by screen readers. 余接ラジアン Name for the cotangent function in radians mode. Used by screen readers. 余接グラジアン Name for the cotangent function in gradians mode. Used by screen readers. 逆余接ディグリー Name for the inverse cotangent function in degrees mode. Used by screen readers. 逆余接ラジアン Name for the inverse cotangent function in radians mode. Used by screen readers. 逆余接グラジアン Name for the inverse cotangent function in gradians mode. Used by screen readers. 双曲線余接 Name for the hyperbolic cotangent function. Used by screen readers. 逆双曲線余接 Name for the inverse hyperbolic cotangent function. Used by screen readers. 立方根 Name for the cube root function. Used by screen readers. ログ ベース Name for the logbasey function. Used by screen readers. 絶対値 Name for the absolute value function. Used by screen readers. 左シフト Name for the programmer function that shifts bits to the left. Used by screen readers. 右シフト Name for the programmer function that shifts bits to the right. Used by screen readers. 階乗 Name for the factorial function. Used by screen readers. 度 分 秒 Name for the degree minute second (dms) function. Used by screen readers. 自然対数 Name for the natural log (ln) function. Used by screen readers. 2 乗 Name for the square function. Used by screen readers. y ルート Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 カテゴリ {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft サービス規約 Displayed on a link to the Microsoft Services Agreement in the about this app information An abbreviation for a measurement unit of area. A measurement unit for area. 開始 From Date Header for AddSubtract Date Picker 計算結果を左へスクロール Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. 計算結果を右へスクロール Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. 計算できませんでした Text displayed when the application is not able to do a calculation ログ ベース Y Screen reader prompt for the logBaseY button 三角関数 Displayed on the button that contains a flyout for the trig functions in scientific mode. 関数 Displayed on the button that contains a flyout for the general functions in scientific mode. 不等式 Displayed on the button that contains a flyout for the inequality functions. 不等式 Screen reader prompt for the Inequalities button ビット単位 Displayed on the button that contains a flyout for the bitwise functions in programmer mode. ビット シフト Displayed on the button that contains a flyout for the bit shift functions in programmer mode. 逆関数 Screen reader prompt for the shift button in the trig flyout in scientific mode. 双曲線関数 Screen reader prompt for the Calculator button HYP in the scientific flyout keypad 正割 Screen reader prompt for the Calculator button sec in the scientific flyout keypad 双曲線正割 Screen reader prompt for the Calculator button sech in the scientific flyout keypad アーク正割 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 双曲線アーク正割 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 余割 Screen reader prompt for the Calculator button csc in the scientific flyout keypad 双曲線余割 Screen reader prompt for the Calculator button csch in the scientific flyout keypad アーク余割 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 双曲線アーク余割 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 余接 Screen reader prompt for the Calculator button cot in the scientific flyout keypad 双曲線余接 Screen reader prompt for the Calculator button coth in the scientific flyout keypad アーク余接 Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad 双曲線アーク余接 Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad 切り捨て Screen reader prompt for the Calculator button floor in the scientific flyout keypad 切り上げ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ランダム Screen reader prompt for the Calculator button random in the scientific flyout keypad 絶対値 Screen reader prompt for the Calculator button abs in the scientific flyout keypad オイラー数 Screen reader prompt for the Calculator button e in the scientific flyout keypad 2 を指数に Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad 否定論理積 Screen reader prompt for the Calculator button nand in the scientific flyout keypad 否定論理積 Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. 否定論理和 Screen reader prompt for the Calculator button nor in the scientific flyout keypad 否定論理和 Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. キャリーで左回転 Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad キャリーで右回転 Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad 左シフト Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad 左シフト Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. 右シフト Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad 右シフト Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. 算術シフト Label for a radio button that toggles arithmetic shift behavior for the shift operations. 論理シフト Label for a radio button that toggles logical shift behavior for the shift operations. 循環シフトの回転 Label for a radio button that toggles rotate circular behavior for the shift operations. キャリー循環シフトで回転 Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 立方根 Screen reader prompt for the cube root button on the scientific operator keypad 三角関数 Screen reader prompt for the square root button on the scientific operator keypad 関数 Screen reader prompt for the square root button on the scientific operator keypad ビット単位 Screen reader prompt for the square root button on the scientific operator keypad ビットシフト Screen reader prompt for the square root button on the scientific operator keypad 指数演算子パネル Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad プログラマー演算子パネル Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad 最上位ビット Used to describe the last bit of a binary number. Used in bit flip グラフ計算 Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. プロット Screen reader prompt for the plot button on the graphing calculator operator keypad 表示を自動的に更新する (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. 折れ線グラフ Screen reader prompt for the graph view button. 自動調整 Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set 手動調整 Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set グラフの表示がリセットされました Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph 拡大 (Ctrl + プラス記号 (+) キー) This is the tool tip automation name for the Calculator zoom in button. 拡大 Screen reader prompt for the zoom in button. 縮小 (Ctrl + マイナス記号 (-) キー) This is the tool tip automation name for the Calculator zoom out button. 縮小 Screen reader prompt for the zoom out button. 数式の追加 Placeholder text for the equation input button 現時点では共有できません。 If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Windows 電卓で作成したグラフを確認 Sent as part of the shared content. The title for the share. 数式 Header that appears over the equations section when sharing 変数 Header that appears over the variables section when sharing 数式を含むグラフの画像 Alt text for the graph image when output via Share 変数 Header text for variables area ステップ Label text for the step text box 最小 Label text for the min text box 最大 Label text for the max text box Label for the Line Color section of the style picker スタイル Label for the Line Style section of the style picker 関数による分析 Title for KeyGraphFeatures Control 関数に水平方向の漸近線がありません。 Message displayed when the graph does not have any horizontal asymptotes 関数に変曲点がありません。 Message displayed when the graph does not have any inflection points 関数に最大点がありません。 Message displayed when the graph does not have any maxima 関数に最小点がありません。 Message displayed when the graph does not have any minima 一定 String describing constant monotonicity of a function 減少 String describing decreasing monotonicity of a function 関数の単調性を特定できません。 Error displayed when monotonicity cannot be determined 増加 String describing increasing monotonicity of a function 関数の単調性が不明です。 Error displayed when monotonicity is unknown 関数に斜め方向の漸近線がありません。 Message displayed when the graph does not have any oblique asymptotes 関数のパリティを特定できません。 Error displayed when parity is cannot be determined 関数は偶数です。 Message displayed with the function parity is even 関数は偶数または奇数ではありません。 Message displayed with the function parity is neither even nor odd 関数は奇数です。 Message displayed with the function parity is odd 関数のパリティが不明です。 Error displayed when parity is unknown この関数では周期性はサポートされていません。 Error displayed when periodicity is not supported 関数は周期的ではありません。 Message displayed with the function periodicity is not periodic 関数の周期性が不明です。 Message displayed with the function periodicity is unknown これらの機能は複雑すぎるため、電卓は計算できません: Error displayed when analysis features cannot be calculated 関数に垂直方向の漸近線がありません。 Message displayed when the graph does not have any vertical asymptotes 関数に x-インターセプトがありません。 Message displayed when the graph does not have any x-intercepts 関数に y-インターセプトがありません。 Message displayed when the graph does not have any y-intercepts ドメイン Title for KeyGraphFeatures Domain Property 横方向の漸近線 Title for KeyGraphFeatures Horizontal aysmptotes Property 変曲点 Title for KeyGraphFeatures Inflection points Property 分析はこの関数ではサポートされていません。 Error displayed when graph analysis is not supported or had an error. 分析は f(x) 形式の関数のみをサポートしています。例: y=x Error displayed when graph analysis detects the function format is not f(x). 最大 Title for KeyGraphFeatures Maxima Property 最小 Title for KeyGraphFeatures Minima Property 単調性 Title for KeyGraphFeatures Monotonicity Property 斜め方向の漸近線 Title for KeyGraphFeatures Oblique asymptotes Property パリティ Title for KeyGraphFeatures Parity Property 周期 Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. 範囲 Title for KeyGraphFeatures Range Property 縦方向の漸近線 Title for KeyGraphFeatures Vertical asymptotes Property X-インターセプト Title for KeyGraphFeatures XIntercept Property Y-インターセプト Title for KeyGraphFeatures YIntercept Property 関数に対して分析を実行できませんでした。 この関数のドメインを計算できません。 Error displayed when Domain is not returned from the analyzer. この関数の範囲を計算できません。 Error displayed when Range is not returned from the analyzer. オーバーフローしました (数値が大きすぎます) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. この演算式をグラフ化するには、ラジアン モードが必要です。 Error that occurs during graphing when radians is required. この関数は複雑すぎるため、グラフ化できません Error that occurs during graphing when the equation is too complex. この関数をグラフ化するには、度モードが必要です。 Error that occurs during graphing when degrees is required 階乗関数の引数が無効です Error that occurs during graphing when a factorial function has an invalid argument. 階乗関数の引数が大きすぎてグラフ化できません Error that occurs during graphing when a factorial has a large n 剰余は整数でのみ使用できます Error that occurs during graphing when modulo is used with a float. 演算式に解がありません Error that occurs during graphing when the equation has no solution. 0 で割ることはできません Error that occurs during graphing when a divison by zero occurs. 演算式に相互に排他的な論理条件が含まれています Error that occurs during graphing when mutually exclusive conditions are used. 演算式がドメイン外にあります Error that occurs during graphing when the equation is out of domain. この演算式のグラフ計算はサポートされていません Error that occurs during graphing when the equation is not supported. 演算式の左かっこが抜けています Error that occurs during graphing when the equation is missing a ( 演算式の右かっこが抜けています Error that occurs during graphing when the equation is missing a ) 数値の小数点が多すぎます Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 小数点位置に数値がありません Error that occurs during graphing with a decimal point without digits 予期しない式の終わりです Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* 式の中に予期しない文字があります Error that occurs during graphing when there is an unexpected token. 式の中に無効な文字があります Error that occurs during graphing when there is an invalid token. 等号が多すぎます Error that occurs during graphing when there are too many equals. 関数には少なくとも 1 つの "x" または "y" 変数が含まれている必要があります Error that occurs during graphing when the equation is missing x or y. 無効な式です Error that occurs during graphing when an invalid syntax is used. 式が空です Error that occurs during graphing when the expression is empty 演算式がないのに等号が使用されています Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) 関数名の後にかっこがありません Error that occurs during graphing when parenthesis are missing after a function. 算術演算のパラメーター数が正しくありません Error that occurs during graphing when a function has the wrong number of parameters 変数名が無効です Error that occurs during graphing when a variable name is invalid. 演算式の左角かっこが抜けています Error that occurs during graphing when a { is missing 演算式の右角かっこが抜けています Error that occurs during graphing when a } is missing. "i" と "I" は、変数名として使用することができません Error that occurs during graphing when i or I is used. 演算式をグラフ化することができません General error that occurs during graphing. 指定された基数に対して数値を解決できませんでした Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). 基数には2より大きく36より小さい値を指定する必要があります Error that occurs during graphing when the base is out of range. 数値演算のパラメーターの 1 つには、変数を指定する必要があります。 Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. 演算式に論理オペランドとスカラー オペランドが混在しています Error that occurs during graphing when operands are mixed. Such as true and 1. "x" または "y" を上限または下限に使用することはできません Error that occurs during graphing when x or y is used in integral upper limits. "x" または "y" は、限界ポイントで使用することができません Error that occurs during graphing when x or y is used in the limit point. 複素数の無限大は使用することができません Error that occurs during graphing when complex infinity is used 不等式で複素数を使用することはできません Error that occurs during graphing when complex numbers are used in inequalities. 関数一覧に戻る This is the tooltip for the back button in the equation analysis page in the graphing calculator 関数一覧に戻る This is the automation name for the back button in the equation analysis page in the graphing calculator 分析関数 This is the tooltip for the analyze function button 分析関数 This is the automation name for the analyze function button 分析関数 This is the text for the for the analyze function context menu command 数式の削除 This is the tooltip for the graphing calculator remove equation buttons 数式の削除 This is the automation name for the graphing calculator remove equation buttons 数式の削除 This is the text for the for the remove equation context menu command 共有 This is the automation name for the graphing calculator share button. 共有 This is the tooltip for the graphing calculator share button. 数式のスタイルの変更 This is the tooltip for the graphing calculator equation style button 数式のスタイルの変更 This is the automation name for the graphing calculator equation style button 数式のスタイルの変更 This is the text for the for the equation style context menu command 演算式を表示する This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. 演算式を非表示にする This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. 演算式 %1 を表示する {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. 演算式 %1 を非表示にする {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. トレースの停止 This is the tooltip/automation name for the graphing calculator stop tracing button トレースの開始 This is the tooltip/automation name for the graphing calculator start tracing button グラフ表示ウィンドウ、x 軸の範囲は %1 と %2 で制限され、y 軸の範囲は %3 と %4 で制限され、%5 個の数式が表示されます {Locked="%1","%2", "%3", "%4", "%5"}. スライダーの構成 This is the tooltip text for the slider options button in Graphing Calculator スライダーの構成 This is the automation name text for the slider options button in Graphing Calculator 数式モードに切り替える Used in Graphing Calculator to switch the view to the equation mode グラフ モードに切り替える Used in Graphing Calculator to switch the view to the graph mode 数式モードに切り替える Used in Graphing Calculator to switch the view to the equation mode 現在のモードは数式モードです Announcement used in Graphing Calculator when switching to the equation mode 現在のモードはグラフ モードです Announcement used in Graphing Calculator when switching to the graph mode ウィンドウ Heading for window extents on the settings 度数 Degrees mode on settings page グラジアン Gradian mode on settings page ラジアン Radians mode on settings page 単位 Heading for Unit's on the settings 表示のリセット Hyperlink button to reset the view of the graph X - 最大 X maximum value header X - 最小 X minimum value header Y - 最大 Y Maximum value header Y - 最小 Y minimum value header グラフのオプション This is the tooltip text for the graph options button in Graphing Calculator グラフのオプション This is the automation name text for the graph options button in Graphing Calculator グラフのオプション Heading for the Graph options flyout in Graphing mode. 変数のオプション Screen reader prompt for the variable settings toggle button 変数のオプションを切り替える Tool tip for the variable settings toggle button 線の太さ Heading for the Graph options flyout in Graphing mode. 線のオプション Heading for the equation style flyout in Graphing mode. 線幅 (小) Automation name for line width setting 線幅 (中) Automation name for line width setting 線幅 (大) Automation name for line width setting 線幅 (特大) Automation name for line width setting 式を入力してください this is the placeholder text used by the textbox to enter an equation コピー Copy menu item for the graph context menu 切り取り Cut menu item from the Equation TextBox コピー Copy menu item from the Equation TextBox 貼り付け Paste menu item from the Equation TextBox 元に戻す Undo menu item from the Equation TextBox すべて選択 Select all menu item from the Equation TextBox 関数の入力 The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. 関数の入力 The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. 関数の入力パネル The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. 可変パネル The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. 可変リスト The automation name for the Variable ListView that is shown when Calculator is in graphing mode. 可変 %1 リスト項目 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. 変数値のテキスト ボックス The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. 変数値のスライダー The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. 変数の最小値のテキスト ボックス The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. 変数の増分値のテキスト ボックス The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. 変数の最大値のテキスト ボックス The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. 実線/点線スタイル Name of the solid line style for a graphed equation 点線のスタイル Name of the dotted line style for a graphed equation 二点鎖線のスタイル Name of the dashed line style for a graphed equation Name of color in the color picker シーフォーム Name of color in the color picker Name of color in the color picker Name of color in the color picker ミント グリーン Name of color in the color picker 濃い緑 Name of color in the color picker チャコール Name of color in the color picker Name of color in the color picker ライト プラム Name of color in the color picker 赤紫 Name of color in the color picker イエロー ゴールド Name of color in the color picker ブライト オレンジ Name of color in the color picker Name of color in the color picker Name of color in the color picker Name of color in the color picker 色 1 Name of color in the color picker 色 2 Name of color in the color picker 色 3 Name of color in the color picker 色 4 Name of color in the color picker グラフのテーマ Graph settings heading for the theme options 常に明るい Graph settings option to set graph to light theme アプリのテーマに合わせる Graph settings option to set graph to match the app theme テーマ This is the automation name text for the Graph settings heading for the theme options 常に明るい This is the automation name text for the Graph settings option to set graph to light theme アプリのテーマに合わせる This is the automation name text for the Graph settings option to set graph to match the app theme 機能を削除しました Announcement used in Graphing Calculator when a function is removed from the function list 関数分析の数式ボックス This is the automation name text for the equation box in the function analysis panel 等号 Screen reader prompt for the equal button on the graphing calculator operator keypad より小さい Screen reader prompt for the Less than button 以下 Screen reader prompt for the Less than or equal button 等しい Screen reader prompt for the Equal button 以上 Screen reader prompt for the Greater than or equal button より大きい Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad 送信 Screen reader prompt for the submit button on the graphing calculator operator keypad 関数による分析 Screen reader prompt for the function analysis grid グラフのオプション Screen reader prompt for the graph options panel 履歴とメモリの一覧 Automation name for the group of controls for history and memory lists. メモリ リスト Automation name for the group of controls for memory list. 履歴スロット %1 がクリアされました {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". 計算機を常に手前に表示 Announcement to indicate calculator window is always shown on top. 計算機を全画面表示に戻す Announcement to indicate calculator window is now back to full view. 算術シフトが選択されています Label for a radio button that toggles arithmetic shift behavior for the shift operations. 論理シフトが選択されています Label for a radio button that toggles logical shift behavior for the shift operations. ローテートの循環シフトが選択されています Label for a radio button that toggles rotate circular behavior for the shift operations. キャリー付きローテートの循環シフトが選択されています Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 設定 Header text of Settings page 外観 Subtitle of appearance setting on Settings page アプリ テーマ Title of App theme expander 表示するアプリ テーマを選択します Description of App theme expander ライト Lable for light theme option ダーク Lable for dark theme option システム設定を使用する Lable for the app theme option to use system setting 戻る Screen reader prompt for the Back button in title bar to back to main page 設定ページ Announcement used when Settings page is opened コンテキスト メニューを開いて使用可能なアクションを表示します Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. このスナップショットを復元できませんでした。 The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/kk-KZ/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Дұрыс емес кіріс мәні Error message shown when the input makes a function fail, like log(-1) Нәтиже анықталмады Error message shown when there's no possible value for a function. Жад жеткіліксіз Error message shown when we run out of memory during a calculation. Толып кету Error message shown when there's an overflow during the calculation. Нәтиже анықталмады Same as 101 Нәтиже анықталмады Same 101 Толып кету Same as 107 Толып кету Same 107 Нөлге бөлінбейді Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/kk-KZ/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Есептегіш {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Есептегіш [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows есептегіші {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows есептегіші [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Есептегіш {@Appx_Description@} This description is used for the official application when published through Windows Store. Есептегіш [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Көшіру Copy context menu string Қою Paste context menu string Шамамен осы мөлшерге тең The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, %2 мәні {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1-бит {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63 Sub-string used in automation name for 63 bit in bit flip 62 Sub-string used in automation name for 62 bit in bit flip 61 Sub-string used in automation name for 61 bit in bit flip 60 Sub-string used in automation name for 60 bit in bit flip 59 Sub-string used in automation name for 59 bit in bit flip 58 Sub-string used in automation name for 58 bit in bit flip 57 Sub-string used in automation name for 57 bit in bit flip 56 Sub-string used in automation name for 56 bit in bit flip 55 Sub-string used in automation name for 55 bit in bit flip 54 Sub-string used in automation name for 54 bit in bit flip 53 Sub-string used in automation name for 53 bit in bit flip 52 Sub-string used in automation name for 52 bit in bit flip 51 Sub-string used in automation name for 51 bit in bit flip 50 Sub-string used in automation name for 50 bit in bit flip 49 Sub-string used in automation name for 49 bit in bit flip 48 Sub-string used in automation name for 48 bit in bit flip 47 Sub-string used in automation name for 47 bit in bit flip 46 Sub-string used in automation name for 46 bit in bit flip 45 Sub-string used in automation name for 45 bit in bit flip 44 Sub-string used in automation name for 44 bit in bit flip 43 Sub-string used in automation name for 43 bit in bit flip 42 Sub-string used in automation name for 42 bit in bit flip 41 Sub-string used in automation name for 41 bit in bit flip 40 Sub-string used in automation name for 40 bit in bit flip 39 Sub-string used in automation name for 39 bit in bit flip 38 Sub-string used in automation name for 38 bit in bit flip 37 Sub-string used in automation name for 37 bit in bit flip 36 Sub-string used in automation name for 36 bit in bit flip 35 Sub-string used in automation name for 35 bit in bit flip 34 Sub-string used in automation name for 34 bit in bit flip 33 Sub-string used in automation name for 33 bit in bit flip 32 Sub-string used in automation name for 32 bit in bit flip 31 Sub-string used in automation name for 31 bit in bit flip 30 Sub-string used in automation name for 30 bit in bit flip 29 Sub-string used in automation name for 29 bit in bit flip 28 Sub-string used in automation name for 28 bit in bit flip 27 Sub-string used in automation name for 27 bit in bit flip 26 Sub-string used in automation name for 26 bit in bit flip 25 Sub-string used in automation name for 25 bit in bit flip 24 Sub-string used in automation name for 24 bit in bit flip 23 Sub-string used in automation name for 23 bit in bit flip 22 Sub-string used in automation name for 22 bit in bit flip 21 Sub-string used in automation name for 21 bit in bit flip 20 Sub-string used in automation name for 20 bit in bit flip 19 Sub-string used in automation name for 19 bit in bit flip 18 Sub-string used in automation name for 18 bit in bit flip 17 Sub-string used in automation name for 17 bit in bit flip 16 Sub-string used in automation name for 16 bit in bit flip 15 Sub-string used in automation name for 15 bit in bit flip 14 Sub-string used in automation name for 14 bit in bit flip 13 Sub-string used in automation name for 13 bit in bit flip 12 Sub-string used in automation name for 12 bit in bit flip 11 Sub-string used in automation name for 11 bit in bit flip 10 Sub-string used in automation name for 10 bit in bit flip 9 Sub-string used in automation name for 9 bit in bit flip 8 Sub-string used in automation name for 8 bit in bit flip 7 Sub-string used in automation name for 7 bit in bit flip 6 Sub-string used in automation name for 6 bit in bit flip 5 Sub-string used in automation name for 5 bit in bit flip 4 Sub-string used in automation name for 4 bit in bit flip 3 Sub-string used in automation name for 3 bit in bit flip 2 Sub-string used in automation name for 2 bit in bit flip 1 Sub-string used in automation name for 1 bit in bit flip маңыздылығы аздау бит Used to describe the first bit of a binary number. Used in bit flip Жад қалқымалы мәзірін ашу This is the automation name and label for the memory button when the memory flyout is closed. Жад қалқымалы мәзірін жабу This is the automation name and label for the memory button when the memory flyout is open. Жоғарыда ұстау This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Толық көрініске оралу This is the tool tip automation name for the always-on-top button when in always-on-top mode. Жад This is the tool tip automation name for the memory button. Журнал (Ctrl+H) This is the tool tip automation name for the history button. Биттік ауыстыру пернетақтасы This is the tool tip automation name for the bitFlip button. Толық пернетақта This is the tool tip automation name for the numberPad button. Барлық жадты тазалау (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Жад The text that shows as the header for the memory list Жад The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Журнал The text that shows as the header for the history list Журнал The automation name for the History pivot item that is shown when Calculator is in wide layout. Түрлендіргіш Label for a control that activates the unit converter mode. Инженерлік Label for a control that activates scientific mode calculator layout Стандартты Label for a control that activates standard mode calculator layout. Түрлендіргіш режимі Screen reader prompt for a control that activates the unit converter mode. Ғылыми режим Screen reader prompt for a control that activates scientific mode calculator layout Стандартты режим Screen reader prompt for a control that activates standard mode calculator layout. Барлық журналды тазалау "ClearHistory" used on the calculator history pane that stores the calculation history. Барлық журналды тазалау This is the tool tip automation name for the Clear History button. Жасыру "HideHistory" used on the calculator history pane that stores the calculation history. Стандартты The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Ғылыми The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Бағдарламашы The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Түрлендіргіш The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Есептегіш The text that shows in the dropdown navigation control for the calculator group. Түрлендіргіш The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Есептегіш The text that shows in the dropdown navigation control for the calculator group in upper case. Түрлендіргіштер Pluralized version of the converter group text, used for the screen reader prompt. Есептегіштер Pluralized version of the calculator group text, used for the screen reader prompt. Көрсетілетін: %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Өрнек — %1, ағымдағы енгізу: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Көрсетілетін: %1 ұпай {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Өрнек: %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Дисплей мәні аралық сақтағышқа көшірілді Screen reader prompt for the Calculator display copy button, when the button is invoked. Журнал Screen reader prompt for the history flyout Жад Screen reader prompt for the memory flyout Он алтылық %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Ондық %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Сегіздік %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Екілік %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Барлық журналды тазалау Screen reader prompt for the Calculator History Clear button Журнал тазаланды Screen reader prompt for the Calculator History Clear button, when the button is invoked. Журналды жасыру Screen reader prompt for the Calculator History Hide button Журнал қалқымалы мәзірін ашу Screen reader prompt for the Calculator History button, when the flyout is closed. Журнал қалқымалы мәзірін жабу Screen reader prompt for the Calculator History button, when the flyout is open. Жадқа сақтау Screen reader prompt for the Calculator Memory button Жадқа сақтау (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Барлық жадты тазалау Screen reader prompt for the Calculator Clear Memory button Жад тазаланды Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Жадты қайтару Screen reader prompt for the Calculator Memory Recall button Жадты қайтару (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Жад қосу Screen reader prompt for the Calculator Memory Add button Жад қосу (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Жадты азайту Screen reader prompt for the Calculator Memory Subtract button Жадты азайту (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Жад элементін өшіру Screen reader prompt for the Calculator Clear Memory button Жад элементін өшіру This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Жад элементіне қосу Screen reader prompt for the Calculator Memory Add button in the Memory list Жад элементіне қосу This is the tool tip automation name for the Calculator Memory Add button in the Memory list Жадтағы элементтен шығарып алу Screen reader prompt for the Calculator Memory Subtract button in the Memory list Жадтағы элементтен шығарып алу This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Жад элементін өшіру Screen reader prompt for the Calculator Clear Memory button Жад элементін өшіру Text string for the Calculator Clear Memory option in the Memory list context menu Жад элементіне қосу Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Жад элементіне қосу Text string for the Calculator Memory Add option in the Memory list context menu Жадтағы элементтен шығарып алу Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Жадтағы элементтен шығарып алу Text string for the Calculator Memory Subtract option in the Memory list context menu Жою Text string for the Calculator Delete swipe button in the History list Көшіру Text string for the Calculator Copy option in the History list context menu Жою Text string for the Calculator Delete option in the History list context menu Журнал элементін жою Screen reader prompt for the Calculator Delete swipe button in the History list Журнал элементін жою Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Нөл Screen reader prompt for the Calculator number "0" button Бір Screen reader prompt for the Calculator number "1" button Екі Screen reader prompt for the Calculator number "2" button Үш Screen reader prompt for the Calculator number "3" button Төрт Screen reader prompt for the Calculator number "4" button Бес Screen reader prompt for the Calculator number "5" button Алты Screen reader prompt for the Calculator number "6" button Жеті Screen reader prompt for the Calculator number "7" button Сегіз Screen reader prompt for the Calculator number "8" button Тоғыз Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Және Screen reader prompt for the Calculator And button Немесе Screen reader prompt for the Calculator Or button Емес Screen reader prompt for the Calculator Not button Солға айналдыру Screen reader prompt for the Calculator ROL button Оңға айналдыру Screen reader prompt for the Calculator ROR button Солға жылжу Screen reader prompt for the Calculator LSH button Оңға жылжу Screen reader prompt for the Calculator RSH button Жеке иелік немесе Screen reader prompt for the Calculator XOR button Төрттік сөз қосқышы Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Қос сөз қосқышы Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Сөз қосқышы Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Байттық қосқыш Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Биттік ауыстыру пернетақтасы Screen reader prompt for the Calculator bitFlip button Толық пернетақта Screen reader prompt for the Calculator numberPad button Ондық бөлгіш Screen reader prompt for the "." button Жазбаны тазалау Screen reader prompt for the "CE" button Тазалау Screen reader prompt for the "C" button Бөлу Screen reader prompt for the divide button on the number pad Көбейту Screen reader prompt for the multiply button on the number pad Тең Screen reader prompt for the equals button on the scientific operator keypad Кері функция Screen reader prompt for the shift button on the number pad in scientific mode. Алу Screen reader prompt for the minus button on the number pad Алу We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Қосу Screen reader prompt for the plus button on the number pad Квадрат түбір Screen reader prompt for the square root button on the scientific operator keypad Пайыз Screen reader prompt for the percent button on the scientific operator keypad Оң теріс Screen reader prompt for the negate button on the scientific operator keypad Оң теріс Screen reader prompt for the negate button on the converter operator keypad Кері шама Screen reader prompt for the invert button on the scientific operator keypad Сол жақ жақша Screen reader prompt for the Calculator "(" button on the scientific operator keypad Сол жақ жақша, ашық жақша саны: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Оң жақ жақша Screen reader prompt for the Calculator ")" button on the scientific operator keypad Ашылатын жақша саны %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Жабу үшін ашылатын жақша жоқ. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Экспоненттік түсінік Screen reader prompt for the Calculator F-E the scientific operator keypad Гиперболалық функция Screen reader prompt for the Calculator button HYP in the scientific operator keypad Пи Screen reader prompt for the Calculator pi button on the scientific operator keypad Синус Screen reader prompt for the Calculator sin button on the scientific operator keypad Косинус Screen reader prompt for the Calculator cos button on the scientific operator keypad Тангенс Screen reader prompt for the Calculator tan button on the scientific operator keypad Гиперболалық синус Screen reader prompt for the Calculator sinh button on the scientific operator keypad Гиперболалық косинус Screen reader prompt for the Calculator cosh button on the scientific operator keypad Гиперболалық тангенс Screen reader prompt for the Calculator tanh button on the scientific operator keypad Шаршы Screen reader prompt for the x squared on the scientific operator keypad. Куб Screen reader prompt for the x cubed on the scientific operator keypad. Арксинус Screen reader prompt for the inverted sin on the scientific operator keypad. Арккосинус Screen reader prompt for the inverted cos on the scientific operator keypad. Арктангенс Screen reader prompt for the inverted tan on the scientific operator keypad. Гиперболалық арксинус Screen reader prompt for the inverted sinh on the scientific operator keypad. Гиперболалық арккосинус Screen reader prompt for the inverted cosh on the scientific operator keypad. Гиперболалық арктангенс Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" экспонентаға Screen reader prompt for x power y button on the scientific operator keypad. Он санын экпонентаға Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" экспонентаға Screen reader for the e power x on the scientific operator keypad. "x" мәнінің "y" түбірі Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Логарифм Screen reader for the log base 10 on the scientific operator keypad Натурал логарифм Screen reader for the log base e on the scientific operator keypad Бөлу қалдығы Screen reader for the mod button on the scientific operator keypad Экспоненциалдық Screen reader for the exp button on the scientific operator keypad Градус минут секунд Screen reader for the exp button on the scientific operator keypad Градус Screen reader for the exp button on the scientific operator keypad Бүтін сан бөлігі Screen reader for the int button on the scientific operator keypad Бөлшек бөлігі Screen reader for the frac button on the scientific operator keypad Факториал Screen reader for the factorial button on the basic operator keypad Градус қосқышы This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Градиан қосқыштары This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Радиан қосқышы This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Режимнің ашылмалы тізімі Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Санаттардың ашылмалы тізімі Screen reader prompt for the Categories dropdown field. Жоғарыда ұстау Screen reader prompt for the Always-on-Top button when in normal mode. Толық көрініске оралу Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Жоғарыда ұстау (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Толық көрініске оралу (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 мәнінен түрлендіру Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 тармағындағы %2 мәнінен түрлендіру {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 мәніне түрлендіреді Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 — %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Бірлік енгізу Screen reader prompt for the Unit Converter Units1 i.e. top units field. Бірлік шығару Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Аумақ Unit conversion category name called Area (eg. area of a sports field in square meters) Деректер Unit conversion category name called Data Энергия Unit conversion category name called Energy. (eg. the energy in a battery or in food) Ұзындығы Unit conversion category name called Length Қуат Unit conversion category name called Power (eg. the power of an engine or a light bulb) Жылдамдық Unit conversion category name called Speed Уақыт Unit conversion category name called Time Көлем Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Температура Unit conversion category name called Temperature Салмақ және масса Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Қысым Unit conversion category name called Pressure Бұрыш Unit conversion category name called Angle Валюта Unit conversion category name called Currency Сұйық унция (Ұлыбритания) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) сұйық унция (Ұлыбритания) An abbreviation for a measurement unit of volume Сұйық унция (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) сұйық унция (АҚШ) An abbreviation for a measurement unit of volume Галлон (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галлон (Ұлыбритания) An abbreviation for a measurement unit of volume Галлон (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галлон (АҚШ) An abbreviation for a measurement unit of volume Литр A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Л An abbreviation for a measurement unit of volume Милилитр A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мЛ An abbreviation for a measurement unit of volume Пинта (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (Ұлыбритания) An abbreviation for a measurement unit of volume Пинта (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (АҚШ) An abbreviation for a measurement unit of volume Ас қасығы (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ас қасығы (АҚШ) An abbreviation for a measurement unit of volume Шай қасығы (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шай қасығы (АҚШ) An abbreviation for a measurement unit of volume Ас қасығы (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ас қасығы (Ұлыбритания) An abbreviation for a measurement unit of volume Шай қасығы (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шай қасығы (Ұлыбритания) An abbreviation for a measurement unit of volume Кварта (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварта (Ұлыбритания) An abbreviation for a measurement unit of volume Кварта (Ұлыбритания) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварта (АҚШ) An abbreviation for a measurement unit of volume Кесе (АҚШ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кесе (АҚШ) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length акр An abbreviation for a measurement unit of volume бит An abbreviation for a measurement unit of data БЖБ An abbreviation for a measurement unit of volume БЖБ/минут An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data калория An abbreviation for a measurement unit of energy см An abbreviation for a measurement unit of length см/сек An abbreviation for a measurement unit of speed см³ An abbreviation for a measurement unit of volume фут³ An abbreviation for a measurement unit of volume дюйм³ An abbreviation for a measurement unit of volume м³ An abbreviation for a measurement unit of volume ярд³ An abbreviation for a measurement unit of volume күн An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" эВ An abbreviation for a measurement unit of energy фут An abbreviation for a measurement unit of length фут/сек An abbreviation for a measurement unit of speed фут-фунт An abbreviation for a measurement unit of energy Гбит An abbreviation for a measurement unit of data Гбайт An abbreviation for a measurement unit of data гектар An abbreviation for a measurement unit of area ак (АҚШ) An abbreviation for a measurement unit of power сағ An abbreviation for a measurement unit of time дюйм An abbreviation for a measurement unit of length Дж An abbreviation for a measurement unit of energy кВтсағ An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Кбит An abbreviation for a measurement unit of data Кбайт An abbreviation for a measurement unit of data ккал An abbreviation for a measurement unit of energy кДж An abbreviation for a measurement unit of energy км An abbreviation for a measurement unit of length км/сағ An abbreviation for a measurement unit of speed кВ An abbreviation for a measurement unit of power кН An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мбайт An abbreviation for a measurement unit of data Mбайт An abbreviation for a measurement unit of data м An abbreviation for a measurement unit of length м/сек An abbreviation for a measurement unit of speed мкм An abbreviation for a measurement unit of length мкс An abbreviation for a measurement unit of time миля An abbreviation for a measurement unit of length миля/сағ An abbreviation for a measurement unit of speed мм An abbreviation for a measurement unit of length мсек An abbreviation for a measurement unit of time мин An abbreviation for a measurement unit of time нм An abbreviation for a measurement unit of length теңіздік миля An abbreviation for a measurement unit of length Петабит An abbreviation for a measurement unit of data Петабайт An abbreviation for a measurement unit of data фут-фунт/мин An abbreviation for a measurement unit of power сек An abbreviation for a measurement unit of time см² An abbreviation for a measurement unit of area фут² An abbreviation for a measurement unit of area дюйм² An abbreviation for a measurement unit of area км² An abbreviation for a measurement unit of area м² An abbreviation for a measurement unit of area миля² An abbreviation for a measurement unit of area мм² An abbreviation for a measurement unit of area ярд² An abbreviation for a measurement unit of area Тбит An abbreviation for a measurement unit of data Тбайт An abbreviation for a measurement unit of data Вт An abbreviation for a measurement unit of power апта An abbreviation for a measurement unit of time ярд An abbreviation for a measurement unit of length жыл An abbreviation for a measurement unit of time Ги An abbreviation for a measurement unit of data ГиБ An abbreviation for a measurement unit of data Ки An abbreviation for a measurement unit of data КиБ An abbreviation for a measurement unit of data миля An abbreviation for a measurement unit of data МиБ An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Пи An abbreviation for a measurement unit of data ПиБ An abbreviation for a measurement unit of data Ти An abbreviation for a measurement unit of data Тебибайт An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data ЭБ An abbreviation for a measurement unit of data Эи An abbreviation for a measurement unit of data ЭиБ An abbreviation for a measurement unit of data Зетабит An abbreviation for a measurement unit of data ЗБ An abbreviation for a measurement unit of data Зи An abbreviation for a measurement unit of data ЗиБ An abbreviation for a measurement unit of data Йоттабит An abbreviation for a measurement unit of data ЙБ An abbreviation for a measurement unit of data Ицзу An abbreviation for a measurement unit of data ЙиБ An abbreviation for a measurement unit of data Акр A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Бит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Британдық жылу бірлігі A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Британдық жылу бірлігі/мин A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Байт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Жылу калорияcы A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) См/сек A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Текше сантиметр A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Текше фут A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Текше дюйм A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Текше метр A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Текше ярд A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Күн A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Цельсий An option in the unit converter to select degrees Celsius Фаренгейт An option in the unit converter to select degrees Fahrenheit Электрон-вольт A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут/сек A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут-фунт A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут-фунт/мин A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гигабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гигабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гектар A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Аттың күші (АҚШ) A measurement unit for power Сағат A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дюйм A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Джоуль A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловатт-сағат A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кельвин An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Килобит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килобайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тамақ калориясы A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килоджоуль A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Километр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) км/сағ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловатт A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нанометр/сағ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мах дыбыс жылдамдығы A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мегабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мегабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) м/сек A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Микрометр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Микросекунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Миля A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Миля/сағ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милиметр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Миллисекунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Минут A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Жарты байт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нанометр A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ангстремдер A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Теңіздік милялар A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Секунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы сантиметр A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы фут A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы дюйм A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы километр A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы метр A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы миля A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы милиметр A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Шаршы ярд A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ватт A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Апта A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ярд A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Жыл A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ықшам дискі An abbreviation for a measurement unit of weight град. An abbreviation for a measurement unit of Angle рад An abbreviation for a measurement unit of Angle град An abbreviation for a measurement unit of Angle атм An abbreviation for a measurement unit of Pressure бар An abbreviation for a measurement unit of Pressure кПа An abbreviation for a measurement unit of Pressure сынап бағаны An abbreviation for a measurement unit of Pressure Па An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure An abbreviation for a measurement unit of weight декаграмм An abbreviation for a measurement unit of weight дециграмм An abbreviation for a measurement unit of weight г An abbreviation for a measurement unit of weight гектограмм An abbreviation for a measurement unit of weight кг An abbreviation for a measurement unit of weight тонна (Ұлыбритания) An abbreviation for a measurement unit of weight мг An abbreviation for a measurement unit of weight унция An abbreviation for a measurement unit of weight фунт An abbreviation for a measurement unit of weight тонна (АҚШ) An abbreviation for a measurement unit of weight стоун An abbreviation for a measurement unit of weight т An abbreviation for a measurement unit of weight Карат A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Градус A measurement unit for Angle. Радиан A measurement unit for Angle. Градиан A measurement unit for Angle. Атмосфера A measurement unit for Pressure. Бар A measurement unit for Pressure. Килопаскаль A measurement unit for Pressure. Сынап бағаны миллиметрі A measurement unit for Pressure. Паскаль A measurement unit for Pressure. Фунт/шаршы дюйм A measurement unit for Pressure. Сантиграмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Декаграмм A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дециграмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Грамм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гектограмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килограмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ағылшын тоннасы (ҰБ) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милиграмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Унция A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фунт A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Қысқа тонна (АҚШ) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стоун A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метротонна A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ықшам дискі A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ықшам дискі A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбол алаңы A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбол алаңы A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискета A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискета A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD дискісі A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD дискісі A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батарея AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батарея AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қағаз түйрегіші A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қағаз түйрегіші A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) алып әуе лайнері A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) алып әуе лайнері A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) электр шамы A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) электр шамы A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ат A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ат A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ванна A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ванна A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қар ұшқыны A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қар ұшқыны A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) піл An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) піл An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) тасбақа A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) тасбақа A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивті ұшақ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивті ұшақ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кит A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кит A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кофе шыны аяғы A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кофе шыны аяғы A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) жүзу бассейні An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) жүзу бассейні An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қол A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қолдар A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қағаз парағы A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қағаз парағы A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қорған A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) қорған A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банан A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банан A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) торт тілімі A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) торт тілімі A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пойыз қозғалтқышы A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пойыз қозғалтқышы A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбол добы A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбол добы A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Жад элементі Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Артқа Screen reader prompt for the About panel back button Артқа Content of tooltip being displayed on AboutControlBackButton Microsoft бағдарламалық жасақтамасын пайдалану бойынша лицензиялық келісім шарттары Displayed on a link to the Microsoft Software License Terms on the About panel Алдын ала қарап алу Label displayed next to upcoming features Microsoft корпорациясының құпиялылық туралы мәлімдемесі Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Барлық құқықтары қорғалған. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows есептегішіне қалай іскерлесуге болатындығын білу үшін, %HL%GitHub%HL% қоймасында жобаны тексеріңіз. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Мәліметтер Subtitle of about message on Settings page Пікір жіберу The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Әлі журнал жоқ. The text that shows as the header for the history list Жадыда ешбір нәрсе сақталмаған. The text that shows as the header for the memory list Жад Screen reader prompt for the negate button on the converter operator keypad Бұл өрнекті қою мүмкін емес The paste operation cannot be performed, if the expression is invalid. Гибибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гибибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксбибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксбибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зеттабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зеттабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йоттабиттер A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йоттабайттар A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йобибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йобибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Күнді есептеу Есептеу режимі Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Қосу Add toggle button text Күндерді қосу немесе алу Add or Subtract days option Күні Date result label Күндер арасындағы айырмашылық Date difference option Күн Add/Subtract Days label Айырмашылық Difference result label Осы күннен бастап From Date Header for Difference Date Picker Айлар Add/Subtract Months label Алу Subtract toggle button text Осы күнге дейін To Date Header for Difference Date Picker Жыл Add/Subtract Years label Шектен тыс күн Out of bound message shown as result when the date calculation exceeds the bounds күн күндер ай айлар Бірдей күндер апта апталар жыл жылдар Айырмашылық %1 Automation name for reading out the date difference. %1 = Date difference Нәтижелі күн %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Калькулятор режимі {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Түрлендіргіш режимі {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Күнді есептеу режимі Automation name for when the mode header is focused and the current mode is Date calculation. Журнал және жад тізімдері Automation name for the group of controls for history and memory lists. Жад басқару элементтері Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Стандартты функциялар Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Басқару элементтерін көрсету Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Стандартты амалдар Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Сандар тақтасы Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Бұрыштық амалдар Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Ғылыми функциялар Automation name for the group of Scientific functions. Түбір таңдау Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Бағдарламалық амалдар Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Енгізу режимін таңдау Automation name for the group of input mode toggling buttons. Битті қосу пернетақтасы Automation name for the group of bit toggling buttons. Өрнекті солға жылжыту Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Өрнекті оңға жылжыту Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Ең көп сандарға жетті. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 жадқа сақталды {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". %1 жад ұясы — %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". %1 жад слоты тазаланды {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". бөлінген Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. рет Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. минус Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. плюс Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. дәрежеде Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y түбірі Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. модуль Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. солға жылжу Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. оңға жылжу Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. немесе Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x немесе Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. және Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Жаңартылған %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Бағаларды жаңарту The text displayed for a hyperlink button that refreshes currency converter ratios. Деректер ақылары алынуы мүмкін. The text displayed when users are on a metered connection and using currency converter. Жаңа бағамдар алу мүмкін болмады. Кейінірек қайталап көріңіз. The text displayed when currency ratio data fails to load. Өшірулі. %HL%Желі параметрлеріңізді%HL% тексеріңіз Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Валюта бағамдары жаңартылуда This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Валюта бағамдары жаңартылды This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Бағамдар жаңартылмады This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Барлық жадты тазалау (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Барлық жадты тазалау Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} синустық дәрежелер Name for the sine function in degrees mode. Used by screen readers. синустық радиандар Name for the sine function in radians mode. Used by screen readers. синус, градиан Name for the sine function in gradians mode. Used by screen readers. кері синустық дәрежелер Name for the inverse sine function in degrees mode. Used by screen readers. кері синустық радиандар Name for the inverse sine function in radians mode. Used by screen readers. арксинус, градиан Name for the inverse sine function in gradians mode. Used by screen readers. гиперболалық синус Name for the hyperbolic sine function. Used by screen readers. кері гиперболалық синус Name for the inverse hyperbolic sine function. Used by screen readers. косинустық дәрежелер Name for the cosine function in degrees mode. Used by screen readers. косинус радиандары Name for the cosine function in radians mode. Used by screen readers. косинус, градиан Name for the cosine function in gradians mode. Used by screen readers. кері косинустық дәрежелер Name for the inverse cosine function in degrees mode. Used by screen readers. кері косинус радиандары Name for the inverse cosine function in radians mode. Used by screen readers. арккосинус, градиан Name for the inverse cosine function in gradians mode. Used by screen readers. гиперболалық косинус Name for the hyperbolic cosine function. Used by screen readers. кері гиперболалық косинус Name for the inverse hyperbolic cosine function. Used by screen readers. тангенстік дәрежелер Name for the tangent function in degrees mode. Used by screen readers. тангенстік радиан Name for the tangent function in radians mode. Used by screen readers. тангенс, градиан Name for the tangent function in gradians mode. Used by screen readers. кері тангенстік дәрежелер Name for the inverse tangent function in degrees mode. Used by screen readers. кері тангенстік радиандар Name for the inverse tangent function in radians mode. Used by screen readers. арктангенс, градиан Name for the inverse tangent function in gradians mode. Used by screen readers. гиперболалық тангенс Name for the hyperbolic tangent function. Used by screen readers. кері гиперболалық тангенс Name for the inverse hyperbolic tangent function. Used by screen readers. секанс градуспен Name for the secant function in degrees mode. Used by screen readers. секанс радианмен Name for the secant function in radians mode. Used by screen readers. секанс градианмен Name for the secant function in gradians mode. Used by screen readers. кері секанс градуспен Name for the inverse secant function in degrees mode. Used by screen readers. кері секансы радианмен Name for the inverse secant function in radians mode. Used by screen readers. кері секанс градианмен Name for the inverse secant function in gradians mode. Used by screen readers. гиперболалық секанс Name for the hyperbolic secant function. Used by screen readers. кері гиперболалық секанс Name for the inverse hyperbolic secant function. Used by screen readers. косеканс градуспен Name for the cosecant function in degrees mode. Used by screen readers. косеканс радианмен Name for the cosecant function in radians mode. Used by screen readers. косеканс градианмен Name for the cosecant function in gradians mode. Used by screen readers. кері косеканс градуспен Name for the inverse cosecant function in degrees mode. Used by screen readers. кері косеканс радианмен Name for the inverse cosecant function in radians mode. Used by screen readers. кері косеканс градианмен Name for the inverse cosecant function in gradians mode. Used by screen readers. гиперболалық косеканс Name for the hyperbolic cosecant function. Used by screen readers. кері гиперболалық косеканс Name for the inverse hyperbolic cosecant function. Used by screen readers. котангенс градуспен Name for the cotangent function in degrees mode. Used by screen readers. Котангенс радианмен Name for the cotangent function in radians mode. Used by screen readers. котангенс градианмен Name for the cotangent function in gradians mode. Used by screen readers. кері котангенс градуспен Name for the inverse cotangent function in degrees mode. Used by screen readers. кері котангенс радианмен Name for the inverse cotangent function in radians mode. Used by screen readers. кері котангенс градианмен Name for the inverse cotangent function in gradians mode. Used by screen readers. гиперболалық котангенс Name for the hyperbolic cotangent function. Used by screen readers. кері гиперболалық котангенс Name for the inverse hyperbolic cotangent function. Used by screen readers. Кубтық түбір Name for the cube root function. Used by screen readers. Негізгі журнал Name for the logbasey function. Used by screen readers. Абсолютті мән Name for the absolute value function. Used by screen readers. солға жылжу Name for the programmer function that shifts bits to the left. Used by screen readers. оңға жылжу Name for the programmer function that shifts bits to the right. Used by screen readers. факториал Name for the factorial function. Used by screen readers. градус минут секунд Name for the degree minute second (dms) function. Used by screen readers. натурал логарифм Name for the natural log (ln) function. Used by screen readers. шаршы Name for the square function. Used by screen readers. y түбірі Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 санаты {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft қызметтер келісімі Displayed on a link to the Microsoft Services Agreement in the about this app information Пен An abbreviation for a measurement unit of area. Пен A measurement unit for area. Осы күннен бастап From Date Header for AddSubtract Date Picker Есептеу нәтижесін солға айналдыру Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Есептеу нәтижесін оңға айналдыру Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Есептеу сәтсіз болды Text displayed when the application is not able to do a calculation Негізгі журнал Y Screen reader prompt for the logBaseY button Тригонометриялық Displayed on the button that contains a flyout for the trig functions in scientific mode. Функция Displayed on the button that contains a flyout for the general functions in scientific mode. Теңсіздік Displayed on the button that contains a flyout for the inequality functions. Теңсіздіктер Screen reader prompt for the Inequalities button Биттік Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Биттік жылжу Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Кері функция Screen reader prompt for the shift button in the trig flyout in scientific mode. Гиперболалық функция Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Секанс Screen reader prompt for the Calculator button sec in the scientific flyout keypad Гиперболалық секанс Screen reader prompt for the Calculator button sech in the scientific flyout keypad Арксеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Гиперболалық арксеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Косеканс Screen reader prompt for the Calculator button csc in the scientific flyout keypad Гиперболалық косеканс Screen reader prompt for the Calculator button csch in the scientific flyout keypad Арккосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Гиперболалық арккосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Котангенс Screen reader prompt for the Calculator button cot in the scientific flyout keypad Гиперболалық котангенс Screen reader prompt for the Calculator button coth in the scientific flyout keypad Арккотангенс Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Гиперболалық арккотангенс Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Негіз Screen reader prompt for the Calculator button floor in the scientific flyout keypad Төбе Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Кездейсоқ Screen reader prompt for the Calculator button random in the scientific flyout keypad Абсолютті мән Screen reader prompt for the Calculator button abs in the scientific flyout keypad Эйлер элементінің нөмірі Screen reader prompt for the Calculator button e in the scientific flyout keypad Екі еселеу көрсеткіші Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Не Screen reader prompt for the Calculator button nor in the scientific flyout keypad Не Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Орындау бар сол жақта айналдыру Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Орындау бар оң жақта айналдыру Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Солға жылжу Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Солға жылжу Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Оңға жылжу Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Оңға жылжу Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Арифметикалық жылжу Label for a radio button that toggles arithmetic shift behavior for the shift operations. Логикалық жылжу Label for a radio button that toggles logical shift behavior for the shift operations. Айналма жылжытуды айналдыру Label for a radio button that toggles rotate circular behavior for the shift operations. Айнымалы ауысуды орындау арқылы айналдыру Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Кубтық түбір Screen reader prompt for the cube root button on the scientific operator keypad Тригонометриялық Screen reader prompt for the square root button on the scientific operator keypad Функциялар Screen reader prompt for the square root button on the scientific operator keypad Биттік Screen reader prompt for the square root button on the scientific operator keypad Биттік ауысу Screen reader prompt for the square root button on the scientific operator keypad Ғылыми оператордың панельдері Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Бағдарламашы операторының панельдері Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad өте маңызды бит Used to describe the last bit of a binary number. Used in bit flip График құру Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Тұрғызу аумағы Screen reader prompt for the plot button on the graphing calculator operator keypad Көріністі автоматты жаңарту (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. График көрінісі Screen reader prompt for the graph view button. Автоматты үздік сәйкестік Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Қолмен реттеу Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set График көрінісі қайта орнатылды Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Ұлғайту (Ctrl + плюс) This is the tool tip automation name for the Calculator zoom in button. Ірілеу Screen reader prompt for the zoom in button. Кішірейту (Ctrl + минус) This is the tool tip automation name for the Calculator zoom out button. Кішілеу Screen reader prompt for the zoom out button. Теңдеу қосу Placeholder text for the equation input button Дәл қазір ортақ пайдалану мүмкін емес. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Windows есептегіші көмегімен қандай диаграмма сызғанымды қара Sent as part of the shared content. The title for the share. Теңдеулер Header that appears over the equations section when sharing Айнымалы мәндері Header that appears over the variables section when sharing Теңдеулер бар диаграмма суреті Alt text for the graph image when output via Share Айнымалы мәндері Header text for variables area Қадам Label text for the step text box Мин. Label text for the min text box Макс. Label text for the max text box Түс Label for the Line Color section of the style picker Мәнер Label for the Line Style section of the style picker Функция талдау Title for KeyGraphFeatures Control Функцияның көлденең асимптоталары жоқ. Message displayed when the graph does not have any horizontal asymptotes Функцияның бүгілген нүктелері жоқ. Message displayed when the graph does not have any inflection points Функцияның "ең үлкен мән" нүктелері жоқ. Message displayed when the graph does not have any maxima Функцияның "ең кіші мән" нүктелері жоқ. Message displayed when the graph does not have any minima Тұрақты String describing constant monotonicity of a function Кемуі бойынша String describing decreasing monotonicity of a function Функциясының біркелкілігін анықтау мүмкін емес. Error displayed when monotonicity cannot be determined Артуы бойынша String describing increasing monotonicity of a function Функциясының біркелкілігі белгісіз болып табылады. Error displayed when monotonicity is unknown Функцияның иілу асимптоталары жоқ. Message displayed when the graph does not have any oblique asymptotes Функцияның жұптығын анықтау мүмкін емес. Error displayed when parity is cannot be determined Функция жұп болып табылады. Message displayed with the function parity is even Функция жұп та, тақ та емес. Message displayed with the function parity is neither even nor odd Функция тақ болып табылады. Message displayed with the function parity is odd Функцияның жұптығы белгісіз болып табылады. Error displayed when parity is unknown Бұл функция үшін кезеңділікке қолдау көрсетілмейді. Error displayed when periodicity is not supported Функция кезеңдік болып табылмайды. Message displayed with the function periodicity is not periodic Функцияның кезеңділігі белгісіз болып табылады. Message displayed with the function periodicity is unknown Бұл мүмкіндіктер Есептегіште есептеу үшін тым күрделі болып табылады: Error displayed when analysis features cannot be calculated Функцияның тік асимптоталары жоқ. Message displayed when the graph does not have any vertical asymptotes Функцияның x-бөліктері жоқ. Message displayed when the graph does not have any x-intercepts Функцияның y-бөліктері жоқ. Message displayed when the graph does not have any y-intercepts Домен Title for KeyGraphFeatures Domain Property Көлденең асимптоталар Title for KeyGraphFeatures Horizontal aysmptotes Property Өзгерістер нүктелері Title for KeyGraphFeatures Inflection points Property Бұл функция үшін талдауға қолдау көрсетілмейді. Error displayed when graph analysis is not supported or had an error. Талдауға тек f(x) форматындағы функцияларда қолдау көрсетіледі. Мысалы: y=x Error displayed when graph analysis detects the function format is not f(x). Ең үлкен мәні Title for KeyGraphFeatures Maxima Property Ең кіші мәні Title for KeyGraphFeatures Minima Property Біркелкілік Title for KeyGraphFeatures Monotonicity Property Көлбеу асимптоталар Title for KeyGraphFeatures Oblique asymptotes Property Бөлік Title for KeyGraphFeatures Parity Property Кезең Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Ауқым Title for KeyGraphFeatures Range Property Тік асимптоталар Title for KeyGraphFeatures Vertical asymptotes Property X-бөлігі Title for KeyGraphFeatures XIntercept Property Y-бөлігі Title for KeyGraphFeatures YIntercept Property Бұл функция үшін талдауды орындау мүмкін болмады. Бұл функция үшін домен есептеу мүмкін емес. Error displayed when Domain is not returned from the analyzer. Бұл функция үшін ауқым есептеу мүмкін емес. Error displayed when Range is not returned from the analyzer. Толып кету (саны тым үлкен) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Радиандар режимі осы теңдеудің графигін құру үшін қажет. Error that occurs during graphing when radians is required. График құру үшін бұл функция тым күрделі Error that occurs during graphing when the equation is too complex. Бұл функцияның графигін құру үшін дәрежелер режимі қажет. Error that occurs during graphing when degrees is required Факторлық функцияда жарамсыз аргумент бар Error that occurs during graphing when a factorial function has an invalid argument. Факторлық функцияда график үшін аргумент тым үлкен Error that occurs during graphing when a factorial has a large n Модульді тек бүтін сандармен ғана қолдануға болады Error that occurs during graphing when modulo is used with a float. Теңдеудің шешімі жоқ Error that occurs during graphing when the equation has no solution. Нөлге бөлінбейді Error that occurs during graphing when a divison by zero occurs. Бұл теңдеуде бір-бірінен ерекшеленетін логикалық шарттар бар Error that occurs during graphing when mutually exclusive conditions are used. Теңдеу доменнен тыс Error that occurs during graphing when the equation is out of domain. Бұл теңдеудің графигін құру мүмкін емес Error that occurs during graphing when the equation is not supported. Теңдеуде ашу жақшасы жоқ Error that occurs during graphing when the equation is missing a ( Теңдеуде жабу жақшасы жоқ Error that occurs during graphing when the equation is missing a ) Санда ондық бөлшектер тым көп Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Ондық бөлшекте сандар жетіспейді Error that occurs during graphing with a decimal point without digits Күтілмеген өрнек соңы Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Өрнекте күтілмеген таңбалар бар Error that occurs during graphing when there is an unexpected token. Өрнектегі таңбалар жарамсыз Error that occurs during graphing when there is an invalid token. Тең белгілері тым көп Error that occurs during graphing when there are too many equals. Функцияда кемінде бір x немесе y айнымалысы болуы керек Error that occurs during graphing when the equation is missing x or y. Өрнек жарамсыз Error that occurs during graphing when an invalid syntax is used. Өрнек бос Error that occurs during graphing when the expression is empty Теңдік теңдеусіз қолданылды Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Функция атауынан кейін жақша жоқ Error that occurs during graphing when parenthesis are missing after a function. Математикалық амалда параметрлердің саны дұрыс емес Error that occurs during graphing when a function has the wrong number of parameters Айнымалы аты жарамсыз Error that occurs during graphing when a variable name is invalid. Теңдеуде ашу жақшасы жоқ Error that occurs during graphing when a { is missing Теңдеуде жабу жақшасы жоқ Error that occurs during graphing when a } is missing. "i" және "I" таңбаларын айнымалылардың атаулары ретінде пайдалану мүмкін емес Error that occurs during graphing when i or I is used. Теңдеудің графигін құру мүмкін болмады General error that occurs during graphing. Берілген база үшін санды шешу мүмкін болмады Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Негіз 2-ден үлкен және 36-дан аз болуы керек Error that occurs during graphing when the base is out of range. Математикалық амал параметрлерінің біреуінің айнымалы болуын талап етеді Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Теңдеу логикалық және скалярлық операндтарды араластыруда Error that occurs during graphing when operands are mixed. Such as true and 1. жоғарғы немесе төменгі шектерде x немесе y айнымалысын пайдалану мүмкін емес Error that occurs during graphing when x or y is used in integral upper limits. x немесе y таңбаларын шекті нүктеде пайдалану мүмкін емес Error that occurs during graphing when x or y is used in the limit point. Күрделі шексіздікті пайдалану мүмкін емес Error that occurs during graphing when complex infinity is used Теңсіздіктерде күрделі сандарды пайдалану мүмкін емес Error that occurs during graphing when complex numbers are used in inequalities. Функциялар тізіміне қайту This is the tooltip for the back button in the equation analysis page in the graphing calculator Функциялар тізіміне қайту This is the automation name for the back button in the equation analysis page in the graphing calculator Талдау функциясы This is the tooltip for the analyze function button Талдау функциясы This is the automation name for the analyze function button Талдау функциясы This is the text for the for the analyze function context menu command Теңдеуді жою This is the tooltip for the graphing calculator remove equation buttons Теңдеуді жою This is the automation name for the graphing calculator remove equation buttons Теңдеуді жою This is the text for the for the remove equation context menu command Ортақ пайдалану This is the automation name for the graphing calculator share button. Бөлісу This is the tooltip for the graphing calculator share button. Теңдеу мәнерін өзгерту This is the tooltip for the graphing calculator equation style button Теңдеу мәнерін өзгерту This is the automation name for the graphing calculator equation style button Теңдеу мәнерін өзгерту This is the text for the for the equation style context menu command Өрнекті көрсету This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Өрнекті жасыру This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1-өрнекті көрсету {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. %1-өрнекті жасыру {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Қадағалауды тоқтату This is the tooltip/automation name for the graphing calculator stop tracing button Қадағалауды бастау This is the tooltip/automation name for the graphing calculator start tracing button Графикті қарау терезесі, x осі %1 және %2 арқылы шектелген, ал y осі %3 және %4 арқылы шектелген, %5 теңдеулерін көрсетіп тұр {Locked="%1","%2", "%3", "%4", "%5"}. Жүгірткіні конфигурациялау This is the tooltip text for the slider options button in Graphing Calculator Жүгірткіні конфигурациялау This is the automation name text for the slider options button in Graphing Calculator Теңдеу режиміне ауысу Used in Graphing Calculator to switch the view to the equation mode Диаграмма режиміне ауысу Used in Graphing Calculator to switch the view to the graph mode Теңдеу режиміне ауысу Used in Graphing Calculator to switch the view to the equation mode Ағымдағы режим — теңдеу режимі Announcement used in Graphing Calculator when switching to the equation mode Ағымдағы режим — диаграмма режимі Announcement used in Graphing Calculator when switching to the graph mode Терезе Heading for window extents on the settings Градус Degrees mode on settings page Градиан Gradian mode on settings page Радиан Radians mode on settings page Бірліктер Heading for Unit's on the settings Көріністі қалпына келтіру Hyperlink button to reset the view of the graph X-ең үлкен X maximum value header X-ең кіші X minimum value header Y-ең үлкен Y Maximum value header Y-ең кіші Y minimum value header График параметрлері This is the tooltip text for the graph options button in Graphing Calculator График параметрлері This is the automation name text for the graph options button in Graphing Calculator График параметрлері Heading for the Graph options flyout in Graphing mode. Айнымалы параметрлер Screen reader prompt for the variable settings toggle button Айнымалы параметрлерін ауыстыру Tool tip for the variable settings toggle button Сызық қалыңдығы Heading for the Graph options flyout in Graphing mode. Сызық параметрлері Heading for the equation style flyout in Graphing mode. Кішкентай сызық ені Automation name for line width setting Орташа сызық ені Automation name for line width setting Үлкен сызық ені Automation name for line width setting Өте үлкен сызық ені Automation name for line width setting Өрнекті енгізіңіз this is the placeholder text used by the textbox to enter an equation Көшіру Copy menu item for the graph context menu Қиып алу Cut menu item from the Equation TextBox Көшіру Copy menu item from the Equation TextBox Қою Paste menu item from the Equation TextBox Болдырмау Undo menu item from the Equation TextBox Барлығын таңдау Select all menu item from the Equation TextBox Функцияны енгізу The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Функцияны енгізу The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Функцияның кіріс тақтасы The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Айнымалылар тақтасы The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Айнымалылар тізімі The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Айнымалының %1 тізім элементі The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Айнымалы мәнінің мәтін жолағы The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Айнымалы мәнінің жүгірткісі The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Айнымалының минималды мәнінің мәтін жолағы The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Айнымалының қадам мәнінің мәтін жолағы The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Айнымалының максималды мәнінің мәтін жолағы The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Тұтас сызық түрі Name of the solid line style for a graphed equation Пунктирлі сызық түрі Name of the dotted line style for a graphed equation Штрихті сызық түрі Name of the dashed line style for a graphed equation Қою көк Name of color in the color picker Теңіз көбігі Name of color in the color picker Күлгін Name of color in the color picker Жасыл Name of color in the color picker Жалбыз түстес жасыл Name of color in the color picker Күңгірт жасыл Name of color in the color picker Көмір түстес Name of color in the color picker Қызыл Name of color in the color picker Ашық алхоры түсті Name of color in the color picker Қызыл күрең Name of color in the color picker Алтын сары Name of color in the color picker Ашық қызғылт сары Name of color in the color picker Қоңыр Name of color in the color picker Қара Name of color in the color picker Ақ Name of color in the color picker Түс 1 Name of color in the color picker Түс 2 Name of color in the color picker Түс 3 Name of color in the color picker Түс 4 Name of color in the color picker График тақырыбы Graph settings heading for the theme options Әрқашан ашық Graph settings option to set graph to light theme Бағдарлама тақырыбын салыстыру Graph settings option to set graph to match the app theme Тақырып This is the automation name text for the Graph settings heading for the theme options Әрқашан ашық This is the automation name text for the Graph settings option to set graph to light theme Бағдарлама тақырыбын салыстыру This is the automation name text for the Graph settings option to set graph to match the app theme Функция жойылған Announcement used in Graphing Calculator when a function is removed from the function list Функцияны талдау теңдеуінің жолағы This is the automation name text for the equation box in the function analysis panel Тең Screen reader prompt for the equal button on the graphing calculator operator keypad Мынадан аз Screen reader prompt for the Less than button Кіші не тең Screen reader prompt for the Less than or equal button Тең Screen reader prompt for the Equal button Үлкен не тең Screen reader prompt for the Greater than or equal button Мынадан көп Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Жіберу Screen reader prompt for the submit button on the graphing calculator operator keypad Функцияны талдау Screen reader prompt for the function analysis grid График параметрлері Screen reader prompt for the graph options panel Журнал және жад тізімдері Automation name for the group of controls for history and memory lists. Жад тізімі Automation name for the group of controls for memory list. %1 журнал слоты тазаланды {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Есептегіш әрқашан жоғарыда Announcement to indicate calculator window is always shown on top. Толық көрініске есептегішті қайтарыңыз Announcement to indicate calculator window is now back to full view. Арифметикалық жылжыту таңдалды Label for a radio button that toggles arithmetic shift behavior for the shift operations. Логикалық жылжыту таңдалды Label for a radio button that toggles logical shift behavior for the shift operations. Айнымалы жылжытуды айналдыру таңдалды Label for a radio button that toggles rotate circular behavior for the shift operations. Айнымалы жылжытуды орындау арқылы айналдыру таңдалды Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Параметрлер Header text of Settings page Көрініс Subtitle of appearance setting on Settings page Бағдарлама тақырыбы Title of App theme expander Көрсетілетін бағдарлама тақырыбын таңдау Description of App theme expander Ашық Lable for light theme option Күңгірт Lable for dark theme option Жүйе параметрін пайдалану Lable for the app theme option to use system setting Артқа Screen reader prompt for the Back button in title bar to back to main page Параметрлер беті Announcement used when Settings page is opened Қолжетімді әрекеттер үшін қалқымалы мәзірді ашу Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Бұл есеп суретін қалпына келтіру мүмкін болмады. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/km-KH/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ការបញ្ចូលមិនត្រឹមត្រូវ Error message shown when the input makes a function fail, like log(-1) លទ្ធផលគឺមិនបានកំណត់ Error message shown when there's no possible value for a function. អង្គចងចាំមិនគ្រប់គ្រាន់ Error message shown when we run out of memory during a calculation. ការហៀរ Error message shown when there's an overflow during the calculation. លទ្ធផលមិនបានកំណត់ Same as 101 លទ្ធផលមិនបានកំណត់ Same 101 ការហៀរ Same as 107 ការហៀរ Same 107 មិនអាចចែកនឹងសូន្យទេ Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/km-KH/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ម៉ាស៊ីនគិតលេខ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. ម៉ាស៊ីនគិតលេខ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows ម៉ាស៊ីនគិតលេខ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows ម៉ាស៊ីនគិតលេខ [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. ម៉ាស៊ីនគិតលេខ {@Appx_Description@} This description is used for the official application when published through Windows Store. ម៉ាស៊ីនគិតលេខ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. ចម្លង Copy context menu string បិទភ្ជាប់ Paste context menu string ប្រហែលជាស្មើ The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, តម្លៃ %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1ប៊ីត {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) ទី 63 Sub-string used in automation name for 63 bit in bit flip ទី 62 Sub-string used in automation name for 62 bit in bit flip ទី 61 Sub-string used in automation name for 61 bit in bit flip ទី 60 Sub-string used in automation name for 60 bit in bit flip ទី 59 Sub-string used in automation name for 59 bit in bit flip ទី 58 Sub-string used in automation name for 58 bit in bit flip ទី 57 Sub-string used in automation name for 57 bit in bit flip ទី 56 Sub-string used in automation name for 56 bit in bit flip ទី 55 Sub-string used in automation name for 55 bit in bit flip ទី 54 Sub-string used in automation name for 54 bit in bit flip ទី 53 Sub-string used in automation name for 53 bit in bit flip ទី 52 Sub-string used in automation name for 52 bit in bit flip ទី 51 Sub-string used in automation name for 51 bit in bit flip ទី 50 Sub-string used in automation name for 50 bit in bit flip ទី 49 Sub-string used in automation name for 49 bit in bit flip ទី 48 Sub-string used in automation name for 48 bit in bit flip ទី 47 Sub-string used in automation name for 47 bit in bit flip ទី 46 Sub-string used in automation name for 46 bit in bit flip ទី 45 Sub-string used in automation name for 45 bit in bit flip ទី 44 Sub-string used in automation name for 44 bit in bit flip ទី 43 Sub-string used in automation name for 43 bit in bit flip ទី 42 Sub-string used in automation name for 42 bit in bit flip ទី 41 Sub-string used in automation name for 41 bit in bit flip ទី 40 Sub-string used in automation name for 40 bit in bit flip ទី 39 Sub-string used in automation name for 39 bit in bit flip ទី 38 Sub-string used in automation name for 38 bit in bit flip ទី 37 Sub-string used in automation name for 37 bit in bit flip ទី 36 Sub-string used in automation name for 36 bit in bit flip ទី 35 Sub-string used in automation name for 35 bit in bit flip ទី 34 Sub-string used in automation name for 34 bit in bit flip ទី 33 Sub-string used in automation name for 33 bit in bit flip ទី 32 Sub-string used in automation name for 32 bit in bit flip ទី 31 Sub-string used in automation name for 31 bit in bit flip ទី 30 Sub-string used in automation name for 30 bit in bit flip ទី 29 Sub-string used in automation name for 29 bit in bit flip ទី 28 Sub-string used in automation name for 28 bit in bit flip ទី 27 Sub-string used in automation name for 27 bit in bit flip ទី 26 Sub-string used in automation name for 26 bit in bit flip ទី 25 Sub-string used in automation name for 25 bit in bit flip ទី 24 Sub-string used in automation name for 24 bit in bit flip ទី 23 Sub-string used in automation name for 23 bit in bit flip ទី 22 Sub-string used in automation name for 22 bit in bit flip ទី 21 Sub-string used in automation name for 21 bit in bit flip ទី 20 Sub-string used in automation name for 20 bit in bit flip ទី 19 Sub-string used in automation name for 19 bit in bit flip ទី 18 Sub-string used in automation name for 18 bit in bit flip ទី 17 Sub-string used in automation name for 17 bit in bit flip ទី 16 Sub-string used in automation name for 16 bit in bit flip ទី 15 Sub-string used in automation name for 15 bit in bit flip ទី 14 Sub-string used in automation name for 14 bit in bit flip ទី 13 Sub-string used in automation name for 13 bit in bit flip ទី 12 Sub-string used in automation name for 12 bit in bit flip ទី 11 Sub-string used in automation name for 11 bit in bit flip ទី 10 Sub-string used in automation name for 10 bit in bit flip ទី 9 Sub-string used in automation name for 9 bit in bit flip ទី 8 Sub-string used in automation name for 8 bit in bit flip ទី 7 Sub-string used in automation name for 7 bit in bit flip ទី 6 Sub-string used in automation name for 6 bit in bit flip ទី 5 Sub-string used in automation name for 5 bit in bit flip ទី 4 Sub-string used in automation name for 4 bit in bit flip ទី 3 Sub-string used in automation name for 3 bit in bit flip ទី 2 Sub-string used in automation name for 2 bit in bit flip ទី 1 Sub-string used in automation name for 1 bit in bit flip ប៊ីតសំខាន់តិចបំផុត Used to describe the first bit of a binary number. Used in bit flip បើកផ្ទាំងលេចឡើងអង្គចងចាំ This is the automation name and label for the memory button when the memory flyout is closed. បិទផ្ទាំងលេចឡើងអង្គចងចាំ This is the automation name and label for the memory button when the memory flyout is open. រក្សានៅខាងលើ This is the tool tip automation name for the always-on-top button when out of always-on-top mode. ថយទៅទិដ្ឋភាពពេញលេញ This is the tool tip automation name for the always-on-top button when in always-on-top mode. អង្គចងចាំ This is the tool tip automation name for the memory button. ប្រវត្តិ (Ctrl+H) This is the tool tip automation name for the history button. ក្តារចុចបិទបើកប៊ីត This is the tool tip automation name for the bitFlip button. បន្ទះគ្រាប់ពេញលេញ This is the tool tip automation name for the numberPad button. លុបអង្គចងចាំទាំងអស់ (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. អង្គចងចាំ The text that shows as the header for the memory list អង្គចងចាំ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ប្រវត្តិ The text that shows as the header for the history list ប្រវត្តិ The automation name for the History pivot item that is shown when Calculator is in wide layout. អង្គបំលែង Label for a control that activates the unit converter mode. បែបវិទ្យាសាស្ត្រ Label for a control that activates scientific mode calculator layout ស្ដង់ដារ Label for a control that activates standard mode calculator layout. ម៉ូដបំប្លែង Screen reader prompt for a control that activates the unit converter mode. ម៉ូដវិទ្យាសាស្ត្រ Screen reader prompt for a control that activates scientific mode calculator layout ម៉ូដស្ដង់ដារ Screen reader prompt for a control that activates standard mode calculator layout. លុបប្រវត្តិទាំងអស់ "ClearHistory" used on the calculator history pane that stores the calculation history. លុបប្រវត្តិទាំងអស់ This is the tool tip automation name for the Clear History button. លាក់ "HideHistory" used on the calculator history pane that stores the calculation history. ស្ដង់ដារ The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. បែបវិទ្យាសាស្ត្រ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. អ្នកសរសេរកម្មវិធីកុំព្យូទ័រ The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. អង្គបំលែង The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". ម៉ាស៊ីនគិតលេខ The text that shows in the dropdown navigation control for the calculator group. អង្គបំលែង The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". ម៉ាស៊ីនគិតលេខ The text that shows in the dropdown navigation control for the calculator group in upper case. អង្គបម្លែង Pluralized version of the converter group text, used for the screen reader prompt. ម៉ាស៊ីនគិតលេខ Pluralized version of the calculator group text, used for the screen reader prompt. ការបង្ហាញគឺ %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". កន្សោមពាក្យគឺ %1, ព័ត៌មានបញ្ចូលបច្ចុប្បន្នគឺ %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ការបង្ហាញគឺ %1 ពិន្ទុ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. កន្សោម​គឺ %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". បង្ហាញតម្លៃដែលបានចម្លងទៅឃ្លីបបត Screen reader prompt for the Calculator display copy button, when the button is invoked. ប្រវត្តិ Screen reader prompt for the history flyout អង្គចងចាំ Screen reader prompt for the memory flyout ចំនួនគោលដប់ប្រាំមួយ %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ទសភាគ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". អុកតាល់ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ចំនួនគោលពីរ %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". លុបប្រវត្តិទាំងអស់ Screen reader prompt for the Calculator History Clear button ប្រវត្តិដែលបានលុប Screen reader prompt for the Calculator History Clear button, when the button is invoked. លាក់ប្រវត្តិ Screen reader prompt for the Calculator History Hide button បើកផ្ទាំងលេចឡើងប្រវត្តិ Screen reader prompt for the Calculator History button, when the flyout is closed. បិទផ្ទាំងលេចឡើងប្រវត្តិ Screen reader prompt for the Calculator History button, when the flyout is open. រក្សាទុកអង្គចងចាំ Screen reader prompt for the Calculator Memory button រក្សាទុកអង្គចងចាំ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. លុបអង្គចងចាំទាំងអស់ Screen reader prompt for the Calculator Clear Memory button អង្គចងចាំត្រូវបានលុប Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. ហៅអង្គចងចាំឡើងវិញ Screen reader prompt for the Calculator Memory Recall button រំលឹកអង្គចងចាំ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. បញ្ចូលអង្គចងចាំ Screen reader prompt for the Calculator Memory Add button បន្ថែមអង្គចងចាំ (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. ដកអង្គចងចាំ Screen reader prompt for the Calculator Memory Subtract button អង្គចងចាំដក (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. លុបធាតុអង្គចងចាំ Screen reader prompt for the Calculator Clear Memory button លុបធាតុអង្គចងចាំ This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. បន្ថែមទៅធាតុអង្គចងចាំ Screen reader prompt for the Calculator Memory Add button in the Memory list បន្ថែមទៅធាតុអង្គចងចាំ This is the tool tip automation name for the Calculator Memory Add button in the Memory list ដកចេញពីធាតុអង្គចងចាំ Screen reader prompt for the Calculator Memory Subtract button in the Memory list ដកចេញពីធាតុអង្គចងចាំ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list លុបធាតុអង្គចងចាំ Screen reader prompt for the Calculator Clear Memory button លុបធាតុអង្គចងចាំ Text string for the Calculator Clear Memory option in the Memory list context menu បន្ថែមទៅធាតុអង្គចងចាំ Screen reader prompt for the Calculator Memory Add swipe button in the Memory list បន្ថែមទៅធាតុអង្គចងចាំ Text string for the Calculator Memory Add option in the Memory list context menu ដកចេញពីធាតុអង្គចងចាំ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list ដកចេញពីធាតុអង្គចងចាំ Text string for the Calculator Memory Subtract option in the Memory list context menu លុប Text string for the Calculator Delete swipe button in the History list ចម្លង Text string for the Calculator Copy option in the History list context menu លុប Text string for the Calculator Delete option in the History list context menu លុបធាតុប្រវត្តិ Screen reader prompt for the Calculator Delete swipe button in the History list លុបធាតុប្រវត្តិ Screen reader prompt for the Calculator Delete option in the History list context menu ឃី Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button សូន្យ Screen reader prompt for the Calculator number "0" button មួយ Screen reader prompt for the Calculator number "1" button ពីរ Screen reader prompt for the Calculator number "2" button បី Screen reader prompt for the Calculator number "3" button បួន Screen reader prompt for the Calculator number "4" button ប្រាំ Screen reader prompt for the Calculator number "5" button ប្រាំមួយ Screen reader prompt for the Calculator number "6" button ប្រាំពីរ Screen reader prompt for the Calculator number "7" button ប្រាំបី Screen reader prompt for the Calculator number "8" button ប្រាំបួន Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button និង Screen reader prompt for the Calculator And button Screen reader prompt for the Calculator Or button មិនមែន Screen reader prompt for the Calculator Not button បង្វិលនៅខាងឆ្វេង Screen reader prompt for the Calculator ROL button បង្វិលនៅខាងស្ដាំ Screen reader prompt for the Calculator ROR button ឃី shift ឆ្វេង Screen reader prompt for the Calculator LSH button ឃី shift ស្ដាំ Screen reader prompt for the Calculator RSH button ផ្តាច់មុខឬ Screen reader prompt for the Calculator XOR button បិទបើកពាក្យបួនដង Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". បិទបើកពាក្យពីរដង Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". បិទបើកពាក្យ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". បិទបើកបៃ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". ក្តារចុចបិទបើកប៊ីត Screen reader prompt for the Calculator bitFlip button បន្ទះគ្រាប់ពេញលេញ Screen reader prompt for the Calculator numberPad button សញ្ញាក្បៀស Screen reader prompt for the "." button លុបការបញ្ចូល Screen reader prompt for the "CE" button លុប Screen reader prompt for the "C" button ចែកនឹង Screen reader prompt for the divide button on the number pad គុណនឹង Screen reader prompt for the multiply button on the number pad ស្មើ Screen reader prompt for the equals button on the scientific operator keypad អនុគមន៍ច្រាស Screen reader prompt for the shift button on the number pad in scientific mode. ដក Screen reader prompt for the minus button on the number pad ដក We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 បូក Screen reader prompt for the plus button on the number pad ឫសការ៉េ Screen reader prompt for the square root button on the scientific operator keypad ភាគរយ Screen reader prompt for the percent button on the scientific operator keypad វិជ្ជមាន អវិជ្ជមាន Screen reader prompt for the negate button on the scientific operator keypad វិជ្ជមាន អវិជ្ជមាន Screen reader prompt for the negate button on the converter operator keypad ច្រាស Screen reader prompt for the invert button on the scientific operator keypad វង់ក្រចកឆ្វេង Screen reader prompt for the Calculator "(" button on the scientific operator keypad វង់ក្រចកឆ្វេង បើកការរាប់វង់ក្រចក%1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". វង់ក្រចកស្តាំ Screen reader prompt for the Calculator ")" button on the scientific operator keypad ការរាប់រង្វង់ក្រចកបើក %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". មិនមានរង្វង់ក្រចកបើកដែលត្រូវបិទឡើយ។ {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". ចំណារវិទ្យាសាស្រ្ត Screen reader prompt for the Calculator F-E the scientific operator keypad មុខងារអ៊ីពែរបូលិក Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad ស៊ីនុស Screen reader prompt for the Calculator sin button on the scientific operator keypad កូស៊ីនុស Screen reader prompt for the Calculator cos button on the scientific operator keypad តង់ហ្សង់ Screen reader prompt for the Calculator tan button on the scientific operator keypad អ៊ីពែប៉ូលិកស៊ីនុស Screen reader prompt for the Calculator sinh button on the scientific operator keypad អ៊ីពែប៉ូលិកកូស៊ីនុស Screen reader prompt for the Calculator cosh button on the scientific operator keypad អ៊ីពែប៉ូលិកតង់សង់ Screen reader prompt for the Calculator tanh button on the scientific operator keypad ការ៉េ Screen reader prompt for the x squared on the scientific operator keypad. គូប Screen reader prompt for the x cubed on the scientific operator keypad. អ័ក្ស​ស៊ីនុស Screen reader prompt for the inverted sin on the scientific operator keypad. អ័ក្ស​កូស៊ីនុស Screen reader prompt for the inverted cos on the scientific operator keypad. អ័ក្សតង់ហ្សង់ Screen reader prompt for the inverted tan on the scientific operator keypad. អ៊ីព័របូលិកអ័ក្សកូស៊ីនុស Screen reader prompt for the inverted sinh on the scientific operator keypad. អ៊ីព័របូលិកអ័ក្សកូស៊ីនុស Screen reader prompt for the inverted cosh on the scientific operator keypad. អ៊ីព័របូលិកអ័ក្សតង់ហ្សង់ Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' ជានិទស្សន្ត Screen reader prompt for x power y button on the scientific operator keypad. ដប់ជានិទស្សន្ត Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' ជានិទស្សន្ត Screen reader for the e power x on the scientific operator keypad. ឫសទី 'y' នៃ 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. លោការីត Screen reader for the log base 10 on the scientific operator keypad លោការីតដើម Screen reader for the log base e on the scientific operator keypad រកសំណល់ផលចែក Screen reader for the mod button on the scientific operator keypad អ៊ិចស្ប៉ូណង់ស្យាល់ Screen reader for the exp button on the scientific operator keypad ដឺក្រេ នាទី វិនាទី Screen reader for the exp button on the scientific operator keypad ដឺក្រេ Screen reader for the exp button on the scientific operator keypad ផ្នែកចំនួនគត់ Screen reader for the int button on the scientific operator keypad ផ្នែកចំនួនប្រភាគ Screen reader for the frac button on the scientific operator keypad ហ្វាក់តូរីយ្យែល Screen reader for the factorial button on the basic operator keypad បិទបើកដឺក្រេ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". បិទបើកហ្គ្រាដ្យង់ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". បិទបើកហ្គ្រាដ្យង់ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". ម៉ឺនុយធ្លាក់​ចុះ​នៃម៉ូដ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. ម៉ឺនុយធ្លាក់​ចុះ​នៃ​ប្រភេទ Screen reader prompt for the Categories dropdown field. រក្សានៅខាងលើ Screen reader prompt for the Always-on-Top button when in normal mode. ថយទៅទិដ្ឋភាពពេញលេញ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. រក្សានៅខាងលើ (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. ថយទៅទិដ្ឋភាពពេញ (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. បម្លែងពី %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. បម្លែងពី %1 ចុច%2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. បម្លែងទៅជា %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 គឺ %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. ឯកតាបញ្ចូល Screen reader prompt for the Unit Converter Units1 i.e. top units field. ឯកតាលទ្ធផល Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. ផ្ទៃ Unit conversion category name called Area (eg. area of a sports field in square meters) ទិន្នន័យ Unit conversion category name called Data ថាមពល Unit conversion category name called Energy. (eg. the energy in a battery or in food) ប្រវែង Unit conversion category name called Length កម្លាំង Unit conversion category name called Power (eg. the power of an engine or a light bulb) ល្បឿន Unit conversion category name called Speed ពេលវេលា Unit conversion category name called Time រង្វាស់ Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) សីតុណ្ហភាព Unit conversion category name called Temperature ទម្ងន់ និងម៉ាស់ Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. សម្ពាធ Unit conversion category name called Pressure មុំ Unit conversion category name called Angle រូបិយវត្ថុ Unit conversion category name called Currency អោនរាវ (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume អោនរាវ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume ហ្គាលុង (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume ហ្គាលុង (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume លីត្រ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume មីលីលីត្រ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume ផាញ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume ផាញ (សរដ្ឋអាមេរិក) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume ស្លាបព្រាបាយ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (US) An abbreviation for a measurement unit of volume កូនស្លាបព្រា (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (US) An abbreviation for a measurement unit of volume ស្លាបព្រាបាយ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (UK) An abbreviation for a measurement unit of volume កូនស្លាបព្រា (ចក្រភពអង់គ្លេស) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (UK) An abbreviation for a measurement unit of volume ក្វាត (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume ក្វាត (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume ពែង (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ពែង (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time អង្សាសេ An abbreviation for "degrees Celsius" អង្សាហ្វារិនហៃ An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy គីឡូវ៉ាត់ក្នុងមួយម៉ោង An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data អារ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឯកតាកម្ដៅអង់គ្លេស A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/នាទី A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) បៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) កាឡូរីកម្ដៅ A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សង់ទីម៉ែត្រ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សង់ទីម៉ែត្រក្នុងមួយវិនាទី A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សង់ទីម៉ែត្រគូប A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វ៊ីតគូប A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ីញគូប A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ែត្រគូប A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ាតគូប A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ថ្ងៃ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អង្សារ An option in the unit converter to select degrees Celsius ហ្វារិនហាយ An option in the unit converter to select degrees Fahrenheit អេឡិកត្រុងវ៉ុលត៍ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វ៊ីត A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វីតក្នុងមួយវិនាទី A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វ៊ីត-ផោន A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វ៊ីត-ផោន/នាទី A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ជីកាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ជីកាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហិកតា A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) កម្លាំងសេះ (US) A measurement unit for power ម៉ោង A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ីញ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ស៊ូល A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូវ៉ាត់ម៉ោង A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) កាវវិន An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". គីឡូប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) កាឡូរីអាហារ A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូស៊ូល A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូម៉ែត្រ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូម៉ែត្រក្នុងមួយម៉ោង A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូវ៉ាត់ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ណត A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាច A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) មេកាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មេកាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ែត្រ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ែត្រក្នុងមួយវិនាទី A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីក្រុង A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីក្រូវិនាទី A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាយល៍ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាយល៍ក្នុងមួយម៉ោង A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីលីម៉ែត្រ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីលីវិនាទី A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) នាទី A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) នីបប៊ល A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ណាណូម៉ែត្រ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អង់ស្ត្រូម A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) រង្វាស់ចម្ងាយនាវាចរ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប៉េតាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប៉េតាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) វិនាទី A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សង់ទីម៉ែត្រការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្វ៊ីតការ់េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ីញការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូម៉ែត្រការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ែត្រការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាយល៍ការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីលីម៉ែត្រការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ាតការ៉េ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តេរ៉ាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តេរ៉ាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) វ៉ាត់ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សប្ដាហ៍ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ាត A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឆ្នាំ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ស៊ីឌី An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle Grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight តោន (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight តោន (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight ការ៉ាត់ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដឺក្រេ A measurement unit for Angle. រ៉ាដ្យង់ A measurement unit for Angle. ហ្គ្រាដ្យង់ A measurement unit for Angle. បរិយាកាស A measurement unit for Pressure. សសរ A measurement unit for Pressure. គីឡូប៉ាល់ស្កាល់ A measurement unit for Pressure. មីលីម៉ែត្របារ៉ត A measurement unit for Pressure. ប៉ាល់ស្កាល់ A measurement unit for Pressure. ផោនក្នុងមួយអ៊ីញការ៉េ A measurement unit for Pressure. សង់ទីក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដេកាក្រាម A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដេស៊ីក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហិកតូក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីឡូក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តោនធំ​ (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មីលីក្រាម A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អោន A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ផោន A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តោនតូច (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដុំថ្ម A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តោនមេទ្រិច A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ស៊ីឌី A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ស៊ីឌី A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) វាលបាល់ទាត់ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) វាលបាល់ទាត់ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឌីសស្គិត A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឌីសស្គិត A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឌីវីឌី A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ឌីវីឌី A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ថ្ម AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ថ្ម AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប្រដាប់កិបក្រដាស A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប្រដាប់កិបក្រដាស A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យន្តហោះប្រតិកម្មយក្ស A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យន្តហោះប្រតិកម្មយក្ស A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អំពូលភ្លើង A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អំពូលភ្លើង A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សេះ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សេះ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អាងទឹក A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អាងទឹក A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ផ្កាព្រិល A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ផ្កាព្រិល A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដំរី An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ដំរី An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អណ្ដើក A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អណ្ដើក A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យន្តហោះប្រតិកម្ម A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យន្តហោះប្រតិកម្ម A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ត្រីបាឡែន A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ត្រីបាឡែន A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ពែងកាហ្វេ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ពែងកាហ្វេ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អាងហែលទឹក An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អាងហែលទឹក An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហត្ថ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហត្ថ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សន្លឹកក្រដាស A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) សន្លឹកក្រដាស A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប្រាសាទ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប្រាសាទ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ចេក A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ចេក A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ចំណិតនំ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ចំណិតនំ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាស៊ីនរថភ្លើង A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ម៉ាស៊ីនរថភ្លើង A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) បាល់ទាត់ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) បាល់ទាត់ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ធាតុអង្គចងចាំ Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) ថយក្រោយ Screen reader prompt for the About panel back button ថយក្រោយ Content of tooltip being displayed on AboutControlBackButton លក្ខខណ្ឌអាជ្ញាប័ណ្ណសូហ្វវែរបស់ Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel ការមើល​ជា​មុន Label displayed next to upcoming features ព័ត៌មានឯកជនភាព Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. រក្សាសិទ្ធិគ្រប់បែបយ៉ាង។ {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) ដើម្បីស្វែងយល់​​អំពី​របៀប​​ដែល​អ្នក​អាច​​ចូលរួមចំណែក​ក្នុង​ម៉ាស៊ីនគិតលេខ Windows សូមពិនិត្យមើល​គម្រោងនៅលើ %HL%GitHub%HL%។ {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel អំពី Subtitle of about message on Settings page ផ្ញើមតិប្រតិកម្ម The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app មិនទាន់មានប្រវត្តិនៅឡើយទេ។ The text that shows as the header for the history list មិនមានអ្វីត្រូវបានរក្សាទុកក្នុងអង្គចងចាំទេ។ The text that shows as the header for the memory list អង្គចងចាំ Screen reader prompt for the negate button on the converter operator keypad ការបង្ហាញនេះមិនអាចត្រូវបានបិទភ្ជាប់ The paste operation cannot be performed, if the expression is invalid. ជីប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ជីប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) គីប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មេប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) មេប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប៉េប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ប៉េប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តេប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) តេប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ិចហ្សាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ិចហ្សាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ិចប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) អ៊ិចប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្សេតាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្សេតាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្សេប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ហ្សេប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ូតាប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ូតាបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ូប៊ីប៊ីត A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) យ៉ូប៊ីបៃ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ការគណនាកាលបរិច្ឆេទ ម៉ូដការគណនា Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". បន្ថែម Add toggle button text បន្ថែម ឬដកថ្ងៃ Add or Subtract days option កាលបរិច្ឆេទ Date result label ផលសងរវាងកាលបរិច្ឆេទ Date difference option ថ្ងៃ Add/Subtract Days label ផលសង Difference result label ពី From Date Header for Difference Date Picker ខែ Add/Subtract Months label ដក Subtract toggle button text ដល់ To Date Header for Difference Date Picker ឆ្នាំ Add/Subtract Years label កាលបរិច្ឆេទក្រៅដែនកំណត់ Out of bound message shown as result when the date calculation exceeds the bounds ថ្ងៃ ថ្ងៃ ខែ ខែ កាលបរិច្ឆេទដូចគ្នា សប្តាហ៍ សប្ដាហ៍ ឆ្នាំ ឆ្នាំ ផលសង %1 Automation name for reading out the date difference. %1 = Date difference កាលបរិច្ឆេទលទ្ធផល %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date ម៉ូដម៉ាស៊ីនគិតលេខ%1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. ម៉ូដអង្គបំលែង %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. ម៉ូដគណនាកាលបរិច្ឆេទ Automation name for when the mode header is focused and the current mode is Date calculation. បញ្ជីប្រវត្តិ និងអង្គចងចាំ Automation name for the group of controls for history and memory lists. ការគ្រប់គ្រងអង្គចងចាំ Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) មុខងារស្ដង់ដារ Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) ការគ្រប់គ្រងការបង្ហាញ Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) ប្រតិបត្តិករស្តង់ដារ Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) បន្ទះលេខ Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) ប្រតិបត្តិករជ្រុង Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) មុខងារបែបវិទ្យាសាស្រ្ត Automation name for the group of Scientific functions. ការជ្រើសរើសគោល Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix ប្រតិបត្តិករអ្នកសរសេរកម្មវិធី Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). ការជ្រើសម៉ូដបញ្ចូល Automation name for the group of input mode toggling buttons. ប្រអប់វាយអក្សរប៊ីតបិទបើក Automation name for the group of bit toggling buttons. រមូរកន្សោមទៅខាងឆ្វេង Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. រមូរកន្សោមទៅខាងស្ដាំ Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. បានឈានដល់​ខ្ទង់អតិបរមា។ %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 រក្សាទុកទៅអង្គចងចាំ {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". រន្ធដោតអង្គចងចាំ %1 គឺ %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". រន្ធអង្គចងចាំ %1 ត្រូវបានលុប {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". ចែកដោយ Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ពេលវេលា Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ដក Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. បូក Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ទៅកាន់កម្លាំងនៃ Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. ឬស y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ឃី shift ខាងឆ្វេង Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. ឃី shift ខាងស្តាំ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ឬ Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. និង Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. បានអាប់ដេត %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" អាប់ដេតការផ្តល់ចំណាត់ថ្នាក់ The text displayed for a hyperlink button that refreshes currency converter ratios. ការគិតថ្លៃទិន្នន័យអាចត្រូវបានអនុវត្ត។ The text displayed when users are on a metered connection and using currency converter. មិនអាចទទួលបានអត្រាថ្មីៗ។ ព្យាយាមម្តងទៀតនៅពេលក្រោយ។ The text displayed when currency ratio data fails to load. ក្រៅបណ្តាញ។ សូមពិនិត្យមើល%HL%ការកំណត់បណ្ដាញ%HL%របស់អ្នក Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} កំពុងអាប់ដេតអត្រារូបិយប័ណ្ណ This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. បានអាប់ដេតអត្រារូបិយប័ណ្ណ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. មិនអាចអាប់ដេតអត្រាផ្សេងៗ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} លុបអង្គចងចាំទាំងអស់ (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. លុបអង្គចងចាំទាំងអស់ Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ដឺក្រេស៊ីន Name for the sine function in degrees mode. Used by screen readers. រ៉ាដ្យង់ស៊ីន Name for the sine function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់ស៊ីន Name for the sine function in gradians mode. Used by screen readers. ដឺក្រេស៊ីនបញ្ច្រាស Name for the inverse sine function in degrees mode. Used by screen readers. រ៉ាដ្យង់ស៊ីនបញ្ច្រាស Name for the inverse sine function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់ស៊ីនបញ្ច្រាស Name for the inverse sine function in gradians mode. Used by screen readers. ស៊ីនអ៊ីព័របូលិក Name for the hyperbolic sine function. Used by screen readers. ស៊ីនអ៊ីពែរបូលិកបញ្ច្រាស Name for the inverse hyperbolic sine function. Used by screen readers. ដឺក្រេកូស៊ីន Name for the cosine function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូស៊ីន Name for the cosine function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់កូស៊ីន Name for the cosine function in gradians mode. Used by screen readers. ដឺក្រេកូស៊ីនបញ្ច្រាស Name for the inverse cosine function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូស៊ីនបញ្ច្រាស Name for the inverse cosine function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់កូស៊ីនបញ្ច្រាស Name for the inverse cosine function in gradians mode. Used by screen readers. កូស៊ីនអ៊ីព័របូលិក Name for the hyperbolic cosine function. Used by screen readers. កូស៊ីនអ៊ីព័របូលិកបញ្ច្រាស Name for the inverse hyperbolic cosine function. Used by screen readers. ដឺក្រេតង់ហ្យង់ Name for the tangent function in degrees mode. Used by screen readers. រ៉ាដ្យង់តង់ហ្សង់ Name for the tangent function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់តង់ហ្សង់ Name for the tangent function in gradians mode. Used by screen readers. ដឺក្រេតង់ហ្សង់បញ្ច្រាស Name for the inverse tangent function in degrees mode. Used by screen readers. រ៉ាដ្យង់តង់ហ្សង់បញ្ច្រាស Name for the inverse tangent function in radians mode. Used by screen readers. ហ្គ្រាដ្យង់តង់ហ្សង់បញ្ច្រាស Name for the inverse tangent function in gradians mode. Used by screen readers. តង់ហ្សង់អ៊ីព័របូលិក Name for the hyperbolic tangent function. Used by screen readers. តង់ហ្សង់អ៊ីពែរបូលិកបញ្ច្រាស Name for the inverse hyperbolic tangent function. Used by screen readers. ដឺក្រេសេកង់ Name for the secant function in degrees mode. Used by screen readers. រ៉ាដ្យង់សេកង់ Name for the secant function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់សេកង់ Name for the secant function in gradians mode. Used by screen readers. ដឺក្រេសេកង់ច្រាស Name for the inverse secant function in degrees mode. Used by screen readers. រ៉ាដ្យង់សេកង់ច្រាស Name for the inverse secant function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់សេកង់ច្រាស Name for the inverse secant function in gradians mode. Used by screen readers. សេកង់អ៊ីពែរបូលិក Name for the hyperbolic secant function. Used by screen readers. សេកង់អ៊ីពែរបូលិកច្រាស Name for the inverse hyperbolic secant function. Used by screen readers. ដឺក្រេកូសេកង់ Name for the cosecant function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូសេកង់ Name for the cosecant function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់កូសេកង់ Name for the cosecant function in gradians mode. Used by screen readers. ដឺក្រេកូសេកង់ច្រាស Name for the inverse cosecant function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូសេកង់ច្រាស Name for the inverse cosecant function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់កូសេកង់ច្រាស Name for the inverse cosecant function in gradians mode. Used by screen readers. កូសេកង់អ៊ីពែរបូលិក Name for the hyperbolic cosecant function. Used by screen readers. កូសេកង់អ៊ីពែរបូលិកច្រាស Name for the inverse hyperbolic cosecant function. Used by screen readers. ដឺក្រេកូតង់ហ្សង់ Name for the cotangent function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូតង់ហ្សង់ Name for the cotangent function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់កូតង់ហ្សង់ Name for the cotangent function in gradians mode. Used by screen readers. ដឺក្រេកូតង់ហ្សង់ច្រាស Name for the inverse cotangent function in degrees mode. Used by screen readers. រ៉ាដ្យង់កូតង់ហ្សង់ច្រាស Name for the inverse cotangent function in radians mode. Used by screen readers. ហ្ក្រាដ្យង់កូតង់ហ្សង់ច្រាស Name for the inverse cotangent function in gradians mode. Used by screen readers. កូតង់ហ្សង់អ៊ីពែរបូលិក Name for the hyperbolic cotangent function. Used by screen readers. កូតង់ហ្សង់អ៊ីពែរបូលិកច្រាស Name for the inverse hyperbolic cotangent function. Used by screen readers. ឫសគូប Name for the cube root function. Used by screen readers. គោលលោការីត Name for the logbasey function. Used by screen readers. តម្លៃដាច់ខាត Name for the absolute value function. Used by screen readers. ប្តូរទៅខាងឆ្វេង Name for the programmer function that shifts bits to the left. Used by screen readers. ប្តូរទៅខាងស្តាំ Name for the programmer function that shifts bits to the right. Used by screen readers. ហ្វាក់តូរីយ្យែល Name for the factorial function. Used by screen readers. ដឺក្រេ នាទី វិនាទី Name for the degree minute second (dms) function. Used by screen readers. កំណត់ហេតុធម្មជាតិ Name for the natural log (ln) function. Used by screen readers. ការ៉េ Name for the square function. Used by screen readers. ឬស y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". ប្រភេទ %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". កិច្ចព្រមព្រៀងសេវាកម្ម Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. ពី From Date Header for AddSubtract Date Picker រំកិលលទ្ធផលគណនាទៅខាងឆ្វេង Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. រំកិលលទ្ធផលគណនាទៅខាងស្ដាំ Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. ការគណនាបាបរាជ័យ Text displayed when the application is not able to do a calculation កំណត់​ផ្អែក​តាម Y Screen reader prompt for the logBaseY button ត្រីកោណមាត្រសាស្ដ្រ Displayed on the button that contains a flyout for the trig functions in scientific mode. មុខងារ Displayed on the button that contains a flyout for the general functions in scientific mode. អសមភាព Displayed on the button that contains a flyout for the inequality functions. អសមភាព Screen reader prompt for the Inequalities button ប៊ីតវ៉ាយស៍ Displayed on the button that contains a flyout for the bitwise functions in programmer mode. ប្ដូរប៊ីត Displayed on the button that contains a flyout for the bit shift functions in programmer mode. អនុគមន៍ច្រាស Screen reader prompt for the shift button in the trig flyout in scientific mode. មុខងារអ៊ីពែរបូលិក Screen reader prompt for the Calculator button HYP in the scientific flyout keypad សេកង់ Screen reader prompt for the Calculator button sec in the scientific flyout keypad អ៊ីពែបូលិចស៊ិក Screen reader prompt for the Calculator button sech in the scientific flyout keypad អាក់ស៊ិក Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad អ៊ីពែបូលិចអាក់ស៊ិក Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad កូសេកង់ Screen reader prompt for the Calculator button csc in the scientific flyout keypad អ៊ីពែបូលិចកូស៊ិក Screen reader prompt for the Calculator button csch in the scientific flyout keypad អាក់កូស៊ិក Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad អ៊ីពែបូលិចអាក់កូស៊ិក Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad កូតង់ហ្សង់ Screen reader prompt for the Calculator button cot in the scientific flyout keypad អ៊ីពែបូលិចកូតង់សង់ Screen reader prompt for the Calculator button coth in the scientific flyout keypad អាក់កូតង់សង់ Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad អ៊ីពែបូលិចអាក់កូតង់សង់ Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ជាន់ Screen reader prompt for the Calculator button floor in the scientific flyout keypad ពិដាន Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ចៃដន្យ Screen reader prompt for the Calculator button random in the scientific flyout keypad តម្លៃដាច់ខាត Screen reader prompt for the Calculator button abs in the scientific flyout keypad លេខរបស់ Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad ពីរជានិទស្សន្ត Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. បង្វិលនៅខាងឆ្វេងជាមួយ carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad បង្វិលនៅខាងស្តាំជាមួយ carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad shift ខាងឆ្វេង Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad ប្ដូរទៅឆ្វេង Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. shift ខាងស្ដាំ Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad ប្ដូរទៅស្ដាំ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. ប្ដូរតាមលេខនព្វន្ដ Label for a radio button that toggles arithmetic shift behavior for the shift operations. ប្ដូរតាមបែបតក្កវិទ្យា Label for a radio button that toggles logical shift behavior for the shift operations. បង្វិលប្ដូរជារង្វង់ Label for a radio button that toggles rotate circular behavior for the shift operations. បង្វិលតាមការប្ដូរជារង្វង់ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ឫសគូប Screen reader prompt for the cube root button on the scientific operator keypad ត្រីកោណមាត្រសាស្ដ្រ Screen reader prompt for the square root button on the scientific operator keypad មុខងារ Screen reader prompt for the square root button on the scientific operator keypad ប៊ីតវ៉ាយស៍ Screen reader prompt for the square root button on the scientific operator keypad ប្ដូរប៊ិត Screen reader prompt for the square root button on the scientific operator keypad ផ្ទាំងប្រតិបត្តិករវិទ្យាសាស្រ្ត Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad ផ្ទាំងប្រតិបត្តិករអ្នកសរសេរកម្មវិធី Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ប៊ីតសំខាន់ខ្លាំងបំផុត Used to describe the last bit of a binary number. Used in bit flip ការសង់ក្រាហ្វ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. គំនូស Screen reader prompt for the plot button on the graphing calculator operator keypad ផ្ទក​ទិដ្ឋភាព​ឡើងវិញ​ដោយ​ស្វ័យ​ប្រវត្តិ (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. ទិដ្ឋភាពក្រាហ្វ Screen reader prompt for the graph view button. សម​បំផុត​ដោយ​ស្វ័យ​ប្រវត្តិ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set ការ​កែតម្រូវ​ដោយ​ដៃ Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set ទិដ្ឋភាព​គូរ​គំនូស​តាងត្រូវ​បានកំណត់​ឡើងវិញ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph ពង្រីក (Ctrl + សញ្ញាបូក) This is the tool tip automation name for the Calculator zoom in button. ពង្រីក Screen reader prompt for the zoom in button. បង្រួម (Ctrl + សញ្ញាដក) This is the tool tip automation name for the Calculator zoom out button. បង្រួម Screen reader prompt for the zoom out button. បញ្ចូលសមីការ Placeholder text for the equation input button មិនអាចចែករំលែកនៅពេលនេះទេ។ If there is an error in the sharing action will display a dialog with this text. យល់ព្រម Used on the dismiss button of the share action error dialog. មើលអ្វីដែលខ្ញុំបានគូសក្រាបជាមួយ Windows ម៉ាស៊ីនគិតលេខ Sent as part of the shared content. The title for the share. សមីការ Header that appears over the equations section when sharing អថេរ Header that appears over the variables section when sharing រូបភាពក្រាបជាមួយសមីការ Alt text for the graph image when output via Share អថេរ Header text for variables area ជំហាន Label text for the step text box អប្ប Label text for the min text box អតិ Label text for the max text box ពណ៌ Label for the Line Color section of the style picker រចនាបថ Label for the Line Style section of the style picker ការវិភាគមុខងារ Title for KeyGraphFeatures Control អនុគមន៍នេះមិនមានអាស៊ីមតូតដេកណាមួយទេ។ Message displayed when the graph does not have any horizontal asymptotes អនុគមន៍នេះមិនមានចំណុចរបត់ណាមួយទេ។ Message displayed when the graph does not have any inflection points អនុគមន៍នេះមិនមានចំណុចអតិបរមាណាមួយទេ។ Message displayed when the graph does not have any maxima អនុគមន៍នេះមិនមានចំណុចអប្បបរមាណាមួយទេ។ Message displayed when the graph does not have any minima តម្លៃថេរ String describing constant monotonicity of a function ការថយចុះ String describing decreasing monotonicity of a function មិនអាចកំណត់ម៉ូណូតូនីស៊ីធីនៃអនុគមន៍នេះទេ។ Error displayed when monotonicity cannot be determined ការកើនឡើង String describing increasing monotonicity of a function ម៉ូណូតូនីស៊ីធីនៃមុខងារនេះមិនត្រូវបានស្គាល់។ Error displayed when monotonicity is unknown អនុគមន៍នេះមិនមានអាស៊ីមតូតទេរណាមួយទេ។ Message displayed when the graph does not have any oblique asymptotes មិនអាចកំណត់ភាពស្មើគ្នានៃអនុគមន៍នេះទេ។ Error displayed when parity is cannot be determined អនុគមន៍នេះគឺគូ។ Message displayed with the function parity is even អនុគមន៍នេះគឺមិនគូ ហើយក៏មិនសេស។ Message displayed with the function parity is neither even nor odd អនុគមន៍នេះគឺសេស។ Message displayed with the function parity is odd ភាពស្មើគ្នានៃអនុគមន៍នេះមិនត្រូវបានស្គាល់។ Error displayed when parity is unknown សាមយិកភាពគឺមិនត្រូវបានគាំទ្រសម្រាប់អនុគមន៍នេះទេ។ Error displayed when periodicity is not supported អនុគមន៍គឺមិនមានសាមយិកភាព។ Message displayed with the function periodicity is not periodic សាមយិកភាពនៃអនុគមន៍នេះមិនត្រូវបានស្គាល់។ Message displayed with the function periodicity is unknown លក្ខណៈពិសេសទាំងនេះគឺស្មុគស្មាញពេកសម្រាប់ម៉ាស៊ីនគិតលេខក្នុងការគណនា៖ Error displayed when analysis features cannot be calculated ពីព្រោះអនុគមន៍ មាន ដែល អាស៊ីមតូតបញ្ឈរ Message displayed when the graph does not have any vertical asymptotes អនុគមន៍នេះមិនមាន x-ស្ទាក់ចាប់ ណាមួយឡើយ។ Message displayed when the graph does not have any x-intercepts អនុគមន៍នេះមិនមាន y-ស្ទាក់ចាប់ ណាមួយឡើយ។ Message displayed when the graph does not have any y-intercepts ដូមែន Title for KeyGraphFeatures Domain Property អាស៊ីមតូតដេក Title for KeyGraphFeatures Horizontal aysmptotes Property ចំណុចរបត់ Title for KeyGraphFeatures Inflection points Property ការវិភាគមិនត្រូវបានគាំទ្រសម្រាប់អនុគមន៍នេះទេ។ Error displayed when graph analysis is not supported or had an error. ការវិភាគ​គឺត្រូវបានគាំទ្រ​តែសម្រាប់​មុខងារនៅក្នុងទម្រង់ f(x) ប៉ុណ្ណោះ៖ ឧទាហរណ៍៖ y=x Error displayed when graph analysis detects the function format is not f(x). អតិបរមា Title for KeyGraphFeatures Maxima Property អប្បបរមា Title for KeyGraphFeatures Minima Property ម៉ូណូតូនីស៊ីធី Title for KeyGraphFeatures Monotonicity Property អាស៊ីមតូតទេរ Title for KeyGraphFeatures Oblique asymptotes Property ភាពស្មើគ្នា Title for KeyGraphFeatures Parity Property រយៈពេល Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. ជួរ Title for KeyGraphFeatures Range Property អាស៊ីមតូតឈរ Title for KeyGraphFeatures Vertical asymptotes Property X-ស្ទាក់ចាប់ Title for KeyGraphFeatures XIntercept Property Y-ស្ទាក់ចាប់ Title for KeyGraphFeatures YIntercept Property ការវិភាគមិនអាចធ្វើទៅបានទេសម្រាប់អនុគមន៍នេះ។ មិនអាចគណនាដូមែនសម្រាប់អនុគមន៍នេះទេ។ Error displayed when Domain is not returned from the analyzer. មិនអាចគណនាជួរសម្រាប់អនុគមន៍នេះទេ។ Error displayed when Range is not returned from the analyzer. ហៀរ (លេខ​ធំពេក) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ម៉ូដរ៉ាដ្យង់​គឺ​តម្រូវ​កា​ចាំ​បាច់​សម្រាប់​គំនូស​តាង​សមីការ​នេះ។ Error that occurs during graphing when radians is required. អនុគមន៍នេះ​គឺ​ស្មុកស្មាញ​ពេក​ដើម្បីគូរ​គំនូស​តាង Error that occurs during graphing when the equation is too complex. ម៉ូដដឺក្រេ​គឺ​ត្រូវការ​ចាំបាច់​ដើម្បី​គូរ​គំនូស​តាង​អនុគមន៍នេះ Error that occurs during graphing when degrees is required អនុគមន៍​ហ្វាក់តូរីយែ្យល​មានអាគុយម៉ង់​មិន​ត្រឹមត្រូវ Error that occurs during graphing when a factorial function has an invalid argument. អនុគមន៍​ហ្វាក់តូរីយែ្យល​មាន​អាគុយម៉ង់​ដែល​ធំពេគ​សម្រាប់​គំនូស​តាង Error that occurs during graphing when a factorial has a large n ម៉ូឌុលឡូ​​អាច​ប្រើ​បាន​តែ​ជាមួយ​​លេខ​ទាំង​មួល​តែ​ប៉ុណ្ណោះ Error that occurs during graphing when modulo is used with a float. សមីការ​គ្មាន​ដំណោះ​ស្រាយ Error that occurs during graphing when the equation has no solution. មិនអាចចែកនឹងសូន្យទេ Error that occurs during graphing when a divison by zero occurs. សមីការមាន​លក្ខខណ្ឌ​ជា​ចង្កោម​ដែល​ដាច់​ដោយ​ឡែក Error that occurs during graphing when mutually exclusive conditions are used. សមីការក្រៅ​ដែន Error that occurs during graphing when the equation is out of domain. មិនគាំទ្រការសង់ក្រាហ្វសមីការ​នេះ​ទេ Error that occurs during graphing when the equation is not supported. សមីការគឺគ្មាន​សញ្ញាបើកវង់​ក្រចក Error that occurs during graphing when the equation is missing a ( សមីការគឺគ្មាន​សញ្ញាបិទ​វង់​ក្រចក Error that occurs during graphing when the equation is missing a ) មាន​ចំនុច​ទស្សភាគ​ច្រើន​ពេក​ក្នុង​លេខ Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 ចំនុច​ទស្សភាគ​គ្មានលេខ Error that occurs during graphing with a decimal point without digits កន្សោមពាក្យបញ្ចប់​មិនបាន​រំពឹង​ទុក Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* តួអក្សរមិននឹក​ស្មាន​ដល់​ក្នុង​កន្សោមពាក្យ Error that occurs during graphing when there is an unexpected token. តួអក្សរមិនត្រឹមត្រូវ​ក្នុង​កន្សោមពាក្យ Error that occurs during graphing when there is an invalid token. មាន​សញ្ញា​ស្មើ​ច្រើនពេក Error that occurs during graphing when there are too many equals. អនុគមន៍​ត្រូវ​មាន​យ៉ាង​ហោច​ណាស់​អថេរ x ឬ y មួយ Error that occurs during graphing when the equation is missing x or y. កន្សោមពាក្យមិនត្រឹមត្រូវ Error that occurs during graphing when an invalid syntax is used. កន្សោមពាក្យទទេរ Error that occurs during graphing when the expression is empty សញ្ញា​ស្មើ​បាន​ប្រើ​ដោយ​គ្មាន​សមីការ Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ភ្លេច​សញ្ញា​វង់​ក្រចក​បន្ទាប់​ពី​ឈ្មោះអនុគមន៍ Error that occurs during graphing when parenthesis are missing after a function. សញ្ញាគណិតវិទ្យា​មាន​លេខ​ប៉ារ៉ាម៉ែត្រ​មិន​ត្រឹម​ត្រូវ Error that occurs during graphing when a function has the wrong number of parameters ឈ្មោះ​អថេរ​មិន​ត្រឹមត្រូវ​ទេ Error that occurs during graphing when a variable name is invalid. សមីការគឺគ្មាន​សញ្ញាបើកឃ្នាប Error that occurs during graphing when a { is missing សមីការគឺគ្មាន​សញ្ញាបិទឃ្នាប Error that occurs during graphing when a } is missing. "i" និង "I" មិន​អាច​ប្រើ​ជា​ឈ្មោះអថេរ​បាន​ទេ Error that occurs during graphing when i or I is used. សមីការមិន​អាច​គូរ​គំនូស​តាង​បាន​ទេ General error that occurs during graphing. លេខ​មិន​អាច​ដោះ​ស្រាយ​សម្រាប់​គោល​ដែល​បាន​ផ្ដល់​ទេ Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). គោល​ត្រូវ​តែ​ធំជាង 2 និង​តិចជាង 36 Error that occurs during graphing when the base is out of range. តម្រូវឱ្យមានសញ្ញាគណិតវិទ្យាមួយនៃប៉ារ៉ាម៉ែត្ររបស់វាជាអថេរ Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. សមីការ​គឺ​លាយ​ចម្រុះ​​ឡូហ្សិក និង​ឃ្នាប Error that occurs during graphing when operands are mixed. Such as true and 1. x ឬ y មិន​អាច​ប្រើ​ក្នុង​លីមីត​ខ្ពស់ ឬទាប​បាន​ទេ Error that occurs during graphing when x or y is used in integral upper limits. x ឬ y មិន​អាច​ប្រើ​ក្នុង​ចំណុច​កំណត់​ទេ Error that occurs during graphing when x or y is used in the limit point. មិន​អាច​ប្រើអនន្តកំប្លេច​បាន​ទេ Error that occurs during graphing when complex infinity is used មិន​អាច​ប្រើ​លេខស្មុគស្មាញ​ក្នុង​វិសមភាព​បាន​ទេ Error that occurs during graphing when complex numbers are used in inequalities. ត្រឡប់​ទៅ​បញ្ជី​មុខងារ This is the tooltip for the back button in the equation analysis page in the graphing calculator ត្រឡប់​ទៅ​បញ្ជី​មុខងារ This is the automation name for the back button in the equation analysis page in the graphing calculator វិភាគមុខងារ This is the tooltip for the analyze function button វិភាគមុខងារ This is the automation name for the analyze function button វិភាគមុខងារ This is the text for the for the analyze function context menu command យកចេញសមីការ This is the tooltip for the graphing calculator remove equation buttons យកចេញសមីការ This is the automation name for the graphing calculator remove equation buttons យកចេញសមីការ This is the text for the for the remove equation context menu command ចែក​រំលែក This is the automation name for the graphing calculator share button. ចែក​រំលែក This is the tooltip for the graphing calculator share button. ប្ដូររចនាបថសមីការ This is the tooltip for the graphing calculator equation style button ប្ដូររចនាបថសមីការ This is the automation name for the graphing calculator equation style button ប្ដូររចនាបថសមីការ This is the text for the for the equation style context menu command បង្ហាញសមីការ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. លាក់សមីការ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. បង្ហាញសមីការ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. លាក់សមីការ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ឈប់តាមដាន This is the tooltip/automation name for the graphing calculator stop tracing button ចាប់ផ្ដើមតាមដាន This is the tooltip/automation name for the graphing calculator start tracing button វីនដូមើលក្រាប, អាក់ស៊ីស x ដែលភ្ជាប់ដោយ %1 និង %2, អាក់ស៊ីស y ដែលភ្ជាប់ដោយ %3 និង %4, ដែលបង្ហាញ %5 សមីការ {Locked="%1","%2", "%3", "%4", "%5"}. រៀបចំរបាររំកិល This is the tooltip text for the slider options button in Graphing Calculator រៀបចំរបាររំកិល This is the automation name text for the slider options button in Graphing Calculator ប្តូរទៅម៉ូដសមីការ Used in Graphing Calculator to switch the view to the equation mode ប្តូរទៅម៉ូដក្រាប Used in Graphing Calculator to switch the view to the graph mode ប្តូរទៅម៉ូដសមីការ Used in Graphing Calculator to switch the view to the equation mode ម៉ូដបច្ចុប្បន្នគឺជាម៉ូដសមីការ Announcement used in Graphing Calculator when switching to the equation mode ម៉ូដបច្ចុប្បន្នគឺជាម៉ូដក្រាប Announcement used in Graphing Calculator when switching to the graph mode វីនដូ Heading for window extents on the settings ដឺក្រេ Degrees mode on settings page ហ្គ្រាដ្យង់ Gradian mode on settings page រ៉ាដ្យង់ Radians mode on settings page ឯកតា Heading for Unit's on the settings កំណត់​ការ​មើលឡើងវិញ Hyperlink button to reset the view of the graph X-អតិ X maximum value header X-អប្ប X minimum value header Y-អតិ Y Maximum value header Y-អប្ប Y minimum value header ជម្រើស​គូរ​គំនូស​តាង This is the tooltip text for the graph options button in Graphing Calculator ជម្រើស​គូរ​គំនូស​តាង This is the automation name text for the graph options button in Graphing Calculator ជម្រើស​​គំនូស​តាង Heading for the Graph options flyout in Graphing mode. ជម្រើស​អថេរ Screen reader prompt for the variable settings toggle button បិទ/បើក​ជម្រើស​អថេរ Tool tip for the variable settings toggle button កម្រិតក្រាស់នៃបន្ទាត់ Heading for the Graph options flyout in Graphing mode. ជម្រើសបន្ទាត់ Heading for the equation style flyout in Graphing mode. កម្រាស់បន្ទាត់តូច Automation name for line width setting កម្រាស់​បន្ទាត់​មធ្យម Automation name for line width setting កម្រាស់បន្ទាត់ធំ Automation name for line width setting កម្រាស់បន្ទាត់ធំខ្លាំង Automation name for line width setting បញ្ចូលកន្សោមពាក្យមួយ this is the placeholder text used by the textbox to enter an equation ចម្លង Copy menu item for the graph context menu កាត់ Cut menu item from the Equation TextBox ចម្លង Copy menu item from the Equation TextBox បិទភ្ជាប់ Paste menu item from the Equation TextBox មិនធ្វើវិញ Undo menu item from the Equation TextBox ជ្រើសរើសទាំងអស់ Select all menu item from the Equation TextBox បញ្ចូលអនុគមន៍ The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. បញ្ចូលអនុគមន៍ The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. ផ្ទាំង​បញ្ចូល​អនុគមន៍ The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. ផ្ទាំងអថេរ The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. បញ្ជីអថេរ The automation name for the Variable ListView that is shown when Calculator is in graphing mode. ធាតុ​បញ្ជី %1 អថេរ The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. ប្រអប់បញ្ចូលតម្លៃរបស់អថេរ The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. របាររំកិល​តម្លៃ​អថេរ The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. ប្រអប់​បញ្ចូលតម្លៃ​អប្បបរមារបស់អថេរ The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. ប្រអប់​បញ្ចូលតម្លៃ​ជំហានរបស់អថេរ The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. ប្រអប់​បញ្ចូលតម្លៃ​អតិបរមារបស់អថេរ The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. រចនាបថបន្ទាត់ក្រឡា Name of the solid line style for a graphed equation រចនាបថបន្ទាត់ក្រឡាដាច់ Name of the dotted line style for a graphed equation រចនាបថបន្ទាត់ក្រឡាដាច់ Name of the dashed line style for a graphed equation ខៀវទឹកប៊ិច Name of color in the color picker ហ្វូមសមុត្រ Name of color in the color picker ត្របែកព្រៃ Name of color in the color picker បៃតង Name of color in the color picker បៃតងស្រាល Name of color in the color picker បៃតងចាស់ Name of color in the color picker ពណ៌ធ្យូង Name of color in the color picker ក្រហម Name of color in the color picker ស្វាយ​ក្រហម​ Name of color in the color picker ស៊ីជំពូ Name of color in the color picker លឿង​ទុំ Name of color in the color picker ទឹក​ក្រូច​ស្រស់ Name of color in the color picker ត្នោត Name of color in the color picker ខ្មៅ Name of color in the color picker Name of color in the color picker ពណ៌ 1 Name of color in the color picker ពណ៌ 2 Name of color in the color picker ពណ៌ 3 Name of color in the color picker ពណ៌ 4 Name of color in the color picker រចនាប័ទ្មក្រាហ្វ Graph settings heading for the theme options ភ្លឺ​ជា​និច្ច Graph settings option to set graph to light theme ផ្គូផ្គងកម្មវិធីគំរូរចនា Graph settings option to set graph to match the app theme ផ្ទៃ This is the automation name text for the Graph settings heading for the theme options ភ្លឺ​ជា​និច្ច This is the automation name text for the Graph settings option to set graph to light theme ផ្គូផ្គងកម្មវិធីគំរូរចនា This is the automation name text for the Graph settings option to set graph to match the app theme បាន​ដក​មុខងារ​ចេញ Announcement used in Graphing Calculator when a function is removed from the function list ប្រអប់​សមីការ​វិភាគ​អនុគមន៍ This is the automation name text for the equation box in the function analysis panel ស្មើ Screen reader prompt for the equal button on the graphing calculator operator keypad តិចជាង Screen reader prompt for the Less than button តូចជាង ឬស្មើ Screen reader prompt for the Less than or equal button ស្មើ Screen reader prompt for the Equal button ធំជាង ឬស្មើ Screen reader prompt for the Greater than or equal button ធំជាង Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad ដាក់​បញ្ជូន Screen reader prompt for the submit button on the graphing calculator operator keypad ការវិភាគអនុគមន៍ Screen reader prompt for the function analysis grid ជម្រើស​​គំនូស​តាង Screen reader prompt for the graph options panel បញ្ជីប្រវត្តិ និងអង្គចងចាំ Automation name for the group of controls for history and memory lists. បញ្ជីអង្គចងចាំ Automation name for the group of controls for memory list. រន្ធអង្គចងចាំ %1 ត្រូវបានលុប {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". ម៉ាស៊ីនគិតលេខនៅខាងលើជានិច្ច Announcement to indicate calculator window is always shown on top. ម៉ាស៊ីនគិតលេខត្រឡប់​ទៅ​កា​របង្ហញ​ពេញ Announcement to indicate calculator window is now back to full view. ប្ដូរតាមលេខនព្វន្ដដែលបានជ្រើសរើស Label for a radio button that toggles arithmetic shift behavior for the shift operations. ប្ដូរតាមបែបតក្កវិទ្យាដែលបានជ្រើសរើស Label for a radio button that toggles logical shift behavior for the shift operations. បង្វិលរាងជារង្វង់ដែលបានជ្រើសរើស Label for a radio button that toggles rotate circular behavior for the shift operations. បង្វិលតាមរង្វង់ដែលបានជ្រើសរើស Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ការកំណត់ Header text of Settings page រូបរាង Subtitle of appearance setting on Settings page គំរូរចនាកម្មវិធី Title of App theme expander ជ្រើសរើសគំរូរចនាកម្មវិធីណាមួយ ដើម្បីបង្ហាញ Description of App theme expander ភ្លឺ Lable for light theme option ងងឹត Lable for dark theme option ប្រើការកំណត់ប្រព័ន្ធ Lable for the app theme option to use system setting ថយក្រោយ Screen reader prompt for the Back button in title bar to back to main page ទំព័រការកំណត់ Announcement used when Settings page is opened បើកម៉ឺនុយបរិបទសម្រាប់សកម្មភាពដែលមាន Screen reader prompt for the context menu of the expression box យល់ព្រម The text of OK button to dismiss an error dialog. មិនអាចស្ដាររូបថតរហ័សនេះ​ឡើងវិញបានទេ។ The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/kn-IN/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ಅಮಾನ್ಯ ಇನ್‍ಪುಟ್ Error message shown when the input makes a function fail, like log(-1) ಫಲಿತಾಂಶವು ವ್ಯಾಖ್ಯಾನಿತವಾಗಿಲ್ಲ Error message shown when there's no possible value for a function. ಸಾಕಷ್ಟು ಸ್ಮರಣೆ ಇಲ್ಲ Error message shown when we run out of memory during a calculation. ಓವರ್‌ಫ್ಲೋ Error message shown when there's an overflow during the calculation. ಫಲಿತಾಂಶವು ವ್ಯಾಖ್ಯಾನಿತವಾಗಿಲ್ಲ Same as 101 ಫಲಿತಾಂಶವು ವ್ಯಾಖ್ಯಾನಿತವಾಗಿಲ್ಲ Same 101 ಓವರ್‌ಫ್ಲೋ Same as 107 ಓವರ್‌ಫ್ಲೋ Same 107 ಸೊನ್ನೆಯಿಂದ ವಿಭಾಗಿಸಲಾಗುವುದಿಲ್ಲ Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/kn-IN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ಕ್ಯಾಲ್ಕುಲೇಟರ್ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. ಕ್ಯಾಲ್ಕುಲೇಟರ್ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows ಕ್ಯಾಲ್ಕುಲೇಟರ್ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows ಕ್ಯಾಲ್ಕುಲೇಟರ್ [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. ಕ್ಯಾಲ್ಕುಲೇಟರ್ {@Appx_Description@} This description is used for the official application when published through Windows Store. ಕ್ಯಾಲ್ಕುಲೇಟರ್ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. ನಕಲಿಸು Copy context menu string ಅಂಟಿಸು Paste context menu string ಸುಮಾರು ಇದಕ್ಕೆ ಸಮಾನ The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, ಮೌಲ್ಯ %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 ಬಿಟ್ {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63 ನೆಯ Sub-string used in automation name for 63 bit in bit flip 62 ನೆಯ Sub-string used in automation name for 62 bit in bit flip 61 ನೆಯ Sub-string used in automation name for 61 bit in bit flip 60 ನೆಯ Sub-string used in automation name for 60 bit in bit flip 59 ನೆಯ Sub-string used in automation name for 59 bit in bit flip 58 ನೆಯ Sub-string used in automation name for 58 bit in bit flip 57 ನೆಯ Sub-string used in automation name for 57 bit in bit flip 56 ನೆಯ Sub-string used in automation name for 56 bit in bit flip 55 ನೆಯ Sub-string used in automation name for 55 bit in bit flip 54 ನೆಯ Sub-string used in automation name for 54 bit in bit flip 53 ನೆಯ Sub-string used in automation name for 53 bit in bit flip 52 ನೆಯ Sub-string used in automation name for 52 bit in bit flip 51 ನೆಯ Sub-string used in automation name for 51 bit in bit flip 50 ನೆಯ Sub-string used in automation name for 50 bit in bit flip 49 ನೆಯ Sub-string used in automation name for 49 bit in bit flip 48 ನೆಯ Sub-string used in automation name for 48 bit in bit flip 47 ನೆಯ Sub-string used in automation name for 47 bit in bit flip 46 ನೆಯ Sub-string used in automation name for 46 bit in bit flip 45 ನೆಯ Sub-string used in automation name for 45 bit in bit flip 44 ನೆಯ Sub-string used in automation name for 44 bit in bit flip 43 ನೆಯ Sub-string used in automation name for 43 bit in bit flip 42 ನೆಯ Sub-string used in automation name for 42 bit in bit flip 41 ನೆಯ Sub-string used in automation name for 41 bit in bit flip 40 ನೆಯ Sub-string used in automation name for 40 bit in bit flip 39 ನೆಯ Sub-string used in automation name for 39 bit in bit flip 38 ನೆಯ Sub-string used in automation name for 38 bit in bit flip 37 ನೆಯ Sub-string used in automation name for 37 bit in bit flip 36 ನೆಯ Sub-string used in automation name for 36 bit in bit flip 35 ನೆಯ Sub-string used in automation name for 35 bit in bit flip 34 ನೆಯ Sub-string used in automation name for 34 bit in bit flip 33 ನೆಯ Sub-string used in automation name for 33 bit in bit flip 32 ನೆಯ Sub-string used in automation name for 32 bit in bit flip 31 ನೆಯ Sub-string used in automation name for 31 bit in bit flip 30 ನೆಯ Sub-string used in automation name for 30 bit in bit flip 29 ನೆಯ Sub-string used in automation name for 29 bit in bit flip 28 ನೆಯ Sub-string used in automation name for 28 bit in bit flip 27 ನೆಯ Sub-string used in automation name for 27 bit in bit flip 26 ನೆಯ Sub-string used in automation name for 26 bit in bit flip 25 ನೆಯ Sub-string used in automation name for 25 bit in bit flip 24 ನೆಯ Sub-string used in automation name for 24 bit in bit flip 23 ನೆಯ Sub-string used in automation name for 23 bit in bit flip 22 ನೆಯ Sub-string used in automation name for 22 bit in bit flip 21 ನೆಯ Sub-string used in automation name for 21 bit in bit flip 20 ನೆಯ Sub-string used in automation name for 20 bit in bit flip 19 ನೆಯ Sub-string used in automation name for 19 bit in bit flip 18 ನೆಯ Sub-string used in automation name for 18 bit in bit flip 17 ನೆಯ Sub-string used in automation name for 17 bit in bit flip 16 ನೆಯ Sub-string used in automation name for 16 bit in bit flip 15 ನೆಯ Sub-string used in automation name for 15 bit in bit flip 14 ನೆಯ Sub-string used in automation name for 14 bit in bit flip 13 ನೆಯ Sub-string used in automation name for 13 bit in bit flip 12 ನೆಯ Sub-string used in automation name for 12 bit in bit flip 11 ನೆಯ Sub-string used in automation name for 11 bit in bit flip 10 ನೆಯ Sub-string used in automation name for 10 bit in bit flip 9 ನೆಯ Sub-string used in automation name for 9 bit in bit flip 8 ನೆಯ Sub-string used in automation name for 8 bit in bit flip 7 ನೆಯ Sub-string used in automation name for 7 bit in bit flip 6 ನೆಯ Sub-string used in automation name for 6 bit in bit flip 5 ನೆಯ Sub-string used in automation name for 5 bit in bit flip 4 ನೆಯ Sub-string used in automation name for 4 bit in bit flip 3 ನೆಯ Sub-string used in automation name for 3 bit in bit flip 2 ನೆಯ Sub-string used in automation name for 2 bit in bit flip 1 ನೆಯ Sub-string used in automation name for 1 bit in bit flip ಕನಿಷ್ಠ ಮಹತ್ವದ ಬಿಟ್ Used to describe the first bit of a binary number. Used in bit flip ಸ್ಮರಣೆ ಫ್ಲೈಔಟ್ ತೆರೆಯಿರಿ This is the automation name and label for the memory button when the memory flyout is closed. ಸ್ಮರಣೆ ಫ್ಲೈಔಟ್ ಮುಚ್ಚು This is the automation name and label for the memory button when the memory flyout is open. ಮೇಲೆ ಇರಿಸಿ This is the tool tip automation name for the always-on-top button when out of always-on-top mode. ಪೂರ್ಣ ವೀಕ್ಷಣೆಗೆ ಹಿಂತಿರುಗಿ This is the tool tip automation name for the always-on-top button when in always-on-top mode. ಸ್ಮರಣೆ This is the tool tip automation name for the memory button. ಇತಿಹಾಸ (Ctrl+H) This is the tool tip automation name for the history button. ಬಿಟ್ ಟಾಗ್ಲಿಂಗ್ ಕೀಪ್ಯಾಡ್ This is the tool tip automation name for the bitFlip button. ಪೂರ್ಣ ಕೀಪ್ಯಾಡ್ This is the tool tip automation name for the numberPad button. ಎಲ್ಲಾ ಸ್ಮರಣೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. ಸ್ಮರಣೆ The text that shows as the header for the memory list ಸ್ಮರಣೆ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ಇತಿಹಾಸ The text that shows as the header for the history list ಇತಿಹಾಸ The automation name for the History pivot item that is shown when Calculator is in wide layout. ಕನ್ವರ್ಟರ್ Label for a control that activates the unit converter mode. ವೈಜ್ಞಾನಿಕ Label for a control that activates scientific mode calculator layout ಪ್ರಮಾಣಿತ Label for a control that activates standard mode calculator layout. ಕನ್ವರ್ಟರ್ ಮೋಡ್ Screen reader prompt for a control that activates the unit converter mode. ವೈಜ್ಞಾನಿಕ ಮೋಡ್ Screen reader prompt for a control that activates scientific mode calculator layout ಪ್ರಮಾಣಿತ ಮೋಡ್ Screen reader prompt for a control that activates standard mode calculator layout. ಎಲ್ಲಾ ಇತಿಹಾಸ ತೆರವುಗೊಳಿಸಿ "ClearHistory" used on the calculator history pane that stores the calculation history. ಎಲ್ಲಾ ಇತಿಹಾಸ ತೆರವುಗೊಳಿಸಿ This is the tool tip automation name for the Clear History button. ಮರೆಮಾಡಿ "HideHistory" used on the calculator history pane that stores the calculation history. ಪ್ರಮಾಣಿತ The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. ವೈಜ್ಞಾನಿಕ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. ಪ್ರೋಗ್ರಾಮರ್ The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. ಕನ್ವರ್ಟರ್ The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". ಕ್ಯಾಲ್ಕುಲೇಟರ್ The text that shows in the dropdown navigation control for the calculator group. ಕನ್ವರ್ಟರ್ The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". ಕ್ಯಾಲ್ಕುಲೇಟರ್ The text that shows in the dropdown navigation control for the calculator group in upper case. ಪರಿವರ್ತಕಗಳು Pluralized version of the converter group text, used for the screen reader prompt. ಕ್ಯಾಲ್ಕುಲೇಟರ್‌‍ಗಳು Pluralized version of the calculator group text, used for the screen reader prompt. ಡಿಸ್‍ಪ್ಲೇ %1 ಆಗಿದೆ {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". ಅಭಿವ್ಯಕ್ತಿ %1, ಪ್ರಸ್ತುತ ಇನ್‌ಪುಟ್ %2 ಆಗಿದೆ {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ಪ್ರದರ್ಶನವು %1 ಬಿಂದುವಾಗಿದೆ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. ಪದವಿನ್ಯಾಸ %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". ಪ್ರದರ್ಶನ ಮೌಲ್ಯವನ್ನು ಕ್ಲಿಪ್‍ಬೋರ್ಡ್‍ಗೆ ನಕಲಿಸಲಾಗಿದೆ Screen reader prompt for the Calculator display copy button, when the button is invoked. ಇತಿಹಾಸ Screen reader prompt for the history flyout ಸ್ಮರಣೆ Screen reader prompt for the memory flyout ಹೆಕ್ಸಾಡೆಸಿಮಲ್ %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ದಶಮಾಂಶ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ಓಕ್ಟಲ್ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ಬೈನರಿ %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". ಎಲ್ಲಾ ಇತಿಹಾಸ ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the Calculator History Clear button ಇತಿಹಾಸ ಖಾಲಿ ಮಾಡಲಾಗಿದೆ Screen reader prompt for the Calculator History Clear button, when the button is invoked. ಇತಿಹಾಸ ಮರೆಮಾಡಿ Screen reader prompt for the Calculator History Hide button ಇತಿಹಾಸದ ಫ್ಲೈಔಟ್ ತೆರೆಯಿರಿ Screen reader prompt for the Calculator History button, when the flyout is closed. ಇತಿಹಾಸದ ಫ್ಲೈಔಟ್ ಮುಚ್ಚು Screen reader prompt for the Calculator History button, when the flyout is open. ಸ್ಮರಣೆ ಸಂಗ್ರಹ Screen reader prompt for the Calculator Memory button ಸ್ಮರಣೆ ಸಂಗ್ರಹಣೆ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. ಎಲ್ಲಾ ಸ್ಮರಣೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the Calculator Clear Memory button ಸ್ಮರಣೆ ತೆರವುಗೊಳಿಸಲಾಗಿದೆ Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. ಸ್ಮರಣೆ ಮರುಪಡೆ Screen reader prompt for the Calculator Memory Recall button ಸ್ಮರಣೆ ಮರುಪಡೆಯಿರಿ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. ಸ್ಮರಣೆ ಸೇರಿಸಿ Screen reader prompt for the Calculator Memory Add button ಸ್ಮರಣೆ ಸಂಕಲನ (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. ಸ್ಮರಣೆ ಕಳೆಯಿರಿ Screen reader prompt for the Calculator Memory Subtract button ಸ್ಮರಣೆ ವ್ಯವಕಲನ (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. ಸ್ಮರಣೆ ಅಂಶ ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the Calculator Clear Memory button ಸ್ಮರಣೆ ಅಂಶ ತೆರವುಗೊಳಿಸಿ This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. ಸ್ಮರಣೆ ಅಂಶಕ್ಕೆ ಸೇರಿಸಿ Screen reader prompt for the Calculator Memory Add button in the Memory list ಸ್ಮರಣೆ ಅಂಶಕ್ಕೆ ಸೇರಿಸಿ This is the tool tip automation name for the Calculator Memory Add button in the Memory list ಸ್ಮರಣೆ ಐಟಂನಿಂದ ಕಳೆಯಿರಿ Screen reader prompt for the Calculator Memory Subtract button in the Memory list ಸ್ಮರಣೆ ಐಟಂನಿಂದ ಕಳೆಯಿರಿ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list ಸ್ಮರಣೆ ಅಂಶ ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the Calculator Clear Memory button ಸ್ಮರಣೆ ಅಂಶ ತೆರವುಗೊಳಿಸಿ Text string for the Calculator Clear Memory option in the Memory list context menu ಸ್ಮರಣೆ ಅಂಶಕ್ಕೆ ಸೇರಿಸಿ Screen reader prompt for the Calculator Memory Add swipe button in the Memory list ಸ್ಮರಣೆ ಅಂಶಕ್ಕೆ ಸೇರಿಸಿ Text string for the Calculator Memory Add option in the Memory list context menu ಸ್ಮರಣೆ ಐಟಂನಿಂದ ಕಳೆಯಿರಿ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list ಸ್ಮರಣೆ ಐಟಂನಿಂದ ಕಳೆಯಿರಿ Text string for the Calculator Memory Subtract option in the Memory list context menu ಅಳಿಸಿ Text string for the Calculator Delete swipe button in the History list ನಕಲಿಸಿ Text string for the Calculator Copy option in the History list context menu ಅಳಿಸಿ Text string for the Calculator Delete option in the History list context menu ಇತಿಹಾಸ ಐಟಂ ಅಳಿಸಿ Screen reader prompt for the Calculator Delete swipe button in the History list ಇತಿಹಾಸ ಐಟಂ ಅಳಿಸಿ Screen reader prompt for the Calculator Delete option in the History list context menu ಬ್ಯಾಕ್ ಸ್ಪೇಸ್ Screen reader prompt for the Calculator Backspace button 1 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button ಸೊನ್ನೆ Screen reader prompt for the Calculator number "0" button ಒಂದು Screen reader prompt for the Calculator number "1" button ಎರಡು Screen reader prompt for the Calculator number "2" button ಮೂರು Screen reader prompt for the Calculator number "3" button ನಾಲ್ಕು Screen reader prompt for the Calculator number "4" button ಐದು Screen reader prompt for the Calculator number "5" button ಆರು Screen reader prompt for the Calculator number "6" button ಏಳು Screen reader prompt for the Calculator number "7" button ಎಂಟು Screen reader prompt for the Calculator number "8" button ಒಂಬತ್ತು Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button ಬಿ Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button ಮತ್ತು Screen reader prompt for the Calculator And button ಅಥವಾ Screen reader prompt for the Calculator Or button ಅಥವಾ Screen reader prompt for the Calculator Not button ಎಡದಲ್ಲಿ ತಿರುಗಿಸು Screen reader prompt for the Calculator ROL button ಬಲದಲ್ಲಿ ತಿರುಗಿಸು Screen reader prompt for the Calculator ROR button ಎಡ ಶಿಫ್ಟ್ Screen reader prompt for the Calculator LSH button ಬಲ ಶಿಫ್ಟ್ Screen reader prompt for the Calculator RSH button ಏಕೈಕ ಅಥವಾ Screen reader prompt for the Calculator XOR button ನಾಲ್ಮಡಿ ಪದ ಟಾಗಲ್ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". ದ್ವಿ ಪದ ಟಾಗಲ್ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". ಪದ ಟಾಗಲ್ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". ಬೈಟ್ ಟಾಗಲ್ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". ಬಿಟ್ ಟಾಗ್ಲಿಂಗ್ ಕೀಪ್ಯಾಡ್ Screen reader prompt for the Calculator bitFlip button ಪೂರ್ಣ ಕೀಪ್ಯಾಡ್ Screen reader prompt for the Calculator numberPad button ದಶಮಾಂಶ ವಿಭಾಜಕ Screen reader prompt for the "." button ನಮೂದು ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the "CE" button ತೆರವುಗೊಳಿಸು Screen reader prompt for the "C" button ಇದರಿಂದ ವಿಭಾಗಿಸಿ Screen reader prompt for the divide button on the number pad ಇದರಿಂದ ಗುಣಿಸಿ Screen reader prompt for the multiply button on the number pad ಸಮ Screen reader prompt for the equals button on the scientific operator keypad ವಿಲೋಮ ಕಾರ್ಯ Screen reader prompt for the shift button on the number pad in scientific mode. ಕಳೆ Screen reader prompt for the minus button on the number pad ಕಳೆ We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 ಕೂಡು Screen reader prompt for the plus button on the number pad ವರ್ಗಮೂಲ Screen reader prompt for the square root button on the scientific operator keypad ಶೇಕಡಾ Screen reader prompt for the percent button on the scientific operator keypad ಧನಾತ್ಮಕ ಋಣಾತ್ಮಕ Screen reader prompt for the negate button on the scientific operator keypad ಧನಾತ್ಮಕ ಋಣಾತ್ಮಕ Screen reader prompt for the negate button on the converter operator keypad ವ್ಯುತ್ಕ್ರಮ Screen reader prompt for the invert button on the scientific operator keypad ಎಡ ಆವರಣ ಚಿಹ್ನೆ Screen reader prompt for the Calculator "(" button on the scientific operator keypad ಎಡ ಆವರಣ, ಬಲ ಆವರಣ ಎಣಿಕೆ %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ಬಲ ಆವರಣ ಚಿಹ್ನೆ Screen reader prompt for the Calculator ")" button on the scientific operator keypad ತೆರೆದ ಆವರಣ ಎಣಿಕೆ %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ಮುಚ್ಚಲು ಯಾವುದೇ ತೆರೆದ ಆವರಣ ಇಲ್ಲ. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". ವೈಜ್ಞಾನಿಕ ಸಂಕೇತನ Screen reader prompt for the Calculator F-E the scientific operator keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಕಾರ್ಯ Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad ಸೈನ್ Screen reader prompt for the Calculator sin button on the scientific operator keypad ಕೋಸೈನ್ Screen reader prompt for the Calculator cos button on the scientific operator keypad ಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator tan button on the scientific operator keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೈನ್ Screen reader prompt for the Calculator sinh button on the scientific operator keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೋಸೈನ್ Screen reader prompt for the Calculator cosh button on the scientific operator keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator tanh button on the scientific operator keypad ಚೌಕ Screen reader prompt for the x squared on the scientific operator keypad. ಘನಾಕೃತಿ Screen reader prompt for the x cubed on the scientific operator keypad. ಆರ್ಕ್ ಸೈನ್ Screen reader prompt for the inverted sin on the scientific operator keypad. ಆರ್ಕ್ ಕೊಸೈನ್ Screen reader prompt for the inverted cos on the scientific operator keypad. ಆರ್ಕ್ ಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the inverted tan on the scientific operator keypad. ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಸೈನ್ Screen reader prompt for the inverted sinh on the scientific operator keypad. ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಕೋಸೈನ್ Screen reader prompt for the inverted cosh on the scientific operator keypad. ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the inverted tanh on the scientific operator keypad. ’X’ ಘಾತ Screen reader prompt for x power y button on the scientific operator keypad. ಹತ್ತು ಘಾತ Screen reader prompt for the 10 power x button on the scientific operator keypad. ’e’ ಘಾತ Screen reader for the e power x on the scientific operator keypad. ’x’ ನ ವರ್ಗಮೂಲ ’y’ Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. ಲಾಗ್ Screen reader for the log base 10 on the scientific operator keypad ನ್ಯಾಚುರಲ್ ಲಾಗ್ Screen reader for the log base e on the scientific operator keypad ಮಾಡ್ಯುಲೋ Screen reader for the mod button on the scientific operator keypad ಘಾತೀಯ Screen reader for the exp button on the scientific operator keypad ಡಿಗ್ರಿ ನಿಮಿಷ ಸೆಕೆಂಡ್ Screen reader for the exp button on the scientific operator keypad ಡಿಗ್ರಿಗಳು Screen reader for the exp button on the scientific operator keypad ಪೂರ್ಣಸಂಖ್ಯೆಯ ಭಾಗ Screen reader for the int button on the scientific operator keypad ಭಿನ್ನಾಂಕ ಭಾಗ Screen reader for the frac button on the scientific operator keypad ಗುಣಲಬ್ಧ Screen reader for the factorial button on the basic operator keypad ಕೋನಗಳ ಟಾಗಲ್ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". ಗ್ರೇಡಿಯನ್ಸ್ ಟಾಗಲ್ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". ರೇಡಿಯನ್ಸ್ ಟಾಗಲ್ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". ಮೋಡ್ ಡ್ರಾಪ್‍ಡೌನ್ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. ವರ್ಗಗಳ ಡ್ರಾಪ್‍ಡೌನ್ Screen reader prompt for the Categories dropdown field. ಮೇಲೆ ಇರಿಸಿ Screen reader prompt for the Always-on-Top button when in normal mode. ಪೂರ್ಣ ವೀಕ್ಷಣೆಗೆ ಹಿಂತಿರುಗಿ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. ಮೇಲೆ ಇರಿಸಿ (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. ಪೂರ್ಣ ವೀಕ್ಷಣೆಗೆ ಹಿಂತಿರುಗಿ (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 ನಿಂದ ಪರಿವರ್ತಿಸಿ Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 ಪಾಯಿಂಟ‍ನಿಂದ %2 ಗೆ ಪರಿವರ್ತಿಸಿ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 ಗೆ ಪರಿವರ್ತಿಸುತ್ತದೆ Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ಇದು %3 %4 ಆಗಿದೆ Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. ಇನ್‌ಪುಟ್ ಯುನಿಟ್ Screen reader prompt for the Unit Converter Units1 i.e. top units field. ಔಟ್‍ಪುಟ್ ಯುನಿಟ್ Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. ವಿಸ್ತೀರ್ಣ Unit conversion category name called Area (eg. area of a sports field in square meters) ಡೇಟಾ Unit conversion category name called Data ಶಕ್ತಿ Unit conversion category name called Energy. (eg. the energy in a battery or in food) ಉದ್ದ Unit conversion category name called Length ಪವರ್ Unit conversion category name called Power (eg. the power of an engine or a light bulb) ವೇಗ Unit conversion category name called Speed ಸಮಯ Unit conversion category name called Time ಪ್ರಮಾಣ Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) ಉಷ್ಣತೆ Unit conversion category name called Temperature ತೂಕ Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ಒತ್ತಡ Unit conversion category name called Pressure ಕೋನ Unit conversion category name called Angle ಕರೆನ್ಸಿ Unit conversion category name called Currency ಫ್ಲೂಯಿಡ್ ಔನ್ಸ್‌ಗಳು (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume ಫ್ಲೂಯಿಡ್ ಔನ್ಸ್‌ಗಳು (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume ಗ್ಯಾಲನ್‍ಗಳು (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಗ್ಯಾಲನ್ (UK) An abbreviation for a measurement unit of volume ಗ್ಯಾಲನ್‍ಗಳು (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಗ್ಯಾಲನ್ (US) An abbreviation for a measurement unit of volume ಲೀಟರ್‌‍ಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಲೀ An abbreviation for a measurement unit of volume ಮಿಲಿಲೀಟರ್‌‍ಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮಿಲೀ An abbreviation for a measurement unit of volume ಪಿಂಟ್ಸ್ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume ಪಿಂಟ್ಸ್ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume ಟೇಬಲ್‍ಸ್ಪೂನ್‍ಗಳು (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೇಬಲ್ ಸ್ಪೂನ್ (US) An abbreviation for a measurement unit of volume ಟೀಸ್ಪೂನ್‍ಗಳು (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೀ ಸ್ಪೂನ್ (US) An abbreviation for a measurement unit of volume ಟೇಬಲ್‍ಸ್ಪೂನ್‍ಗಳು (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೇಬಲ್ ಸ್ಪೂನ್ (UK) An abbreviation for a measurement unit of volume ಟೀಸ್ಪೂನ್‍ಗಳು (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೀ ಸ್ಪೂನ್ (UK) An abbreviation for a measurement unit of volume ಕ್ವಾರ್ಟ್ಸ್ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕ್ಯೂಟಿ (UK) An abbreviation for a measurement unit of volume ಕ್ವಾರ್ಟ್ಸ್ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume ಕಪ್‍ಗಳು (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಪ್ (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/ನಿಮಿಷ An abbreviation for a measurement unit of power ಬಿ An abbreviation for a measurement unit of data ಕ್ಯಾಲೊರಿ An abbreviation for a measurement unit of energy ಸೆಂಮಿ An abbreviation for a measurement unit of length ಸೆಂಮೀ/ಸೆ An abbreviation for a measurement unit of speed ಸೆಂಮೀ³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume ಮೀ³ An abbreviation for a measurement unit of volume ಯಾರ್ಡ್³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" ಇವಿ An abbreviation for a measurement unit of energy ಅಡಿ An abbreviation for a measurement unit of length ಅಡಿ/ಸೆ An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power ಗಂಟೆ An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data ಕಿಲೋಕ್ಯಾಲೋರಿ An abbreviation for a measurement unit of energy ಕಿಲೋಜೌಲ್ An abbreviation for a measurement unit of energy ಕಿಮೀ An abbreviation for a measurement unit of length ಕಿಮೀ/ಗಂ An abbreviation for a measurement unit of speed ಕಿಲೋವ್ಯಾಟ್ An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed ಮಿಮೀ An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time ನಿಮಿಷ An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power ಸೆ An abbreviation for a measurement unit of time ಸೆಂಮೀ² An abbreviation for a measurement unit of area ಅಡಿ² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area ಕಿಮೀ² An abbreviation for a measurement unit of area ಮೀ² An abbreviation for a measurement unit of area ಮಿಲಿ² An abbreviation for a measurement unit of area ಮಿಮಿ² An abbreviation for a measurement unit of area ಯಾರ್ಡ್² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power ವಾರ An abbreviation for a measurement unit of time ಯಾರ್ಡ್ An abbreviation for a measurement unit of length ವರ್ಷ An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data ಎಕರೆಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬ್ರಿಟಿಷ್ ಥರ್ಮಲ್ ಘಟಕಗಳು A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU ಗಳು/ನಿಮಿಷ A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಥರ್ಮಲ್ ಕ್ಯಾಲೋರಿಗಳು A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸೆಂಟಿಮೀಟರುಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಸೆಂಟಿಮೀಟರ್‌‍ಗಳು A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಘನ ಸೆಂಟಿಮೀಟರ್‌‍ಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಘನ ಅಡಿ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಘನ ಇಂಚುಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಘನ ಮೀಟರ್‌‍ಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಘನ ಯಾರ್ಡ್‍ಗಳು A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ದಿನಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸೆಲ್ಸಿಯಸ್ An option in the unit converter to select degrees Celsius ಫ್ಯಾರೆನ್‍ಹೀಟ್ An option in the unit converter to select degrees Fahrenheit ಎಲೆಕ್ಟ್ರಾನ್ ವೋಲ್ಟ್‌ಗಳು A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಅಡಿ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಅಡಿ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಫೂಟ್-ಪೌಂಡ್‍ಗಳು A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಫೂಟ್-ಪೌಂಡ್‍ಗಳು/ನಿಮಿಷಕ್ಕೆ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಗಿಗಾಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಗಿಗಾಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಹೆಕ್ಟೇರ್‌‍ಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಹಾರ್ಸ್ ಪವರ್ (US) A measurement unit for power ಗಂಟೆಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಇಂಚುಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜೌಲ್‍ಗಳು A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋವ್ಯಾಟ್-ಸಮಯ A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೆಲ್ವಿನ್ An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". ಕಿಲೋಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆಹಾರ ಕ್ಯಾಲೋರಿಗಳು A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋಜೌಲ್‍ಗಳು A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋಮೀಟರ್‌‍ಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪ್ರತಿ ಗಂಟೆಗೆ ಕಿಲೋಮೀಟರ್‌‍ಗಳು A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋವ್ಯಾಟ್ಸ್ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ನಾಟ್ಸ್ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮ್ಯಾಕ್ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) ಮೆಗಾಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೆಗಾಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೀಟರ್‌ಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ ಮೀಟರ್‌‍ಗಳು A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೈಕ್ರಾನ್‍ಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೈಕ್ರೋಸೆಕೆಂಡುಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೈಲುಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪ್ರತಿ ಗಂಟೆಗೆ ಮೈಲುಗಳು A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮಿಲಿಮೀಟರ್‌‍ಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮಿಲಿಸೆಕೆಂಡುಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ನಿಮಿಷಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ನಿಬ್ಬಲ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ನ್ಯಾನೋಮೀಟರ್‌‍ಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆಂಗ್‌ಸ್ಟ್ರೋಮ್ಸ್ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ನಾಟಿಕಲ್ ಮೈಲುಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೆಟಾಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೆಟಾಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸೆಕೆಂಡ್‍ಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಸೆಂಟಿಮೀಟರುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಅಡಿ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಇಂಚುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಕಿಲೋಮೀಟರುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಮೀಟರುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಮೈಲುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಮಿಲಿಮೀಟರುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಚದರ ಯಾರ್ಡುಗಳು A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೆರಾಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೆರಾಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ವ್ಯಾಟ್‍ಗಳು A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ವಾರಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಯಾರ್ಡುಗಳು A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ವರ್ಷಗಳು A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight ಡ್ಯಾಗ್ An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight ಜಿ An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ಟನ್ (UK) An abbreviation for a measurement unit of weight ಮಿಗ್ರಾಂ An abbreviation for a measurement unit of weight ಔನ್ಸ್ An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ಟನ್ (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight ಕ್ಯಾರಟ್‍ಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಡಿಗ್ರಿಗಳು A measurement unit for Angle. ರೇಡಿಯನ್‍ಗಳು A measurement unit for Angle. ಗ್ರೇಡಿಯನ್‌ಗಳು A measurement unit for Angle. ವಾತಾವರಣಗಳು A measurement unit for Pressure. ಪಟ್ಟಿಗಳು A measurement unit for Pressure. ಕಿಲೋಪ್ಯಾಸ್ಕಲ್‍ಗಳು A measurement unit for Pressure. ಪಾದರಸದ ಮಿಲಿಮೀಟರ್‌‍ಗಳು A measurement unit for Pressure. ಪ್ಯಾಸ್ಕಲ್ A measurement unit for Pressure. ಪ್ರತಿ ಚದರ ಇಂಚಿಗೆ ಪೌಂಡ್‍ಗಳು A measurement unit for Pressure. ಸೆಂಟಿಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಡೆಕಾಗ್ರಾಂಗಳು A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಡೆಸಿಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಹೆಕ್ಟೋಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಲೋಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಲಾಂಗ್ ಟನ್‍ಗಳು (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮಿಲಿಗ್ರಾಂಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಔನ್ಸ್‌ಗಳು A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೌಂಡ್ಸ್ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಶಾರ್ಟ್ ಟನ್‍ಗಳು (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸ್ಟೋನ್ A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೆಟ್ರಿಕ್ ಟನ್‍ಗಳು A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD ಗಳು A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD ಗಳು A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸಾಕರ್ ಅಂಗಣಗಳು A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸಾಕರ್ ಅಂಗಣಗಳು A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಫ್ಲಾಪಿ ಡಿಸ್ಕ್‌ಗಳು A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಫ್ಲಾಪಿ ಡಿಸ್ಕ್‌ಗಳು A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD ಗಳು A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD ಗಳು A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬ್ಯಾಟರಿಗಳು AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬ್ಯಾಟರಿಗಳು AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೇಪರ್‌ಕ್ಲಿಪ್‌ಗಳು A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೇಪರ್‌ಕ್ಲಿಪ್‌ಗಳು A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜಂಬೋ ಜೆಟ್‍ಗಳು A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜಂಬೋ ಜೆಟ್‍ಗಳು A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಲೈಟ್ ಬಲ್ಬ್‌ಗಳು A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಲೈಟ್ ಬಲ್ಬ್‌ಗಳು A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಹಾರ್ಸ್‍ಗಳು A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಹಾರ್ಸ್‍ಗಳು A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬಾತ್‍ಟಬ್‍ಗಳು A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬಾತ್‍ಟಬ್‍ಗಳು A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸ್ನೋಫ್ಲೇಕ್‍ಗಳು A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸ್ನೋಫ್ಲೇಕ್‍ಗಳು A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆನೆಗಳು An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆನೆಗಳು An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆಮೆಗಳು A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಆಮೆಗಳು A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜೆಟ್‍‍ಗಳು A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜೆಟ್‍‍ಗಳು A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ತಿಮಿಂಗಿಲಗಳು A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ತಿಮಿಂಗಿಲಗಳು A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಾಫಿ ಕಪ್‍ಗಳು A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಾಫಿ ಕಪ್‍ಗಳು A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಈಜುಕೊಳಗಳು An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಈಜುಕೊಳಗಳು An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೈಗಳು A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೈಗಳು A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಾಗದದ ಹಾಳೆಗಳು A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಾಗದದ ಹಾಳೆಗಳು A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೋಟೆಗಳು A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೋಟೆಗಳು A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬಾಳೆಹಣ್ಣುಗಳು A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಬಾಳೆಹಣ್ಣುಗಳು A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೇಕ್ ತುಣುಕುಗಳು A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕೇಕ್ ತುಣುಕುಗಳು A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ರೈಲು ಇಂಜಿನ್‍ಗಳು A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ರೈಲು ಇಂಜಿನ್‍ಗಳು A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸಾಕರ್ ಚೆಂಡುಗಳು A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸಾಕರ್ ಚೆಂಡುಗಳು A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಸ್ಮರಣೆ ಐಟಂ Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) ಹಿಂದೆ Screen reader prompt for the About panel back button ಹಿಂದೆ Content of tooltip being displayed on AboutControlBackButton Microsoft ಸಾಫ್ಟ್‌ವೇರ್ ಪರವಾನಗಿ ನಿಯಮಗಳು Displayed on a link to the Microsoft Software License Terms on the About panel ಮುನ್ನೋಟ Label displayed next to upcoming features Microsoft ಗೌಪ್ಯತೆ ಹೇಳಿಕೆ Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. ಎಲ್ಲ ಹಕ್ಕುಗಳನ್ನು ಕಾಯ್ದಿರಿಸಲಾಗಿದೆ. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) ನೀವು Windows ಕ್ಯಾಲ್ಕುಲೇಟರ್‌ಗೆ ಹೇಗೆ ಕೊಡುಗೆ ನೀಡಬಹುದು ಎಂದು ತಿಳಿಯಲು, %HL%GitHub%HL% ನಲ್ಲಿ Project ಅನ್ನು ಪರಿಶೀಲಿಸಿ. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel ಬಗ್ಗೆ Subtitle of about message on Settings page ಪ್ರತಿಕ್ರಿಯೆ ಕಳುಹಿಸಿ The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app ಇನ್ನೂ ಯಾವುದೇ ಇತಿಹಾಸವಿಲ್ಲ. The text that shows as the header for the history list ಸ್ಮರಣೆಯಲ್ಲಿ ಏನನ್ನೂ ಉಳಿಸಲಾಗಿಲ್ಲ. The text that shows as the header for the memory list ಸ್ಮರಣೆ Screen reader prompt for the negate button on the converter operator keypad ಈ ಅಭಿವ್ಯಕ್ತಿಯನ್ನು ಅಂಟಿಸಲಾಗುವುದಿಲ್ಲ The paste operation cannot be performed, if the expression is invalid. ಜಿಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಜಿಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಬಿಬೈಟ್‍‌ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಕಿಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೆಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಮೆಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೆಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಪೆಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೆಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಟೆಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಎಕ್ಸಾಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಎಕ್ಸಾಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಎಕ್ಸ್‌ಬಿ‌ಬೈಟ್‌ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಎಕ್ಸ್‌ಬಿ‌ಬೈಟ್‌ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಝೆಟಾಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಝೆಟಾಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಝೆಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಝೆಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಯೋಟಾ ಬಿಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಯೊಟಾಬೈಟ್ಸ್ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಯೊಬಿಬಿಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ಯೊಬಿಬೈಟ್‍ಗಳು A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ದಿನಾಂಕ ಲೆಕ್ಕಾಚಾರ ಲೆಕ್ಕಾಚಾರ ಮೋಡ್ Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". ಸೇರಿಸು Add toggle button text ದಿನಗಳನ್ನು ಸಂಕಲಿಸಿ ಅಥವಾ ವ್ಯವಕಲಿಸಿ Add or Subtract days option ದಿನಾಂಕ Date result label ದಿನಾಂಕಗಳ ನಡುವಿನ ವ್ಯತ್ಯಾಸ Date difference option ದಿನಗಳು Add/Subtract Days label ವ್ಯತ್ಯಾಸ Difference result label ಇಂದ From Date Header for Difference Date Picker ತಿಂಗಳು Add/Subtract Months label ವ್ಯವಕಲನ Subtract toggle button text ಇವರಿಗೆ To Date Header for Difference Date Picker ವರ್ಷಗಳು Add/Subtract Years label ದಿನಾಂಕ ವ್ಯಾಪ್ತಿ ಮೀರಿದೆ Out of bound message shown as result when the date calculation exceeds the bounds ದಿನ ದಿನಗಳು ತಿಂಗಳು ತಿಂಗಳು ಒಂದೇ ದಿನಾಂಕಗಳು ವಾರ ವಾರಗಳು ವರ್ಷ ವರ್ಷಗಳು ವ್ಯತ್ಯಾಸ %1 Automation name for reading out the date difference. %1 = Date difference ಪರಿಣಾಮದ ದಿನಾಂಕ %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 ಕ್ಯಾಲ್ಕುಲೇಟರ್ ಮೋಡ್ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 ಕನ್ವರ್ಟರ್ ಮೋಡ್ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. ದಿನಾಂಕ ಲೆಕ್ಕಾಚಾರ ಮೋಡ್ Automation name for when the mode header is focused and the current mode is Date calculation. ಇತಿಹಾಸ ಮತ್ತು ಸ್ಮರಣೆ ಪಟ್ಟಿಗಳು Automation name for the group of controls for history and memory lists. ಸ್ಮರಣೆ ನಿಯಂತ್ರಣಗಳು Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) ಪ್ರಮಾಣಿತ ಕಾರ್ಯಗಳು Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) ಪ್ರದರ್ಶನ ನಿಯಂತ್ರಣಗಳು Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) ಪ್ರಮಾಣಿತ ಆಪರೇಟರ್‌‍ಗಳು Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) ಸಂಖ್ಯೆ ಪ್ಯಾಡ್ Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) ಆಪರೇಟರ್‌ಗಳು Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) ವೈಜ್ಞಾನಿಕ ಕಾರ್ಯಗಳು Automation name for the group of Scientific functions. ರೇಡಿಕ್ಸ್ ಆಯ್ಕೆ Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix ಪ್ರೋಗ್ರಾಮರ್ ಆಪರೇಟರ್‌‍ಗಳು Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). ಇನ್ಪುಟ್ ಮೋಡ್ ಆಯ್ಕೆ Automation name for the group of input mode toggling buttons. ಬಿಟ್ ಟಾಗ್ಲಿಂಗ್ ಕೀಪ್ಯಾಡ್ Automation name for the group of bit toggling buttons. ಎಡಕ್ಕೆ ಅಭಿವ್ಯಕ್ತಿಯನ್ನು ಸ್ಕ್ರಾಲ್ ಮಾಡಿ Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. ಬಲಕ್ಕೆ ಅಭಿವ್ಯಕ್ತಿಯನ್ನು ಸ್ಕ್ರಾಲ್ ಮಾಡಿ Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. ಗರಿಷ್ಠ ಅಂಕಿಗಳನ್ನು ತಲುಪಿದೆ. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 ಅನ್ನು ಸ್ಮರಣೆಗೆ ಉಳಿಸಲಾಗಿದೆ {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". ಮೆಮೊರಿ ಸ್ಲಾಟ್ %1 ಅಂದರೆ %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". ಮೆಮೊರಿ ಸ್ಲಾಟ್ %1 ಖಾಲಿ ಮಾಡಲಾಗಿದೆ {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". ಇದರಿಂದ ವಿಭಾಗಿಸಿ Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ಸಮಯಗಳು Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ಕಳೆ Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. ಕೂಡು Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ಪವರ್ Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y ರೂಟ್ Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. ಮಾಡ್ Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ಎಡ ಶಿಫ್ಟ್ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. ಬಲ ಶಿಫ್ಟ್ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ಅಥವಾ Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ಅಥವಾ Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ಮತ್ತು Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. %1 %2 ನವೀಕರಿಸಲಾಗಿದೆ The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" ದರಗಳನ್ನು ಪರಿಷ್ಕರಿಸಿ The text displayed for a hyperlink button that refreshes currency converter ratios. ಡೇಟಾ ಶುಲ್ಕಗಳು ಅನ್ವಯವಾಗಬಹುದು. The text displayed when users are on a metered connection and using currency converter. ಹೊಸ ದರಗಳನ್ನು ಪಡೆಯಲಾಗಲಿಲ್ಲ. ನಂತರ ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ. The text displayed when currency ratio data fails to load. ಆಫ್‌ಲೈನ್. ದಯವಿಟ್ಟು ನಿಮ್ಮ %HL%ನೆಟ್‌ವರ್ಕ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳು %HL% ಅನ್ನು ಪರಿಶೀಲಿಸಿ Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} ಕರೆನ್ಸಿ ದರಗಳನ್ನು ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. ಕರೆನ್ಸಿ ದರಗಳು ನವೀಕರಿಸಲಾಗಿದೆ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. ದರಗಳನ್ನು ನವೀಕರಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} ಲೀ AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} ಎಲ್ಲಾ ಸ್ಮರಣೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. ಎಲ್ಲಾ ಸ್ಮರಣೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ಸೈನ್ ಡಿಗ್ರಿಗಳು Name for the sine function in degrees mode. Used by screen readers. ಸೈನ್ ರೇಡಿಯನ್‍ಗಳು Name for the sine function in radians mode. Used by screen readers. ಸೈನ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the sine function in gradians mode. Used by screen readers. ವಿಲೋಮ ಸೈನ್ ಡಿಗ್ರಿಗಳು Name for the inverse sine function in degrees mode. Used by screen readers. ವಿಲೋಮ ಸೈನ್ ರೇಡಿಯನ್‍ಗಳು Name for the inverse sine function in radians mode. Used by screen readers. ವಿಲೋಮ ಸೈನ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the inverse sine function in gradians mode. Used by screen readers. ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೈನ್ Name for the hyperbolic sine function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೈನ್ Name for the inverse hyperbolic sine function. Used by screen readers. ಕೊಸೈನ್ ಡಿಗ್ರಿಗಳು Name for the cosine function in degrees mode. Used by screen readers. ಕೊಸೈನ್ ರೇಡಿಯನ್‍ಗಳು Name for the cosine function in radians mode. Used by screen readers. ಕೊಸೈನ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the cosine function in gradians mode. Used by screen readers. ವಿಲೋಮ ಕೊಸೈನ್ ಡಿಗ್ರಿಗಳು Name for the inverse cosine function in degrees mode. Used by screen readers. ವಿಲೋಮ ಕೊಸೈನ್ ರೇಡಿಯನ್‍ಗಳು Name for the inverse cosine function in radians mode. Used by screen readers. ವಿಲೋಮ ಕೋಸೈನ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the inverse cosine function in gradians mode. Used by screen readers. ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೋಸೈನ್ Name for the hyperbolic cosine function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೋಸೈನ್ Name for the inverse hyperbolic cosine function. Used by screen readers. ಸ್ಪರ್ಶಕ ಡಿಗ್ರಿಗಳು Name for the tangent function in degrees mode. Used by screen readers. ಟ್ಯಾಂಜೆಂಟ್ ರೇಡಿಯನ್‍ಗಳು Name for the tangent function in radians mode. Used by screen readers. ಟ್ಯಾಂಜೆಂಟ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the tangent function in gradians mode. Used by screen readers. ವಿಲೋಮ ಸ್ಪರ್ಶಕ ಡಿಗ್ರಿಗಳು Name for the inverse tangent function in degrees mode. Used by screen readers. ವಿಲೋಮ ಸ್ಪರ್ಶಕ ರೇಡಿಯನ್‍ಗಳು Name for the inverse tangent function in radians mode. Used by screen readers. ವಿಲೋಮ ಟ್ಯಾಂಜೆಂಟ್ ಗ್ರೇಡಿಯನ್‍ಗಳು Name for the inverse tangent function in gradians mode. Used by screen readers. ಹೈಪರ್‌ಬೋಲಿಕ್ ಟ್ಯಾಂಜೆಂಟ್ Name for the hyperbolic tangent function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಟ್ಯಾಂಜೆಂಟ್ Name for the inverse hyperbolic tangent function. Used by screen readers. ಸೀಕಂಟ್ ಡಿಗ್ರಿಗಳು Name for the secant function in degrees mode. Used by screen readers. ಸೀಕಂಟ್ ರೇಡಿಯನ್‌ಗಳು Name for the secant function in radians mode. Used by screen readers. ಸೀಕಂಟ್ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the secant function in gradians mode. Used by screen readers. ವಿಲೋಮ ಸೀಕಂಟ್‌ ಡಿಗ್ರಿಗಳು Name for the inverse secant function in degrees mode. Used by screen readers. ವಿಲೋಮ ಸೀಕಂಟ್‌ ರೇಡಿಯನ್‌ಗಳು Name for the inverse secant function in radians mode. Used by screen readers. ವಿಲೋಮ ಸೀಕಂಟ್‌ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the inverse secant function in gradians mode. Used by screen readers. ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೀಕಂಟ್‌ Name for the hyperbolic secant function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೀಕಂಟ್‌ Name for the inverse hyperbolic secant function. Used by screen readers. ಕೊಸಿಕೆಂಟ್ ಡಿಗ್ರಿಗಳು Name for the cosecant function in degrees mode. Used by screen readers. ಕೊಸಿಕೆಂಟ್ ರೇಡಿಯನ್‌ಗಳು Name for the cosecant function in radians mode. Used by screen readers. ಕೊಸಿಕೆಂಟ್ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the cosecant function in gradians mode. Used by screen readers. ವಿಲೋಮ ಕೊಸಿಕೆಂಟ್ ಡಿಗ್ರಿಗಳು Name for the inverse cosecant function in degrees mode. Used by screen readers. ವಿಲೋಮ ಕೊಸಿಕೆಂಟ್ ರೇಡಿಯನ್‌ಗಳು Name for the inverse cosecant function in radians mode. Used by screen readers. ವಿಲೋಮ ಕೊಸಿಕೆಂಟ್ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the inverse cosecant function in gradians mode. Used by screen readers. ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೊಸಿಕೆಂಟ್ Name for the hyperbolic cosecant function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೊಸಿಕೆಂಟ್ Name for the inverse hyperbolic cosecant function. Used by screen readers. ಕೊಟ್ಯಾಂಜೆಂಟ್ ಡಿಗ್ರಿಗಳು Name for the cotangent function in degrees mode. Used by screen readers. ಕೊಟ್ಯಾಂಜೆಂಟ್ ರೇಡಿಯನ್‌ಗಳು Name for the cotangent function in radians mode. Used by screen readers. ಕೊಟ್ಯಾಂಜೆಂಟ್ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the cotangent function in gradians mode. Used by screen readers. ವಿಲೋಮ ಕೊಟ್ಯಾಂಜೆಂಟ್ ಡಿಗ್ರಿಗಳು Name for the inverse cotangent function in degrees mode. Used by screen readers. ವಿಲೋಮ ಕೊಟ್ಯಾಂಜೆಂಟ್ ರೇಡಿಯನ್‌ಗಳು Name for the inverse cotangent function in radians mode. Used by screen readers. ವಿಲೋಮ ಕೊಟ್ಯಾಂಜೆಂಟ್ ಗ್ರೇಡಿಯನ್‌ಗಳು Name for the inverse cotangent function in gradians mode. Used by screen readers. ಹೈಪರ್ ಬೋಲಿಕ್ ಕೊಟ್ಯಾಂಜೆಂಟ್ Name for the hyperbolic cotangent function. Used by screen readers. ವಿಲೋಮ ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೊಟ್ಯಾಂಜೆಂಟ್ Name for the inverse hyperbolic cotangent function. Used by screen readers. ಘನ ಮೂಲ Name for the cube root function. Used by screen readers. ಲಾಗ್ ಬೇಸ್ Name for the logbasey function. Used by screen readers. ಪರಿಪೂರ್ಣ ಮೌಲ್ಯ Name for the absolute value function. Used by screen readers. ಎಡ ಶಿಫ್ಟ್ Name for the programmer function that shifts bits to the left. Used by screen readers. ಬಲ ಶಿಫ್ಟ್ Name for the programmer function that shifts bits to the right. Used by screen readers. ಗುಣಲಬ್ಧ Name for the factorial function. Used by screen readers. ಡಿಗ್ರಿ ನಿಮಿಷ ಸೆಕೆಂಡ್ Name for the degree minute second (dms) function. Used by screen readers. ನ್ಯಾಚುರಲ್ ಲಾಗ್ Name for the natural log (ln) function. Used by screen readers. ಚೌಕ Name for the square function. Used by screen readers. y ರೂಟ್ Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 ವರ್ಗ {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft ಸೇವೆಗಳ ಒಪ್ಪಂದ Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. ಇಂದ From Date Header for AddSubtract Date Picker ಲೆಕ್ಕಾಚಾರ ಫಲಿತಾಂಶವನ್ನು ಎಡಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. ಲೆಕ್ಕಾಚಾರ ಫಲಿತಾಂಶವನ್ನು ಬಲಕ್ಕೆ ಸ್ಕ್ರಾಲ್ ಮಾಡಿ Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. ಲೆಕ್ಕಾಚಾರ ವಿಫಲವಾಗಿದೆ Text displayed when the application is not able to do a calculation ಲಾಗ್ ಬೇಸ್ Y Screen reader prompt for the logBaseY button ಟ್ರಿಗ್ನೊಮೆಟ್ರಿ Displayed on the button that contains a flyout for the trig functions in scientific mode. ಕಾರ್ಯ Displayed on the button that contains a flyout for the general functions in scientific mode. ಅಸಮಾನತೆಗಳು Displayed on the button that contains a flyout for the inequality functions. ಅಸಮಾನತೆಗಳು Screen reader prompt for the Inequalities button ಬಿಟ್‌ವೈಸ್ Displayed on the button that contains a flyout for the bitwise functions in programmer mode. ಬಿಟ್ ಶಿಫ್ಟ್ Displayed on the button that contains a flyout for the bit shift functions in programmer mode. ವಿಲೋಮ ಕಾರ್ಯ Screen reader prompt for the shift button in the trig flyout in scientific mode. ಹೈಪರ್‌ಬೋಲಿಕ್ ಕಾರ್ಯ Screen reader prompt for the Calculator button HYP in the scientific flyout keypad ಸೀಕಂಟ್ Screen reader prompt for the Calculator button sec in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಸೀಕಂಟ್‌ Screen reader prompt for the Calculator button sech in the scientific flyout keypad ಆರ್ಕ್ ಸೀಕಂಟ್ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಸೀಕಂಟ್ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ಕೊಸಿಕೆಂಟ್ Screen reader prompt for the Calculator button csc in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೊಸಿಕೆಂಟ್ Screen reader prompt for the Calculator button csch in the scientific flyout keypad ಆರ್ಕ್ ಕೊಸಿಕೆಂಟ್ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಕೊಸಿಕೆಂಟ್ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ಕೊಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator button cot in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಕೊಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator button coth in the scientific flyout keypad ಆರ್ಕ್ ಕೊಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ಹೈಪರ್‌ಬೋಲಿಕ್ ಆರ್ಕ್ ಕೊಟ್ಯಾಂಜೆಂಟ್ Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ಫ್ಲೋರ್ Screen reader prompt for the Calculator button floor in the scientific flyout keypad ಸೀಲಿಂಗ್ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ಯಾದೃಚ್ಛಿಕ Screen reader prompt for the Calculator button random in the scientific flyout keypad ಪರಿಪೂರ್ಣ ಮೌಲ್ಯ Screen reader prompt for the Calculator button abs in the scientific flyout keypad ಯೂಲರ್ಸ್ ನಂಬರ್ Screen reader prompt for the Calculator button e in the scientific flyout keypad ಘಾತಾಂಕಕ್ಕೆ ಎರಡು Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad ಇಲ್ಲ ಮತ್ತು Screen reader prompt for the Calculator button nand in the scientific flyout keypad ಇಲ್ಲ ಮತ್ತು Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. ಅಥವಾ Screen reader prompt for the Calculator button nor in the scientific flyout keypad ಅಥವಾ Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. ಕ್ಯಾರಿಯೊಂದಿಗೆ ಎಡಗಡೆಗೆ ತಿರುಗಿಸಿ Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad ಕ್ಯಾರಿಯೊಂದಿಗೆ ಬಲಗಡೆಗೆ ತಿರುಗಿಸಿ Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad ಎಡ ಶಿಫ್ಟ್ Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad ಎಡ ಶಿಫ್ಟ್ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. ಬಲ ಶಿಫ್ಟ್ Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad ಬಲ ಶಿಫ್ಟ್ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. ಅಂಕಗಣಿತ ಶಿಫ್ಟ್ Label for a radio button that toggles arithmetic shift behavior for the shift operations. ಲಾಜಿಕಲ್ ಶಿಫ್ಟ್ Label for a radio button that toggles logical shift behavior for the shift operations. ವೃತ್ತಾಕಾರದ ಶಿಫ್ಟ್ ತಿರುಗಿಸಿ Label for a radio button that toggles rotate circular behavior for the shift operations. ಕ್ಯಾರಿ ವೃತ್ತಾಕಾರದ ಶಿಫ್ಟ್ ಮೂಲಕ ತಿರುಗಿಸಿ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ಘನ ಮೂಲ Screen reader prompt for the cube root button on the scientific operator keypad ಟ್ರಿಗ್ನೊಮೆಟ್ರಿ Screen reader prompt for the square root button on the scientific operator keypad ಕಾರ್ಯಗಳು Screen reader prompt for the square root button on the scientific operator keypad ಬಿಟ್‌ವೈಸ್ Screen reader prompt for the square root button on the scientific operator keypad ಬಿಟ್ಶಿಫ್ಟ್ Screen reader prompt for the square root button on the scientific operator keypad ವೈಜ್ಞಾನಿಕ ಆಪರೇಟರ್ ಪ್ಯಾನೆಲ್‌ಗಳು Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad ಪ್ರೋಗ್ರಾಮರ್ ಆಪರೇಟರ್ ಪ್ಯಾನೆಲ್‌ಗಳು Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ಅತ್ಯಂತ ಮಹತ್ವದ ಬಿಟ್ Used to describe the last bit of a binary number. Used in bit flip ಗ್ರಾಫಿಂಗ್ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. ಪ್ಲಾಟ್ Screen reader prompt for the plot button on the graphing calculator operator keypad ಸ್ವಯಂಚಾಲಿತವಾಗಿ ನೋಟವನ್ನು ಪುನಶ್ಚೇತನಗೊಳಿಸು (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. ಗ್ರಾಫ್ ವೀಕ್ಷಣೆ Screen reader prompt for the graph view button. ಸ್ವಯಂಚಾಲಿತ ಅತ್ಯುತ್ತಮ ಹೊಂದಿಕೆ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set ಹಸ್ತಚಾಲಿತ ಹೊಂದಾಣಿಕೆ Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set ಗ್ರಾಫ್ ವೀಕ್ಷಣೆಯನ್ನು ಮರುಹೊಂದಿಸಲಾಗಿದೆ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph ಝೂಮ್ ಇನ್ (Ctrl + ಪ್ಲಸ್) This is the tool tip automation name for the Calculator zoom in button. ಜೂಮ್ ಇನ್ Screen reader prompt for the zoom in button. ಝೂಮ್ ಔಟ್ (Ctrl + ಮೈನಸ್) This is the tool tip automation name for the Calculator zoom out button. ಜೂಮ್ ಔಟ್ Screen reader prompt for the zoom out button. ಸಮೀಕರಣ ಸೇರಿಸಿ Placeholder text for the equation input button ಈ ಸಮಯದಲ್ಲಿ ಹಂಚಿಕೊಳ್ಳಲು ಸಾಧ್ಯವಿಲ್ಲ. If there is an error in the sharing action will display a dialog with this text. ಸರಿ Used on the dismiss button of the share action error dialog. Windows ಕ್ಯಾಲ್ಕುಲೇಟರ್‌ನೊಂದಿಗೆ ನಾನು ಏನು ಗ್ರಹಿಸಿದ್ದೇನೆ ಎಂಬುದನ್ನು ನೋಡಿ Sent as part of the shared content. The title for the share. ಸಮೀಕರಣಗಳು Header that appears over the equations section when sharing ವೇರಿಯೇಬಲ್‌ಗಳು Header that appears over the variables section when sharing ಸಮೀಕರಣಗಳೊಂದಿಗೆ ಗ್ರಾಫ್ ಚಿತ್ರ Alt text for the graph image when output via Share ವೇರಿಯೇಬಲ್‌ಗಳು Header text for variables area ಹಂತ Label text for the step text box ಕನಿಷ್ಠ Label text for the min text box ಗರಿಷ್ಠ Label text for the max text box ಬಣ್ಣ Label for the Line Color section of the style picker ಶೈಲಿ Label for the Line Style section of the style picker ಕಾರ್ಯ ವಿಶ್ಲೇಷಣೆ Title for KeyGraphFeatures Control ಫಂಕ್ಷನ್ ಯಾವುದೇ ಅಡ್ಡ ಅಸಂಪಾತಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any horizontal asymptotes ಫಂಕ್ಷನ್ ಯಾವುದೇ ಇನ್ಫ್ಲೆಕ್ಷನ್ ಪಾಯಿಂಟ್‌ಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any inflection points ಫಂಕ್ಷನ್ ಯಾವುದೇ ಗರಿಷ್ಠ ಪಾಯಿಂಟ್‌ಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any maxima ಫಂಕ್ಷನ್ ಯಾವುದೇ ಕನಿಷ್ಠ ಪಾಯಿಂಟ್‌ಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any minima ನಿರಂತರ String describing constant monotonicity of a function ಕಡಿಮೆಯಾಗುತ್ತಿದೆ String describing decreasing monotonicity of a function ಫಂಕ್ಷನ್‌ನ ಏಕತಾನತೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. Error displayed when monotonicity cannot be determined ಹೆಚ್ಚುತ್ತಿದೆ String describing increasing monotonicity of a function ಫಂಕ್ಷನ್‌ನ ಏಕತಾನತೆ ಅಜ್ಞಾತವಾಗಿದೆ. Error displayed when monotonicity is unknown ಫಂಕ್ಷನ್ ಯಾವುದೇ ಓರೆಯಾದ ಅಸಂಪಾತಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any oblique asymptotes ಫಂಕ್ಷನ್‌ನ ಸಮಾನತೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. Error displayed when parity is cannot be determined ಫಂಕ್ಷನ್ ಸಮವಾಗಿದೆ. Message displayed with the function parity is even ಫಂಕ್ಷನ್ ಸಮ ಅಥವಾ ಬೆಸ ಆಗಿಲ್ಲ. Message displayed with the function parity is neither even nor odd ಫಂಕ್ಷನ್ ಬೆಸವಾಗಿದೆ. Message displayed with the function parity is odd ಫಂಕ್ಷನ್‌ನ ಸಮಾನತೆ ಅಜ್ಞಾತವಾಗಿದೆ. Error displayed when parity is unknown ಈ ಫಂಕ್ಷನ್‌ಗಾಗಿ ಆವರ್ತಕತೆ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ. Error displayed when periodicity is not supported ಫಂಕ್ಷನ್ ಆವರ್ತಕವಲ್ಲ. Message displayed with the function periodicity is not periodic ಫಂಕ್ಷನ್ ಆವರ್ತಕತೆ ಅಜ್ಞಾತವಾಗಿದೆ. Message displayed with the function periodicity is unknown ಈ ವೈಶಿಷ್ಟ್ಯಗಳು ಲೆಕ್ಕಾಚಾರ ಮಾಡಲು ಕ್ಯಾಲ್ಕುಲೇಟರ್‌ಗೆ ತುಂಬಾ ಸಂಕೀರ್ಣವಾಗಿವೆ: Error displayed when analysis features cannot be calculated ಫಂಕ್ಷನ್ ಯಾವುದೇ ಲಂಬ ಅಸಂಪಾತಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any vertical asymptotes ಫಂಕ್ಷನ್ ಯಾವುದೇ x-ಪ್ರತಿಬಂಧಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any x-intercepts ಫಂಕ್ಷನ್ ಯಾವುದೇ y-ಪ್ರತಿಬಂಧಗಳನ್ನು ಹೊಂದಿಲ್ಲ. Message displayed when the graph does not have any y-intercepts ಡೊಮೇನ್ Title for KeyGraphFeatures Domain Property ಅಡ್ಡ ಅಸಂಪಾತಗಳು Title for KeyGraphFeatures Horizontal aysmptotes Property ರೂಪನಿಷ್ಪತ್ತಿ ಬಿಂದುಗಳು Title for KeyGraphFeatures Inflection points Property ಈ ಫಂಕ್ಷನ್‌ಗಾಗಿ ವಿಶ್ಲೇಷಣೆಯನ್ನು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ. Error displayed when graph analysis is not supported or had an error. ವಿಶ್ಲೇಷಣೆಯನ್ನು f(x) ಸ್ವರೂಪದಲ್ಲಿ ಕಾರ್ಯಗಳಿಗೆ ಮಾತ್ರ ಬೆಂಬಲಿಸಲಾಗಿದೆ. ಉದಾಹರಣೆ: y=x Error displayed when graph analysis detects the function format is not f(x). ಗರಿಷ್ಠ Title for KeyGraphFeatures Maxima Property ಕನಿಷ್ಠ Title for KeyGraphFeatures Minima Property ಏಕತಾನತೆ Title for KeyGraphFeatures Monotonicity Property ಓರೆಯಾದ ಅಸಂಪಾತಗಳು Title for KeyGraphFeatures Oblique asymptotes Property ಸಮಾನತೆ Title for KeyGraphFeatures Parity Property ಅವಧಿ Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. ವ್ಯಾಪ್ತಿ Title for KeyGraphFeatures Range Property ಲಂಬ ಅಸಂಪಾತಗಳು Title for KeyGraphFeatures Vertical asymptotes Property X-ಪ್ರತಿಬಂಧ Title for KeyGraphFeatures XIntercept Property Y-ಪ್ರತಿಬಂಧ Title for KeyGraphFeatures YIntercept Property ಫಂಕ್ಷನ್‌ಗಾಗಿ ವಿಶ್ಲೇಷಣೆ ನಡೆಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ಈ ಫಂಕ್ಷನ್‌ಗಾಗಿ ಡೊಮೇನ್ ಅನ್ನು ಲೆಕ್ಕಹಾಕಲು ಸಾಧ್ಯವಿಲ್ಲ. Error displayed when Domain is not returned from the analyzer. ಈ ಫಂಕ್ಷನ್‌ಗಾಗಿ ಶ್ರೇಣಿಯನ್ನು ಲೆಕ್ಕಹಾಕಲು ಸಾಧ್ಯವಿಲ್ಲ. Error displayed when Range is not returned from the analyzer. ಅತ್ಯಾಧಿಕ (ಸಂಖ್ಯೆ ತುಂಬಾ ದೊಡ್ಡದಿದೆ) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ಈ ಸಮೀಕರಣದ ಗ್ರಾಫ್‌ ಮಾಡಲು ರೇಡಿಯನ್ಸ್ ಮೋಡ್ ಅಗತ್ಯವಿದ್ದೆ. Error that occurs during graphing when radians is required. ಈ ಫಲನವು ಗ್ರಾಫ್ ರಚಿಸಲು ತುಂಬಾ ಸಂಕೀರ್ಣವಾಗಿದೆ Error that occurs during graphing when the equation is too complex. ಈ ಸಮೀಕರಣದ ಗ್ರಾಫ್‌ ತಯಾರಿಸಲು ಡಿಗ್ರೀ ಮೋಡ್‌ನ ಅಗತ್ಯವಿದ್ದೆ Error that occurs during graphing when degrees is required ಅಪವರ್ತನೀಯ ಫಲನವು ಒಂದು ಅಮಾನ್ಯ ಚರಪರಿಮಾಣವನ್ನು ಹೊಂದಿದೆ Error that occurs during graphing when a factorial function has an invalid argument. ಅಪವರ್ತನೀಯ ಫಲನವು ಗ್ರಾಫ್ ರಚಿಸಲು ಅಗತ್ಯವಿರುವುದಕ್ಕಿಂತಲೂ ತುಂಬಾ ದೊಡ್ಡದಾದ ಒಂದು ಚರಪರಿಮಾಣವನ್ನು ಹೊಂದಿದೆ Error that occurs during graphing when a factorial has a large n ಮಾಡ್ಯುಲೋ ಅನ್ನು ಪೂರ್ಣ ಸಂಖ್ಯೆಗಳೊಂದಿಗೆ ಮಾತ್ರ ಬಳಸಬಹುದಾಗಿದೆ Error that occurs during graphing when modulo is used with a float. ಸಮೀಕರಣವು ಯಾವುದೇ ಪರಿಹಾರವನ್ನು ಹೊಂದಿಲ್ಲ Error that occurs during graphing when the equation has no solution. ಸೊನ್ನೆಯಿಂದ ವಿಭಾಗಿಸಲಾಗುವುದಿಲ್ಲ Error that occurs during graphing when a divison by zero occurs. ಈ ಸಮೀಕರಣವು ಪರಸ್ಪರ ವ್ಯಾವರ್ತಕವಾಗಿರುವ ತಾರ್ಕಿಕ ಪರಿಸ್ಥಿತಿಗಳನ್ನು ಹೊಂದಿದೆ Error that occurs during graphing when mutually exclusive conditions are used. ಸಮೀಕರಣ ಜ್ಞಾನ ನೆಲೆಯ ಹೊರಗಿನದ್ದಾಗಿದೆ Error that occurs during graphing when the equation is out of domain. ಈ ಸಮೀಕರಣದ ಗ್ರಾಫಿಂಗ್‌ಗೆ ಬೆಂಬಲ ಇಲ್ಲ Error that occurs during graphing when the equation is not supported. ಸಮೀಕರಣದಲ್ಲಿ ಆರಂಭಿಕ ಪ್ರಕ್ಷೇಪ ಚಿಹ್ನೆಯು ಕಾಣೆಯಾಗಿದೆ Error that occurs during graphing when the equation is missing a ( ಸಮೀಕರಣದಲ್ಲಿ ಮುಚ್ಚುವ ಪ್ರಕ್ಷೇಪ ಚಿಹ್ನೆಯು ಕಾಣೆಯಾಗಿದೆ Error that occurs during graphing when the equation is missing a ) ಒಂದು ಸಂಖ್ಯೆಯಲ್ಲಿ ಹಲವಾರು ದಶಮಾಂಶ ಬಿಂದುಗಳಿವೆ Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 ಒಂದು ದಶಮಾಂಶ ಬಿಂದುವಿನಲ್ಲಿ ಅಂಕೆಗಳು ಕಾಣೆಯಾಗಿವೆ Error that occurs during graphing with a decimal point without digits ಅಭಿವ್ಯಕ್ತಿಯ ಅನಿರೀಕ್ಷಿತ ಅಂತ್ಯ Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* ಅಭಿವ್ಯಕ್ತಿಯಲ್ಲಿ ಅನಪೇಕ್ಷಿತ ಅಕ್ಷರಗಳಿರುವವು Error that occurs during graphing when there is an unexpected token. ಅಭಿವ್ಯಕ್ತಿಯಲ್ಲಿ ಅಮಾನ್ಯವಾದ ಅಕ್ಷರಗಳಿರುವವು Error that occurs during graphing when there is an invalid token. ಹಲವಾರು ಸಮಾನ ಚಿಹ್ನೆಗಳು ಇರುವವು Error that occurs during graphing when there are too many equals. ಫಲನವು ಕನಿಷ್ಟ ಒಂದು x ಅಥವಾ y ಚರವನ್ನು ಹೊಂದಿರತಕ್ಕದ್ದು Error that occurs during graphing when the equation is missing x or y. ಅಮಾನ್ಯವಾದ ಅಭಿವ್ಯಕ್ತಿ Error that occurs during graphing when an invalid syntax is used. ಅಭಿವ್ಯಕ್ತಿಯು ಖಾಲಿ ಇದೆ Error that occurs during graphing when the expression is empty ಸಮೀಕರಣವಿಲ್ಲದೆ ಸಮಾನ ಚಿಹ್ನೆಯನ್ನು ಬಳಸಲಾಗಿತ್ತು Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ಫಲನದ ಹೆಸರಿನ ನಂತರ ಪ್ರಕ್ಷೇಪ ಚಿಹ್ನೆಗಳು ಕಾಣೆಯಾಗಿರುವವು Error that occurs during graphing when parenthesis are missing after a function. ಗಣಿತೀಯ ಕಾರ್ಯಾಚರಣೆಯು ತಪ್ಪಾದ ಸಂಖ್ಯೆಯ ನಿಯತಾಂಕಗಳನ್ನು ಹೊಂದಿದೆ Error that occurs during graphing when a function has the wrong number of parameters ಒಂದು ಚರದ ಹೆಸರು ಅಮಾನ್ಯವಾಗಿದೆ Error that occurs during graphing when a variable name is invalid. ಸಮೀಕರಣದಲ್ಲಿ ಆರಂಭಿಕ ಆವರಣವು ಕಾಣೆಯಾಗಿದೆ Error that occurs during graphing when a { is missing ಸಮೀಕರಣದಲ್ಲಿ ಮುಚ್ಚುವ ಆವರಣವು ಕಾಣೆಯಾಗಿದೆ Error that occurs during graphing when a } is missing. "i" ಮತ್ತು "I" ಗಳನ್ನು ಚರ ಹೆಸರುಗಳನ್ನಾಗಿ ಬಳಸುವಂತಿಲ್ಲ Error that occurs during graphing when i or I is used. ಈ ಸಮೀಕರಣದ ಗ್ರಾಫ್‌ ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ General error that occurs during graphing. ನೀಡಲಾದ ಮೂಲ ಸಂಖ್ಯೆಗೆ ಅಂಕೆಯನ್ನು ಪರಿಹರಿಸಲಾಗಲಿಲ್ಲ Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). ಮೂಲ ಸಂಖ್ಯೆಯು 2 ಕ್ಕಿಂತ ಹೆಚ್ಚಾಗಿರಬೇಕು ಮತ್ತು 36 ಕ್ಕಿಂತ ಕಡಿಮೆ ಇರಬೇಕು Error that occurs during graphing when the base is out of range. ಗಣಿತೀಯ ಕಾರ್ಯಾಚರಣೆಗಾಗಿ ಅದರ ಒಂದು ಪರಮಾಂಶವು ಒಂದು ವೇರಿಯಬಲ್ ಆಗಿರಬೇಕಾಗುತ್ತದೆ Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. ಸಮೀಕರಣವು ತಾರ್ಕಿಕ ಮತ್ತು ಸದಿಶ ಪರಿಕರ್ಮ್ಯಗಳನ್ನು ಮಿಶ್ರಣ ಮಾಡುತ್ತಿದೆ Error that occurs during graphing when operands are mixed. Such as true and 1. x ಅಥವಾ y ಅನ್ನು ಮೇಲಿನ ಅಥವಾ ಕೆಳಗಿನ ಮಿತಿಗಳಲ್ಲಿ ಬಳಸಲಾಗುವುದಿಲ್ಲ Error that occurs during graphing when x or y is used in integral upper limits. x ಅಥವಾ y ಅನ್ನು ಮಿತಿಯ ಬಿಂದುವಿನಲ್ಲಿ ಬಳಸಲಾಗುವುದಿಲ್ಲ Error that occurs during graphing when x or y is used in the limit point. ಸಂಕೀರ್ಣ ಅನಂತತೆಯನ್ನು ಬಳಸುವಂತಿಲ್ಲ Error that occurs during graphing when complex infinity is used ಅಸಮಾನತೆಗಳಲ್ಲಿ ಸಂಕೀರ್ಣ ಸಂಖ್ಯೆಗಳನ್ನು ಬಳಸುವಂತಿಲ್ಲ Error that occurs during graphing when complex numbers are used in inequalities. ಕಾರ್ಯದ ಪಟ್ಟಿಗೆ ಹಿಂತಿರುಗಿ This is the tooltip for the back button in the equation analysis page in the graphing calculator ಕಾರ್ಯದ ಪಟ್ಟಿಗೆ ಹಿಂತಿರುಗಿ This is the automation name for the back button in the equation analysis page in the graphing calculator ಕಾರ್ಯ ವಿಶ್ಲೇಷಿಸಿ This is the tooltip for the analyze function button ಕಾರ್ಯ ವಿಶ್ಲೇಷಿಸಿ This is the automation name for the analyze function button ಕಾರ್ಯ ವಿಶ್ಲೇಷಿಸಿ This is the text for the for the analyze function context menu command ಸಮೀಕರಣವನ್ನು ತೆಗೆದುಹಾಕಿ This is the tooltip for the graphing calculator remove equation buttons ಸಮೀಕರಣವನ್ನು ತೆಗೆದುಹಾಕಿ This is the automation name for the graphing calculator remove equation buttons ಸಮೀಕರಣವನ್ನು ತೆಗೆದುಹಾಕಿ This is the text for the for the remove equation context menu command ಹಂಚಿಕೊಳ್ಳಿ This is the automation name for the graphing calculator share button. ಹಂಚಿಕೊಳ್ಳಿ This is the tooltip for the graphing calculator share button. ಸಮೀಕರಣದ ಶೈಲಿಯನ್ನು ಬದಲಾಯಿಸಿ This is the tooltip for the graphing calculator equation style button ಸಮೀಕರಣದ ಶೈಲಿಯನ್ನು ಬದಲಾಯಿಸಿ This is the automation name for the graphing calculator equation style button ಸಮೀಕರಣದ ಶೈಲಿಯನ್ನು ಬದಲಾಯಿಸಿ This is the text for the for the equation style context menu command ಸಮೀಕರಣ ತೋರಿಸಿ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. ಸಮೀಕರಣ ಮರೆಮಾಡಿ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. ಸಮೀಕರಣ ತೋರಿಸಿ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. ಸಮೀಕರಣ ಮರೆಮಾಡಿ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ಪತ್ತೆಹಚ್ಚುತ್ತಿರುವುದನ್ನು ನಿಲ್ಲಿಸಿ This is the tooltip/automation name for the graphing calculator stop tracing button ಪತ್ತೆಹಚ್ಚುತ್ತಿರುವುದನ್ನು ಪ್ರಾರಂಭಿಸಿ This is the tooltip/automation name for the graphing calculator start tracing button ಗ್ರಾಫ್ ವೀಕ್ಷಣೆ ವಿಂಡೋ, x- ಅಕ್ಷವು %1 ಮತ್ತು %2 ರಿಂದ ಸುತ್ತುವರಿಯಲ್ಪಟ್ಟಿದೆ, y- ಅಕ್ಷವು %3 ಮತ್ತು %4 ರಿಂದ ಸುತ್ತುವರೆದಿದೆ, %5 ಸಮೀಕರಣಗಳನ್ನು ಪ್ರದರ್ಶಿಸುತ್ತದೆ {Locked="%1","%2", "%3", "%4", "%5"}. ಸ್ಲೈಡರ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ This is the tooltip text for the slider options button in Graphing Calculator ಸ್ಲೈಡರ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ This is the automation name text for the slider options button in Graphing Calculator ಸಮೀಕರಣ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ Used in Graphing Calculator to switch the view to the equation mode ಗ್ರಾಫ್ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ Used in Graphing Calculator to switch the view to the graph mode ಸಮೀಕರಣ ಮೋಡ್‌ಗೆ ಬದಲಿಸಿ Used in Graphing Calculator to switch the view to the equation mode ಪ್ರಸ್ತುತ ಮೋಡ್ ಸಮೀಕರಣ ಮೋಡ್ ಆಗಿದೆ Announcement used in Graphing Calculator when switching to the equation mode ಪ್ರಸ್ತುತ ಮೋಡ್ ಗ್ರಾಫ್ ಮೋಡ್ ಆಗಿದೆ Announcement used in Graphing Calculator when switching to the graph mode ವಿಂಡೋ Heading for window extents on the settings ಡಿಗ್ರಿಗಳು Degrees mode on settings page ಗ್ರೇಡಿಯನ್‌ಗಳು Gradian mode on settings page ರೇಡಿಯನ್‌ಗಳು Radians mode on settings page ಯುನಿಟ್‌ಗಳು Heading for Unit's on the settings ಮರುಹೊಂದಿಸಿ ವೀಕ್ಷಣೆ Hyperlink button to reset the view of the graph X-ಗರಿಷ್ಠ X maximum value header X-ಕನಿಷ್ಠ X minimum value header Y-ಗರಿಷ್ಠ Y Maximum value header Y-ಕನಿಷ್ಠ Y minimum value header ಗ್ರಾಫ್ ಆಯ್ಕೆಗಳು This is the tooltip text for the graph options button in Graphing Calculator ಗ್ರಾಫ್ ಆಯ್ಕೆಗಳು This is the automation name text for the graph options button in Graphing Calculator ರೇಖಾನಕ್ಷೆ ಆಯ್ಕೆಗಳು Heading for the Graph options flyout in Graphing mode. ವೇರಿಯೇಬಲ್ ಆಯ್ಕೆಗಳು Screen reader prompt for the variable settings toggle button ವೇರಿಯಬಲ್ ಆಯ್ಕೆಗಳನ್ನು ಟಾಗಲ್ ಮಾಡಿ Tool tip for the variable settings toggle button ಸಾಲಿನ ದಪ್ಪ Heading for the Graph options flyout in Graphing mode. ಸಾಲು ಆಯ್ಕೆಗಳು Heading for the equation style flyout in Graphing mode. ಚಿಕ್ಕ ಸಾಲಿನ ಅಗಲ Automation name for line width setting ಮಧ್ಯಮ ಸಾಲಿನ ಅಗಲ Automation name for line width setting ದೊಡ್ಡ ಸಾಲಿನ ಅಗಲ Automation name for line width setting ಹೆಚ್ಚು ದೊಡ್ಡ ಸಾಲಿನ ಅಗಲ Automation name for line width setting ಅಭಿವ್ಯಕ್ತಿಯನ್ನು ನಮೂದಿಸಿ this is the placeholder text used by the textbox to enter an equation ನಕಲಿಸಿ Copy menu item for the graph context menu ಕತ್ತರಿಸು Cut menu item from the Equation TextBox ನಕಲಿಸಿ Copy menu item from the Equation TextBox ಅಂಟಿಸು Paste menu item from the Equation TextBox ರದ್ದುಮಾಡು Undo menu item from the Equation TextBox ಎಲ್ಲವನ್ನೂ ಆಯ್ಕೆಮಾಡಿ Select all menu item from the Equation TextBox ಕಾರ್ಯದ ಇನ್‌ಪುಟ್ The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. ಕಾರ್ಯದ ಇನ್‌ಪುಟ್ The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. ಕಾರ್ಯದ ಇನ್‌ಪುಟ್ ಪ್ಯಾನಲ್ The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಪ್ಯಾನಲ್ The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಪಟ್ಟಿ The automation name for the Variable ListView that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ %1 ಪಟ್ಟಿಯ ಐಟಂ The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಮೌಲ್ಯದ ಪಠ್ಯಪೆಟ್ಟಿಗೆ The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಮೌಲ್ಯದ ಸ್ಲೈಡರ್ The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಕನಿಷ್ಠ ಮೌಲ್ಯದ ಪಠ್ಯಪೆಟ್ಟಿಗೆ The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಹಂತ ಮೌಲ್ಯದ ಪಠ್ಯಪೆಟ್ಟಿಗೆ The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. ಬದಲಾಗಬಹುದಾದ ಗರಿಷ್ಠ ಮೌಲ್ಯದ ಪಠ್ಯಪೆಟ್ಟಿಗೆ The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ಗಾಢಸಾಲಿನ ಶೈಲಿ Name of the solid line style for a graphed equation ಬಿಂದು ಸಾಲಿನ ಶೈಲಿ Name of the dotted line style for a graphed equation ಅಡ್ಡಸಾಲಿನ ಶೈಲಿ Name of the dashed line style for a graphed equation ಗಾಢ ನೀಲಿ Name of color in the color picker ಸೀಫೋಮ್ Name of color in the color picker ನೇರಿಳೆ Name of color in the color picker ಹಸಿರು Name of color in the color picker ಮಿಂಟ್ ಹಸಿರು Name of color in the color picker ಗಾಢ ಹಸಿರು Name of color in the color picker ಇದ್ದಿಲು Name of color in the color picker ಕೆಂಪು Name of color in the color picker ತಿಳಿ ಪ್ಲಮ್ Name of color in the color picker ಕೆನ್ನೇರಿಳೆ Name of color in the color picker ಸ್ವರ್ಣ ಹಳದಿ Name of color in the color picker ಪ್ರಕಾಶಮಾನವಾದ ಕಿತ್ತಳೆ ಬಣ್ಣ Name of color in the color picker ಕಂದು Name of color in the color picker ಕಪ್ಪು Name of color in the color picker ಬಿಳಿ Name of color in the color picker ಬಣ್ಣ 1 Name of color in the color picker ಬಣ್ಣ 2 Name of color in the color picker ಬಣ್ಣ 3 Name of color in the color picker ಬಣ್ಣ 4 Name of color in the color picker ರೇಖಾನಕ್ಷೆಯ ಥೀಮ್ Graph settings heading for the theme options ಸದಾ ಹಗುರ Graph settings option to set graph to light theme ಹೋಲಿಕೆ ಅಪ್ಲಿ ಥೀಮ್ Graph settings option to set graph to match the app theme ಥೀಮ್ This is the automation name text for the Graph settings heading for the theme options ಸದಾ ಹಗುರ This is the automation name text for the Graph settings option to set graph to light theme ಹೋಲಿಕೆ ಅಪ್ಲಿ ಥೀಮ್ This is the automation name text for the Graph settings option to set graph to match the app theme ಕಾರ್ಯವನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ Announcement used in Graphing Calculator when a function is removed from the function list ಕಾರ್ಯನಿರ್ವಹಣೆ ವಿಶ್ಲೇಷಣೆ ಸಮೀಕರಣ ಪೆಟ್ಟಿಗೆ This is the automation name text for the equation box in the function analysis panel ಸಮ Screen reader prompt for the equal button on the graphing calculator operator keypad ಇದಕ್ಕೂ ಕಡಿಮೆ Screen reader prompt for the Less than button ಇದಕ್ಕಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮ Screen reader prompt for the Less than or equal button ಸಮ Screen reader prompt for the Equal button ಇದಕ್ಕಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮ Screen reader prompt for the Greater than or equal button ಇದಕ್ಕಿಂತ ಹೆಚ್ಚಿನದು Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad ಸಲ್ಲಿಸು Screen reader prompt for the submit button on the graphing calculator operator keypad ಕಾರ್ಯ ವಿಶ್ಲೇಷಣೆ Screen reader prompt for the function analysis grid ರೇಖಾನಕ್ಷೆ ಆಯ್ಕೆಗಳು Screen reader prompt for the graph options panel ಇತಿಹಾಸ ಮತ್ತು ಮೆಮೊರಿ ಪಟ್ಟಿಗಳು Automation name for the group of controls for history and memory lists. ಮೆಮೊರಿ ಪಟ್ಟಿ Automation name for the group of controls for memory list. ಇತಿಹಾಸ ಸ್ಲಾಟ್ %1 ತೆರವುಗೊಳಿಸಲಾಗಿದೆ {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". ಯಾವಾಗಲೂ ಮೇಲ್ಭಾಗದಲ್ಲಿ ಕ್ಯಾಲ್ಕುಲೇಟರ್ Announcement to indicate calculator window is always shown on top. ಕ್ಯಾಲ್ಕುಲೇಟರ್ ಮರಳಿ ಪೂರ್ಣ ವೀಕ್ಷಣೆಗೆ Announcement to indicate calculator window is now back to full view. ಅಂಕಗಣಿತ ಶಿಫ್ಟ್ ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ Label for a radio button that toggles arithmetic shift behavior for the shift operations. ತಾರ್ಕಿಕ ಶಿಫ್ಟ್ ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ Label for a radio button that toggles logical shift behavior for the shift operations. ಆಯ್ಕೆಮಾಡಿದ ವೃತ್ತಾಕಾರದ ಶಿಫ್ಟ್ ತಿರುಗಿಸಿ Label for a radio button that toggles rotate circular behavior for the shift operations. ಆಯ್ಕೆಮಾಡಿದ ಕ್ಯಾರಿ ವೃತ್ತಾಕಾರದ ಶಿಫ್ಟ್ ಮೂಲಕ ತಿರುಗಿಸಿ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ಸೆಟ್ಟಿಂಗ್‍ಗಳು Header text of Settings page ನೋಟ Subtitle of appearance setting on Settings page ಅಪ್ಲಿ ಥೀಮ್ Title of App theme expander ಯಾವ ಅಪ್ಲಿ ಥೀಮ್ ಪ್ರದರ್ಶಿಸಬೇಕೆಂದು ಆಯ್ಕೆಮಾಡಿ Description of App theme expander ತಿಳಿ Lable for light theme option ಗಾಢ Lable for dark theme option ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬಳಸಿ Lable for the app theme option to use system setting ಹಿಂದೆ Screen reader prompt for the Back button in title bar to back to main page ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪುಟ Announcement used when Settings page is opened ಲಭ್ಯವಿರುವ ಕ್ರಿಯೆಗಳಿಗೆ ಸಂದರ್ಭ ಮೆನು ತೆರೆಯಿರಿ Screen reader prompt for the context menu of the expression box ಸರಿ The text of OK button to dismiss an error dialog. ಈ ಸ್ನ್ಯಾಪ್‌ಶಾಟ್ ಅನ್ನು ಪುನಃಸ್ಥಾಪಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ko-KR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 입력이 잘못되었습니다. Error message shown when the input makes a function fail, like log(-1) 정의되지 않은 결과입니다. Error message shown when there's no possible value for a function. 메모리가 부족합니다. Error message shown when we run out of memory during a calculation. 오버플로 Error message shown when there's an overflow during the calculation. 결과가 정의되지 않음 Same as 101 결과가 정의되지 않음 Same 101 오버플로 Same as 107 오버플로 Same 107 0으로 나눌 수 없습니다 Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ko-KR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 계산기 {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. 계산기[Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows 계산기 {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows 계산기[Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. 계산기 {@Appx_Description@} This description is used for the official application when published through Windows Store. 계산기 [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. 복사 Copy context menu string 붙여넣기 Paste context menu string 대략 같음 The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, 값 %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 비트 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63번째 Sub-string used in automation name for 63 bit in bit flip 62번째 Sub-string used in automation name for 62 bit in bit flip 61번째 Sub-string used in automation name for 61 bit in bit flip 60번째 Sub-string used in automation name for 60 bit in bit flip 59번째 Sub-string used in automation name for 59 bit in bit flip 58번째 Sub-string used in automation name for 58 bit in bit flip 57번째 Sub-string used in automation name for 57 bit in bit flip 56번째 Sub-string used in automation name for 56 bit in bit flip 55번째 Sub-string used in automation name for 55 bit in bit flip 54번째 Sub-string used in automation name for 54 bit in bit flip 53번째 Sub-string used in automation name for 53 bit in bit flip 52번째 Sub-string used in automation name for 52 bit in bit flip 51번째 Sub-string used in automation name for 51 bit in bit flip 50번째 Sub-string used in automation name for 50 bit in bit flip 49번째 Sub-string used in automation name for 49 bit in bit flip 48번째 Sub-string used in automation name for 48 bit in bit flip 47번째 Sub-string used in automation name for 47 bit in bit flip 46번째 Sub-string used in automation name for 46 bit in bit flip 45번째 Sub-string used in automation name for 45 bit in bit flip 44번째 Sub-string used in automation name for 44 bit in bit flip 43번째 Sub-string used in automation name for 43 bit in bit flip 42번째 Sub-string used in automation name for 42 bit in bit flip 41번째 Sub-string used in automation name for 41 bit in bit flip 40번째 Sub-string used in automation name for 40 bit in bit flip 39번째 Sub-string used in automation name for 39 bit in bit flip 38번째 Sub-string used in automation name for 38 bit in bit flip 37번째 Sub-string used in automation name for 37 bit in bit flip 36번째 Sub-string used in automation name for 36 bit in bit flip 35번째 Sub-string used in automation name for 35 bit in bit flip 34번째 Sub-string used in automation name for 34 bit in bit flip 33번째 Sub-string used in automation name for 33 bit in bit flip 32번째 Sub-string used in automation name for 32 bit in bit flip 31번째 Sub-string used in automation name for 31 bit in bit flip 30번째 Sub-string used in automation name for 30 bit in bit flip 29번째 Sub-string used in automation name for 29 bit in bit flip 28번째 Sub-string used in automation name for 28 bit in bit flip 27번째 Sub-string used in automation name for 27 bit in bit flip 26번째 Sub-string used in automation name for 26 bit in bit flip 25번째 Sub-string used in automation name for 25 bit in bit flip 24번째 Sub-string used in automation name for 24 bit in bit flip 23번째 Sub-string used in automation name for 23 bit in bit flip 22번째 Sub-string used in automation name for 22 bit in bit flip 21번째 Sub-string used in automation name for 21 bit in bit flip 20번째 Sub-string used in automation name for 20 bit in bit flip 19번째 Sub-string used in automation name for 19 bit in bit flip 18번째 Sub-string used in automation name for 18 bit in bit flip 17번째 Sub-string used in automation name for 17 bit in bit flip 16번째 Sub-string used in automation name for 16 bit in bit flip 15번째 Sub-string used in automation name for 15 bit in bit flip 14번째 Sub-string used in automation name for 14 bit in bit flip 13번째 Sub-string used in automation name for 13 bit in bit flip 12번째 Sub-string used in automation name for 12 bit in bit flip 11번째 Sub-string used in automation name for 11 bit in bit flip 10번째 Sub-string used in automation name for 10 bit in bit flip 9번째 Sub-string used in automation name for 9 bit in bit flip 8번째 Sub-string used in automation name for 8 bit in bit flip 7번째 Sub-string used in automation name for 7 bit in bit flip 6번째 Sub-string used in automation name for 6 bit in bit flip 5번째 Sub-string used in automation name for 5 bit in bit flip 4번째 Sub-string used in automation name for 4 bit in bit flip 3번째 Sub-string used in automation name for 3 bit in bit flip 2번째 Sub-string used in automation name for 2 bit in bit flip 1번째 Sub-string used in automation name for 1 bit in bit flip 최하위 비트 Used to describe the first bit of a binary number. Used in bit flip 메모리 플라이아웃 열기 This is the automation name and label for the memory button when the memory flyout is closed. 메모리 플라이아웃 닫기 This is the automation name and label for the memory button when the memory flyout is open. 항상 위에 유지 This is the tool tip automation name for the always-on-top button when out of always-on-top mode. 전체 보기로 돌아가기 This is the tool tip automation name for the always-on-top button when in always-on-top mode. 메모리 This is the tool tip automation name for the memory button. 기록(Ctrl + H) This is the tool tip automation name for the history button. 비트 전환 키패드 This is the tool tip automation name for the bitFlip button. 전체 키패드 This is the tool tip automation name for the numberPad button. 모든 메모리 지우기(Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. 메모리 The text that shows as the header for the memory list 메모리 The automation name for the Memory pivot item that is shown when Calculator is in wide layout. 기록 The text that shows as the header for the history list 기록 The automation name for the History pivot item that is shown when Calculator is in wide layout. 변환기 Label for a control that activates the unit converter mode. 공학용 Label for a control that activates scientific mode calculator layout 표준 Label for a control that activates standard mode calculator layout. 변환기 모드 Screen reader prompt for a control that activates the unit converter mode. 공학용 모드 Screen reader prompt for a control that activates scientific mode calculator layout 표준 모드 Screen reader prompt for a control that activates standard mode calculator layout. 모든 기록 지우기 "ClearHistory" used on the calculator history pane that stores the calculation history. 모든 기록 지우기 This is the tool tip automation name for the Clear History button. 숨기기 "HideHistory" used on the calculator history pane that stores the calculation history. 표준 The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. 공학용 The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. 프로그래머 The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. 변환기 The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". 계산기 The text that shows in the dropdown navigation control for the calculator group. 변환기 The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". 계산기 The text that shows in the dropdown navigation control for the calculator group in upper case. 변환기 Pluralized version of the converter group text, used for the screen reader prompt. 계산기 Pluralized version of the calculator group text, used for the screen reader prompt. 표시는 %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". 식: %1, 현재 입력: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". 표시는 %1점 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. 식은 %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". 클립 보드에 복사된 값 표시 Screen reader prompt for the Calculator display copy button, when the button is invoked. 기록 Screen reader prompt for the history flyout 메모리 Screen reader prompt for the memory flyout 16진수 %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". 소수 %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". 8진수 %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". 이진수 %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". 모든 기록 지우기 Screen reader prompt for the Calculator History Clear button 검색 기록 삭제됨 Screen reader prompt for the Calculator History Clear button, when the button is invoked. 기록 숨기기 Screen reader prompt for the Calculator History Hide button 검색 기록 플라이아웃 열기 Screen reader prompt for the Calculator History button, when the flyout is closed. 검색 기록 플라이아웃 닫기 Screen reader prompt for the Calculator History button, when the flyout is open. 메모리 값 저장 Screen reader prompt for the Calculator Memory button 메모리 값 저장(Ctrl + M) This is the tool tip automation name for the Memory Store (MS) button. 모든 메모리 지우기 Screen reader prompt for the Calculator Clear Memory button 메모리 삭제됨 Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. 메모리 값 읽기 Screen reader prompt for the Calculator Memory Recall button 메모리 값 읽기(Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. 메모리 값 더하기 Screen reader prompt for the Calculator Memory Add button 메모리 값 더하기(Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. 메모리 값 빼기 Screen reader prompt for the Calculator Memory Subtract button 메모리 값 빼기(Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. 메모리 항목 지우기 Screen reader prompt for the Calculator Clear Memory button 메모리 항목 지우기 This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. 메모리 항목에 추가 Screen reader prompt for the Calculator Memory Add button in the Memory list 메모리 항목에 추가 This is the tool tip automation name for the Calculator Memory Add button in the Memory list 메모리 항목에서 빼기 Screen reader prompt for the Calculator Memory Subtract button in the Memory list 메모리 항목에서 빼기 This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list 메모리 항목 지우기 Screen reader prompt for the Calculator Clear Memory button 메모리 항목 지우기 Text string for the Calculator Clear Memory option in the Memory list context menu 메모리 항목에 추가 Screen reader prompt for the Calculator Memory Add swipe button in the Memory list 메모리 항목에 추가 Text string for the Calculator Memory Add option in the Memory list context menu 메모리 항목에서 빼기 Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list 메모리 항목에서 빼기 Text string for the Calculator Memory Subtract option in the Memory list context menu 삭제 Text string for the Calculator Delete swipe button in the History list 복사 Text string for the Calculator Copy option in the History list context menu 삭제 Text string for the Calculator Delete option in the History list context menu 기록 항목 삭제 Screen reader prompt for the Calculator Delete swipe button in the History list 기록 항목 삭제 Screen reader prompt for the Calculator Delete option in the History list context menu 백스페이스 Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button 2 Screen reader prompt for the Calculator number "2" button 3 Screen reader prompt for the Calculator number "3" button 4 Screen reader prompt for the Calculator number "4" button 5 Screen reader prompt for the Calculator number "5" button 6 Screen reader prompt for the Calculator number "6" button 7 Screen reader prompt for the Calculator number "7" button 8 Screen reader prompt for the Calculator number "8" button 9 Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button 왼쪽으로회전 Screen reader prompt for the Calculator ROL button 오른쪽으로회전 Screen reader prompt for the Calculator ROR button 왼쪽으로 시프트 Screen reader prompt for the Calculator LSH button 오른쪽 Shift Screen reader prompt for the Calculator RSH button 배타적 논리합 Screen reader prompt for the Calculator XOR button 네 배 워드 토글 Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". 더블 워드 토글 Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". 워드 켜기/끄기 Screen reader prompt for the Calculator word button. Should read as "Word toggle button". 음소거 토글 Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". 비트전환키패드 Screen reader prompt for the Calculator bitFlip button 전체 키패드 Screen reader prompt for the Calculator numberPad button 소수점 구분 기호 Screen reader prompt for the "." button 입력 지우기 Screen reader prompt for the "CE" button 지우기 Screen reader prompt for the "C" button 나누기 Screen reader prompt for the divide button on the number pad Screen reader prompt for the multiply button on the number pad 일치 Screen reader prompt for the equals button on the scientific operator keypad 역함수 Screen reader prompt for the shift button on the number pad in scientific mode. 빼기 Screen reader prompt for the minus button on the number pad 빼기 We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 더하기 Screen reader prompt for the plus button on the number pad 제곱근 Screen reader prompt for the square root button on the scientific operator keypad 백분율 Screen reader prompt for the percent button on the scientific operator keypad 양수 음수 Screen reader prompt for the negate button on the scientific operator keypad 양수 음수 Screen reader prompt for the negate button on the converter operator keypad Screen reader prompt for the invert button on the scientific operator keypad 왼쪽 괄호 Screen reader prompt for the Calculator "(" button on the scientific operator keypad 왼쪽 괄호 또는 여는 괄호 수 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 오른쪽 괄호 Screen reader prompt for the Calculator ")" button on the scientific operator keypad 여는 괄호 수 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 닫을 여는 괄호가 없습니다. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". 과학적 표기법 Screen reader prompt for the Calculator F-E the scientific operator keypad 쌍곡선 함수 Screen reader prompt for the Calculator button HYP in the scientific operator keypad 파이 Screen reader prompt for the Calculator pi button on the scientific operator keypad 사인 Screen reader prompt for the Calculator sin button on the scientific operator keypad 코사인 Screen reader prompt for the Calculator cos button on the scientific operator keypad 탄젠트 Screen reader prompt for the Calculator tan button on the scientific operator keypad 쌍곡선 사인 Screen reader prompt for the Calculator sinh button on the scientific operator keypad 쌍곡선 코사인 Screen reader prompt for the Calculator cosh button on the scientific operator keypad 쌍곡선 탄젠트 Screen reader prompt for the Calculator tanh button on the scientific operator keypad 제곱 Screen reader prompt for the x squared on the scientific operator keypad. 세제곱 Screen reader prompt for the x cubed on the scientific operator keypad. 아크사인 Screen reader prompt for the inverted sin on the scientific operator keypad. 아크코사인 Screen reader prompt for the inverted cos on the scientific operator keypad. 아크탄젠트 Screen reader prompt for the inverted tan on the scientific operator keypad. 쌍곡선 아크사인 Screen reader prompt for the inverted sinh on the scientific operator keypad. 쌍곡선 아크코사인 Screen reader prompt for the inverted cosh on the scientific operator keypad. 쌍곡선 아크탄젠트 Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X'의 지수 Screen reader prompt for x power y button on the scientific operator keypad. '10'의 지수 Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e'의 지수 Screen reader for the e power x on the scientific operator keypad. 'x'의 'y' 루트 Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. 로그 Screen reader for the log base 10 on the scientific operator keypad 자연 로그 Screen reader for the log base e on the scientific operator keypad 모듈로 Screen reader for the mod button on the scientific operator keypad 지수 Screen reader for the exp button on the scientific operator keypad 도/분/초 Screen reader for the exp button on the scientific operator keypad Screen reader for the exp button on the scientific operator keypad 정수부 Screen reader for the int button on the scientific operator keypad 소수부 Screen reader for the frac button on the scientific operator keypad 계승 Screen reader for the factorial button on the basic operator keypad 도 켜기/끄기 This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". 그라이던 전환 This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". 라디안 켜기/끄기 This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". 모드 드롭다운 Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. 범주 드롭다운 Screen reader prompt for the Categories dropdown field. 항상 위에 유지 Screen reader prompt for the Always-on-Top button when in normal mode. 전체 보기로 돌아가기 Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. 항상 위에 유지(Alt+위쪽 화살표) This is the tool tip automation name for the Always-on-Top button when in normal mode. 전체 보기로 돌아가기(Alt+아래쪽 화살표) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2에서 변환 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1점 %2에서 변환 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2(으)로 변환 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2은(는) %3%4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. 입력 장치 Screen reader prompt for the Unit Converter Units1 i.e. top units field. 출력 장치 Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. 면적 Unit conversion category name called Area (eg. area of a sports field in square meters) 데이터 Unit conversion category name called Data 에너지 Unit conversion category name called Energy. (eg. the energy in a battery or in food) 길이 Unit conversion category name called Length 일률 Unit conversion category name called Power (eg. the power of an engine or a light bulb) 속도 Unit conversion category name called Speed 시간 Unit conversion category name called Time 부피 Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) 온도 Unit conversion category name called Temperature 무게 및 질량 Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. 압력 Unit conversion category name called Pressure 각도 Unit conversion category name called Angle 통화 환율 Unit conversion category name called Currency 액량 온스(영국) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz(영국) An abbreviation for a measurement unit of volume 액량 온스(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz(미국) An abbreviation for a measurement unit of volume 갤런(영국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal(영국) An abbreviation for a measurement unit of volume 갤런(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal(미국) An abbreviation for a measurement unit of volume 리터 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume 밀리리터 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume 파인트(영국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt(영국) An abbreviation for a measurement unit of volume 파인트(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 파인트(미국) An abbreviation for a measurement unit of volume 테이블 스푼(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp.(미국) An abbreviation for a measurement unit of volume 티스푼(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp.(미국) An abbreviation for a measurement unit of volume 테이블 스푼(영국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp(미국) An abbreviation for a measurement unit of volume 티스푼(영국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp.(미국) An abbreviation for a measurement unit of volume 쿼트(영국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt(영국) An abbreviation for a measurement unit of volume 쿼트(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt(미국) An abbreviation for a measurement unit of volume Cups(미국) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 컵(미국) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/분 An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data HA An abbreviation for a measurement unit of area hp(미국) An abbreviation for a measurement unit of power 시간 An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed KW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length 미터/초 An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length PB An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data 마일 An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data 파이 An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data 에이커 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 비트 A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 영국 열량 단위 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/분 A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 바이트 A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 열량 칼로리 A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 센티미터 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 센티미터/초 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 입방 센티미터 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 입방 피트 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 입방 인치 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 입방 미터 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 입방 야드 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 섭씨 An option in the unit converter to select degrees Celsius 화씨 An option in the unit converter to select degrees Fahrenheit 전자 볼트 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 피트 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 피트/초 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 피트-파운드 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 피트파운드/분 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 기가비트(Gb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 기가바이트(GB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 헥타르 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 마력(미국) A measurement unit for power 시간 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 인치 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로와트시 A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 절대 온도 An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". 킬로비트(Kb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로바이트(KB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 열량 A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로줄 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로미터 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로미터/시간 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로와트 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 노트 A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 마하 A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) 메가비트(Mb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 메가바이트(MB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 미터 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 미터/초 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 미크론 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 마이크로초 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 마일 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 마일/시간 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 밀리미터 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 밀리초 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 니블 A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 나노미터 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 옹스트롬 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 해리 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 페타비트(Pb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 페타바이트(PB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 센티미터 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 피트 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 인치 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 킬로미터 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 미터 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 마일 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 밀리미터 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 평방 야드 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 테라비트(Tb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 테라바이트(TB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 와트 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 야드 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle 라디안 An abbreviation for a measurement unit of Angle 그라디안 An abbreviation for a measurement unit of Angle ATM An abbreviation for a measurement unit of Pressure BA An abbreviation for a measurement unit of Pressure kpa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure PA An abbreviation for a measurement unit of Pressure 평방 인치당 파운드 An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight 톤(영국) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight LB An abbreviation for a measurement unit of weight 톤(미국) An abbreviation for a measurement unit of weight ST An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight 캐럿 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for Angle. 라디안 A measurement unit for Angle. 그라디안 A measurement unit for Angle. 기압 A measurement unit for Pressure. A measurement unit for Pressure. 킬로파스칼 A measurement unit for Pressure. 수은주 밀리미터 A measurement unit for Pressure. 파스칼 A measurement unit for Pressure. 평방 인치 당 파운드 A measurement unit for Pressure. 센티그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 데카그램 A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 데시그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 헥토그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 킬로그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 롱톤(영국) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 밀리그램 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 온스 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 파운드 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 톤(미국) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 스톤 A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 축구장 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 축구장 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 플로피 디스크 A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 플로피 디스크 A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 배터리 AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 배터리 AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 종이 클립 A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 종이 클립 A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 점보제트 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 점보제트 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 백열 전구 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 백열 전구 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 홀스 A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 홀스 A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 욕조 A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 욕조 A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 눈송이 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 눈송이 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 코끼리 An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 코끼리 An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 거북이 A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 거북이 A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제트 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제트 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 고래 A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 고래 A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 커피잔 A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 커피잔 A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 수영장 An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 수영장 An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 바나나 A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 바나나 A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 케이크 조각 A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 케이크 조각 A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 기차 엔진 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 기차 엔진 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 축구공 A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 축구공 A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 메모리 항목 Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) 뒤로 Screen reader prompt for the About panel back button 뒤로 Content of tooltip being displayed on AboutControlBackButton Microsoft 소프트웨어 사용 조건 Displayed on a link to the Microsoft Software License Terms on the About panel 미리 보기 Label displayed next to upcoming features Microsoft 개인정보처리방침 Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. All rights reserved. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows 계산기에 기여할 수 있는 방법을 알아보려면 %HL%GitHub%HL% 프로젝트를 확인하세요. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel 정보 Subtitle of about message on Settings page 피드백 보내기 The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app 아직 기록이 없습니다. The text that shows as the header for the history list 메모리에 저장된 내용이 없습니다. The text that shows as the header for the memory list 메모리 Screen reader prompt for the negate button on the converter operator keypad 이 식을 붙여넣을 수 없습니다. The paste operation cannot be performed, if the expression is invalid. 기비비트(Gib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 기비바이트(GiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 키비비트(Kib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 키비바이트(KiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 메비비트(Mib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 메비바이트(MiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 페비비트(Pib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 페비바이트(PiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 테비비트(Tib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 테비바이트(TiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 엑사비트(Eb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 엑사바이트(EB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 엑스비비트(Eib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 엑스비바이트(EiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제타비트(Zb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제타바이트(ZB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제비비트(Zib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 제비바이트(ZiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 요타비트(Yb) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 요타바이트(YB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 요비비트(Yib) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 요비바이트(YiB) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 날짜 계산 계산 모드 Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". 추가 Add toggle button text 일 합산 또는 빼기 Add or Subtract days option 날짜 Date result label 날짜 간 차이 Date difference option Add/Subtract Days label 차이 Difference result label 시작일 From Date Header for Difference Date Picker Add/Subtract Months label 빼기 Subtract toggle button text 종료일 To Date Header for Difference Date Picker Add/Subtract Years label 날짜가 범위를 벗어남 Out of bound message shown as result when the date calculation exceeds the bounds 동일한 날짜 차이 %1 Automation name for reading out the date difference. %1 = Date difference 결과 날짜 %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 계산기 모드 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 변환기 모드 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. 날짜 계산 모드 Automation name for when the mode header is focused and the current mode is Date calculation. 기록 및 메모리 목록 Automation name for the group of controls for history and memory lists. 메모리 제어 Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) 표준 함수 Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) 디스플레이 제어 Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) 표준 연산자 Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) 숫자 패드 Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) 각도 연산자 Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) 과학적 함수 Automation name for the group of Scientific functions. 라딕스 구역 Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix 프로그래머용 연산자 Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). 입력 모드 선택 Automation name for the group of input mode toggling buttons. 비트 전환 키패드 Automation name for the group of bit toggling buttons. 식을 완쪽으로 스크롤 Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. 식을 오른쪽으로 스크롤 Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. 최대 자릿수 도달. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1이(가) 메모리에 저장되었습니다. {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". 메모리 슬롯 %1이(가) %2입니다. {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". 메모리 슬롯 %1 삭제됨 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". 나누기 Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. 곱하기 Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. 빼기 Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. 더하기 Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. 거듭제곱 Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y 루트 Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. 모드 Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. 왼쪽 시프트 Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. 오른쪽으로 이동 Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. 또는 Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x 또는 Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. 업데이트됨 %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" 환율 업데이트 The text displayed for a hyperlink button that refreshes currency converter ratios. 데이터 요금이 부과될 수 있습니다. The text displayed when users are on a metered connection and using currency converter. 환율을 갱신하지 못했습니다. 나중에 다시 시도하세요. The text displayed when currency ratio data fails to load. 오프라인 상태입니다. %HL%네트워크 설정%HL%을 확인하십시오. Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} 환율 업데이트 This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. 환율이 업데이트되었습니다. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. 환율을 업데이트할 수 없습니다. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} 모든 메모리 지우기(Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. 모든 메모리 지우기 Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} 사인 각도 Name for the sine function in degrees mode. Used by screen readers. 사인 라디안 Name for the sine function in radians mode. Used by screen readers. 사인 그라디안 Name for the sine function in gradians mode. Used by screen readers. 역사인 각도 Name for the inverse sine function in degrees mode. Used by screen readers. 역사인 라디안 Name for the inverse sine function in radians mode. Used by screen readers. 역사인 그라디안 Name for the inverse sine function in gradians mode. Used by screen readers. 쌍곡선 사인 Name for the hyperbolic sine function. Used by screen readers. 역쌍곡선 사인 Name for the inverse hyperbolic sine function. Used by screen readers. 코사인 각도 Name for the cosine function in degrees mode. Used by screen readers. 코사인 라디안 Name for the cosine function in radians mode. Used by screen readers. 코사인 그라디안 Name for the cosine function in gradians mode. Used by screen readers. 역코사인 각도 Name for the inverse cosine function in degrees mode. Used by screen readers. 역코사인 라디안 Name for the inverse cosine function in radians mode. Used by screen readers. 역코사인 그라디안 Name for the inverse cosine function in gradians mode. Used by screen readers. 쌍곡선 코사인 Name for the hyperbolic cosine function. Used by screen readers. 역쌍곡선 코사인 Name for the inverse hyperbolic cosine function. Used by screen readers. 탄젠트 각도 Name for the tangent function in degrees mode. Used by screen readers. 탄젠트 라디안 Name for the tangent function in radians mode. Used by screen readers. 탄젠트 그라디안 Name for the tangent function in gradians mode. Used by screen readers. 역탄젠트 각도 Name for the inverse tangent function in degrees mode. Used by screen readers. 역탄젠트 라디안 Name for the inverse tangent function in radians mode. Used by screen readers. 역탄젠트 그라디안 Name for the inverse tangent function in gradians mode. Used by screen readers. 쌍곡선 탄젠트 Name for the hyperbolic tangent function. Used by screen readers. 역쌍곡선 탄젠트 Name for the inverse hyperbolic tangent function. Used by screen readers. 시컨트 각도 Name for the secant function in degrees mode. Used by screen readers. 시컨트 라디안 Name for the secant function in radians mode. Used by screen readers. 시컨트 그라디안 Name for the secant function in gradians mode. Used by screen readers. 역시컨트 각도 Name for the inverse secant function in degrees mode. Used by screen readers. 역시컨트 라디안 Name for the inverse secant function in radians mode. Used by screen readers. 역시컨트 그라디안 Name for the inverse secant function in gradians mode. Used by screen readers. 쌍곡 시컨트 Name for the hyperbolic secant function. Used by screen readers. 역쌍곡 시컨트 Name for the inverse hyperbolic secant function. Used by screen readers. 코시컨트 각도 Name for the cosecant function in degrees mode. Used by screen readers. 코시컨트 라디안 Name for the cosecant function in radians mode. Used by screen readers. 코시컨트 그라디안 Name for the cosecant function in gradians mode. Used by screen readers. 역코시컨트 각도 Name for the inverse cosecant function in degrees mode. Used by screen readers. 역코시컨트 라디안 Name for the inverse cosecant function in radians mode. Used by screen readers. 역코시컨트 그라디안 Name for the inverse cosecant function in gradians mode. Used by screen readers. 쌍곡 코시컨트 Name for the hyperbolic cosecant function. Used by screen readers. 역쌍곡 코시컨트 Name for the inverse hyperbolic cosecant function. Used by screen readers. 코탄젠트 각도 Name for the cotangent function in degrees mode. Used by screen readers. 코탄젠트 라디안 Name for the cotangent function in radians mode. Used by screen readers. 코탄젠트 그라디안 Name for the cotangent function in gradians mode. Used by screen readers. 역코탄젠트 각도 Name for the inverse cotangent function in degrees mode. Used by screen readers. 역코탄젠트 라디안 Name for the inverse cotangent function in radians mode. Used by screen readers. 역코탄젠트 그라디안 Name for the inverse cotangent function in gradians mode. Used by screen readers. 쌍곡 코탄젠트 Name for the hyperbolic cotangent function. Used by screen readers. 역쌍곡 코탄젠트 Name for the inverse hyperbolic cotangent function. Used by screen readers. 세제곱근 Name for the cube root function. Used by screen readers. 로그 기준 Name for the logbasey function. Used by screen readers. 절대값 Name for the absolute value function. Used by screen readers. 왼쪽 시프트 Name for the programmer function that shifts bits to the left. Used by screen readers. 오른쪽으로 이동 Name for the programmer function that shifts bits to the right. Used by screen readers. 계승 Name for the factorial function. Used by screen readers. 도/분/초 Name for the degree minute second (dms) function. Used by screen readers. 자연 로그 Name for the natural log (ln) function. Used by screen readers. 제곱 Name for the square function. Used by screen readers. y 루트 Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 범주 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft 서비스 계약 Displayed on a link to the Microsoft Services Agreement in the about this app information An abbreviation for a measurement unit of area. A measurement unit for area. 시작일 From Date Header for AddSubtract Date Picker 계산 결과 왼쪽으로 스크롤 Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. 계산 결과 오른쪽으로 스크롤 Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. 계산에 실패했습니다. Text displayed when the application is not able to do a calculation Y 기준 로그 Screen reader prompt for the logBaseY button 삼각법 Displayed on the button that contains a flyout for the trig functions in scientific mode. 함수 Displayed on the button that contains a flyout for the general functions in scientific mode. 부등식 Displayed on the button that contains a flyout for the inequality functions. 부등식 Screen reader prompt for the Inequalities button 비트 Displayed on the button that contains a flyout for the bitwise functions in programmer mode. 비트 시프트 Displayed on the button that contains a flyout for the bit shift functions in programmer mode. 역함수 Screen reader prompt for the shift button in the trig flyout in scientific mode. 쌍곡선 함수 Screen reader prompt for the Calculator button HYP in the scientific flyout keypad 시컨트 Screen reader prompt for the Calculator button sec in the scientific flyout keypad 쌍곡 시컨트 Screen reader prompt for the Calculator button sech in the scientific flyout keypad 호 시컨트 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 쌍곡선 아크 시컨트 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 코시컨트 Screen reader prompt for the Calculator button csc in the scientific flyout keypad 쌍곡 코시컨트 Screen reader prompt for the Calculator button csch in the scientific flyout keypad 호 코시컨트 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 쌍곡 호 코시컨트 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 코탄젠트 Screen reader prompt for the Calculator button cot in the scientific flyout keypad 쌍곡 코탄젠트 Screen reader prompt for the Calculator button coth in the scientific flyout keypad 호 코탄젠트 Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad 쌍곡 호 코탄젠트 Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad 내림 Screen reader prompt for the Calculator button floor in the scientific flyout keypad 올림 Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad 임의 Screen reader prompt for the Calculator button random in the scientific flyout keypad 절대값 Screen reader prompt for the Calculator button abs in the scientific flyout keypad 오일러의 수 Screen reader prompt for the Calculator button e in the scientific flyout keypad 2의 지수 Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. 자리올림으로 왼쪽으로 회전 Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad 자리올림으로 오른쪽으로 회전 Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad 왼쪽으로 시프트 Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad 왼쪽 시프트 Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. 오른쪽 시프트 Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad 오른쪽 시프트 Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. 산술 시프트 Label for a radio button that toggles arithmetic shift behavior for the shift operations. 논리적 시프트 Label for a radio button that toggles logical shift behavior for the shift operations. 원형 시프트 회전 Label for a radio button that toggles rotate circular behavior for the shift operations. 자리올림 순환 시프트를 통해 회전 Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 세제곱근 Screen reader prompt for the cube root button on the scientific operator keypad 삼각법 Screen reader prompt for the square root button on the scientific operator keypad 함수 Screen reader prompt for the square root button on the scientific operator keypad 비트 Screen reader prompt for the square root button on the scientific operator keypad 비트시프트 Screen reader prompt for the square root button on the scientific operator keypad 공학용 연산자 패널 Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad 프로그래머용 연산자 패널 Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad 최상위 비트 Used to describe the last bit of a binary number. Used in bit flip 그래프 Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. 플롯 Screen reader prompt for the plot button on the graphing calculator operator keypad 보기 자동 새로 고침(Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. 그래프 보기 Screen reader prompt for the graph view button. 자동 맞춤 Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set 수동 조정 Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set 그래프 보기가 다시 설정되었습니다. Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph 확대(Ctrl + 더하기) This is the tool tip automation name for the Calculator zoom in button. 확대 Screen reader prompt for the zoom in button. 축소(Ctrl + 빼기) This is the tool tip automation name for the Calculator zoom out button. 축소 Screen reader prompt for the zoom out button. 수식 추가 Placeholder text for the equation input button 지금은 공유할 수 없습니다. If there is an error in the sharing action will display a dialog with this text. 확인 Used on the dismiss button of the share action error dialog. Windows 계산기를 사용하여 내가 표시한 그래프 Sent as part of the shared content. The title for the share. 수식 Header that appears over the equations section when sharing 변수 Header that appears over the variables section when sharing 수식이 있는 그래프의 이미지 Alt text for the graph image when output via Share 변수 Header text for variables area 단계 Label text for the step text box 최소 Label text for the min text box 최대 Label text for the max text box Label for the Line Color section of the style picker 스타일 Label for the Line Style section of the style picker 함수 분석 Title for KeyGraphFeatures Control 함수에 수평 점근선이 없습니다. Message displayed when the graph does not have any horizontal asymptotes 함수에 변곡점이 없습니다. Message displayed when the graph does not have any inflection points 함수에 최대값이 없습니다. Message displayed when the graph does not have any maxima 함수에 최소점이 없습니다. Message displayed when the graph does not have any minima 일정 String describing constant monotonicity of a function 감소 String describing decreasing monotonicity of a function 함수의 단조를 확인할 수 없습니다. Error displayed when monotonicity cannot be determined 증가 String describing increasing monotonicity of a function 함수의 단조를 알 수 없습니다. Error displayed when monotonicity is unknown 함수에 사선 점근선이 없습니다. Message displayed when the graph does not have any oblique asymptotes 함수의 패리티를 확인할 수 없습니다. Error displayed when parity is cannot be determined 이 함수는 짝수입니다. Message displayed with the function parity is even 이 함수는 짝수도 홀수도 아닙니다. Message displayed with the function parity is neither even nor odd 함수가 홀수입니다. Message displayed with the function parity is odd 함수 패리티를 알 수 없습니다. Error displayed when parity is unknown 이 함수에 대한 주기성이 지원되지 않습니다. Error displayed when periodicity is not supported 함수가 주기적이지 않습니다. Message displayed with the function periodicity is not periodic 함수 주기성을 알 수 없습니다. Message displayed with the function periodicity is unknown 이러한 기능은 너무 복잡하여 계산기가 계산할 수 없습니다. Error displayed when analysis features cannot be calculated 함수에 수직 점근선이 없습니다. Message displayed when the graph does not have any vertical asymptotes 함수에 X절편이 없습니다. Message displayed when the graph does not have any x-intercepts 함수에 Y절편이 없습니다. Message displayed when the graph does not have any y-intercepts 도메인 Title for KeyGraphFeatures Domain Property 수평 점근선 Title for KeyGraphFeatures Horizontal aysmptotes Property 변곡점 Title for KeyGraphFeatures Inflection points Property 이 함수에 대한 분석이 지원되지 않습니다. Error displayed when graph analysis is not supported or had an error. 분석은 f(x) 형식의 함수에 대해서만 지원됩니다. 예: y = x Error displayed when graph analysis detects the function format is not f(x). 최대값 Title for KeyGraphFeatures Maxima Property 최소값 Title for KeyGraphFeatures Minima Property 단조 Title for KeyGraphFeatures Monotonicity Property 사선 점근선 Title for KeyGraphFeatures Oblique asymptotes Property 패리티 Title for KeyGraphFeatures Parity Property 주기 Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. 범위 Title for KeyGraphFeatures Range Property 수직 점근선 Title for KeyGraphFeatures Vertical asymptotes Property X절편 Title for KeyGraphFeatures XIntercept Property Y절편 Title for KeyGraphFeatures YIntercept Property 함수에 대한 분석을 수행할 수 없습니다. 이 함수에 대한 도메인을 계산할 수 없습니다. Error displayed when Domain is not returned from the analyzer. 이 함수에 대한 범위를 계산할 수 없습니다. Error displayed when Range is not returned from the analyzer. 오버플로(숫자가 너무 큼) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. 이 방정식을 그래프에는 라디안 모드가 필요 합니다. Error that occurs during graphing when radians is required. 이 함수는 그래프로 나타내기에는 너무 복잡합니다 Error that occurs during graphing when the equation is too complex. 이 함수를 그래프로 나타내려면 도 모드가 필요합니다. Error that occurs during graphing when degrees is required 계승 함수에 잘못된 인수가 있습니다 Error that occurs during graphing when a factorial function has an invalid argument. 계승 함수의 인수가 너무 커서 그래프에 포함되지 않습니다. Error that occurs during graphing when a factorial has a large n 모듈로는 정수만 사용할 수 있습니다. Error that occurs during graphing when modulo is used with a float. 수식에 해답이 없습니다 Error that occurs during graphing when the equation has no solution. 0으로 나눌 수 없습니다 Error that occurs during graphing when a divison by zero occurs. 방정식은 상호 배타적인 논리 조건을 포함합니다 Error that occurs during graphing when mutually exclusive conditions are used. 방정식이 도메인을 벗어남 Error that occurs during graphing when the equation is out of domain. 이 수식을 그래프로 표시하는 것은 지원되지 않습니다 Error that occurs during graphing when the equation is not supported. 수식에 여는 괄호가 없습니다 Error that occurs during graphing when the equation is missing a ( 수식에 닫는 괄호가 없습니다 Error that occurs during graphing when the equation is missing a ) 숫자에 소수점이 너무 많습니다. Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 소수점에 숫자가 없습니다 Error that occurs during graphing with a decimal point without digits 예기치 않은 식 종료 Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* 식에 예기치 않은 문자가 있습니다 Error that occurs during graphing when there is an unexpected token. 식에 잘못된 문자가 있습니다. Error that occurs during graphing when there is an invalid token. 동일한 서명이 너무 많습니다. Error that occurs during graphing when there are too many equals. 함수는 하나 이상의 x 또는 y 변수를 포함해야 합니다 Error that occurs during graphing when the equation is missing x or y. 잘못된 식 Error that occurs during graphing when an invalid syntax is used. 식이 비어 있습니다 Error that occurs during graphing when the expression is empty 등호가 등식 없이 사용되었습니다 Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) 함수 이름 뒤에 괄호가 없습니다 Error that occurs during graphing when parenthesis are missing after a function. 수학 연산에 매개 변수의 수가 잘못되었습니다. Error that occurs during graphing when a function has the wrong number of parameters 변수 이름이 잘못되었습니다 Error that occurs during graphing when a variable name is invalid. 수식에 여는 대괄호가 없습니다 Error that occurs during graphing when a { is missing 수식에 닫는 대괄호가 없습니다 Error that occurs during graphing when a } is missing. "i"와 "I"는 변수 이름으로 사용할 수 없습니다 Error that occurs during graphing when i or I is used. 방정식을 그래프로 나타낼 수 없습니다 General error that occurs during graphing. 주어진 기준에 대한 숫자를 확인할 수 없습니다 Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). 밑은 2보다 크고 36보다 작아야 합니다 Error that occurs during graphing when the base is out of range. 수학 연산은 매개 변수 중 하나가 변수여야 합니다 Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. 논리와 스칼라 피연산자가 혼합된 수식 Error that occurs during graphing when operands are mixed. Such as true and 1. x 또는 y는 상한 또는 하한에 사용할 수 없습니다 Error that occurs during graphing when x or y is used in integral upper limits. x 또는 y는 한계점에서 사용할 수 없습니다 Error that occurs during graphing when x or y is used in the limit point. 복잡한 무한대를 사용할 수 없음 Error that occurs during graphing when complex infinity is used 부등식에서 복소수를 사용할 수 없습니다 Error that occurs during graphing when complex numbers are used in inequalities. 함수 목록으로 돌아가기 This is the tooltip for the back button in the equation analysis page in the graphing calculator 함수 목록으로 돌아가기 This is the automation name for the back button in the equation analysis page in the graphing calculator 함수 분석 This is the tooltip for the analyze function button 함수 분석 This is the automation name for the analyze function button 함수 분석 This is the text for the for the analyze function context menu command 수식 제거 This is the tooltip for the graphing calculator remove equation buttons 수식 제거 This is the automation name for the graphing calculator remove equation buttons 수식 제거 This is the text for the for the remove equation context menu command 공유 This is the automation name for the graphing calculator share button. 공유 This is the tooltip for the graphing calculator share button. 수식 스타일 변경 This is the tooltip for the graphing calculator equation style button 수식 스타일 변경 This is the automation name for the graphing calculator equation style button 수식 스타일 변경 This is the text for the for the equation style context menu command 수식 표시 This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. 수식 숨기기 This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. 수식 %1 표시 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. 수식 %1 숨기기 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. 추적 중지 This is the tooltip/automation name for the graphing calculator stop tracing button 추적 시작 This is the tooltip/automation name for the graphing calculator start tracing button 그래프 보기 창, %1 및 %2에 의해 경계가 지정된 x-축, %3 및 %4에 의해 경계가 지정된 y-축, %5 방정식 표시 {Locked="%1","%2", "%3", "%4", "%5"}. 슬라이더 구성 This is the tooltip text for the slider options button in Graphing Calculator 슬라이더 구성 This is the automation name text for the slider options button in Graphing Calculator 수식 모드로 전환 Used in Graphing Calculator to switch the view to the equation mode 그래프 모드로 전환 Used in Graphing Calculator to switch the view to the graph mode 수식 모드로 전환 Used in Graphing Calculator to switch the view to the equation mode 현재 모드는 수식 모드입니다. Announcement used in Graphing Calculator when switching to the equation mode 현재 모드는 그래프 모드입니다. Announcement used in Graphing Calculator when switching to the graph mode Heading for window extents on the settings Degrees mode on settings page 그라디안 Gradian mode on settings page 라디안 Radians mode on settings page 단위 Heading for Unit's on the settings 보기 다시 설정 Hyperlink button to reset the view of the graph X-최대 X maximum value header X-최소 X minimum value header Y-최대 Y Maximum value header Y-최소 Y minimum value header 그래프 옵션 This is the tooltip text for the graph options button in Graphing Calculator 그래프 옵션 This is the automation name text for the graph options button in Graphing Calculator 그래프 옵션 Heading for the Graph options flyout in Graphing mode. 변경 가능 옵션 Screen reader prompt for the variable settings toggle button 변수 옵션 토글 Tool tip for the variable settings toggle button 선 굵기 Heading for the Graph options flyout in Graphing mode. 선 옵션 Heading for the equation style flyout in Graphing mode. 작은 선 폭 Automation name for line width setting 중간 선 폭 Automation name for line width setting 큰 선 폭 Automation name for line width setting 추가 큰 선 폭 Automation name for line width setting 식 입력 this is the placeholder text used by the textbox to enter an equation 복사 Copy menu item for the graph context menu 잘라내기 Cut menu item from the Equation TextBox 복사 Copy menu item from the Equation TextBox 붙여넣기 Paste menu item from the Equation TextBox 실행 취소 Undo menu item from the Equation TextBox 모두 선택 Select all menu item from the Equation TextBox 함수 입력 The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. 함수 입력 The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. 함수 입력 패널 The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. 변수 패널 The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. 변수 목록 The automation name for the Variable ListView that is shown when Calculator is in graphing mode. 변수 %1 목록 항목 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. 변수 값 텍스트 상자 The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. 변수 값 슬라이더 The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. 변수 최소값 텍스트 상자 The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. 변수 단계 값 텍스트 상자 The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. 변수 최대값 텍스트 상자 The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. 실선 스타일 Name of the solid line style for a graphed equation 점 선 스타일 Name of the dotted line style for a graphed equation 대시 선 스타일 Name of the dashed line style for a graphed equation 군청색 Name of color in the color picker 옥색 Name of color in the color picker 보라색 Name of color in the color picker 녹색 Name of color in the color picker 민트 그린 Name of color in the color picker 어두운 녹색 Name of color in the color picker 짙은 회색 Name of color in the color picker 빨간색 Name of color in the color picker 밝은 진자주색 Name of color in the color picker 자홍색 Name of color in the color picker 황금색 Name of color in the color picker 밝은 주황 Name of color in the color picker 밤색 Name of color in the color picker 검정색 Name of color in the color picker 흰색 Name of color in the color picker 색 1 Name of color in the color picker 색 2 Name of color in the color picker 색 3 Name of color in the color picker 색 4 Name of color in the color picker 그래픽 테마 Graph settings heading for the theme options 항상 밝게 Graph settings option to set graph to light theme 앱 테마 일치 Graph settings option to set graph to match the app theme 테마 This is the automation name text for the Graph settings heading for the theme options 항상 밝게 This is the automation name text for the Graph settings option to set graph to light theme 앱 테마 일치 This is the automation name text for the Graph settings option to set graph to match the app theme 기능이 삭제됨 Announcement used in Graphing Calculator when a function is removed from the function list 함수 분석 수식 상자 This is the automation name text for the equation box in the function analysis panel = Screen reader prompt for the equal button on the graphing calculator operator keypad 보다 작음 Screen reader prompt for the Less than button 작거나 같음 Screen reader prompt for the Less than or equal button 과(와) 같음 Screen reader prompt for the Equal button 크거나 같음 Screen reader prompt for the Greater than or equal button 보다 큼 Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad 제출 Screen reader prompt for the submit button on the graphing calculator operator keypad 함수 분석 Screen reader prompt for the function analysis grid 그래프 옵션 Screen reader prompt for the graph options panel 기록 및 메모리 목록 Automation name for the group of controls for history and memory lists. 메모리 목록 Automation name for the group of controls for memory list. 기록 슬롯이 %1 지워졌습니다. {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". 계산기 항상 위에 두기 Announcement to indicate calculator window is always shown on top. 계산기 전체 화면 뒤에 두기 Announcement to indicate calculator window is now back to full view. 산술 시프트 선택됨 Label for a radio button that toggles arithmetic shift behavior for the shift operations. 논리적 시프트 선택됨 Label for a radio button that toggles logical shift behavior for the shift operations. 선택한 원형 시프트 회전 Label for a radio button that toggles rotate circular behavior for the shift operations. 선택한 자리올림 원형 시프트를 통해 회전 Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 설정 Header text of Settings page 모양 Subtitle of appearance setting on Settings page 앱 테마 Title of App theme expander 표시할 앱 테마 선택 Description of App theme expander 밝게 Lable for light theme option 어둡게 Lable for dark theme option 시스템 설정 사용 Lable for the app theme option to use system setting 뒤로 Screen reader prompt for the Back button in title bar to back to main page 설정 페이지 Announcement used when Settings page is opened 바로 가기 메뉴를 열어 사용 가능한 작업 보기 Screen reader prompt for the context menu of the expression box 확인 The text of OK button to dismiss an error dialog. 이 스냅샷을 복원할 수 없습니다. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/lo-LA/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ການປ້ອນຂໍ້ມູນໃຊ້ບໍ່ໄດ້ Error message shown when the input makes a function fail, like log(-1) ຜົນບໍ່ຖືກກໍານົດ Error message shown when there's no possible value for a function. ຄວາມຈໍາບໍ່ພຽງພໍ Error message shown when we run out of memory during a calculation. ກັບຄືນ Error message shown when there's an overflow during the calculation. ຜົນບໍ່ຖືກກໍານົດ Same as 101 ຜົນບໍ່ຖືກກໍານົດ Same 101 ກັບຄືນ Same as 107 ກັບຄືນ Same 107 ບໍ່ສາມາດຫານໃຫ້ສູນໄດ້ Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/lo-LA/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ເຄື່ອງຄິດເລກ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. ເຄື່ອງຄິດເລກ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows ເຄື່ອງ​ຄິດ​ເລກ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. ເຄື່ອງຄິດເລກ Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. ເຄື່ອງຄິດເລກ {@Appx_Description@} This description is used for the official application when published through Windows Store. ເຄື່ອງຄິດເລກ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. ກັອບປີ່ Copy context menu string ແປະໃສ່ Paste context menu string ປະມານເທົ່າກັບ The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, ຄ່າ %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 ບິດ {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) ທີ 63 Sub-string used in automation name for 63 bit in bit flip ທີ 62 Sub-string used in automation name for 62 bit in bit flip ທີ 61 Sub-string used in automation name for 61 bit in bit flip ທີ 60 Sub-string used in automation name for 60 bit in bit flip ທີ 59 Sub-string used in automation name for 59 bit in bit flip ທີ 58 Sub-string used in automation name for 58 bit in bit flip ທີ 57 Sub-string used in automation name for 57 bit in bit flip ທີ 56 Sub-string used in automation name for 56 bit in bit flip ທີ 55 Sub-string used in automation name for 55 bit in bit flip ທີ 54 Sub-string used in automation name for 54 bit in bit flip ທີ 53 Sub-string used in automation name for 53 bit in bit flip ທີ 52 Sub-string used in automation name for 52 bit in bit flip ທີ 51 Sub-string used in automation name for 51 bit in bit flip ທີ 50 Sub-string used in automation name for 50 bit in bit flip ທີ 49 Sub-string used in automation name for 49 bit in bit flip ທີ 48 Sub-string used in automation name for 48 bit in bit flip ທີ 47 Sub-string used in automation name for 47 bit in bit flip ທີ 46 Sub-string used in automation name for 46 bit in bit flip ທີ 45 Sub-string used in automation name for 45 bit in bit flip ທີ 44 Sub-string used in automation name for 44 bit in bit flip ທີ 43 Sub-string used in automation name for 43 bit in bit flip ທີ 42 Sub-string used in automation name for 42 bit in bit flip ທີ 41 Sub-string used in automation name for 41 bit in bit flip ທີ 40 Sub-string used in automation name for 40 bit in bit flip ທີ 39 Sub-string used in automation name for 39 bit in bit flip ທີ 38 Sub-string used in automation name for 38 bit in bit flip ທີ 37 Sub-string used in automation name for 37 bit in bit flip ທີ 36 Sub-string used in automation name for 36 bit in bit flip ທີ 35 Sub-string used in automation name for 35 bit in bit flip ທີ 34 Sub-string used in automation name for 34 bit in bit flip ທີ 33 Sub-string used in automation name for 33 bit in bit flip ທີ 32 Sub-string used in automation name for 32 bit in bit flip ທີ 31 Sub-string used in automation name for 31 bit in bit flip ທີ 30 Sub-string used in automation name for 30 bit in bit flip ທີ 29 Sub-string used in automation name for 29 bit in bit flip ທີ 28 Sub-string used in automation name for 28 bit in bit flip ທີ 27 Sub-string used in automation name for 27 bit in bit flip ທີ 26 Sub-string used in automation name for 26 bit in bit flip ທີ 25 Sub-string used in automation name for 25 bit in bit flip ທີ 24 Sub-string used in automation name for 24 bit in bit flip ທີ 23 Sub-string used in automation name for 23 bit in bit flip ທີ 22 Sub-string used in automation name for 22 bit in bit flip ທີ 21 Sub-string used in automation name for 21 bit in bit flip ທີ 20 Sub-string used in automation name for 20 bit in bit flip ທີ 19 Sub-string used in automation name for 19 bit in bit flip ທີ 18 Sub-string used in automation name for 18 bit in bit flip ທີ 17 Sub-string used in automation name for 17 bit in bit flip ທີ 16 Sub-string used in automation name for 16 bit in bit flip ທີ 15 Sub-string used in automation name for 15 bit in bit flip ທີ 14 Sub-string used in automation name for 14 bit in bit flip ທີ 13 Sub-string used in automation name for 13 bit in bit flip ທີ 12 Sub-string used in automation name for 12 bit in bit flip ທີ 11 Sub-string used in automation name for 11 bit in bit flip ທີ 10 Sub-string used in automation name for 10 bit in bit flip ທີ 9 Sub-string used in automation name for 9 bit in bit flip ທີ 8 Sub-string used in automation name for 8 bit in bit flip ທີ 7 Sub-string used in automation name for 7 bit in bit flip ທີ 6 Sub-string used in automation name for 6 bit in bit flip ທີ 5 Sub-string used in automation name for 5 bit in bit flip ທີ 4 Sub-string used in automation name for 4 bit in bit flip ທີ 3 Sub-string used in automation name for 3 bit in bit flip ທີ 2 Sub-string used in automation name for 2 bit in bit flip ທີ 1 Sub-string used in automation name for 1 bit in bit flip ບິດທີ່ຕ່ຳສຸດ Used to describe the first bit of a binary number. Used in bit flip ເປີດໜ່ວຍຄວາມຈຳແບບລອຍອອກມາ This is the automation name and label for the memory button when the memory flyout is closed. ປິດໜ່ວຍຄວາມຈຳແບບລອຍອອກມາ This is the automation name and label for the memory button when the memory flyout is open. ຮັກສາໄວ້ດ້ານເທິງສຸດ This is the tool tip automation name for the always-on-top button when out of always-on-top mode. ກັບຄືນມຸມມອງເຕັມ This is the tool tip automation name for the always-on-top button when in always-on-top mode. ຄວາມຈຳ This is the tool tip automation name for the memory button. ປະຫວັດ (Ctrl + H) This is the tool tip automation name for the history button. ສະຫຼັບປຸ່ມກົດເລັກນ້ອຍ This is the tool tip automation name for the bitFlip button. ປຸ່ມກົດແບບເຕັມ This is the tool tip automation name for the numberPad button. ລຶບຄວາມຈໍາທັງໝົດ (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. ຄວາມຈຳ The text that shows as the header for the memory list ຄວາມຈຳ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ປະຫວັດ The text that shows as the header for the history list ປະຫວັດ The automation name for the History pivot item that is shown when Calculator is in wide layout. ຕົວປ່ຽນ Label for a control that activates the unit converter mode. ວິ​ທະຍາ​ສາດ Label for a control that activates scientific mode calculator layout ມາດຕະຖານ Label for a control that activates standard mode calculator layout. ແບບຕົວປ່ຽນ Screen reader prompt for a control that activates the unit converter mode. ຮູບແບບທາງວິທະຍາສາດ Screen reader prompt for a control that activates scientific mode calculator layout ຮູບແບບມາດຕະຖານ Screen reader prompt for a control that activates standard mode calculator layout. ລ້າງປະຫວັດທັງໝົດ "ClearHistory" used on the calculator history pane that stores the calculation history. ລ້າງປະຫວັດທັງໝົດ This is the tool tip automation name for the Clear History button. ເຊື່ອງ "HideHistory" used on the calculator history pane that stores the calculation history. ມາດຕະຖານ The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. ວິ​ທະຍາ​ສາດ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. ໂປຣແກຣມເມີ The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. ຕົວປ່ຽນ The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". ເຄື່ອງຄິດເລກ The text that shows in the dropdown navigation control for the calculator group. ຕົວປ່ຽນ The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". ເຄື່ອງຄິດເລກ The text that shows in the dropdown navigation control for the calculator group in upper case. ເຄື່ອງປ່ຽນ Pluralized version of the converter group text, used for the screen reader prompt. ເຄື່ອງຄິດເລກ Pluralized version of the calculator group text, used for the screen reader prompt. ໜ້າຈໍແມ່ນ %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". ສະແດງສົມຜົນແມ່ນ %1, ຂໍ້ມູນປ້ອນເຂົ້າຂະນະນີ້ແມ່ນ %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ສະແດງຜົນແມ່ນ %1 ຄະແນນ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. ການສະແດງອອກແມ່ນ %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". ຄ່າສະແດງກອັບປີ້ຫາຄລິບບອດແລ້ວ Screen reader prompt for the Calculator display copy button, when the button is invoked. ປະຫວັດ Screen reader prompt for the history flyout ຄວາມຈຳ Screen reader prompt for the memory flyout HexaDecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ເລກທົດສະນິຍົມ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ຖານແປດ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ຖານສອງ %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". ລ້າງປະຫວັດທັງໝົດ Screen reader prompt for the Calculator History Clear button ປະຫວັດລົບແລ້ວ Screen reader prompt for the Calculator History Clear button, when the button is invoked. ເຊື່ອງປະຫວັດ Screen reader prompt for the Calculator History Hide button ເປີດປະຫວັດແບບລອຍອອກມາ Screen reader prompt for the Calculator History button, when the flyout is closed. ປິດປະຫວັດແບບລອຍອອກມາ Screen reader prompt for the Calculator History button, when the flyout is open. ຄັງໜ່ວຍຄວາມຈຳ Screen reader prompt for the Calculator Memory button ຄັງເກັບຄວາມຈຳ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. ລຶບຄວາມຈໍາທັງໝົດ Screen reader prompt for the Calculator Clear Memory button ຄວາມຈຳລົບແລ້ວ Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. ການຮຽກກັບຄືນຄວາມຈຳ Screen reader prompt for the Calculator Memory Recall button ການຮຽກກັບຄືນຄວາມຈຳ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. ເພີ່ມຄວາມຈຳ Screen reader prompt for the Calculator Memory Add button ເພີ່ມຄວາມຈຳ (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. ລົບອອກຄວາມຈຳ Screen reader prompt for the Calculator Memory Subtract button ລົບອອກຄວາມຈຳ (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. ລຶບລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Clear Memory button ລຶບລາຍການຄວາມຈຳ This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. ເພີ່ມໄປທີ່ລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Memory Add button in the Memory list ເພີ່ມໄປທີ່ລາຍການຄວາມຈຳ This is the tool tip automation name for the Calculator Memory Add button in the Memory list ລົບອອກຈາກລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Memory Subtract button in the Memory list ລົບອອກຈາກລາຍການຄວາມຈຳ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list ລຶບລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Clear Memory button ລຶບລາຍການຄວາມຈຳ Text string for the Calculator Clear Memory option in the Memory list context menu ເພີ່ມໄປທີ່ລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Memory Add swipe button in the Memory list ເພີ່ມໄປທີ່ລາຍການຄວາມຈຳ Text string for the Calculator Memory Add option in the Memory list context menu ລົບອອກຈາກລາຍການຄວາມຈຳ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list ລົບອອກຈາກລາຍການຄວາມຈຳ Text string for the Calculator Memory Subtract option in the Memory list context menu ລຶບ Text string for the Calculator Delete swipe button in the History list ກັອບປີ້ Text string for the Calculator Copy option in the History list context menu ລຶບ Text string for the Calculator Delete option in the History list context menu ລຶບລາຍການປະຫວັດ Screen reader prompt for the Calculator Delete swipe button in the History list ລຶບລາຍການປະຫວັດ Screen reader prompt for the Calculator Delete option in the History list context menu ຍະຫວ່າງ Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button ສູນ Screen reader prompt for the Calculator number "0" button ໜຶ່ງ Screen reader prompt for the Calculator number "1" button ສອງ Screen reader prompt for the Calculator number "2" button ສາມ Screen reader prompt for the Calculator number "3" button ສີ່ Screen reader prompt for the Calculator number "4" button ຫ້າ Screen reader prompt for the Calculator number "5" button ຫົກ Screen reader prompt for the Calculator number "6" button ເຈັດ Screen reader prompt for the Calculator number "7" button ແປດ Screen reader prompt for the Calculator number "8" button ເກົ້າ Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button ແລະ Screen reader prompt for the Calculator And button ຫຼື Screen reader prompt for the Calculator Or button ບໍ່ Screen reader prompt for the Calculator Not button ໝູນດ້ານຊ້າຍ Screen reader prompt for the Calculator ROL button ໝູນດ້ານຂວາ Screen reader prompt for the Calculator ROR button ປຸ່ມຊີບດ້ານຊ້າຍ Screen reader prompt for the Calculator LSH button ປຸ່ມຊີບດ້ານຂວາ Screen reader prompt for the Calculator RSH button ພິເສດ ຫຼື Screen reader prompt for the Calculator XOR button ສະວິດຄັນໂຍກຄຳສັບແບບສີ່ເທົ່າ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". ສະວິດຄັນໂຍກ ຄຳສັບແບບຄູ່ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". ສະວິດຄັນໂຍກຄຳສັບ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". ສະວິດຄັນໂຍກ ໄບທ໌ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". ສະຫຼັບປຸ່ມກົດເລັກນ້ອຍ Screen reader prompt for the Calculator bitFlip button ປຸ່ມກົດແບບເຕັມ Screen reader prompt for the Calculator numberPad button ຕົວແຍກທົດ​ສະ​ນິ​ຍົມ: Screen reader prompt for the "." button ລ້າງຂໍ້ມູນບັນທຶກ Screen reader prompt for the "CE" button ລຶບ Screen reader prompt for the "C" button ແບ່ງໂດຍ Screen reader prompt for the divide button on the number pad ຄູນໃຫ້ Screen reader prompt for the multiply button on the number pad ເທົ່າກັນ Screen reader prompt for the equals button on the scientific operator keypad ຟັງຄ໌ຊັນກັບກັນ Screen reader prompt for the shift button on the number pad in scientific mode. ລົບ Screen reader prompt for the minus button on the number pad ລົບ We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 ບວກ Screen reader prompt for the plus button on the number pad ຮາກຂັ້ນສອງ Screen reader prompt for the square root button on the scientific operator keypad ສ່ວນຮ້ອຍ Screen reader prompt for the percent button on the scientific operator keypad ບວກ ລົບ Screen reader prompt for the negate button on the scientific operator keypad ບວກ ລົບ Screen reader prompt for the negate button on the converter operator keypad ເຊີ່ງກັນແລະກັນ Screen reader prompt for the invert button on the scientific operator keypad ວົງເລັບຊ້າຍ Screen reader prompt for the Calculator "(" button on the scientific operator keypad ວົງເລັບຊ້າຍ, ເປີດຍອດລວມວົງເລັບ %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ວົງເລັບຂວາ Screen reader prompt for the Calculator ")" button on the scientific operator keypad ຈຳນວນວົງເລັບເປີດ %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ບໍ່ມີວົງເລັບເປີດເພື່ອປິດ. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". ສັນຍາລັກທາງວິທະຍາສາດ Screen reader prompt for the Calculator F-E the scientific operator keypad ໜ້າທີ່ເກີນຄວາມຈິງ Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad ຊີນ Screen reader prompt for the Calculator sin button on the scientific operator keypad ໂຄຊີນ Screen reader prompt for the Calculator cos button on the scientific operator keypad ແທັງເຈັນ Screen reader prompt for the Calculator tan button on the scientific operator keypad ໄຮເປີຣໂບລິກ ຊີນ Screen reader prompt for the Calculator sinh button on the scientific operator keypad ໄຮເປີຣໂບລິກ ໂຄຊີນ Screen reader prompt for the Calculator cosh button on the scientific operator keypad ໄຮເປີຣໂບລິກ ແທັງເຈັນ Screen reader prompt for the Calculator tanh button on the scientific operator keypad ສີ່ຫຼ່ຽມມົນທົນ Screen reader prompt for the x squared on the scientific operator keypad. ຮູບກ້ອນ Screen reader prompt for the x cubed on the scientific operator keypad. Arc ຊີນ Screen reader prompt for the inverted sin on the scientific operator keypad. Arc ໂຄຊີນ Screen reader prompt for the inverted cos on the scientific operator keypad. Arc ແທັງເຈັນ Screen reader prompt for the inverted tan on the scientific operator keypad. ອາຣ໌ ຊີນທີ່ເກີນຄວາມຈິງ Screen reader prompt for the inverted sinh on the scientific operator keypad. ອາຣ໌ ໂຄຊີນທີ່ເກີນຄວາມຈິງ Screen reader prompt for the inverted cosh on the scientific operator keypad. ອາຣ໌ ແທັງເຈັນທີ່ເກີນຄວາມຈິງ Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' ຍົກກຳລັງ Screen reader prompt for x power y button on the scientific operator keypad. ສິບຍົກກຳລັງ Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' ຍົກກຳລັງ Screen reader for the e power x on the scientific operator keypad. y' ຮາກກຳລັງສອງຂອງ 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad ການບັນທຶກແບບທຳມະຊາດ Screen reader for the log base e on the scientific operator keypad ໂມດູນ Screen reader for the mod button on the scientific operator keypad ເລກກຳລັງ Screen reader for the exp button on the scientific operator keypad ອົງສາ ນາທີ ວິນາທີ Screen reader for the exp button on the scientific operator keypad ອົງສາ Screen reader for the exp button on the scientific operator keypad ພາກສ່ວນຖ້ວນ Screen reader for the int button on the scientific operator keypad ພາກສ່ວນເສດສ່ວນ Screen reader for the frac button on the scientific operator keypad ການປະກອບ Screen reader for the factorial button on the basic operator keypad ສະວິດຄັນໂຍກ ລະດັບ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". ສະວິດຄັນໂຍກ ກຣາດຽນ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". ສະວິດຄັນໂຍກ ຣາດຽນ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". ການເລື່ອນໂໝດລົງ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. ການເລື່ອນໝວດໝູ່ລົງ Screen reader prompt for the Categories dropdown field. ຮັກສາໄວ້ດ້ານເທິງສຸດ Screen reader prompt for the Always-on-Top button when in normal mode. ກັບຄືນມຸມມອງເຕັມ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. ຮັກສາໄວ້ດ້ານເທິງສຸດ (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. ກັບຄືນມຸມມອງເຕັມ (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. ແປງຈາກ %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. ແປງຈາກ %1 ຈຸດ %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. ແປງເປັນ %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ແມ່ນ %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. ຫົວໜ່ວຍເຂົ້າ Screen reader prompt for the Unit Converter Units1 i.e. top units field. ຫົວໜ່ວຍອອກ Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. ພື້ນທີ່ Unit conversion category name called Area (eg. area of a sports field in square meters) ຂໍ້ມູນ Unit conversion category name called Data ພະລັງງານ Unit conversion category name called Energy. (eg. the energy in a battery or in food) ຄວາມຍາວ Unit conversion category name called Length ກຳລັງ Unit conversion category name called Power (eg. the power of an engine or a light bulb) ຄວາມໄວ Unit conversion category name called Speed ເວລາ Unit conversion category name called Time ບໍລິມາດ Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) ອຸນຫະພູມ Unit conversion category name called Temperature ນ້ຳໜັກ ແລະ ມວນສານ Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ຄວາມດັນ Unit conversion category name called Pressure ມຸມ Unit conversion category name called Angle ສະກຸນເງິນ Unit conversion category name called Currency ອອນທາດແຫຼວ (ສະຫະລາຊະອານາຈັກ) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ອອນທາດແຫຼວ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (ສະຫະລັດ) An abbreviation for a measurement unit of volume ແກລອນ (ສະຫະລາຊະອານາຈັກ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແກຼລອນ (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ແກລອນ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແກຼລອນ (ສະຫະລັດ) An abbreviation for a measurement unit of volume ລິດ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume ມີລີລິດ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມລ An abbreviation for a measurement unit of volume ພາຍທ໌ (ສະຫະລາຊະອານາຈັກ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ພາຍທ໌ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (ສະຫະລັດ) An abbreviation for a measurement unit of volume ຊ້ອນໂຕະ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (ສະຫະລັດ) An abbreviation for a measurement unit of volume ຊ້ອນຊາ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (ສະຫະລັດ) An abbreviation for a measurement unit of volume ຊ້ອນໂຕະ (ສະຫະລາຊະອານາຈັກ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ຊ້ອນຊາ (ສະຫະລາຊະອານາຈັກ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ມາດຕາຜອງ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of volume ມາດຕາຜອງ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (ສະຫະລັດ) An abbreviation for a measurement unit of volume ຈອກ (ສະຫະລັດ) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈອກ (ສະຫະລັດ) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data ບີທີຢູ An abbreviation for a measurement unit of volume ບີທີຢູ/ນາທີ An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy ຊມ An abbreviation for a measurement unit of length ຊມ/ວ An abbreviation for a measurement unit of speed ຊມ3 An abbreviation for a measurement unit of volume ຟຸດ3 An abbreviation for a measurement unit of volume ນີ້ວ3 An abbreviation for a measurement unit of volume ມ3 An abbreviation for a measurement unit of volume ຫຼາ3 An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ຟຸດ An abbreviation for a measurement unit of length ຟຸດ/ວິນາທີ An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ເຮັກຕາ An abbreviation for a measurement unit of area hp (ສະຫະລັດ) An abbreviation for a measurement unit of power ຊົ່ວໂມງ An abbreviation for a measurement unit of time ນີ້ວ An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy ກມ An abbreviation for a measurement unit of length ກມ/ຊ An abbreviation for a measurement unit of speed ກວ An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time ໄມລ໌ An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed ນທ An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time ນມ An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power ອາທິດ An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length yr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data ຢີ An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data ເອເຄີ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຫົວໜ່ວຍຄວາມຮ້ອນອັງກິດ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ບີທີຢູ/ນາທີ A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໄບທ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຄລໍລີ່ຄວາມຮ້ອນ A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊັງຕີແມັດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊັງຕີແມັດຕໍ່ວິນາທີ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊັງຕີແມັດກ້ອນ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ລູກບາດຟຸດ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ລູກບາດນີ້ວ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແມັດກ້ອນ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ລູກບາດຫຼາ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມື້ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຊວຊຽສ An option in the unit converter to select degrees Celsius ຟາເຣນຮາຍ An option in the unit converter to select degrees Fahrenheit ກະແສໄຟຟ້າອີເລັກຕຣອນ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຸດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຸດຕໍ່ວິນາທີ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຸດ-ປອນ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຸດ-ປອນ/ນາທີ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິກາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິກະໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຮັກຕາ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຮງມ້າ (ສະຫະລັດ) A measurement unit for power ຊົ່ວໂມງ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ນິ້ວ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈູນ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລວັດ-ຊົ່ວໂມງ A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຄລວິນ An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". ກິໂລບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ພະລັງງານອາຫານ A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລຈູນ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລແມັດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລແມັດຕໍ່ຊົ່ວໂມງ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລວັດ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ນັອດ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໜ່ວຍມັດ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) ເມກາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເມກະໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແມັດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແມັດຕໍ່ນາທີ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໄມຄອນ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມີໂຄຣວິນາທີ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໄມ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໄມຕໍ່ຊົ່ວໂມງ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມິລິແມັດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມີລີວິນາທີ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ນາທີ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເລັມ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ນາໂນແມັດ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອັງສະຕອມ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໄມທະເລ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເປຕາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເປຕາໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ວິນາທີ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊັງຕີຕາແມັດ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຕາລາງຟີດ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຕາລາງນີ້ວ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລຕາແມັດ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຕາມແມັດ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຕາລາງໄມ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມີລີຕາແມັດ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຕາລາງຫຼາ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕຣາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕຣາໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ວັດ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອາທິດ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຫຼາ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປີ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight ອົງສາ An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ບາ An abbreviation for a measurement unit of Pressure kpa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure ຊກ. An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight ຮກ An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ໂຕ່ນ (ສະຫະລາຊະອານາຈັກ) An abbreviation for a measurement unit of weight ມກ An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ໂຕນ (ສະຫະລັດ) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight T An abbreviation for a measurement unit of weight ກາຣັດ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອົງສາ A measurement unit for Angle. ເຣດຽນ A measurement unit for Angle. ໄລ່ສີ A measurement unit for Angle. ບັນຍາກາດ A measurement unit for Pressure. ແທ່ງ A measurement unit for Pressure. ກິໂລ ປາສຄາລ A measurement unit for Pressure. ມີລີແມັດຂອງເມີຄິວຣີ A measurement unit for Pressure. ປາສກໍ A measurement unit for Pressure. ປອນຕໍ່ນີ້ວກ້ອນ (PSI) A measurement unit for Pressure. ຊັງຕີກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເດກາກຼາມ A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເດຊີກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຮັກໂຕກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິໂລກກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປອນຍາວ (ສະຫະລາຊະອານາຈັກ) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມີລີກຼາມ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອອນ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປອນ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໂຕນສັ້ນ (ສະຫະລັດ) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຫີນ A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເມັດຕຼິກໂຕນ A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊີດີ A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊີດີ A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ສະໜາມເຕະບານ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ສະໜາມເຕະບານ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຣັອບພີ ດີສທ໌ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຟຣັອບພີ ດີສທ໌ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ດີວີດີ A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ດີວີດີ A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໝໍ້ໄຟ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໝໍ້ໄຟ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຄລິບໜີບເຈ້ຍ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຄລິບໜີບເຈ້ຍ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈຳໂບ້ ເຈັດ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈຳໂບ້ ເຈັດ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ດອກໄຟ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ດອກໄຟ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຮງມ້າ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຮງມ້າ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອ່າງນ້ຳ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ອ່າງນ້ຳ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເກັດຫີມະ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເກັດຫີມະ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊ້າງ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຊ້າງ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕົ່າ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕົ່າ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຈັດ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຈັດ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປາວານ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປາວານ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈອກກາເຟ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຈອກກາເຟ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ສະລອຍນ້ຳ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ສະລອຍນ້ຳ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມື A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ມື A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຜ່ນເຈ້ຍ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ແຜ່ນເຈ້ຍ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຫໍປາສາດ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຫໍປາສາດ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກ້ວຍ A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກ້ວຍ A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປ່ຽງເຄັກ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ປ່ຽງເຄັກ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຄື່ອງຈັກລົດໄຟ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຄື່ອງຈັກລົດໄຟ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໝາກບານ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໝາກບານ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ລາຍການໜ່ວຍຄວາມຈຳ Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) ກັບ​ຄືນ Screen reader prompt for the About panel back button ກັບ​ຄືນ Content of tooltip being displayed on AboutControlBackButton ຂໍ້ກຳນົດໃບອະນຸຍາດຊອບແວຂອງ Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel ເບິ່ງຕົວຢ່າງ Label displayed next to upcoming features ຄໍາຖະແຫຼງຄວາມເປັນສ່ວນຕົວຂອງ Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. ສະຫງວນລິຂະສິດ. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) ເພື່ອຮຽນຮູ້ວິທີທີ່ທ່ານສາມາດມີສ່ວນຮ່ວມໃນ Windows ເຄື່ອງ​ຄິດ​ເລກ, ໃຫ້ກວດເບິ່ງໂປຣເຈັກໃນ %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel ກ່ຽວກັບ Subtitle of about message on Settings page ສົ່ງຄຳຕິຊົມ The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app ຍັງບໍ່ມີປະຫວັດເທື່ອ. The text that shows as the header for the history list ບໍ່ໄດ້ມີການບັນທຶກໃດໆໃນໜ່ວຍຄວາມຈຳ. The text that shows as the header for the memory list ຄວາມຈຳ Screen reader prompt for the negate button on the converter operator keypad ຖ້ອຍຄຳນີ້ບໍ່ສາມາດວາງໄດ້ The paste operation cannot be performed, if the expression is invalid. ກິບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ກິບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຄິບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຄິບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເມບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເມບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເປບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເປບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຕບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເອັກຊາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເອັກຊາໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເອັກບີບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເອັກບີໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຊຕາບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຊຕາໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຊບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ເຊບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຍອດຕະບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ຍອດຕະໄບຕ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໂຢບິບິດ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ໂຢບິໄບທ໌ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ການຄິດໄລ່ວັນທີ ໂໝດການຄຳນວນ Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". ເພີ່ມ Add toggle button text ເພີ່ມ ຫຼື ລົບວັນອອກ Add or Subtract days option ວັນທີ Date result label ຄວາມແຕກຕ່າງລະຫວ່າງວັນທີ Date difference option ມື້ Add/Subtract Days label ຄວາມແຕກຕ່າງ Difference result label ຈາກ From Date Header for Difference Date Picker ເດືອນ Add/Subtract Months label ລົບ Subtract toggle button text ເຖິງ To Date Header for Difference Date Picker ປີ Add/Subtract Years label ວັນທີເກີນຂອບເຂດ Out of bound message shown as result when the date calculation exceeds the bounds ວັນ ມື້ ເດືອນ ​ເດືອນ ວັນທີດຽວກັນ ອາທິດ ອາທິດ ປີ ປີ ຄວາມແຕກຕ່າງ %1 Automation name for reading out the date difference. %1 = Date difference ວັນທີໄດ້ຮັບ %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date ໂໝດເຄື່ອງຄິດເລກ %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. ໂໝດຕົວແປງ %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. ໂໝດການຄຳນວນວັນທີ Automation name for when the mode header is focused and the current mode is Date calculation. ລາຍການປະຫວັດ ແລະ ຄວາມຈຳ Automation name for the group of controls for history and memory lists. ຄວບຄຸມຄວາມຈຳ Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) ຟັງຄ໌ຊັນມາດຕະຖານ Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) ຄວາມຄຸມການສະແດງໜ້າຈໍ Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) <mrk mtype="seg" mid="26">ສັນຍາລັກ ມາດຕະຖານ</mrk> Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) ແປ້ນໝາຍເລກ Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) <mrk mtype="seg" mid="35">ສັນຍາລັກມຸມ</mrk> Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) ຟັງຄ໌ຊັນທາງວິທະຍາສາດ Automation name for the group of Scientific functions. ການເລືອກ Radix Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix <mrk mtype="seg" mid="39">ສັນຍາລັກຜູ້ຂຽນໂປຣແກຣມ</mrk> Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). ການເລືອກໂໝດປ້ອນຂໍ້ມູນ Automation name for the group of input mode toggling buttons. ສະຫຼັບປຸ່ມກົດເລັກນ້ອຍ Automation name for the group of bit toggling buttons. ເລື່ອນການສະແດງອອກເບື້ອງຊ້າຍ Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. ເລື່ອນການສະແດງອອກເບື້ອງຂວາ Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. ຕົວເລກສູງສຸດເຖິງແລ້ວ. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 ຖືກບັນທຶກໃສ່ຄວາມຈຳແລ້ວ {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". ຊ່ອງຄວາມຈຳ %1 ແມ່ນ %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". ຊ່ອງຄວາມຈຳt %1 ລົບແລ້ວ {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". ແບ່ງໂດຍ Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ເວລາ Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ລົບ Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. ບວກ Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ໄປທີ່ປຸ່ມເປີດປິດຂອງ Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y ຣູທ Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. ໂມດ Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ປຸ່ມ shift ຊ້າຍ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. ປຸ່ມ shift ຂວາ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ຫຼື Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ຫຼື Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ແລະ Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. ອັບເດດແລ້ວ %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" ອັບເດດອັດຕາ The text displayed for a hyperlink button that refreshes currency converter ratios. ອາດມີການຄິດຄ່າຂໍ້ມູນ. The text displayed when users are on a metered connection and using currency converter. ບໍ່ສາມາດຮັບອັດຕາໃໝ່ໄດ້. ລອງໃໝ່ພາຍຫຼັງ. The text displayed when currency ratio data fails to load. ອອຟລາຍນ໌. ກະລຸນາກວດເບິ່ງ %HL%ການຕັ້ງຄ່າເຄືອຂ່າຍ%HL% ຂອງທ່ານ Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} ການອັບເດດອັດຕາສະກຸນເງິນ This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. ອັບເດດອັດຕາສະກຸນເງິນແລ້ວ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. ບໍ່ສາມາດອັບເດດອັດຕາ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} ລຶບຄວາມຈໍາທັງໝົດ (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. ລຶບຄວາມຈໍາທັງໝົດ Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} ລະດັບ Sin Name for the sine function in degrees mode. Used by screen readers. Sin ຣາດຽນ Name for the sine function in radians mode. Used by screen readers. Sin ກຣາດຽນ Name for the sine function in gradians mode. Used by screen readers. ລະດັບ Sin ປີ້ນກັບ Name for the inverse sine function in degrees mode. Used by screen readers. Sin ຣາດຽນປີ້ນກັບ Name for the inverse sine function in radians mode. Used by screen readers. Sin ກຣາດຽນ ປີ້ນກັບ Name for the inverse sine function in gradians mode. Used by screen readers. ໄຮເປີຣໂບລິກ Sin Name for the hyperbolic sine function. Used by screen readers. ໄຮເປີຣໂບລິກ Sin ປີ້ນກັບ Name for the inverse hyperbolic sine function. Used by screen readers. ລະດັບ Cos Name for the cosine function in degrees mode. Used by screen readers. Cos ຣາດຽນ Name for the cosine function in radians mode. Used by screen readers. Cos ກຣາດຽນ Name for the cosine function in gradians mode. Used by screen readers. ລະດັບ Cos ປີ້ນກັບ Name for the inverse cosine function in degrees mode. Used by screen readers. Cos ຣາດຽນປີ້ນກັບ Name for the inverse cosine function in radians mode. Used by screen readers. Cos ກຣາດຽນ ປີ້ນກັບ Name for the inverse cosine function in gradians mode. Used by screen readers. ໄຮເປີຣໂບລິກ Cos Name for the hyperbolic cosine function. Used by screen readers. ໄຮເປີຣໂບລິກ Cos ປີ້ນກັບ Name for the inverse hyperbolic cosine function. Used by screen readers. ລະດັບ Tan Name for the tangent function in degrees mode. Used by screen readers. Tan ຣາດຽນ Name for the tangent function in radians mode. Used by screen readers. Tan ກຣາດຽນ Name for the tangent function in gradians mode. Used by screen readers. ລະດັບ Tan ປິ້ນກັບ Name for the inverse tangent function in degrees mode. Used by screen readers. Tan ຣາດຽນປິ້ນກັບ Name for the inverse tangent function in radians mode. Used by screen readers. Tan ກຣາດຽນປີ້ນກັບ Name for the inverse tangent function in gradians mode. Used by screen readers. ໄຮເປີຣໂບລິກ Tan Name for the hyperbolic tangent function. Used by screen readers. ໄຮເປີຣໂບລິກ Tan ປີ້ນກັບ Name for the inverse hyperbolic tangent function. Used by screen readers. ອົງສາຊີແຄນ Name for the secant function in degrees mode. Used by screen readers. ຣາດຽນຊີແຄນ Name for the secant function in radians mode. Used by screen readers. ກຣາດຽນຊີແຄນ Name for the secant function in gradians mode. Used by screen readers. ອົງສາຊີແຄນປີ້ນກັບ Name for the inverse secant function in degrees mode. Used by screen readers. ຣາດຽນຊີແຄນປີ້ນກັບ Name for the inverse secant function in radians mode. Used by screen readers. ກຣາດຽນຊີແຄນປີ້ນກັບ Name for the inverse secant function in gradians mode. Used by screen readers. ໄຮເປີບໍລິກຊີແຄນທ໌ Name for the hyperbolic secant function. Used by screen readers. ໄຮເປີບໍລິກຊີແຄນປີ້ນກັບ Name for the inverse hyperbolic secant function. Used by screen readers. ອົງສາໂຄຊີແຄນ Name for the cosecant function in degrees mode. Used by screen readers. ໂຄຊີແຄນຣາດຽນ Name for the cosecant function in radians mode. Used by screen readers. ໂຄຊີແຄນກຣາດຽນ Name for the cosecant function in gradians mode. Used by screen readers. ອົງສາໂຄຊີແຄນປີ້ນກັບ Name for the inverse cosecant function in degrees mode. Used by screen readers. ຣາດຽນໂຄຊີແຄນປີ້ນກັບ Name for the inverse cosecant function in radians mode. Used by screen readers. ກຣາດຽນໂຄຊີແຄນປີ້ນກັບ Name for the inverse cosecant function in gradians mode. Used by screen readers. ໄຮເປີບໍລິກໂຄຊີແຄນ Name for the hyperbolic cosecant function. Used by screen readers. ໄຮເປີບໍລິກໂຄຊີແຄນປີ້ນກັບ Name for the inverse hyperbolic cosecant function. Used by screen readers. ອົງສາໂຄແທນເຈນ Name for the cotangent function in degrees mode. Used by screen readers. ໂຄແທນເຈນຣາດຽນ Name for the cotangent function in radians mode. Used by screen readers. ໂຄແທນເຈນກຣາດຽນ Name for the cotangent function in gradians mode. Used by screen readers. ອົງສາໂຄແທນເຈນປີ້ນກັບ Name for the inverse cotangent function in degrees mode. Used by screen readers. ຣາດຽນໂຄແທນເຈນປີ້ນກັບ Name for the inverse cotangent function in radians mode. Used by screen readers. ກຣາດຽນໂຄແທນເຈນປີ້ນກັບ Name for the inverse cotangent function in gradians mode. Used by screen readers. ໄຮເປີບໍລິກໂຄແທນເຈນ Name for the hyperbolic cotangent function. Used by screen readers. ໄຮເປີບໍລິກໂຄແທນເຈນປີ້ນກັບ Name for the inverse hyperbolic cotangent function. Used by screen readers. ຮາກທີສາມ Name for the cube root function. Used by screen readers. ຖານບັນທຶກ Name for the logbasey function. Used by screen readers. ຄ່າຕາຍຕົວ Name for the absolute value function. Used by screen readers. ປຸ່ມ shift ຊ້າຍ Name for the programmer function that shifts bits to the left. Used by screen readers. ປຸ່ມ shift ຂວາ Name for the programmer function that shifts bits to the right. Used by screen readers. ແຟັກທໍຣຽວ Name for the factorial function. Used by screen readers. ອົງສາ ນາທີ ວິນາທີ Name for the degree minute second (dms) function. Used by screen readers. ການບັນທຶກແບບທຳມະຊາດ Name for the natural log (ln) function. Used by screen readers. ຮູບຈະຕຸລັດ Name for the square function. Used by screen readers. y ຣູທ Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". ໝວດ %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". ຂໍ້​ຕົກ​ລົງ​ການ​ບໍ​ລິ​ການ Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. ຈາກ From Date Header for AddSubtract Date Picker ເລື່ອນຜົນການຄິດໄລ່ໄປຊ້າຍ Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. ເລື່ອນຜົນການຄິດໄລ່ໄປຂວາ Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. ການຄິດໄລ່ບໍ່ສຳເລັດ Text displayed when the application is not able to do a calculation ຖານບັນທຶກ Y Screen reader prompt for the logBaseY button ຕຣິໂກໂນເມຕຣີ Displayed on the button that contains a flyout for the trig functions in scientific mode. ຟັງຄ໌ຊັນ Displayed on the button that contains a flyout for the general functions in scientific mode. ບໍ່ເທົ່າກັນ Displayed on the button that contains a flyout for the inequality functions. ບໍ່ເທົ່າກັນ Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bit Shift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. ຟັງຄ໌ຊັນກັບກັນ Screen reader prompt for the shift button in the trig flyout in scientific mode. ໄຮເປີບໍລິກຟັງຄ໌ຊັນ Screen reader prompt for the Calculator button HYP in the scientific flyout keypad ຊີແຄນທ໌ Screen reader prompt for the Calculator button sec in the scientific flyout keypad ໄຮເປີບໍລິກຊີແຄນທ໌ Screen reader prompt for the Calculator button sech in the scientific flyout keypad ສ່ວນໂຄ້ງຊີແຄນທ໌ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ສ່ວນໂຄ້ງຊີແຄນທ໌ແບບໄຮເປີບໍລິກ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ໂຄຊີແຄນ Screen reader prompt for the Calculator button csc in the scientific flyout keypad ໄຮເປີບໍລິກໂຄຊີແຄນ Screen reader prompt for the Calculator button csch in the scientific flyout keypad ສ່ວນໂຄ້ງໂຄຊີແຄນ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ສ່ວນໂຄ້ງໂຄຊີແຄນແບບໄຮເປີບໍລິກ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ໂຄແທນເຈນ Screen reader prompt for the Calculator button cot in the scientific flyout keypad ໄຮເປີບໍລິກໂຄແທນເຈນ Screen reader prompt for the Calculator button coth in the scientific flyout keypad ສ່ວນໂຄ້ງໂຄແທນເຈນ Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ສ່ວນໂຄ້ງໂຄແທນເຈນແບບໄຮເປີບໍລິກ Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ຊັ້ນອາຄານ Screen reader prompt for the Calculator button floor in the scientific flyout keypad ເພດານ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ສຸ່ມ Screen reader prompt for the Calculator button random in the scientific flyout keypad ຄ່າຕາຍຕົວ Screen reader prompt for the Calculator button abs in the scientific flyout keypad ເລກຂອງ Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad ຍົກກຳລັງສອງ Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. ໜຸນໄປຊ້າຍດ້ວຍການເພີ່ມຕົວເລກໃສ່ທີ່ວ່າງຂວາ Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad ໜຸນໄປຂວາດ້ວຍການເພີ່ມຕົວເລກໃສ່ທີ່ວ່າງຊ້າຍ Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad ປຸ່ມຊີບດ້ານຊ້າຍ Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Shift ຊ້າຍ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. ປຸ່ມຊີບດ້ານຂວາ Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Shift ຂວາ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. ປ່ຽນການຄຳນວນ Label for a radio button that toggles arithmetic shift behavior for the shift operations. Shift ທາງໂລຈິກ Label for a radio button that toggles logical shift behavior for the shift operations. ໝຸນ Circular Shift Label for a radio button that toggles rotate circular behavior for the shift operations. ໝຸນຜ່ານ Carry Circular Shift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ຮາກທີສາມ Screen reader prompt for the cube root button on the scientific operator keypad ຕຣິໂກໂນເມຕຣີ Screen reader prompt for the square root button on the scientific operator keypad ຟັງຄ໌ຊັນຕ່າງໆ Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad ແຜງຜູ້ຄວບຄຸມທາງວິທະຍາສາດ Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad ແຜງຜູ້ຄວບຄຸມໂປຣແກຣມເມີ້ Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ບິດທີ່ສູງສຸດ Used to describe the last bit of a binary number. Used in bit flip ສ້າງກຣາບ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. ລົງຈຸດ Screen reader prompt for the plot button on the graphing calculator operator keypad ໂຫຼດມຸມມອງອັດຕະໂນມັດ (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. ມຸມມອງກຣາບ Screen reader prompt for the graph view button. ປັບໃຫ້ພໍດີອັດຕະໂນມັດ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set ປັບແຕ່ງເອງ Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set ຣີເຊັດມຸມມອງກຣາບແລ້ວ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph ຊູມເຂົ້າ (Ctrl + ບວກ) This is the tool tip automation name for the Calculator zoom in button. ຂະຫຍາຍເຂົ້າ Screen reader prompt for the zoom in button. ຊູມອອກ (Ctrl + ລົບ) This is the tool tip automation name for the Calculator zoom out button. ຂະຫຍາຍອອກ Screen reader prompt for the zoom out button. ເພີ່ມສົມຜົົນ Placeholder text for the equation input button ບໍ່ສາມາດແບ່ງປັນໃນເວລານີ້. If there is an error in the sharing action will display a dialog with this text. ຕົກລົງ Used on the dismiss button of the share action error dialog. ຊອກຫາສິ່ງທີ່ຂ້ອຍໄດ້ສະແດງເປັນເສັ້ນກຣາຟດ້ວຍ Windows ເຄື່ອງຄິດເລກ Sent as part of the shared content. The title for the share. ສົມຜົນ Header that appears over the equations section when sharing ຕົວແປ Header that appears over the variables section when sharing ຮູບພາບຂອງແຜ່ນວາດກັບສົມຜົນ Alt text for the graph image when output via Share ຕົວແປ Header text for variables area ບາດກ້າວ Label text for the step text box ຕ່ຳສຸດ Label text for the min text box ສູງສຸດ Label text for the max text box ສີ Label for the Line Color section of the style picker ຮູບແບບ Label for the Line Style section of the style picker ການວິເຄາະຟັງຄ໌ຊັນ Title for KeyGraphFeatures Control ຟັງຊັນບໍ່ມີເສັ້ນກຳກັບລວງນອນໃດໜຶ່ງ. Message displayed when the graph does not have any horizontal asymptotes ຟັງຊັນບໍ່ມີຈຸດການຜັນໃດໜຶ່ງ. Message displayed when the graph does not have any inflection points ຟັງຊັນບໍ່ມີຈຸດສູງສຸດໃດໜຶ່ງ. Message displayed when the graph does not have any maxima ຟັງຊັນບໍ່ມີຈຸດຕ່ຳສຸດໃດໜຶ່ງ. Message displayed when the graph does not have any minima ຄົງທີ່ String describing constant monotonicity of a function ການຫລຸດລົງ String describing decreasing monotonicity of a function ບໍ່ສາມາດກໍານົດການຊ້ຳຂອງຟັງຊັນ. Error displayed when monotonicity cannot be determined ການເພີ່ມຂຶ້ນ String describing increasing monotonicity of a function ການຊ້ຳຂອງຟັງຊັນແມ່ນບໍ່ຮູ້ຈັກ. Error displayed when monotonicity is unknown ຟັງຊັນບໍ່ມີເສັ້ນກຳກັບອຽງໃດໜຶ່ງ. Message displayed when the graph does not have any oblique asymptotes ບໍ່ສາມາດກໍານົດການເທົ່າກັນຂອງຟັງຊັນ. Error displayed when parity is cannot be determined ຟັງຊັນແມ່ນຄູ່. Message displayed with the function parity is even ຟັງຊັນບໍ່ແມ່ນຄູ່ແລະຄີກ. Message displayed with the function parity is neither even nor odd ຟັງຊັນແມ່ນຄີກ. Message displayed with the function parity is odd ການເທົ່າກັນຂອງຟັງຊັນແມ່ນບໍ່ຮູ້ຈັກ. Error displayed when parity is unknown ການເກີດຂຶ້ນຊ້ຳໆບໍ່ຖືກຮອງຮັບສຳລັບຟັງຊັນນີ້. Error displayed when periodicity is not supported ຟັງຊັນນີ້ແມ່ນເກີດຂຶ້ນຊ້ຳໆ. Message displayed with the function periodicity is not periodic ການເກີດຂຶ້ນຊ້ຳໆຂອງຟັງຊັນແມ່ນບໍ່ຮູ້ຈັກ. Message displayed with the function periodicity is unknown ຄຸນສົມບັດເຫລົ່ານີ້ສັບສົນເກີນໄປສຳລັບ ເຄື່ອງຄິດເລກໃນການຄຳນວນ: Error displayed when analysis features cannot be calculated ຟັງຊັນບໍ່ມີເສັ້ນກຳກັບລວງຕັ້ງໃດໜຶ່ງ. Message displayed when the graph does not have any vertical asymptotes ຟັງຊັນບໍ່ມີຈຸດ x-intercept ໃດໜຶ່ງ. Message displayed when the graph does not have any x-intercepts ຟັງຊັນບໍ່ມີຈຸຸດ y-intercept ໃດໜຶ່ງ. Message displayed when the graph does not have any y-intercepts ໂດເມນ Title for KeyGraphFeatures Domain Property ເສັ້ນກຳກັບລວງນອນ Title for KeyGraphFeatures Horizontal aysmptotes Property ຈຸດການຜັນ Title for KeyGraphFeatures Inflection points Property ການວິເຄາະບໍ່ຖືກຮອງຮັບສຳລັບຟັງຊັນນີ້. Error displayed when graph analysis is not supported or had an error. ການວິເຄາະພຽງແຕ່ສໍາລັບການທຳງານ ໃນຮູບແບບ f(x). ຕົວຢ່າງ: y=x Error displayed when graph analysis detects the function format is not f(x). ສູງສຸດ Title for KeyGraphFeatures Maxima Property ຕ່ຳສຸດ Title for KeyGraphFeatures Minima Property ການຊ້ຳ Title for KeyGraphFeatures Monotonicity Property ເສັ້ນກຳກັບສະຫຼຽງ Title for KeyGraphFeatures Oblique asymptotes Property ການເທົ່າກັນ Title for KeyGraphFeatures Parity Property ໄລຍະເວລາ Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. ຂອບເຂດ Title for KeyGraphFeatures Range Property ເສັ້ນກຳກັບແນວຕັ້ງ Title for KeyGraphFeatures Vertical asymptotes Property X-Intercept Title for KeyGraphFeatures XIntercept Property Y-Intercept Title for KeyGraphFeatures YIntercept Property ບໍ່ສາມາດເຮັດການວິເຄາະສຳລັບຟັງຊັນ. ບໍ່ສາມາດຄໍານວນໂດເມນສໍາລັບຟັງຊັນນີ້. Error displayed when Domain is not returned from the analyzer. ບໍ່ສາມາດຄໍານວນຂອບເຂດສໍາລັບຟັງຊັນນີ້. Error displayed when Range is not returned from the analyzer. ລົ້ນ (ຈຳນວນໃຫຍ່ເກີນໄປ) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ຕ້ອງໃຊ້ໂໝດເຣດດຽນເພື່ອສ້າງກຣາບໃຫ້ສົມຜົນນີ້. Error that occurs during graphing when radians is required. ຟັງຊັນນີ້ມີຄວາມຊັບຊ້ອນຫຼາຍເກີນກວ່າຈະສ້າງກຣາບໄດ້ Error that occurs during graphing when the equation is too complex. ຕ້ອງໃຊ້ໂໝດດີກຣີເພື່ອສ້າງກຣາບໃຫ້ຟັງຊັນນີ້ Error that occurs during graphing when degrees is required ຟັງຊັນຕົວປະກອບມີອາກິວເມັນທີ່ບໍ່ຖືກຕ້ອງ Error that occurs during graphing when a factorial function has an invalid argument. ຟັງຊັນຕົວປະກອບມີອາກິວເມັນທີ່ໃຫຍ່ເກີນກວ່າທີ່ຈະສ້າງກຣາບໄດ້ Error that occurs during graphing when a factorial has a large n ສາມາດໃຊ້ Modulo ກັບຈຳນວນຖ້ວນເທົ່ານັ້ນ Error that occurs during graphing when modulo is used with a float. ສົມຜົນບໍ່ມີຄຳຕອບ Error that occurs during graphing when the equation has no solution. ບໍ່ສາມາດຫານໃຫ້ສູນໄດ້ Error that occurs during graphing when a divison by zero occurs. ສົມຜົນມີເງື່ອນໄຂໂລຈິກທີ່ຖືກແຍກອອກຮ່ວມກັນ Error that occurs during graphing when mutually exclusive conditions are used. ສົມຜົນຢູ່ນອກໂດເມນ Error that occurs during graphing when the equation is out of domain. ບໍ່ຮອງຮັບການສ້າງກຣາບໃຫ້ສົມຜົນນີ້ Error that occurs during graphing when the equation is not supported. ສົມຜົນບໍ່ມີວົງເລັບເປີດ Error that occurs during graphing when the equation is missing a ( ສົມຜົນບໍ່ມີວົງເລັບປິດ Error that occurs during graphing when the equation is missing a ) ມີຈຸດທົດສະນິຍົມຫຼາຍເກີນໄປໃນຈຳນວນໃດໜຶ່ງ Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 ຈຸດທົດສະນິຍົມບໍ່ມີຕົວເລກ Error that occurs during graphing with a decimal point without digits ນິພົດສິ້ນສຸດໂດຍບໍ່ຄາດຄິດ Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* ມີຕົວອັກສອນທີ່ບໍ່ຄາດຄິດໃນນິພົດ Error that occurs during graphing when there is an unexpected token. ມີຕົວອັກສອນທີ່ບໍ່ຖືກຕ້ອງໃນນິພົດ Error that occurs during graphing when there is an invalid token. ມີເຄື່ອງໝາຍເທົ່າກັບຫຼາຍເກີນໄປ Error that occurs during graphing when there are too many equals. ຟັງຊັນຕ້ອງມີຕົວແປຢ່າງໜ້ອຍ x ຫຼື y Error that occurs during graphing when the equation is missing x or y. ນິພົດບໍ່ຖືກຕ້ອງ Error that occurs during graphing when an invalid syntax is used. ນິພົດຫວ່າງເປົ່າ Error that occurs during graphing when the expression is empty ເທົ່າກັບຖືກໃຊ້ໂດຍບໍ່ມີສົມຜົນ Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ບໍ່ມີວົງເລັບຫຼັງຈາກຊື່ຟັງຊັນ Error that occurs during graphing when parenthesis are missing after a function. ຄຳສັ່ງທາງຄະນິດສາດມີຈຳນວນພາຣາມິເຕີບໍ່ຖືກຕ້ອງ Error that occurs during graphing when a function has the wrong number of parameters ຊື່ຕົວແປບໍ່ຖືກຕ້ອງ Error that occurs during graphing when a variable name is invalid. ສົມຜົນບໍ່ມີວົງປີກກາເປີດ Error that occurs during graphing when a { is missing ບໍ່ມີສົມຜົນໃນວົງປີກກາປິດ Error that occurs during graphing when a } is missing. ບໍ່ສາມາດໃຊ້ "i" ແລະ "I" ເປັນຊື່ຕົວແປໄດ້ Error that occurs during graphing when i or I is used. ບໍ່ສາມາດສ້າງກຣາບສົມຜົນໄດ້ General error that occurs during graphing. ບໍ່ສາມາດແກ້ເລກສຳລັບຖານທີ່ລະບຸໄດ້ Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). ຖານຕ້ອງໃຫຍ່ກວ່າ 2 ແລະ ໜ້ອຍກວ່າ 36 Error that occurs during graphing when the base is out of range. ຄຳສັ່ງທາງຄະນິດສາດຕ້ອງການໃຫ້ໜຶ່ງໃນພາຣາມິເຕີຂອງມັນເປັນຕົວແປ Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. ສົມຜົນມີໂລຈິກປະສົມ ແລະ ຕົວຖືກດຳເນີນການ scalar Error that occurs during graphing when operands are mixed. Such as true and 1. ບໍ່ສາມາດໃຊ້ x ຫຼື y ໃນຂີດຈຳກັດສູງສຸດ ຫຼື ຕ່ຳສຸດໄດ້ Error that occurs during graphing when x or y is used in integral upper limits. ບໍ່ສາມາດໃຊ້ x ຫຼື y ໃນຈຸດຈຳກັດໄດ້ Error that occurs during graphing when x or y is used in the limit point. ບໍ່ສາມາດໃຊ້ອະສົງໄຂແບບຊັບຊ້ອນໄດ້ Error that occurs during graphing when complex infinity is used ບໍ່ສາມາດໃຊ້ຈຳນວນຊັບຊ້ອນໃນຈຳນວນບໍ່ສະເໝີພາກໄດ້ Error that occurs during graphing when complex numbers are used in inequalities. ກັບໄປທີ່ລາຍຊື່ຟັງຊັນ This is the tooltip for the back button in the equation analysis page in the graphing calculator ກັບໄປທີ່ລາຍຊື່ຟັງຊັນ This is the automation name for the back button in the equation analysis page in the graphing calculator ວິເຄາະຟັງຄ໌ຊັນ This is the tooltip for the analyze function button ວິເຄາະຟັງຄ໌ຊັນ This is the automation name for the analyze function button ວິເຄາະຟັງຄ໌ຊັນ This is the text for the for the analyze function context menu command ເອົາສົມຜົນອອກ This is the tooltip for the graphing calculator remove equation buttons ເອົາສົມຜົນອອກ This is the automation name for the graphing calculator remove equation buttons ເອົາສົມຜົນອອກ This is the text for the for the remove equation context menu command ແຊຣ໌ This is the automation name for the graphing calculator share button. ແຊຣ໌ This is the tooltip for the graphing calculator share button. ປ່ຽນຮູບແບບສົມຜົນ This is the tooltip for the graphing calculator equation style button ປ່ຽນຮູບແບບສົມຜົນ This is the automation name for the graphing calculator equation style button ປ່ຽນຮູບແບບສົມຜົນ This is the text for the for the equation style context menu command ສະແດງສົມຜົນ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. ເຊື່ອງສົມຜົນ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. ສະແດງສົມຜົນ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. ເຊື່ອງສົມຜົນ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ຢຸດຕິດຕາມ This is the tooltip/automation name for the graphing calculator stop tracing button ເລີ່ມຕິດຕາມ This is the tooltip/automation name for the graphing calculator start tracing button ໜ້າຕ່າງເບິ່ງກຣາຟ, ແກນ x ກັ້ນໂດຍ %1 ແລະ %2, ແກນ y ກັ້ນໂດຍ %3 ແລະ %4, ການສະແດງຜົນ %5 ສະແດງສົມຜົນ {Locked="%1","%2", "%3", "%4", "%5"}. ກຳນົດຄ່າຕົວເລື່ອນ This is the tooltip text for the slider options button in Graphing Calculator ກຳນົດຄ່າຕົວເລື່ອນ This is the automation name text for the slider options button in Graphing Calculator ສັບປ່ຽນ​ເປັນ​ໂໝດ ສົມຜົນ Used in Graphing Calculator to switch the view to the equation mode ສັບປ່ຽນ​ເປັນ​ໂໝດ ແຜ່ນວາດ Used in Graphing Calculator to switch the view to the graph mode ສັບປ່ຽນ​ເປັນ​ໂໝດ ສົມຜົນ Used in Graphing Calculator to switch the view to the equation mode ໂໝດປະຈຸບັນແມ່ນໂໝດສົມຜົນ Announcement used in Graphing Calculator when switching to the equation mode ໂໝດປະຈຸບັນແມ່ນໂໝດແຜ່ນວາດ Announcement used in Graphing Calculator when switching to the graph mode ໜ້າຕ່າງ Heading for window extents on the settings ອົງສາ Degrees mode on settings page ກາດຽນ Gradian mode on settings page ຣາ​ດ່ຽງ Radians mode on settings page ຫົວ​ໜ່ວຍ Heading for Unit's on the settings ຕັ້ງມຸມມອງຄືນໃໝ່ Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header ຕົວເລືອກກຣາບ This is the tooltip text for the graph options button in Graphing Calculator ຕົວເລືອກກຣາບ This is the automation name text for the graph options button in Graphing Calculator ຕົວເລືອກກຣາບ Heading for the Graph options flyout in Graphing mode. ຕົວເລືອກຕົວແປ Screen reader prompt for the variable settings toggle button ສະຫຼັບຕົວເລືອກຕົວແປ Tool tip for the variable settings toggle button ຄວາມໜາຂອງເສັ້ນ Heading for the Graph options flyout in Graphing mode. ຕົວເລືອກແຖວ Heading for the equation style flyout in Graphing mode. ຄວາມກວ້າງຂອງເສັ້ນແນວ Automation name for line width setting ຄວາມກວ້າງຂອງເສັ້ນປານກາງ Automation name for line width setting ຄວາມກວ້າງຂອງເສັ້ນໃຫຍ່ Automation name for line width setting ຄວາມກວ້າງຂອງເສັ້ນຂະໜາດໃຫຍ່ພິເສດ Automation name for line width setting ປ້ອນການສະແດງສົມຜົນ this is the placeholder text used by the textbox to enter an equation ກັອບປີ້ Copy menu item for the graph context menu ຕັດ Cut menu item from the Equation TextBox ສຳເນົາ Copy menu item from the Equation TextBox ວາງ Paste menu item from the Equation TextBox ຍົກເລີກ Undo menu item from the Equation TextBox ເລືອກທັງໝົດ Select all menu item from the Equation TextBox ປ້ອນຂໍ້ມູນຟັງຊັນ The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. ປ້ອນຂໍ້ມູນຟັງຊັນ The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. ແຜງປ້ອນຂໍ້ມູນຟັງຊັນ The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. ແຜງຕົວແປ The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. ລາຍຊື່ຕົວແປ The automation name for the Variable ListView that is shown when Calculator is in graphing mode. ລາຍການລາຍຊື່ %1 ຕົວແປ The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. ກ່ອງຂໍ້ຄວາມຄ່າຕົວແປ The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. ຕົວເລື່ອນຄ່າຕົວແປ The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. ກ່ອງຂໍ້ຄວາມຄ່າຂັ້ນຕ່ຳຕົວແປ The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. ກ່ອງຂໍ້ຄວາມຄ່າຂັ້ນຕອນຕົວແປ The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. ກ່ອງຂໍ້ຄວາມຄ່າສູງສຸດຕົວແປ The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ຮູບແບບເສັ້ນທຶບ Name of the solid line style for a graphed equation ຮູບແບບເສັ້ນຈຸດ Name of the dotted line style for a graphed equation ຮູບແບບເສັ້ນຈໍ້າ Name of the dashed line style for a graphed equation ສີຟ້າແກ່ Name of color in the color picker ສີທະເລ Name of color in the color picker ສີມ່ວງ Name of color in the color picker ຂຽວ Name of color in the color picker ສີຂຽວຜັກເສີມ Name of color in the color picker ສີຂຽວແກ່ Name of color in the color picker ຖ່ານ Name of color in the color picker ສີແດງ Name of color in the color picker Plum light Name of color in the color picker ສີແດງມ່ວງ Name of color in the color picker ຄຳເຫຼືອງ Name of color in the color picker ສີສົ້ມສົດໃສ Name of color in the color picker ສີນໍ້າຕານ Name of color in the color picker ສີດໍາ Name of color in the color picker ສີຂາວ Name of color in the color picker ສີ 1 Name of color in the color picker ສີ 2 Name of color in the color picker ສີ 3 Name of color in the color picker ສີ 4 Name of color in the color picker ຮູບແບບສີສັນກຣາບ Graph settings heading for the theme options ສະຫວ່າງສະເໝີ Graph settings option to set graph to light theme ກົງກັບຮູບແບບສີສັນຂອງແອັບ Graph settings option to set graph to match the app theme ຮູບແບບສີສັນ This is the automation name text for the Graph settings heading for the theme options ສະຫວ່າງສະເໝີ This is the automation name text for the Graph settings option to set graph to light theme ກົງກັບຮູບແບບສີສັນຂອງແອັບ This is the automation name text for the Graph settings option to set graph to match the app theme ລຶບຟັງຊັນອອກແລ້ວ Announcement used in Graphing Calculator when a function is removed from the function list ກ່ອງສົມຜົນການວິເຄາະຟັງຊັນ This is the automation name text for the equation box in the function analysis panel ເທົ່າກັນ Screen reader prompt for the equal button on the graphing calculator operator keypad ໜ້ອຍກວ່າ Screen reader prompt for the Less than button ໜ້ອຍກວ່າ ຫຼື ເທົ່າກັບ Screen reader prompt for the Less than or equal button ເທົ່າກັບ Screen reader prompt for the Equal button ໃຫຍ່ກວ່າ ຫຼື ເທົ່າກັບ Screen reader prompt for the Greater than or equal button ໃຫຍ່ກວ່າ Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad ສົ່ງຊໍ້ມູນ Screen reader prompt for the submit button on the graphing calculator operator keypad ການວິເຄາະຟັງຄ໌ຊັນ Screen reader prompt for the function analysis grid ຕົວເລືອກກຣາບ Screen reader prompt for the graph options panel ລາຍການປະຫວັດ ແລະ ຄວາມຈຳ Automation name for the group of controls for history and memory lists. ລາຍການຄວາມຈຳ Automation name for the group of controls for memory list. ລຶບລ້າງຊ່ວງເວລາປະຫວັດ %1 ແລ້ວ {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". ເຄື່ອງຄິດເລກຢູ່ໜ້າສຸດສະເໝີ Announcement to indicate calculator window is always shown on top. ເຄື່ອງຄິດເລກກັບໄປມຸມມອງເຕັມຈໍ Announcement to indicate calculator window is now back to full view. ເລືອກ Arithmetic Shift ແລ້ວ Label for a radio button that toggles arithmetic shift behavior for the shift operations. ເລືອກ Logical Shift ແລ້ວ Label for a radio button that toggles logical shift behavior for the shift operations. ເລືອກ Rotate Circular Shift ແລ້ວ Label for a radio button that toggles rotate circular behavior for the shift operations. ເລືອກ Rotate Through Carry Circular Shift ແລ້ວ Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ການຕັ້ງຄ່າ Header text of Settings page ຮູບພາຍນອກ Subtitle of appearance setting on Settings page ຮູບແບບສີສັນແອັບ Title of App theme expander ເລືອກເທມຂອງແອັບເພື່ອສະແດງຜົນ Description of App theme expander ແຈ້ງ Lable for light theme option ມືດ Lable for dark theme option ໃຊ້ການຕັ້ງຄ່າລະບົບ Lable for the app theme option to use system setting ກັບຄືນ Screen reader prompt for the Back button in title bar to back to main page ຕັ້ງຄ່າໜ້າ Announcement used when Settings page is opened ເປີດລາຍການຄຳສັ່ງສໍາລັບການດໍາເນີນການທີ່ມີຢູ່ Screen reader prompt for the context menu of the expression box ຕົກລົງ The text of OK button to dismiss an error dialog. ພວກເຮົາບໍ່ສາມາດກູ້ສະແນັບຊັອດນີ້ໄດ້. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/lt-LT/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Netinkama įvestis Error message shown when the input makes a function fail, like log(-1) Rezultatas neapibrėžtas Error message shown when there's no possible value for a function. Nepakanka atminties Error message shown when we run out of memory during a calculation. Perpilda Error message shown when there's an overflow during the calculation. Rezultatas neapibrėžtas Same as 101 Rezultatas neapibrėžtas Same 101 Perpilda Same as 107 Perpilda Same 107 Dalyba iš nulio negalima Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/lt-LT/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Skaičiuotuvas {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Skaičiuotuvas [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. „Windows“ skaičiuotuvas {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. „Windows“ skaičiuotuvas [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Skaičiuotuvas {@Appx_Description@} This description is used for the official application when published through Windows Store. Skaičiuotuvas [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopijuoti Copy context menu string Įklijuoti Paste context menu string Apytiksliai lygu The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, reikšmė %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bitas {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-ias Sub-string used in automation name for 63 bit in bit flip 62-as Sub-string used in automation name for 62 bit in bit flip 61-as Sub-string used in automation name for 61 bit in bit flip 60-as Sub-string used in automation name for 60 bit in bit flip 59-as Sub-string used in automation name for 59 bit in bit flip 58-as Sub-string used in automation name for 58 bit in bit flip 57-as Sub-string used in automation name for 57 bit in bit flip 56-as Sub-string used in automation name for 56 bit in bit flip 55-as Sub-string used in automation name for 55 bit in bit flip 54-as Sub-string used in automation name for 54 bit in bit flip 53-ias Sub-string used in automation name for 53 bit in bit flip 52-as Sub-string used in automation name for 52 bit in bit flip 51-as Sub-string used in automation name for 51 bit in bit flip 50-as Sub-string used in automation name for 50 bit in bit flip 49-as Sub-string used in automation name for 49 bit in bit flip 48-as Sub-string used in automation name for 48 bit in bit flip 47-as Sub-string used in automation name for 47 bit in bit flip 46-as Sub-string used in automation name for 46 bit in bit flip 45-as Sub-string used in automation name for 45 bit in bit flip 44-as Sub-string used in automation name for 44 bit in bit flip 43-ias Sub-string used in automation name for 43 bit in bit flip 42-as Sub-string used in automation name for 42 bit in bit flip 41-as Sub-string used in automation name for 41 bit in bit flip 40-as Sub-string used in automation name for 40 bit in bit flip 39-as Sub-string used in automation name for 39 bit in bit flip 38-as Sub-string used in automation name for 38 bit in bit flip 37-as Sub-string used in automation name for 37 bit in bit flip 36-as Sub-string used in automation name for 36 bit in bit flip 35-as Sub-string used in automation name for 35 bit in bit flip 34-as Sub-string used in automation name for 34 bit in bit flip 33-ias Sub-string used in automation name for 33 bit in bit flip 32-as Sub-string used in automation name for 32 bit in bit flip 31-as Sub-string used in automation name for 31 bit in bit flip 30-as Sub-string used in automation name for 30 bit in bit flip 29-as Sub-string used in automation name for 29 bit in bit flip 28-as Sub-string used in automation name for 28 bit in bit flip 27-as Sub-string used in automation name for 27 bit in bit flip 26-as Sub-string used in automation name for 26 bit in bit flip 25-as Sub-string used in automation name for 25 bit in bit flip 24-as Sub-string used in automation name for 24 bit in bit flip 23-ias Sub-string used in automation name for 23 bit in bit flip 22-as Sub-string used in automation name for 22 bit in bit flip 21-as Sub-string used in automation name for 21 bit in bit flip 20-as Sub-string used in automation name for 20 bit in bit flip 19-as Sub-string used in automation name for 19 bit in bit flip 18-as Sub-string used in automation name for 18 bit in bit flip 17-as Sub-string used in automation name for 17 bit in bit flip 16-as Sub-string used in automation name for 16 bit in bit flip 15-as Sub-string used in automation name for 15 bit in bit flip 14-as Sub-string used in automation name for 14 bit in bit flip 13-as Sub-string used in automation name for 13 bit in bit flip 12-as Sub-string used in automation name for 12 bit in bit flip 11-as Sub-string used in automation name for 11 bit in bit flip 10-as Sub-string used in automation name for 10 bit in bit flip 9-as Sub-string used in automation name for 9 bit in bit flip 8-as Sub-string used in automation name for 8 bit in bit flip 7-as Sub-string used in automation name for 7 bit in bit flip 6-as Sub-string used in automation name for 6 bit in bit flip 5-as Sub-string used in automation name for 5 bit in bit flip 4-as Sub-string used in automation name for 4 bit in bit flip 3-ias Sub-string used in automation name for 3 bit in bit flip 2-as Sub-string used in automation name for 2 bit in bit flip 1-as Sub-string used in automation name for 1 bit in bit flip mažiausias svarbus bitas Used to describe the first bit of a binary number. Used in bit flip Atidaryti atminties iškeliamąjį meniu This is the automation name and label for the memory button when the memory flyout is closed. Uždaryti atminties iškeliamąjį meniu This is the automation name and label for the memory button when the memory flyout is open. Palikti viršuje This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Grįžti į bendrą rodinį This is the tool tip automation name for the always-on-top button when in always-on-top mode. Atmintis This is the tool tip automation name for the memory button. Istorija (Ctrl+H) This is the tool tip automation name for the history button. Bitų perjungimo klaviatūra This is the tool tip automation name for the bitFlip button. Visa klaviatūra This is the tool tip automation name for the numberPad button. Valyti visą atmintį (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Atmintis The text that shows as the header for the memory list Atmintis The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Istorija The text that shows as the header for the history list Istorija The automation name for the History pivot item that is shown when Calculator is in wide layout. Keitiklis Label for a control that activates the unit converter mode. Mokslinis Label for a control that activates scientific mode calculator layout Standartinis Label for a control that activates standard mode calculator layout. Keitiklio režimas Screen reader prompt for a control that activates the unit converter mode. Mokslinis režimas Screen reader prompt for a control that activates scientific mode calculator layout Standartinis režimas Screen reader prompt for a control that activates standard mode calculator layout. Valyti visą istoriją "ClearHistory" used on the calculator history pane that stores the calculation history. Valyti visą istoriją This is the tool tip automation name for the Clear History button. Slėpti "HideHistory" used on the calculator history pane that stores the calculation history. Standartinis The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Mokslinis The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programuotojas The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Keitiklis The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Skaičiuotuvas The text that shows in the dropdown navigation control for the calculator group. Keitiklis The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Skaičiuotuvas The text that shows in the dropdown navigation control for the calculator group in upper case. Keitikliai Pluralized version of the converter group text, used for the screen reader prompt. Skaičiuotuvai Pluralized version of the calculator group text, used for the screen reader prompt. Rodoma %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Reiškinys yra %1, dabartinė įvestis yra %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Rodoma %1 kablelis {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Reiškinys %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Rodoma reikšmė nukopijuota į mainų sritį Screen reader prompt for the Calculator display copy button, when the button is invoked. Istorija Screen reader prompt for the history flyout Atmintis Screen reader prompt for the memory flyout Šešioliktainė reikšmė %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Dešimtainė reikšmė %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Aštuntainė reikšmė %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Dvejetainė reikšmė %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Valyti visą istoriją Screen reader prompt for the Calculator History Clear button Istorija išvalyta Screen reader prompt for the Calculator History Clear button, when the button is invoked. Slėpti retrospektyvą Screen reader prompt for the Calculator History Hide button Atidaryti retrospektyvos iškeliamąjį meniu Screen reader prompt for the Calculator History button, when the flyout is closed. Uždaryti retrospektyvos iškeliamąjį meniu Screen reader prompt for the Calculator History button, when the flyout is open. Atminties saugykla Screen reader prompt for the Calculator Memory button Atminties saugykla (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Valyti visą atmintį Screen reader prompt for the Calculator Clear Memory button Atmintis išvalyta Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Atminties atkūrimas Screen reader prompt for the Calculator Memory Recall button Atminties atkūrimas (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Atminties sudėtis Screen reader prompt for the Calculator Memory Add button Atminties sudėtis (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Atminties atimtis Screen reader prompt for the Calculator Memory Subtract button Atminties atimtis (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Valyti atminties elementą Screen reader prompt for the Calculator Clear Memory button Valyti atminties elementą This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Pridėti prie atminties elemento Screen reader prompt for the Calculator Memory Add button in the Memory list Pridėti prie atminties elemento This is the tool tip automation name for the Calculator Memory Add button in the Memory list Atimti iš atminties elemento Screen reader prompt for the Calculator Memory Subtract button in the Memory list Atimti iš atminties elemento This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Valyti atminties elementą Screen reader prompt for the Calculator Clear Memory button Valyti atminties elementą Text string for the Calculator Clear Memory option in the Memory list context menu Pridėti prie atminties elemento Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Pridėti prie atminties elemento Text string for the Calculator Memory Add option in the Memory list context menu Atimti iš atminties elemento Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Atimti iš atminties elemento Text string for the Calculator Memory Subtract option in the Memory list context menu Naikinti Text string for the Calculator Delete swipe button in the History list Kopijuoti Text string for the Calculator Copy option in the History list context menu Naikinti Text string for the Calculator Delete option in the History list context menu Naikinti istorijos elementą Screen reader prompt for the Calculator Delete swipe button in the History list Naikinti istorijos elementą Screen reader prompt for the Calculator Delete option in the History list context menu Naikinimo mygtukas Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nulis Screen reader prompt for the Calculator number "0" button Vienas Screen reader prompt for the Calculator number "1" button Du Screen reader prompt for the Calculator number "2" button Trys Screen reader prompt for the Calculator number "3" button Keturi Screen reader prompt for the Calculator number "4" button Penki Screen reader prompt for the Calculator number "5" button Šeši Screen reader prompt for the Calculator number "6" button Septyni Screen reader prompt for the Calculator number "7" button Aštuoni Screen reader prompt for the Calculator number "8" button Devyni Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button V Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Ir Screen reader prompt for the Calculator And button Arba Screen reader prompt for the Calculator Or button Ne Screen reader prompt for the Calculator Not button Pasukti kairėn Screen reader prompt for the Calculator ROL button Pasukti dešinėn Screen reader prompt for the Calculator ROR button Poslinkis į kairę Screen reader prompt for the Calculator LSH button Poslinkis į dešinę Screen reader prompt for the Calculator RSH button Išskirtinis arba Screen reader prompt for the Calculator XOR button Keturgubų žodžių perjungimo mygtukas Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Dvigubų žodžių perjungimo mygtukas Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Žodžių perjungimo mygtukas Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Baitų perjungimo mygtukas Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitų perjungimo klaviatūra Screen reader prompt for the Calculator bitFlip button Visa klaviatūra Screen reader prompt for the Calculator numberPad button Dešimtainis skyriklis Screen reader prompt for the "." button Valyti įrašą Screen reader prompt for the "CE" button Valyti Screen reader prompt for the "C" button Dalyti iš Screen reader prompt for the divide button on the number pad Dauginti iš Screen reader prompt for the multiply button on the number pad Lygu Screen reader prompt for the equals button on the scientific operator keypad Atvirkštinė funkcija Screen reader prompt for the shift button on the number pad in scientific mode. Minusas Screen reader prompt for the minus button on the number pad Minusas We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Pliusas Screen reader prompt for the plus button on the number pad Kvadratinė šaknis Screen reader prompt for the square root button on the scientific operator keypad Procentai Screen reader prompt for the percent button on the scientific operator keypad Teigiamas neigiamas Screen reader prompt for the negate button on the scientific operator keypad Teigiamas neigiamas Screen reader prompt for the negate button on the converter operator keypad Atvirkštinis Screen reader prompt for the invert button on the scientific operator keypad Kairysis lenktinis skliaustas Screen reader prompt for the Calculator "(" button on the scientific operator keypad Kairysis skliaustas, atidarančio skliausto skaičius %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Dešinysis lenktinis skliaustas Screen reader prompt for the Calculator ")" button on the scientific operator keypad Atidarytų skliaustelių skaičius – %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nėra atidarytų skliaustelių, kuriuos būtų galima uždaryti. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Mokslinis žymėjimas Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolinė funkcija Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinusas Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinusas Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangentas Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolinis sinusas Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolinis kosinusas Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolinis tangentas Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadratas Screen reader prompt for the x squared on the scientific operator keypad. Kubas Screen reader prompt for the x cubed on the scientific operator keypad. Arksinusas Screen reader prompt for the inverted sin on the scientific operator keypad. Arkkosinusas Screen reader prompt for the inverted cos on the scientific operator keypad. Arktangentas Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolinis arksinusas Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolinis arkkosinusas Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperbolinis arktangentas Screen reader prompt for the inverted tanh on the scientific operator keypad. X laipsnio rodiklis Screen reader prompt for x power y button on the scientific operator keypad. Dešimties laipsnio rodiklis Screen reader prompt for the 10 power x button on the scientific operator keypad. e laipsnio rodiklis Screen reader for the e power x on the scientific operator keypad. y šaknis iš x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Žurnalas Screen reader for the log base 10 on the scientific operator keypad Natūralusis logaritmas Screen reader for the log base e on the scientific operator keypad Modulinis Screen reader for the mod button on the scientific operator keypad Eksponentinis Screen reader for the exp button on the scientific operator keypad Laipsnis minutė sekundė Screen reader for the exp button on the scientific operator keypad Laipsniai Screen reader for the exp button on the scientific operator keypad Sveikoji dalis Screen reader for the int button on the scientific operator keypad Trupmeninė dalis Screen reader for the frac button on the scientific operator keypad Faktorialas Screen reader for the factorial button on the basic operator keypad Laipsnių perjungimo mygtukas This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradientų perjungimo mygtukas This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radianų perjungimo mygtukas This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Režimo išplečiamasis sąrašas Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategorijų išplečiamasis sąrašas Screen reader prompt for the Categories dropdown field. Palikti viršuje Screen reader prompt for the Always-on-Top button when in normal mode. Grįžti į bendrą rodinį Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Palikti viršuje („Alt“ + aukštyn) This is the tool tip automation name for the Always-on-Top button when in normal mode. Grįžti į bendrą rodinį („Alt“ + žemyn) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konvertuoti iš %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konvertuoti iš %1 kablelis %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konvertuojama į %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 yra %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Įvesties vienetas Screen reader prompt for the Unit Converter Units1 i.e. top units field. Išvesties vienetas Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Plotas Unit conversion category name called Area (eg. area of a sports field in square meters) Duomenys Unit conversion category name called Data Energija Unit conversion category name called Energy. (eg. the energy in a battery or in food) Ilgis Unit conversion category name called Length Galia Unit conversion category name called Power (eg. the power of an engine or a light bulb) Greitis Unit conversion category name called Speed Laikas Unit conversion category name called Time Tūris Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatūra Unit conversion category name called Temperature Svoris ir masė Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Slėgis Unit conversion category name called Pressure Kampas Unit conversion category name called Angle Valiuta Unit conversion category name called Currency Skysčių uncijos (JK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sk. uncijos (JK) An abbreviation for a measurement unit of volume Skysčių uncijos (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sk. uncijos (JAV) An abbreviation for a measurement unit of volume Galonai (JK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal. (JK) An abbreviation for a measurement unit of volume Galonai (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal. (JAV) An abbreviation for a measurement unit of volume Litrai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitrai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pintos (JK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (JK) An abbreviation for a measurement unit of volume Pintos (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (JAV) An abbreviation for a measurement unit of volume Valgomieji šaukštai (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valgomasis šaukštas (JAV) An abbreviation for a measurement unit of volume Arbatiniai šaukšteliai (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arbatinis šaukštelis (JAV) An abbreviation for a measurement unit of volume Valgomieji šaukštai (JK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valgomasis šaukštas (JK) An abbreviation for a measurement unit of volume Arbatiniai šaukšteliai (JK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arbatinis šaukštelis (JK) An abbreviation for a measurement unit of volume Kvortos (JK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvort. (JK) An abbreviation for a measurement unit of volume Kvortos (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvort. (JAV) An abbreviation for a measurement unit of volume Puodeliai (JAV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) puodelis (JAV) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min. An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume pėd.³ An abbreviation for a measurement unit of volume col.³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume jard.³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy pėd. An abbreviation for a measurement unit of length pėd./s An abbreviation for a measurement unit of speed pėd.•svar. An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area AG (JAV) An abbreviation for a measurement unit of power val. An abbreviation for a measurement unit of time col. An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mylios/val. An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min. An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data pėd.•svar./min. An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area pėd.² An abbreviation for a measurement unit of area col.² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area jard.² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sav. An abbreviation for a measurement unit of time jard. An abbreviation for a measurement unit of length m. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data myl. An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data kąsn. An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akrai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britų terminiai vienetai A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/min. A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Baitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Šilumos kalorijos A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetrai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetrai per sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiniai centimetrai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubinės pėdos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiniai coliai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiniai metrai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiniai jardai A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dienos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsijus An option in the unit converter to select degrees Celsius Farenheitas An option in the unit converter to select degrees Fahrenheit Elektronvoltai A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pėdos A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pėdos per sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pėdos svarams A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pėdos svarams/min. A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektarai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Arklio galia (JAV) A measurement unit for power Valandos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Coliai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Džauliai A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatvalandės A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvinas An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Maisto kalorijos A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodžauliai A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometrai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometrai per valandą A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatai A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mazgai A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Machas A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrai per sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikronai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekundės A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mylios A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mylios per valandą A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetrai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekundės A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutės A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kąsnelis A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometrai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstremai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jūrmylės A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundės A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai centimetrai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratinės pėdos A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai coliai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai kilometrai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai metrai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratinės mylios A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai milimetrai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratiniai jardai A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vatai A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Savaitės A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardai A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metai A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight laips. An abbreviation for a measurement unit of Angle rad. An abbreviation for a measurement unit of Angle grad. An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (JK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight unc. An abbreviation for a measurement unit of weight sv. An abbreviation for a measurement unit of weight tona (JAV) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karatai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Laipsniai A measurement unit for Angle. Radianai A measurement unit for Angle. Gradientai A measurement unit for Angle. Atmosferos A measurement unit for Pressure. Barai A measurement unit for Pressure. Kilopaskaliai A measurement unit for Pressure. Gyvsidabrio milimetrai A measurement unit for Pressure. Paskaliai A measurement unit for Pressure. Svarai į kvadratinį colį A measurement unit for Pressure. Centigramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagramai A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Didžiosios tonos (JK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uncijos A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Svarai A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mažosios tonos (JAV) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stonas A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrinės tonos A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD diskai A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD diskai A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbolo laukai A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbolo laukai A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lankstieji diskeliai A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lankstieji diskeliai A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD diskai A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD diskai A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterijos AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterijos AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sąvaržėlės A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sąvaržėlės A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dideli keleiviniai reaktyviniai lėktuvai A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dideli keleiviniai reaktyviniai lėktuvai A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektros lemputės A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elektros lemputės A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arkliai A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arkliai A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vonios A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vonios A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snaigės A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snaigės A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) drambliai An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) drambliai An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vėžliai A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vėžliai A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktyviniai lėktuvai A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktyviniai lėktuvai A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banginiai A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banginiai A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kavos puodeliai A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kavos puodeliai A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baseinai An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baseinai An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plaštak. A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plaštak. A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) popieriaus lap. A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) popieriaus lap. A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilys A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilys A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananai A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananai A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pyrago gabalėliai A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pyrago gabalėliai A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) traukinių varikl. A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) traukinių varikl. A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbolo kamuoliai (-ių) A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbolo kamuoliai (-ių) A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Atminties elementas Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atgal Screen reader prompt for the About panel back button Atgal Content of tooltip being displayed on AboutControlBackButton „Microsoft“ programinės įrangos licencijos sąlygos Displayed on a link to the Microsoft Software License Terms on the About panel Peržiūra Label displayed next to upcoming features „Microsoft“ privatumo patvirtinimas Displayed on a link to the Microsoft Privacy Statement on the About panel © „Microsoft“, %1. Visos teisės ginamos. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Norėdami sužinoti, kaip galite prisidėti prie Windows skaičiuotuvas, peržiūrėkite vaizdą %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Apie Subtitle of about message on Settings page Siųsti atsiliepimą The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Istorijos dar nėra. The text that shows as the header for the history list Atmintyje nieko neišsaugota. The text that shows as the header for the memory list Atmintis Screen reader prompt for the negate button on the converter operator keypad Šio reiškinio įklijuoti negalima The paste operation cannot be performed, if the expression is invalid. Gibibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibaitai A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datos apskaičiavimas Skaičiavimo režimas Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Įtraukti Add toggle button text Pridėti arba atimti dienų Add or Subtract days option Data Date result label Skirtumas tarp datų Date difference option Dienos Add/Subtract Days label Skirtumas Difference result label Nuo From Date Header for Difference Date Picker Mėnesiai Add/Subtract Months label Atimti Subtract toggle button text Iki To Date Header for Difference Date Picker Metai Add/Subtract Years label Data už ribų Out of bound message shown as result when the date calculation exceeds the bounds diena dienos mėnuo mėnesiai Tokios pačios datos savaitė savaitės metai metai Skirtumas %1 Automation name for reading out the date difference. %1 = Date difference Apskaičiuota data %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Skaičiuotuvo režimas %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Keitiklio režimas %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datos apskaičiavimo režimas Automation name for when the mode header is focused and the current mode is Date calculation. Istorijos ir atminties sąrašai Automation name for the group of controls for history and memory lists. Atminties valdikliai Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standartinės funkcijos Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Ekrano valdikliai Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standartiniai operatoriai Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Skaičių klaviatūra Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Kampų operatoriai Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Mokslinės funkcijos Automation name for the group of Scientific functions. Pagrindo pasirinkimas Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programuotojo operatoriai Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Įvesties režimo pasirinkimas Automation name for the group of input mode toggling buttons. Bitų perjungimo klaviatūra Automation name for the group of bit toggling buttons. Slinkti reiškinį kairėn Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Slinkti reiškinį dešinėn Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Pasiektas maks. skaitmenų skaičius. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 įrašyta į atmintį {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Atminties lizdas %1 yra %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Atminties lizdas %1 išvalytas {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". padalyta iš Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. kart Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plius Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. pakelta laipsniu Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y šaknis Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. Poslinkis į kairę Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. Poslinkis į dešinę Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. arba Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x arba Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ir Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Atnaujinta %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Naujinti tarifus The text displayed for a hyperlink button that refreshes currency converter ratios. Gali būti taikomi papildomi mokesčiai už duomenų perdavimą. The text displayed when users are on a metered connection and using currency converter. Nepavyko gauti naujų valiutų kursų. Bandykite vėliau. The text displayed when currency ratio data fails to load. Neprijungęs. Patikrinkite%HL%Tinklo parametrus%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Naujinami valiutų kursai This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valiutų kursai atnaujinti This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nepavyko atnaujinti kursų This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} M Access key for the Hamburger button. {StringCategory="Accelerator"} KA AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} V AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} GA AccessKey for the power converter navbar item. {StringCategory="Accelerator"} SL AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} G AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} LA AccessKey for the time converter navbar item. {StringCategory="Accelerator"} AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} V Access key for the Clear history button.{StringCategory="Accelerator"} V Access key for the Clear memory button. {StringCategory="Accelerator"} Valyti visą atmintį (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Valyti visą atmintį Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinuso laipsniai Name for the sine function in degrees mode. Used by screen readers. sinuso radianai Name for the sine function in radians mode. Used by screen readers. sinuso gradianai Name for the sine function in gradians mode. Used by screen readers. arksinuso laipsniai Name for the inverse sine function in degrees mode. Used by screen readers. arksinuso radianai Name for the inverse sine function in radians mode. Used by screen readers. arksinuso gradianai Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolinis sinusas Name for the hyperbolic sine function. Used by screen readers. hiperbolinis arksinusas Name for the inverse hyperbolic sine function. Used by screen readers. kosinuso laipsniai Name for the cosine function in degrees mode. Used by screen readers. kosinuso radianai Name for the cosine function in radians mode. Used by screen readers. kosinuso gradianai Name for the cosine function in gradians mode. Used by screen readers. arkkosinuso laipsniai Name for the inverse cosine function in degrees mode. Used by screen readers. arkkosinuso radianai Name for the inverse cosine function in radians mode. Used by screen readers. arkkosinuso gradianai Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolinis kosinusas Name for the hyperbolic cosine function. Used by screen readers. hiperbolinis arkkosinusas Name for the inverse hyperbolic cosine function. Used by screen readers. tangento laipsniai Name for the tangent function in degrees mode. Used by screen readers. tangento radianai Name for the tangent function in radians mode. Used by screen readers. tangento gradianai Name for the tangent function in gradians mode. Used by screen readers. arktangento laipsniai Name for the inverse tangent function in degrees mode. Used by screen readers. arktangento radianai Name for the inverse tangent function in radians mode. Used by screen readers. arktangento gradianai Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolinis tangentas Name for the hyperbolic tangent function. Used by screen readers. hiperbolinis arktangentas Name for the inverse hyperbolic tangent function. Used by screen readers. sekanto laipsniai Name for the secant function in degrees mode. Used by screen readers. sekanto radianai Name for the secant function in radians mode. Used by screen readers. sekanto gradianai Name for the secant function in gradians mode. Used by screen readers. atvirkštiniai sekanto laipsniai Name for the inverse secant function in degrees mode. Used by screen readers. atvirkštiniai sekanto radianai Name for the inverse secant function in radians mode. Used by screen readers. atvirkštiniai sekanto gradianai Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolinis sekantas Name for the hyperbolic secant function. Used by screen readers. atvirkštinis hiperbolinis sekantas Name for the inverse hyperbolic secant function. Used by screen readers. kosekanto laipsniai Name for the cosecant function in degrees mode. Used by screen readers. kosekanto radianai Name for the cosecant function in radians mode. Used by screen readers. kosekanto gradianai Name for the cosecant function in gradians mode. Used by screen readers. atvirkštiniai kosekanto laipsniai Name for the inverse cosecant function in degrees mode. Used by screen readers. atvirkštiniai kosekanto radianai Name for the inverse cosecant function in radians mode. Used by screen readers. atvirkštiniai kosekanto gradianai Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolinis kosekantas Name for the hyperbolic cosecant function. Used by screen readers. atvirkštinis hiperbolinis kosekantas Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangento laipsniai Name for the cotangent function in degrees mode. Used by screen readers. Kotangento radianai Name for the cotangent function in radians mode. Used by screen readers. kotangento gradianai Name for the cotangent function in gradians mode. Used by screen readers. atvirkštiniai kotangento laipsniai Name for the inverse cotangent function in degrees mode. Used by screen readers. atvirkštinio kotangento radianai Name for the inverse cotangent function in radians mode. Used by screen readers. atvirkštinio kotangento gradianai Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolinis kotangentas Name for the hyperbolic cotangent function. Used by screen readers. atvirkštinis hiperbolinis kotangentas Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubinė šaknis Name for the cube root function. Used by screen readers. Bazinis žurnalas Name for the logbasey function. Used by screen readers. Absoliučioji reikšmė Name for the absolute value function. Used by screen readers. Poslinkis į kairę Name for the programmer function that shifts bits to the left. Used by screen readers. Poslinkis į dešinę Name for the programmer function that shifts bits to the right. Used by screen readers. faktorialas Name for the factorial function. Used by screen readers. laipsnis minutė sekundė Name for the degree minute second (dms) function. Used by screen readers. natūralusis logaritmas Name for the natural log (ln) function. Used by screen readers. kvadratas Name for the square function. Used by screen readers. y šaknis Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 kategorija {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". „Microsoft“ paslaugų teikimo sutartis Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Nuo From Date Header for AddSubtract Date Picker Slinkti skaičiavimo rezultatą į kairę Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Slinkti skaičiavimo rezultatą į dešinę Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Nepavyko apskaičiuoti Text displayed when the application is not able to do a calculation Y bazinis žurnalas Screen reader prompt for the logBaseY button Trigonometrija Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcija Displayed on the button that contains a flyout for the general functions in scientific mode. Nelygybės Displayed on the button that contains a flyout for the inequality functions. Nelygybės Screen reader prompt for the Inequalities button Bitų Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bito poslinkis Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Atvirkštinė funkcija Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolinė funkcija Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekantas Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolinis sekantas Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arksekantas Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolinis arksekantas Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekantas Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolinis kosekantas Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkkosekantas Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolinis arkkosekantas Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangentas Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolinis kotangentas Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arktangentas Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolinis arkkotangentas Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Apatinė riba Screen reader prompt for the Calculator button floor in the scientific flyout keypad Viršutinė riba Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Atsitiktinis Screen reader prompt for the Calculator button random in the scientific flyout keypad Absoliučioji reikšmė Screen reader prompt for the Calculator button abs in the scientific flyout keypad Oilerio skaičius Screen reader prompt for the Calculator button e in the scientific flyout keypad Antrojo laipsnio rodiklis Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Sukti į kairę perkeliant Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Sukti į dešinę perkeliant Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Poslinkis į kairę Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Poslinkis į kairę Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Poslinkis į dešinę Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Poslinkis į dešinę Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetinis poslinkis Label for a radio button that toggles arithmetic shift behavior for the shift operations. Loginis poslinkis Label for a radio button that toggles logical shift behavior for the shift operations. Sukimo ciklinis poslinkis Label for a radio button that toggles rotate circular behavior for the shift operations. Sukimo per perkėlimo ciklą poslinkis Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubinė šaknis Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrija Screen reader prompt for the square root button on the scientific operator keypad Funkcijos Screen reader prompt for the square root button on the scientific operator keypad Bitų Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Mokslinių operatorių skydai Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programavimo priemonės operatoriaus skydai Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad reikšmingiausias bitas Used to describe the last bit of a binary number. Used in bit flip Grafikų braižymas Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Braižyti Screen reader prompt for the plot button on the graphing calculator operator keypad Automatiškai naujinti rodinį (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Diagramos rodinys Screen reader prompt for the graph view button. Automatinis geriausias talpinimas Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Neautomatinis koregavimas Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Diagramos rodinys nustatytas iš naujo Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Artinti („Ctrl“ + pliusas) This is the tool tip automation name for the Calculator zoom in button. Artinti Screen reader prompt for the zoom in button. Tolinti („Ctrl“ + minusas) This is the tool tip automation name for the Calculator zoom out button. Tolinti Screen reader prompt for the zoom out button. Įtraukti lygtį Placeholder text for the equation input button Šiuo metu negalima bendrinti. If there is an error in the sharing action will display a dialog with this text. Gerai Used on the dismiss button of the share action error dialog. Pažiūrėkite, kokią diagramą sukūriau naudodamas „Windows“ skaičiuotuvą Sent as part of the shared content. The title for the share. Lygtys Header that appears over the equations section when sharing Kintamieji Header that appears over the variables section when sharing Diagramos su lygtimis vaizdas Alt text for the graph image when output via Share Kintamieji Header text for variables area Veiksmas Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Spalva Label for the Line Color section of the style picker Stilius Label for the Line Style section of the style picker Funkcijos analizė Title for KeyGraphFeatures Control Funkcija neturi jokių horizontalių asimptočių. Message displayed when the graph does not have any horizontal asymptotes Funkcija neturi jokių infleksijos taškų. Message displayed when the graph does not have any inflection points Funkcija neturi jokių maksimos taškų. Message displayed when the graph does not have any maxima Funkcija neturi jokių minimos taškų. Message displayed when the graph does not have any minima Konstanta String describing constant monotonicity of a function Mažėjanti String describing decreasing monotonicity of a function Neįmanoma nustatyti funkcijos monotoniškumo. Error displayed when monotonicity cannot be determined Didėjanti String describing increasing monotonicity of a function Funkcijos monotoniškumas nežinomas. Error displayed when monotonicity is unknown Funkcija neturi jokių įstrižinių asimptočių. Message displayed when the graph does not have any oblique asymptotes Neįmanoma nustatyti funkcijos lyginumo. Error displayed when parity is cannot be determined Funkcija yra lyginė. Message displayed with the function parity is even Funkcija nėra nei lyginė, nei nelyginė. Message displayed with the function parity is neither even nor odd Funkcija yra nelyginė. Message displayed with the function parity is odd Funkcijos lyginumas nežinomas. Error displayed when parity is unknown Šios funkcijos periodiškumas nepalaikomas. Error displayed when periodicity is not supported Funkcija nėra periodinė. Message displayed with the function periodicity is not periodic Funkcijos periodiškumas nežinomas. Message displayed with the function periodicity is unknown Šios funkcijos per sudėtingos, kad būtų galima apskaičiuoti skaičiuotuvu: Error displayed when analysis features cannot be calculated Funkcija neturi jokių vertikalių asimptočių. Message displayed when the graph does not have any vertical asymptotes Funkcija neturi jokių x sankirtos taškų. Message displayed when the graph does not have any x-intercepts Funkcija neturi jokių y sankirtos taškų. Message displayed when the graph does not have any y-intercepts Domenas Title for KeyGraphFeatures Domain Property Horizontalios asimptotės Title for KeyGraphFeatures Horizontal aysmptotes Property Linkio taškai Title for KeyGraphFeatures Inflection points Property Šios funkcijos analizė nepalaikoma. Error displayed when graph analysis is not supported or had an error. Analizė palaikoma tik f(x) formato funkcijoms. Pavyzdys: y = x Error displayed when graph analysis detects the function format is not f(x). Maksima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotoniškumas Title for KeyGraphFeatures Monotonicity Property Įstrižos asimptotės Title for KeyGraphFeatures Oblique asymptotes Property Lyginumas Title for KeyGraphFeatures Parity Property Periodas Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Diapazonas Title for KeyGraphFeatures Range Property Vertikalios asimptotės Title for KeyGraphFeatures Vertical asymptotes Property X sankirtos taškas Title for KeyGraphFeatures XIntercept Property Y sankirtos taškas Title for KeyGraphFeatures YIntercept Property Nepavyko atlikti funkcijos analizės. Nepavyko apskaičiuoti šios funkcijos domeno. Error displayed when Domain is not returned from the analyzer. Neįmanoma apskaičiuoti šios funkcijos diapazono. Error displayed when Range is not returned from the analyzer. Perpilda (skaičius per didelis) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Norint diagramoje nustatyti šią lygtį, reikia radianų režimo. Error that occurs during graphing when radians is required. Ši funkcija yra per sudėtinga diagramai Error that occurs during graphing when the equation is too complex. Norint diagramoje nustatyti šią lygtį, reikia laipsnių režimo Error that occurs during graphing when degrees is required Trupmenos funkcija turi netinkamą argumentą Error that occurs during graphing when a factorial function has an invalid argument. Trupmenos funkcija turi argumentą, kuris yra per didelis diagramai Error that occurs during graphing when a factorial has a large n Modulis gali būti naudojamas tik su sveikaisiais skaičiais Error that occurs during graphing when modulo is used with a float. Lygtis neturi sprendimo Error that occurs during graphing when the equation has no solution. Dalyba iš nulio negalima Error that occurs during graphing when a divison by zero occurs. Lygtyje yra loginės sąlygos, kurios yra abipusiai išimtinės Error that occurs during graphing when mutually exclusive conditions are used. Lygtis yra ne domenas Error that occurs during graphing when the equation is out of domain. Šios lygties grafikų braižymas nepalaikomas Error that occurs during graphing when the equation is not supported. Lygtyje nėra atidaromojo skliaustelio Error that occurs during graphing when the equation is missing a ( Lygtyje nėra uždaromojo skliaustelio Error that occurs during graphing when the equation is missing a ) Skaičiuje yra per daug dešimtainių skyriklių Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Dešimtainių skaičių reikšmėje trūksta skaitmenų Error that occurs during graphing with a decimal point without digits Netikėta reiškinio pabaiga Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Neleistini reiškinio simboliai Error that occurs during graphing when there is an unexpected token. Neleistini reiškinio simboliai Error that occurs during graphing when there is an invalid token. Yra per daug lygybės simbolių Error that occurs during graphing when there are too many equals. Funkcijoje turi būti bent vienas „X“ arba „Y“ kintamasis Error that occurs during graphing when the equation is missing x or y. Neleistinas reiškinys Error that occurs during graphing when an invalid syntax is used. Reiškinys yra tuščias Error that occurs during graphing when the expression is empty Lygybė buvo naudojama be lygties Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Po funkcijos pavadinimo nėra skliaustelių Error that occurs during graphing when parenthesis are missing after a function. Matematinėje operacijoje yra netinkamas parametrų skaičius Error that occurs during graphing when a function has the wrong number of parameters Netinkamas kintamojo pavadinimas Error that occurs during graphing when a variable name is invalid. Lygtyje nėra atidaromojo skliaustelio Error that occurs during graphing when a { is missing Lygtyje nėra uždaromojo skliaustelio Error that occurs during graphing when a } is missing. „i“ ir „I“ negalima naudoti kaip kintamųjų pavadinimų Error that occurs during graphing when i or I is used. Negalima kurti lygčių diagramų General error that occurs during graphing. Nepavyko nustatyti nurodytos bazės skaitmens Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Pagrindas turi būti didesnis nei 2 ir mažesnis nei 36 Error that occurs during graphing when the base is out of range. Matematinė operacija reikalauja, kad vienas iš jos parametrų būtų kintamasis Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Lygtyje supainioti loginiai ir skaliariniai operandai Error that occurs during graphing when operands are mixed. Such as true and 1. x arba y negali būti naudojamos viršutinėje ar apatinėje ribose Error that occurs during graphing when x or y is used in integral upper limits. x arba y negalima naudoti limitui įvertinti Error that occurs during graphing when x or y is used in the limit point. Negalima naudoti sudėtingos begalybės Error that occurs during graphing when complex infinity is used Negalima naudoti sudėtingų skaičių nelygybėse Error that occurs during graphing when complex numbers are used in inequalities. Grįžti į funkcijų sąrašą This is the tooltip for the back button in the equation analysis page in the graphing calculator Grįžti į funkcijų sąrašą This is the automation name for the back button in the equation analysis page in the graphing calculator Analizuoti funkciją This is the tooltip for the analyze function button Analizuoti funkciją This is the automation name for the analyze function button Analizuoti funkciją This is the text for the for the analyze function context menu command Pašalinti lygtį This is the tooltip for the graphing calculator remove equation buttons Pašalinti lygtį This is the automation name for the graphing calculator remove equation buttons Pašalinti lygtį This is the text for the for the remove equation context menu command Bendrinti This is the automation name for the graphing calculator share button. Bendrinti This is the tooltip for the graphing calculator share button. Keisti lygties stilių This is the tooltip for the graphing calculator equation style button Keisti lygties stilių This is the automation name for the graphing calculator equation style button Keisti lygties stilių This is the text for the for the equation style context menu command Rodyti lygtį This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Slėpti lygtį This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Rodyti lygtį %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Slėpti lygtį %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Baigti sekimą This is the tooltip/automation name for the graphing calculator stop tracing button Pradėti sekimą This is the tooltip/automation name for the graphing calculator start tracing button Diagramos peržiūros langas, x ašis bounded %1 ir %2, y ašis bounded pagal %3 ir %4, Rodyti %5 lygtis {Locked="%1","%2", "%3", "%4", "%5"}. Konfigūruoti slankiklį This is the tooltip text for the slider options button in Graphing Calculator Konfigūruoti slankiklį This is the automation name text for the slider options button in Graphing Calculator Perjungti į lango režimą Used in Graphing Calculator to switch the view to the equation mode Perjungti į diagramos režimą Used in Graphing Calculator to switch the view to the graph mode Perjungti į lango režimą Used in Graphing Calculator to switch the view to the equation mode Dabartinis režimas yra lygties režimas Announcement used in Graphing Calculator when switching to the equation mode Dabartinis režimas yra diagramos režimas Announcement used in Graphing Calculator when switching to the graph mode Langas Heading for window extents on the settings Laipsniai Degrees mode on settings page Gradianai Gradian mode on settings page Radianai Radians mode on settings page Vienetai Heading for Unit's on the settings Nustatyti rodinį iš naujo Hyperlink button to reset the view of the graph X maks. X maximum value header X min. X minimum value header Y maks. Y Maximum value header Y min. Y minimum value header Diagramos parinktys This is the tooltip text for the graph options button in Graphing Calculator Diagramos parinktys This is the automation name text for the graph options button in Graphing Calculator Diagramos parinktys Heading for the Graph options flyout in Graphing mode. Kintamųjų parinktys Screen reader prompt for the variable settings toggle button Kintamųjų parinkčių kaitaliojimas Tool tip for the variable settings toggle button Linijos storis Heading for the Graph options flyout in Graphing mode. Linijos parinktys Heading for the equation style flyout in Graphing mode. Mažos eilutės plotis Automation name for line width setting Vidutinės eilutės plotis Automation name for line width setting Didelės eilutės plotis Automation name for line width setting Ypač didelės eilutės plotis Automation name for line width setting Įveskite išraišką this is the placeholder text used by the textbox to enter an equation Kopijuoti Copy menu item for the graph context menu Iškirpti Cut menu item from the Equation TextBox Kopijuoti Copy menu item from the Equation TextBox Įklijuoti Paste menu item from the Equation TextBox Anuliuoti Undo menu item from the Equation TextBox Žymėti viską Select all menu item from the Equation TextBox Funkcijos įvestis The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funkcijos įvestis The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funkcijos įvesties skydas The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Kintamųjų skydas The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Kintamųjų sąrašas The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Kintamųjų %1 sąrašo elementas The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Kintamųjų reikšmės teksto laukas The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Kintamųjų reikšmės slankiklis The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Kintamųjų minimalios reikšmės teksto laukas The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Kintamųjų veiksmo reikšmės teksto laukas The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Kintamųjų maksimalios reikšmės teksto laukas The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Ištisinės linijos stilius Name of the solid line style for a graphed equation Taškinės linijos stilius Name of the dotted line style for a graphed equation Punktyrinės linijos stilius Name of the dashed line style for a graphed equation Tamsiai mėlyna Name of color in the color picker Jūros putos Name of color in the color picker Violetinė Name of color in the color picker Žalia Name of color in the color picker Mėtų žalia Name of color in the color picker Tamsiai žalia Name of color in the color picker Pilkšvai juoda Name of color in the color picker Raudona Name of color in the color picker Šviesi slyvinė Name of color in the color picker Rausvai raudona Name of color in the color picker Geltona auksinė Name of color in the color picker Ryškiai oranžinė Name of color in the color picker Ruda Name of color in the color picker Juoda Name of color in the color picker Baltas Name of color in the color picker 1 spalva Name of color in the color picker 2 spalva Name of color in the color picker 3 spalva Name of color in the color picker 4 spalva Name of color in the color picker Diagramos tema Graph settings heading for the theme options Visada supaprastintoji Graph settings option to set graph to light theme Pritaikyti pagal programos temą Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Visada supaprastintoji This is the automation name text for the Graph settings option to set graph to light theme Pritaikyti pagal programos temą This is the automation name text for the Graph settings option to set graph to match the app theme Funkcija pašalinta Announcement used in Graphing Calculator when a function is removed from the function list Funkcijos analizės lygčių laukas This is the automation name text for the equation box in the function analysis panel Lygu Screen reader prompt for the equal button on the graphing calculator operator keypad Mažiau nei Screen reader prompt for the Less than button Mažiau nei arba lygu Screen reader prompt for the Less than or equal button Lygu Screen reader prompt for the Equal button Daugiau arba lygu Screen reader prompt for the Greater than or equal button daugiau nei Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Pateikti Screen reader prompt for the submit button on the graphing calculator operator keypad Funkcijos analizė Screen reader prompt for the function analysis grid Diagramos parinktys Screen reader prompt for the graph options panel Istorijos ir atminties sąrašai Automation name for the group of controls for history and memory lists. Atminties sąrašas Automation name for the group of controls for memory list. Retrospektyvos atkarpa%1 panaikinta {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Skaičiuotuvas visada viršuje Announcement to indicate calculator window is always shown on top. Grąžinti skaičiuotuvą į visą rodinį Announcement to indicate calculator window is now back to full view. Aritmetinis poslinkis pasirinktas Label for a radio button that toggles arithmetic shift behavior for the shift operations. Loginis poslinkis pasirinktas Label for a radio button that toggles logical shift behavior for the shift operations. Sukimo ciklinis poslinkis pasirinktas Label for a radio button that toggles rotate circular behavior for the shift operations. Sukimo per perkėlimą ciklinis poslinkis pasirinktas Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Parametrai Header text of Settings page Išvaizda Subtitle of appearance setting on Settings page Programėlės tema Title of App theme expander Pasirinkite, kurią programėlės temą rodyti Description of App theme expander Šviesus Lable for light theme option Tamsus Lable for dark theme option Naudoti sistemos parametrą Lable for the app theme option to use system setting Atgal Screen reader prompt for the Back button in title bar to back to main page Parametrų puslapis Announcement used when Settings page is opened Atidaryti galimų veiksmų kontekstinį meniu Screen reader prompt for the context menu of the expression box Gerai The text of OK button to dismiss an error dialog. Mums nepavyko atkurti šios momentinės kopijos. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/lv-LV/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Nederīga ievade Error message shown when the input makes a function fail, like log(-1) Rezultāts ir nedefinēts Error message shown when there's no possible value for a function. Nepietiek atmiņas Error message shown when we run out of memory during a calculation. Pārpilde Error message shown when there's an overflow during the calculation. Rezultāts nav definēts Same as 101 Rezultāts nav definēts Same 101 Pārpilde Same as 107 Pārpilde Same 107 Nevar dalīt ar nulli Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/lv-LV/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulators {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulators [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows kalkulators {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows kalkulators [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulators {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulators [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopēt Copy context menu string Ielīmēt Paste context menu string Aptuveni vienāds ar The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, vērtība %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bits(i) {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip vismazāk nozīmīgais bits Used to describe the first bit of a binary number. Used in bit flip Atvērt atmiņas izlidošanas logu This is the automation name and label for the memory button when the memory flyout is closed. Aizvērt atmiņas izlidošanas logu This is the automation name and label for the memory button when the memory flyout is open. Paturēt augšpusē This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Atpakaļ uz pilnu skatu This is the tool tip automation name for the always-on-top button when in always-on-top mode. Atmiņa This is the tool tip automation name for the memory button. Vēsture (Ctrl+H) This is the tool tip automation name for the history button. Bitu pārslēgšanas tastatūra This is the tool tip automation name for the bitFlip button. Pilna cipartastatūra This is the tool tip automation name for the numberPad button. Notīrīt visu atmiņu (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Atmiņa The text that shows as the header for the memory list Atmiņa The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Vēsture The text that shows as the header for the history list Vēsture The automation name for the History pivot item that is shown when Calculator is in wide layout. Pārveidotājs Label for a control that activates the unit converter mode. Zinātnisks Label for a control that activates scientific mode calculator layout Standarta Label for a control that activates standard mode calculator layout. Pārveidotāja režīms Screen reader prompt for a control that activates the unit converter mode. Zinātniskais režīms Screen reader prompt for a control that activates scientific mode calculator layout Standarta režīms Screen reader prompt for a control that activates standard mode calculator layout. Notīrīt visu vēsturi "ClearHistory" used on the calculator history pane that stores the calculation history. Notīrīt visu vēsturi This is the tool tip automation name for the Clear History button. Paslēpt "HideHistory" used on the calculator history pane that stores the calculation history. Standarta The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Zinātnisks The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmētājs The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Pārveidotājs The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulators The text that shows in the dropdown navigation control for the calculator group. Pārveidotājs The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulators The text that shows in the dropdown navigation control for the calculator group in upper case. Pārveidotāji Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatori Pluralized version of the calculator group text, used for the screen reader prompt. Displeja vērtība: %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Izteiksme ir %1, pašreizējā ievade ir %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Displejs ir %1 punkts {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Izteiksme: %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Rādīt nokopēto vērtību starpliktuvē Screen reader prompt for the Calculator display copy button, when the button is invoked. Vēsture Screen reader prompt for the history flyout Atmiņa Screen reader prompt for the memory flyout Heksadecimālā vērtība: %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimāldaļa %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktālā vērtība: %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binārā vērtība: %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Notīrīt visu vēsturi Screen reader prompt for the Calculator History Clear button Vēsture ir notīrīta Screen reader prompt for the Calculator History Clear button, when the button is invoked. Paslēpt vēsturi Screen reader prompt for the Calculator History Hide button Atvērt vēstures izlidošanas logu Screen reader prompt for the Calculator History button, when the flyout is closed. Aizvērt vēstures izlidošanas logu Screen reader prompt for the Calculator History button, when the flyout is open. Saglabāt atmiņā Screen reader prompt for the Calculator Memory button Saglabāt atmiņā (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Notīrīt visu atmiņu Screen reader prompt for the Calculator Clear Memory button Atmiņa ir notīrīta Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Izsaukt no atmiņas Screen reader prompt for the Calculator Memory Recall button Izsaukt no atmiņas (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Pieskaitīt atmiņā Screen reader prompt for the Calculator Memory Add button Pieskaitīt atmiņā (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Atņemt atmiņā Screen reader prompt for the Calculator Memory Subtract button Atņemt atmiņā (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Notīrīt atmiņas vienumu Screen reader prompt for the Calculator Clear Memory button Notīrīt atmiņas vienumu This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Pievienot atmiņas vienumam Screen reader prompt for the Calculator Memory Add button in the Memory list Pievienot atmiņas vienumam This is the tool tip automation name for the Calculator Memory Add button in the Memory list Atņemt no atmiņas vienuma Screen reader prompt for the Calculator Memory Subtract button in the Memory list Atņemt no atmiņas vienuma This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Notīrīt atmiņas vienumu Screen reader prompt for the Calculator Clear Memory button Notīrīt atmiņas vienumu Text string for the Calculator Clear Memory option in the Memory list context menu Pievienot atmiņas vienumam Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Pievienot atmiņas vienumam Text string for the Calculator Memory Add option in the Memory list context menu Atņemt no atmiņas vienuma Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Atņemt no atmiņas vienuma Text string for the Calculator Memory Subtract option in the Memory list context menu Dzēst Text string for the Calculator Delete swipe button in the History list Kopēt Text string for the Calculator Copy option in the History list context menu Dzēst Text string for the Calculator Delete option in the History list context menu Dzēst vēstures vienumu Screen reader prompt for the Calculator Delete swipe button in the History list Dzēst vēstures vienumu Screen reader prompt for the Calculator Delete option in the History list context menu Atpakaļatkāpe Screen reader prompt for the Calculator Backspace button 10 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nulle Screen reader prompt for the Calculator number "0" button Viens Screen reader prompt for the Calculator number "1" button Divi Screen reader prompt for the Calculator number "2" button Trīs Screen reader prompt for the Calculator number "3" button Četri Screen reader prompt for the Calculator number "4" button Pieci Screen reader prompt for the Calculator number "5" button Seši Screen reader prompt for the Calculator number "6" button Septiņi Screen reader prompt for the Calculator number "7" button Astoņi Screen reader prompt for the Calculator number "8" button Deviņi Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Un Screen reader prompt for the Calculator And button Vai Screen reader prompt for the Calculator Or button Nav Screen reader prompt for the Calculator Not button Pagriezt pa kreisi Screen reader prompt for the Calculator ROL button Pagriezt pa labi Screen reader prompt for the Calculator ROR button Kreisais taustiņš Shift Screen reader prompt for the Calculator LSH button Labais taustiņš Shift Screen reader prompt for the Calculator RSH button Izņemot vai Screen reader prompt for the Calculator XOR button Četrkāršu vārdu pārslēgšanas poga Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Dubultu vārdu pārslēgšanas poga Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Vārdu pārslēgšanas poga Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Baitu pārslēgšanas poga Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitu pārslēgšanas tastatūra Screen reader prompt for the Calculator bitFlip button Pilna cipartastatūra Screen reader prompt for the Calculator numberPad button Decimāldaļu atdalītājs Screen reader prompt for the "." button Notīrīt ierakstu Screen reader prompt for the "CE" button Notīrīt Screen reader prompt for the "C" button Dalīt ar Screen reader prompt for the divide button on the number pad Reizināt ar Screen reader prompt for the multiply button on the number pad Vienāds ar Screen reader prompt for the equals button on the scientific operator keypad Inversā funkcija Screen reader prompt for the shift button on the number pad in scientific mode. Mīnus Screen reader prompt for the minus button on the number pad Mīnus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Pluss Screen reader prompt for the plus button on the number pad Kvadrātsakne Screen reader prompt for the square root button on the scientific operator keypad Procenti Screen reader prompt for the percent button on the scientific operator keypad Pozitīvs negatīvs Screen reader prompt for the negate button on the scientific operator keypad Pozitīvs negatīvs Screen reader prompt for the negate button on the converter operator keypad Apgrieztais lielums Screen reader prompt for the invert button on the scientific operator keypad Kreisās puses apaļā iekava Screen reader prompt for the Calculator "(" button on the scientific operator keypad Kreisā iekava, atvērto iekavu skaits: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Labās puses apaļā iekava Screen reader prompt for the Calculator ")" button on the scientific operator keypad Atverošo iekavu skaits %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nav atverošo iekavu, kam jāpievieno aizverošā iekava. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Zinātniskais pieraksts Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperboliska funkcija Screen reader prompt for the Calculator button HYP in the scientific operator keypad Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinuss Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinuss Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangenss Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperboliskais sinuss Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperboliskais kosinuss Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperboliskais tangenss Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrāts Screen reader prompt for the x squared on the scientific operator keypad. Kubs Screen reader prompt for the x cubed on the scientific operator keypad. Arksinuss Screen reader prompt for the inverted sin on the scientific operator keypad. Arkkosinuss Screen reader prompt for the inverted cos on the scientific operator keypad. Arktangenss Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperboliskais arksinuss Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperboliskais arkkosinuss Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperboliskais arktangenss Screen reader prompt for the inverted tanh on the scientific operator keypad. X pakāpē Screen reader prompt for x power y button on the scientific operator keypad. Desmit pakāpē Screen reader prompt for the 10 power x button on the scientific operator keypad. e pakāpē Screen reader for the e power x on the scientific operator keypad. y sakne no x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmi Screen reader for the log base 10 on the scientific operator keypad Naturālais logaritms Screen reader for the log base e on the scientific operator keypad Dalījuma atlikums Screen reader for the mod button on the scientific operator keypad Eksponenciāls Screen reader for the exp button on the scientific operator keypad Grādi minūtes sekundes Screen reader for the exp button on the scientific operator keypad Grādi Screen reader for the exp button on the scientific operator keypad Veselā skaitļa daļa Screen reader for the int button on the scientific operator keypad Daļa aiz komata Screen reader for the frac button on the scientific operator keypad Faktoriāls Screen reader for the factorial button on the basic operator keypad Grādu pārslēgšanas poga This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Centigrādu pārslēgšanas poga This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radiānu pārslēgšanas poga This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Režīmu nolaižamais saraksts Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Kategoriju nolaižamais saraksts Screen reader prompt for the Categories dropdown field. Paturēt augšpusē Screen reader prompt for the Always-on-Top button when in normal mode. Atpakaļ uz pilnu skatu Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Paturēt augšpusē (Alt+augšup) This is the tool tip automation name for the Always-on-Top button when in normal mode. Atpakaļ uz pilnu skatu (Alt+lejup) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Pārveidot no %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Pārveidot no %1, komats, %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Tiek pārveidots par %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ir %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Ievades vienība Screen reader prompt for the Unit Converter Units1 i.e. top units field. Izvades vienība Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Laukums Unit conversion category name called Area (eg. area of a sports field in square meters) Dati Unit conversion category name called Data Enerģija Unit conversion category name called Energy. (eg. the energy in a battery or in food) Garums Unit conversion category name called Length Jauda Unit conversion category name called Power (eg. the power of an engine or a light bulb) Ātrums Unit conversion category name called Speed Laiks Unit conversion category name called Time Tilpums Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatūra Unit conversion category name called Temperature Svars un masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Spiediens Unit conversion category name called Pressure Leņķis Unit conversion category name called Angle Valūta Unit conversion category name called Currency Šķidruma unces (Apvienotā Karaliste) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šķidruma unces (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Šķidruma unces (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šķidruma unces (ASV) An abbreviation for a measurement unit of volume Galoni (Apvienotā Karaliste) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galoni (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Galoni (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galoni (ASV) An abbreviation for a measurement unit of volume Litri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pintes (Apvienotā Karaliste) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pintes (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Pintes (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pintes (ASV) An abbreviation for a measurement unit of volume Ēdamkarotes (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ēdamkarotes (ASV) An abbreviation for a measurement unit of volume Tējkarotes (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tējkarotes (ASV) An abbreviation for a measurement unit of volume Ēdamkarotes (Apvienotā Karaliste) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ēdamkarotes (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Tējkarotes (Apvienotā Karaliste) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tējkarotes (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Kvartas (Apvienotā Karaliste) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvartas (Apvienotā Karaliste) An abbreviation for a measurement unit of volume Kvartas (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvartas (ASV) An abbreviation for a measurement unit of volume Glāzes (ASV) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) glāzes (ASV) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length akri An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data Britu siltuma vienības An abbreviation for a measurement unit of volume Britu siltuma vienības minūtē An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume pēdas³ An abbreviation for a measurement unit of volume collas³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume jardi³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy pēdas An abbreviation for a measurement unit of length pēdas sekundē An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area ZS (ASV) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time collas An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power mezgli An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time jūdzes An abbreviation for a measurement unit of length jūdzes stundā An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min. An abbreviation for a measurement unit of time jūras jūdzes An abbreviation for a measurement unit of length jūras jūdzes An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area pēdas² An abbreviation for a measurement unit of area collas² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area jūdzes² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area jardi² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power ned. An abbreviation for a measurement unit of time jardi An abbreviation for a measurement unit of length gadi An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl (Jaunbl) An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Biti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britu siltuma vienības A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU minūtē A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Baiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Termiskās kalorijas A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri sekundē A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikcentimetri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikpēdas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikcollas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikmetri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikjardi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dienas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsija grādi An option in the unit converter to select degrees Celsius Fārenheita grādi An option in the unit converter to select degrees Fahrenheit Elektronvolti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pēdas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pēdas sekundē A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mārciņpēdas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pēdmārciņas minūtē A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektāri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zirgspēki (ASV) A measurement unit for power Stundas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Collas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Džouli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatstundas A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvini An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ēdiena kalorijas A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodžouli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri stundā A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovati A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mezgli A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mahi A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri sekundē A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikroni A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekundes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jūdzes A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jūdzes stundā A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekundes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minūtes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pusbaits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstrēmi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jūras jūdzes A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundes A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātcentimetri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātpēdas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātcollas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātkilometri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātmetri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātjūdzes A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātmilimetri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrātjardi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vati A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nedēļas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gadi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kompaktdisks An abbreviation for a measurement unit of weight grādi An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonna (Apvienotā Karaliste) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight unces An abbreviation for a measurement unit of weight mārciņa An abbreviation for a measurement unit of weight tonna (ASV) An abbreviation for a measurement unit of weight stouni An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karāti A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grādi A measurement unit for Angle. Radiāni A measurement unit for Angle. Gradiāni A measurement unit for Angle. Atmosfēras A measurement unit for Pressure. Bāri A measurement unit for Pressure. Kilopaskāli A measurement unit for Pressure. Dzīvsudraba milimetri A measurement unit for Pressure. Paskāli A measurement unit for Pressure. Mārciņas uz kvadrātcollu A measurement unit for Pressure. Centigrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrami A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Garās tonnas (Apvienotā Karaliste) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mārciņas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Īsās tonnas (ASV) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stouni A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metriskās tonnas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kompaktdiski A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kompaktdiski A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbola laukumi A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbola laukumi A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD diski A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD diski A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) akumulatori AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) akumulatori AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papīra saspraudes A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papīra saspraudes A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigantiski reaktīvie laineri A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigantiski reaktīvie laineri A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spuldzes A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spuldzes A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zirgi A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zirgi A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vannas A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vannas A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sniegpārslas A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sniegpārslas A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ziloņi An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ziloņi An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bruņurupuči A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bruņurupuči A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktīvās lidmašīnas A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktīvās lidmašīnas A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaļi A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaļi A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kafijas tases A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kafijas tases A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) peldbaseini An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) peldbaseini An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rokas A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rokas A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papīra loksnes A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) papīra loksnes A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilis A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pilis A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banāni A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banāni A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortes šķēles A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tortes šķēles A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vilciena dzinēji A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vilciena dzinēji A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbola bumbas A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbola bumbas A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Atmiņas vienums Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Atpakaļ Screen reader prompt for the About panel back button Atpakaļ Content of tooltip being displayed on AboutControlBackButton Microsoft programmatūras licences nosacījumi Displayed on a link to the Microsoft Software License Terms on the About panel Priekšskatījums Label displayed next to upcoming features Microsoft paziņojums par konfidencialitāti Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Visas tiesības paturētas. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Lai uzzinātu, kā varat piedalīties Windows kalkulators, skatiet projektu %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Par Subtitle of about message on Settings page Nosūtīt atsauksmes The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Vēstures vēl nav. The text that shows as the header for the history list Atmiņā nekas nav saglabāts. The text that shows as the header for the memory list Atmiņa Screen reader prompt for the negate button on the converter operator keypad Šo izteiksmi nevar ielīmēt The paste operation cannot be performed, if the expression is invalid. Gibibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibaiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datuma aprēķins Aprēķina režīms Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Pievienot Add toggle button text Dienu pievienošana vai atņemšana Add or Subtract days option Datums Date result label Datumu starpība Date difference option Dienas Add/Subtract Days label Starpība Difference result label No From Date Header for Difference Date Picker Mēneši Add/Subtract Months label Atņemt Subtract toggle button text Līdz To Date Header for Difference Date Picker Gadi Add/Subtract Years label Datums pārsniedz robežu Out of bound message shown as result when the date calculation exceeds the bounds diena dienas mēnesis mēneši Vienādi datumi nedēļa nedēļas gads gadi Starpība: %1 Automation name for reading out the date difference. %1 = Date difference Iegūtais datu vienums %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Kalkulatora režīms %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Pārveidotāja režīms %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datuma aprēķina režīms Automation name for when the mode header is focused and the current mode is Date calculation. Vēsture un atmiņas saraksti Automation name for the group of controls for history and memory lists. Atmiņas vadīklas Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standarta funkcijas Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Displeja vadīklas Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standarta operatori Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Ciparu tastatūra Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Leņķa operatori Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Zinātniskās funkcijas Automation name for the group of Scientific functions. Skaitīšanas sistēmas bāzes atlase Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmētāja operatori Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Ievades režīma atlase Automation name for the group of input mode toggling buttons. Bitu pārslēgtastatūra Automation name for the group of bit toggling buttons. Ritināt izteiksmi pa kreisi Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Ritināt izteiksmi pa labi Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Ir sasniegts maksimālais ciparu skaits. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 saglabāts atmiņā {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Atmiņas slots %1 ir %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Atmiņas slots %1 ir notīrīts {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dalīts ar Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. reizes Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. mīnus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. pakāpē: Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y sakne Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. nobīde pa kreisi Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. nobīde pa labi Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. vai Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x vai Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. un Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Atjaunināšana veikta šādā datumā: %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Atjaunināt kursus The text displayed for a hyperlink button that refreshes currency converter ratios. Var tikt piemērota maksa par datu izmantošanu. The text displayed when users are on a metered connection and using currency converter. Neizdevās iegūt jaunus kursus. Vēlāk mēģiniet vēlreiz. The text displayed when currency ratio data fails to load. Bezsaistē. Pārbaudiet%HL%tīkla iestatījumus%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Valūtas kursu atjaunināšana This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valūtu kursi atjaunināti This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nevarēja atjaunināt likmes This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Notīrīt visu atmiņu (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Notīrīt visu atmiņu Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinusa grādi Name for the sine function in degrees mode. Used by screen readers. sinusa radiāni Name for the sine function in radians mode. Used by screen readers. sinusa gradiāni Name for the sine function in gradians mode. Used by screen readers. inversie sinusa grādi Name for the inverse sine function in degrees mode. Used by screen readers. inversie sinusa radiāni Name for the inverse sine function in radians mode. Used by screen readers. inversie sinusa gradiāni Name for the inverse sine function in gradians mode. Used by screen readers. hiperboliskais sinuss Name for the hyperbolic sine function. Used by screen readers. inversais hiperboliskais sinuss Name for the inverse hyperbolic sine function. Used by screen readers. kosinusa grādi Name for the cosine function in degrees mode. Used by screen readers. kosinusa radiāni Name for the cosine function in radians mode. Used by screen readers. kosinusa gradiāni Name for the cosine function in gradians mode. Used by screen readers. inversie kosinusa grādi Name for the inverse cosine function in degrees mode. Used by screen readers. inversie kosinusa radiāni Name for the inverse cosine function in radians mode. Used by screen readers. inversie kosinusa gradiāni Name for the inverse cosine function in gradians mode. Used by screen readers. hiperboliskais kosinuss Name for the hyperbolic cosine function. Used by screen readers. inversais hiperboliskais kosinuss Name for the inverse hyperbolic cosine function. Used by screen readers. tangensa grādi Name for the tangent function in degrees mode. Used by screen readers. tangensa radiāni Name for the tangent function in radians mode. Used by screen readers. tangensa gradiāni Name for the tangent function in gradians mode. Used by screen readers. inversie tangensa grādi Name for the inverse tangent function in degrees mode. Used by screen readers. inversie tangensa radiāni Name for the inverse tangent function in radians mode. Used by screen readers. inversie tangensa gradiāni Name for the inverse tangent function in gradians mode. Used by screen readers. hiperboliskais tangenss Name for the hyperbolic tangent function. Used by screen readers. inversais hiperboliskais tangenss Name for the inverse hyperbolic tangent function. Used by screen readers. sekansa grādi Name for the secant function in degrees mode. Used by screen readers. sekansa radiāni Name for the secant function in radians mode. Used by screen readers. sekansa gradiāni Name for the secant function in gradians mode. Used by screen readers. inversā sekansa grādi Name for the inverse secant function in degrees mode. Used by screen readers. inversā sekansa radiāni Name for the inverse secant function in radians mode. Used by screen readers. inversā sekansa gradiāni Name for the inverse secant function in gradians mode. Used by screen readers. hiperboliskais sekanss Name for the hyperbolic secant function. Used by screen readers. inversais hiperboliskais sekanss Name for the inverse hyperbolic secant function. Used by screen readers. kosekansa grādi Name for the cosecant function in degrees mode. Used by screen readers. kosekansa radiāni Name for the cosecant function in radians mode. Used by screen readers. kosekansa gradiāni Name for the cosecant function in gradians mode. Used by screen readers. inversā kosekansa grādi Name for the inverse cosecant function in degrees mode. Used by screen readers. inversā kosekansa radiāni Name for the inverse cosecant function in radians mode. Used by screen readers. inversā kosekansa gradiāni Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperboliskais kosekanss Name for the hyperbolic cosecant function. Used by screen readers. inversais hiperboliskais kosekanss Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangensa grādi Name for the cotangent function in degrees mode. Used by screen readers. Kotangensa radiāni Name for the cotangent function in radians mode. Used by screen readers. kotangensa gradiāni Name for the cotangent function in gradians mode. Used by screen readers. inversā kontangensa grādi Name for the inverse cotangent function in degrees mode. Used by screen readers. inversā kotangensa radiāni Name for the inverse cotangent function in radians mode. Used by screen readers. Inversā kontangensa gradiāni Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperboliskais kotangenss Name for the hyperbolic cotangent function. Used by screen readers. inversais hiperboliskais kotangenss Name for the inverse hyperbolic cotangent function. Used by screen readers. Kuba sakne Name for the cube root function. Used by screen readers. Pamata žurnāls Name for the logbasey function. Used by screen readers. Absolūtā vērtība Name for the absolute value function. Used by screen readers. nobīde pa kreisi Name for the programmer function that shifts bits to the left. Used by screen readers. nobīde pa labi Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriāls Name for the factorial function. Used by screen readers. grāds, minūte, sekunde Name for the degree minute second (dms) function. Used by screen readers. naturālais logaritms Name for the natural log (ln) function. Used by screen readers. kvadrāts Name for the square function. Used by screen readers. y sakne Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorija %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft pakalpojumu līgums Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. No From Date Header for AddSubtract Date Picker Ritināt aprēķina rezultātu pa kreisi Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Ritināt aprēķina rezultātu pa labi Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Aprēķins neizdevās Text displayed when the application is not able to do a calculation Pamata žurnāls Y Screen reader prompt for the logBaseY button Trigonometrija Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcija Displayed on the button that contains a flyout for the general functions in scientific mode. Nevienādības Displayed on the button that contains a flyout for the inequality functions. Nevienādības Screen reader prompt for the Inequalities button Bitu Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitu nobīde Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inversā funkcija Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperboliska funkcija Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekanss Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperboliskais sekanss Screen reader prompt for the Calculator button sech in the scientific flyout keypad Loka sekante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperboliskais loka sekanss Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekanss Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperboliskais kosekanss Screen reader prompt for the Calculator button csch in the scientific flyout keypad Loka kosekanss Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperboliskais loka kosekanss Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangenss Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperboliskais kotangenss Screen reader prompt for the Calculator button coth in the scientific flyout keypad Loka kotangenss Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperboliskais loka kotangenss Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Floor funkcija Screen reader prompt for the Calculator button floor in the scientific flyout keypad Ceiling funkcija Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Izlases Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolūtā vērtība Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eilera skaitlis Screen reader prompt for the Calculator button e in the scientific flyout keypad Otrajā pakāpē Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Pagriezt pa kreisi, izmantojot pārnesi Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Pagriezt pa labi, izmantojot pārnesi Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Kreisais taustiņš Shift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Nobīde pa kreisi Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Labais Shift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Nobīde pa labi Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmētiskā nobīde Label for a radio button that toggles arithmetic shift behavior for the shift operations. Loģiskā nobīde Label for a radio button that toggles logical shift behavior for the shift operations. Pagriezt cirkulāru nobīdi Label for a radio button that toggles rotate circular behavior for the shift operations. Pagriezt, izmantojot pārneses cirkulāru nobīdi Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kuba sakne Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrija Screen reader prompt for the square root button on the scientific operator keypad Funkcijas Screen reader prompt for the square root button on the scientific operator keypad Bitu Screen reader prompt for the square root button on the scientific operator keypad Bitu nobīde Screen reader prompt for the square root button on the scientific operator keypad Zinātniskā operatora paneļi Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Programmētāja operatora paneļi Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad visnozīmīgākais bits Used to describe the last bit of a binary number. Used in bit flip Grafiska attēlošana Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Punkts Screen reader prompt for the plot button on the graphing calculator operator keypad Automātiski atsvaidzināt skatu (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafa skats Screen reader prompt for the graph view button. Automātiska optimālā ietilpināšana Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuāla korekcija Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Diagrammas skats ir atiestatīts Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Tuvināt (Ctrl + pluszīme) This is the tool tip automation name for the Calculator zoom in button. Tuvināt Screen reader prompt for the zoom in button. Tālināt (Ctrl + mīnuszīme) This is the tool tip automation name for the Calculator zoom out button. Tālināt Screen reader prompt for the zoom out button. Pievienot vienādojumu Placeholder text for the equation input button Pašlaik nevar koplietot. If there is an error in the sharing action will display a dialog with this text. Labi Used on the dismiss button of the share action error dialog. Skatiet, ko esmu attēlojis grafiski ar Windows kalkulatoru Sent as part of the shared content. The title for the share. Vienādojumi Header that appears over the equations section when sharing Mainīgie Header that appears over the variables section when sharing Diagrammas attēls ar vienādojumiem Alt text for the graph image when output via Share Mainīgie Header text for variables area Darbība Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Krāsa Label for the Line Color section of the style picker Stils Label for the Line Style section of the style picker Funkciju analīze Title for KeyGraphFeatures Control Funkcijai nav nevienas horizontālas asimptotas. Message displayed when the graph does not have any horizontal asymptotes Funkcijai nav neviena formveidošanas punkta. Message displayed when the graph does not have any inflection points Funkcijai nav neviena maksimuma punkta. Message displayed when the graph does not have any maxima Funkcijai nav neviena minimuma punkta. Message displayed when the graph does not have any minima Konstante String describing constant monotonicity of a function Samazinājums String describing decreasing monotonicity of a function Nevar noteikt funkcijas monotoniskumu. Error displayed when monotonicity cannot be determined Palielinājums String describing increasing monotonicity of a function Funkcijas monotoniskums nav zināms. Error displayed when monotonicity is unknown Funkcijai nav nevienas slīpas asimptotas. Message displayed when the graph does not have any oblique asymptotes Nevar noteikt funkcijas pārību. Error displayed when parity is cannot be determined Funkcija ir pāra. Message displayed with the function parity is even Funkcija nav ne pāra, ne nepāra. Message displayed with the function parity is neither even nor odd Funkcija ir nepāra. Message displayed with the function parity is odd Funkcijas pārība nav zināma. Error displayed when parity is unknown Šīs funkcijas periodiskums netiek atbalstīts. Error displayed when periodicity is not supported Funkcija nav periodiska. Message displayed with the function periodicity is not periodic Funkcijas periodiskums nav zināms. Message displayed with the function periodicity is unknown Šie līdzekļi ir pārāk sarežģīti, lai kalkulators tos aprēķinātu: Error displayed when analysis features cannot be calculated Funkcijai nav nevienas vertikālas asimptotas. Message displayed when the graph does not have any vertical asymptotes Funkcijai nav neviena x krustpunkta. Message displayed when the graph does not have any x-intercepts Funkcijai nav neviena y krustpunkta. Message displayed when the graph does not have any y-intercepts Domēns Title for KeyGraphFeatures Domain Property Horizontālās asimptotas Title for KeyGraphFeatures Horizontal aysmptotes Property Galotnes punkti Title for KeyGraphFeatures Inflection points Property Šai funkcijai analīze netiek atbalstīta. Error displayed when graph analysis is not supported or had an error. Analīze tiek atbalstīta tikai f(x) formāta funkcijām. Piemērs: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimumi Title for KeyGraphFeatures Maxima Property Minimumi Title for KeyGraphFeatures Minima Property Monotoniskums Title for KeyGraphFeatures Monotonicity Property Slīpās asimptotas Title for KeyGraphFeatures Oblique asymptotes Property Pārība Title for KeyGraphFeatures Parity Property Cikliskums Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Diapazons Title for KeyGraphFeatures Range Property Vertikālās asimptotas Title for KeyGraphFeatures Vertical asymptotes Property X krustpunkts Title for KeyGraphFeatures XIntercept Property Y krustpunkts Title for KeyGraphFeatures YIntercept Property Funkcijai nevarēja veikt analīzi. Nevar aprēķināt šīs funkcijas domēnu. Error displayed when Domain is not returned from the analyzer. Nevar aprēķināt šīs funkcijas diapazonu. Error displayed when Range is not returned from the analyzer. Pārpilde (skaitlis ir pārāk liels) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Šī vienādojuma grafika izveidei ir nepieciešams radiānu režīms. Error that occurs during graphing when radians is required. Šī funkcija ir pārāk sarežģīta attēlošanai grafikā Error that occurs during graphing when the equation is too complex. Lai grafa šo funkciju, ir nepieciešams grādi režīms Error that occurs during graphing when degrees is required Faktoriāla funkcijai ir nederīgs arguments Error that occurs during graphing when a factorial function has an invalid argument. Faktoriālās funkcijas arguments ir pārāk liels grafika izveidošanai Error that occurs during graphing when a factorial has a large n Modulo var izmantot tikai ar veseliem skaitļiem Error that occurs during graphing when modulo is used with a float. Šim vienādojumam nav risinājuma Error that occurs during graphing when the equation has no solution. Nevar dalīt ar nulli Error that occurs during graphing when a divison by zero occurs. Vienādojums satur savstarpēji izslēdzošus loģiskos nosacījumus Error that occurs during graphing when mutually exclusive conditions are used. Vienādojums ir ārpus vērtību apgabala Error that occurs during graphing when the equation is out of domain. Šī vienādojuma grafiska attēlošana netiek atbalstīta Error that occurs during graphing when the equation is not supported. Vienādojumā trūkst atverošās iekavas Error that occurs during graphing when the equation is missing a ( Vienādojumā trūkst aizverošās iekavas Error that occurs during graphing when the equation is missing a ) Skaitlī ir pārāk daudz decimālatdalītāju Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Decimālatdalītājam trūkst ciparu Error that occurs during graphing with a decimal point without digits Neparedzēts izteiksmes nobeigums Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Neparedzētas rakstzīmes izteiksmē Error that occurs during graphing when there is an unexpected token. Nederīgas rakstzīmes izteiksmē Error that occurs during graphing when there is an invalid token. Pārāk daudz vienādības zīmju Error that occurs during graphing when there are too many equals. Funkcijai ir jāsatur vismaz viens x vai y mainīgais Error that occurs during graphing when the equation is missing x or y. Nederīga izteiksme Error that occurs during graphing when an invalid syntax is used. Izteiksme ir tukša Error that occurs during graphing when the expression is empty Vienāds tika izmantots bez vienādojuma Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Pēc funkcijas nosaukuma trūkst iekavas Error that occurs during graphing when parenthesis are missing after a function. Matemātiskai darbībai ir nepareizs parametru skaits Error that occurs during graphing when a function has the wrong number of parameters Nederīgs mainīgā nosaukums Error that occurs during graphing when a variable name is invalid. Vienādojumā trūkst atverošās iekavas Error that occurs during graphing when a { is missing Vienādojumā trūkst aizverošās iekavas Error that occurs during graphing when a } is missing. "i" un "I" nav iespējams izmantot kā mainīgo apzīmētājus Error that occurs during graphing when i or I is used. Vienādojumu neizdevās attēlot grafikā General error that occurs during graphing. Dotajā bāzē neizdevās noteikt skaitli Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Bāzes vērtībai ir jābūt lielākai par 2 un mazākam par 36 Error that occurs during graphing when the base is out of range. Matemātiskai darbībai ir nepieciešams, lai viens no tās parametriem būtu mainīgais Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Vienādojums jauc loģiskus un skalārus operandus Error that occurs during graphing when operands are mixed. Such as true and 1. x vai y nav iespējams izmantot augšējo vai apakšējo robežvērtību apzīmēšanai Error that occurs during graphing when x or y is used in integral upper limits. x vai y nav iespējams izmantot ierobežojuma punkta apzīmēšanai Error that occurs during graphing when x or y is used in the limit point. Nav iespējams izmantot komplekso bezgalību Error that occurs during graphing when complex infinity is used Nevienādībās nav iespējams izmantot kompleksos skaitļus Error that occurs during graphing when complex numbers are used in inequalities. Atpakaļ uz funkciju sarakstu This is the tooltip for the back button in the equation analysis page in the graphing calculator Atpakaļ uz funkciju sarakstu This is the automation name for the back button in the equation analysis page in the graphing calculator Analizēt funkciju This is the tooltip for the analyze function button Analizēt funkciju This is the automation name for the analyze function button Analizēt funkciju This is the text for the for the analyze function context menu command Noņemt vienādojumu This is the tooltip for the graphing calculator remove equation buttons Noņemt vienādojumu This is the automation name for the graphing calculator remove equation buttons Noņemt vienādojumu This is the text for the for the remove equation context menu command Kopīgot This is the automation name for the graphing calculator share button. Kopīgot This is the tooltip for the graphing calculator share button. Mainīt vienādojuma stilu This is the tooltip for the graphing calculator equation style button Mainīt vienādojuma stilu This is the automation name for the graphing calculator equation style button Mainīt vienādojuma stilu This is the text for the for the equation style context menu command Rādīt vienādojumu This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Paslēpt vienādojumu This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Rādīt vienādojumu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Paslēpt vienādojumu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Apturēt izsekošanu This is the tooltip/automation name for the graphing calculator stop tracing button Sākt izsekošanu This is the tooltip/automation name for the graphing calculator start tracing button Grafa skatīšanas logs, x ass Bounded, %1 un %2, y ass Bounded, %3 un %4, rāda %5 vienādojumus {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurēt slīdni This is the tooltip text for the slider options button in Graphing Calculator Konfigurēt slīdni This is the automation name text for the slider options button in Graphing Calculator Pārslēgt uz vienādojumu režīmu Used in Graphing Calculator to switch the view to the equation mode Pārslēgt uz diagrammu režīmu Used in Graphing Calculator to switch the view to the graph mode Pārslēgt uz vienādojumu režīmu Used in Graphing Calculator to switch the view to the equation mode Pašreizējais režīms ir vienādojuma režīms Announcement used in Graphing Calculator when switching to the equation mode Pašreizējais režīms ir diagrammas režīms Announcement used in Graphing Calculator when switching to the graph mode Logs Heading for window extents on the settings Grādi Degrees mode on settings page Gradiāni Gradian mode on settings page Radiāni Radians mode on settings page Vienības Heading for Unit's on the settings Atiestatīt skatu Hyperlink button to reset the view of the graph X maks. X maximum value header X min. X minimum value header Y maks. Y Maximum value header Y min. Y minimum value header Diagrammas opcijas This is the tooltip text for the graph options button in Graphing Calculator Diagrammas opcijas This is the automation name text for the graph options button in Graphing Calculator Diagrammas opcijas Heading for the Graph options flyout in Graphing mode. Mainīgas opcijas Screen reader prompt for the variable settings toggle button Pārslēga mainīgas opcijas Tool tip for the variable settings toggle button Līnijas biezums Heading for the Graph options flyout in Graphing mode. Līnijas opcijas Heading for the equation style flyout in Graphing mode. Mazs līnijas platums Automation name for line width setting Vidējs līnijas platums Automation name for line width setting Liels līnijas platums Automation name for line width setting Ļoti liels līnijas platums Automation name for line width setting Ievadiet izteiksmi this is the placeholder text used by the textbox to enter an equation Kopēt Copy menu item for the graph context menu Izgriezt Cut menu item from the Equation TextBox Kopēt Copy menu item from the Equation TextBox Ielīmēt Paste menu item from the Equation TextBox Atsaukt Undo menu item from the Equation TextBox Atlasīt visu Select all menu item from the Equation TextBox Funkcijas ievade The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funkcijas ievade The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funkcijas ievades panelis The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Mainīgais panelis The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Mainīgais saraksts The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Mainīgais %1 saraksta vienums The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Mainīgais vērtības tekstlodziņš The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Mainīgais vērtības slīdnis The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Mainīgais minimālās vērtības tekstlodziņš The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Mainīgais soļa vērtības tekstlodziņš The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Mainīgais maksimālās vērtības tekstlodziņš The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Nepārtrauktas līnijas stils Name of the solid line style for a graphed equation Punktētas līnijas stils Name of the dotted line style for a graphed equation Svītru līnijas stils Name of the dashed line style for a graphed equation Tumšzila Name of color in the color picker Jūras putas Name of color in the color picker Violeta Name of color in the color picker Zaļa Name of color in the color picker Piparmētru zaļš Name of color in the color picker Tumši zaļa Name of color in the color picker Ogļu pelēks Name of color in the color picker Sarkana Name of color in the color picker Gaiša plūmju Name of color in the color picker Fuksīna Name of color in the color picker Dzeltena zelta Name of color in the color picker Koši oranža Name of color in the color picker Brūna Name of color in the color picker Melna Name of color in the color picker Balta Name of color in the color picker 1. krāsa Name of color in the color picker 2. krāsa Name of color in the color picker 3. krāsa Name of color in the color picker 4. krāsa Name of color in the color picker Diagrammas motīvs Graph settings heading for the theme options Vienmēr gaiša Graph settings option to set graph to light theme Saskaņot programmas dizainu Graph settings option to set graph to match the app theme Motīvs This is the automation name text for the Graph settings heading for the theme options Vienmēr gaiša This is the automation name text for the Graph settings option to set graph to light theme Saskaņot programmas dizainu This is the automation name text for the Graph settings option to set graph to match the app theme Funkcija noņemta Announcement used in Graphing Calculator when a function is removed from the function list Funkcijas analīzes vienādojuma lodziņš This is the automation name text for the equation box in the function analysis panel Vienāds ar Screen reader prompt for the equal button on the graphing calculator operator keypad Mazāk nekā Screen reader prompt for the Less than button Mazāks vai vienāds ar Screen reader prompt for the Less than or equal button Ir vienāds ar Screen reader prompt for the Equal button Lielāks vai vienāds ar Screen reader prompt for the Greater than or equal button Lielāks par Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Iesniegt Screen reader prompt for the submit button on the graphing calculator operator keypad Funkciju analīze Screen reader prompt for the function analysis grid Diagrammas opcijas Screen reader prompt for the graph options panel Vēsture un atmiņas saraksti Automation name for the group of controls for history and memory lists. Atmiņas saraksts Automation name for the group of controls for memory list. Vēstures slots %1 notīrīts {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulators vienmēr augšpusē Announcement to indicate calculator window is always shown on top. Kalkulators atpakaļ uz pilnu skatu Announcement to indicate calculator window is now back to full view. Atlasīta aritmētiskā nobīde Label for a radio button that toggles arithmetic shift behavior for the shift operations. Atlasīta loģiskā nobīde Label for a radio button that toggles logical shift behavior for the shift operations. Atlasīta cirkulārās nobīdes pagriešana Label for a radio button that toggles rotate circular behavior for the shift operations. Atlasīta pagriešana, izmantojot pārneses cirkulāro nobīdi Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Iestatījumi Header text of Settings page Izskats Subtitle of appearance setting on Settings page Programmas dizains Title of App theme expander Atlasiet, kuru programmas dizainu rādīt Description of App theme expander Gaišs Lable for light theme option Tumšs Lable for dark theme option Izmantot sistēmas iestatījumu Lable for the app theme option to use system setting Atpakaļ Screen reader prompt for the Back button in title bar to back to main page Iestatījumu lapa Announcement used when Settings page is opened Atveriet pieejamo darbību kontekstizvēlni Screen reader prompt for the context menu of the expression box Labi The text of OK button to dismiss an error dialog. Nevarēja atjaunot šo momentuzņēmumu. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/mk-MK/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Неважечки внес Error message shown when the input makes a function fail, like log(-1) Резултатот е недефиниран Error message shown when there's no possible value for a function. Нема доволно меморија Error message shown when we run out of memory during a calculation. Прелевање Error message shown when there's an overflow during the calculation. Резултатот не е дефиниран Same as 101 Резултатот не е дефиниран Same 101 Прелевање Same as 107 Прелевање Same 107 Не може да се подели со нула Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/mk-MK/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Калкулатор {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Калкулатор [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows калкулатор {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows калкулатор [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Калкулатор {@Appx_Description@} This description is used for the official application when published through Windows Store. Калкулатор [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Копирај Copy context menu string Залепи Paste context menu string Приближно еднакво на The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, вредност %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 бит {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-ти Sub-string used in automation name for 63 bit in bit flip 62-ри Sub-string used in automation name for 62 bit in bit flip 61-ви Sub-string used in automation name for 61 bit in bit flip 60-ти Sub-string used in automation name for 60 bit in bit flip 59-ти Sub-string used in automation name for 59 bit in bit flip 58-ми Sub-string used in automation name for 58 bit in bit flip 57-ми Sub-string used in automation name for 57 bit in bit flip 56-ти Sub-string used in automation name for 56 bit in bit flip 55-ти Sub-string used in automation name for 55 bit in bit flip 54-ти Sub-string used in automation name for 54 bit in bit flip 53-ти Sub-string used in automation name for 53 bit in bit flip 52-ри Sub-string used in automation name for 52 bit in bit flip 51-ви Sub-string used in automation name for 51 bit in bit flip 50-ти Sub-string used in automation name for 50 bit in bit flip 49-ти Sub-string used in automation name for 49 bit in bit flip 48-ми Sub-string used in automation name for 48 bit in bit flip 47-ми Sub-string used in automation name for 47 bit in bit flip 46-ти Sub-string used in automation name for 46 bit in bit flip 45-ти Sub-string used in automation name for 45 bit in bit flip 44-ти Sub-string used in automation name for 44 bit in bit flip 43-ти Sub-string used in automation name for 43 bit in bit flip 42-ри Sub-string used in automation name for 42 bit in bit flip 41-ви Sub-string used in automation name for 41 bit in bit flip 40-ти Sub-string used in automation name for 40 bit in bit flip 39-ти Sub-string used in automation name for 39 bit in bit flip 38-мк Sub-string used in automation name for 38 bit in bit flip 37-мк Sub-string used in automation name for 37 bit in bit flip 36-ти Sub-string used in automation name for 36 bit in bit flip 35-ти Sub-string used in automation name for 35 bit in bit flip 34-ти Sub-string used in automation name for 34 bit in bit flip 33-ти Sub-string used in automation name for 33 bit in bit flip 32-ри Sub-string used in automation name for 32 bit in bit flip 31-ви Sub-string used in automation name for 31 bit in bit flip 30-ти Sub-string used in automation name for 30 bit in bit flip 29-ти Sub-string used in automation name for 29 bit in bit flip 28-ми Sub-string used in automation name for 28 bit in bit flip 27-ми Sub-string used in automation name for 27 bit in bit flip 26-ти Sub-string used in automation name for 26 bit in bit flip 25-ти Sub-string used in automation name for 25 bit in bit flip 24-ти Sub-string used in automation name for 24 bit in bit flip 23-ти Sub-string used in automation name for 23 bit in bit flip 22-ри Sub-string used in automation name for 22 bit in bit flip 21-ви Sub-string used in automation name for 21 bit in bit flip 20-ти Sub-string used in automation name for 20 bit in bit flip 19-ти Sub-string used in automation name for 19 bit in bit flip 18-ти Sub-string used in automation name for 18 bit in bit flip 17-ти Sub-string used in automation name for 17 bit in bit flip 16-ти Sub-string used in automation name for 16 bit in bit flip 15-ти Sub-string used in automation name for 15 bit in bit flip 14-ти Sub-string used in automation name for 14 bit in bit flip 13-ти Sub-string used in automation name for 13 bit in bit flip 12-ти Sub-string used in automation name for 12 bit in bit flip 11-ти Sub-string used in automation name for 11 bit in bit flip 10-ти Sub-string used in automation name for 10 bit in bit flip 9-ти Sub-string used in automation name for 9 bit in bit flip 8-ми Sub-string used in automation name for 8 bit in bit flip 7-ми Sub-string used in automation name for 7 bit in bit flip 6-ти Sub-string used in automation name for 6 bit in bit flip 5-ти Sub-string used in automation name for 5 bit in bit flip 4-ти Sub-string used in automation name for 4 bit in bit flip 3-ти Sub-string used in automation name for 3 bit in bit flip 2-ри Sub-string used in automation name for 2 bit in bit flip 1-ви Sub-string used in automation name for 1 bit in bit flip најмалку значаен дел Used to describe the first bit of a binary number. Used in bit flip Отвори појавувач на меморијата This is the automation name and label for the memory button when the memory flyout is closed. Затвори појавувач на меморијата This is the automation name and label for the memory button when the memory flyout is open. Задржи најгоре This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Назад на целосен приказ This is the tool tip automation name for the always-on-top button when in always-on-top mode. Меморија This is the tool tip automation name for the memory button. Историја (Ctrl+H) This is the tool tip automation name for the history button. Тастатура за вклучување битови This is the tool tip automation name for the bitFlip button. Целосна тастатура This is the tool tip automation name for the numberPad button. Исчисти ја целата меморија (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Меморија The text that shows as the header for the memory list Меморија The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Историја The text that shows as the header for the history list Историја The automation name for the History pivot item that is shown when Calculator is in wide layout. Конвертор Label for a control that activates the unit converter mode. Научен Label for a control that activates scientific mode calculator layout Стандарден Label for a control that activates standard mode calculator layout. Режим на конвертор Screen reader prompt for a control that activates the unit converter mode. Научен режим Screen reader prompt for a control that activates scientific mode calculator layout Стандарден режим Screen reader prompt for a control that activates standard mode calculator layout. Исчисти ја цела историја "ClearHistory" used on the calculator history pane that stores the calculation history. Исчисти ја цела историја This is the tool tip automation name for the Clear History button. Скриј "HideHistory" used on the calculator history pane that stores the calculation history. Стандарден The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Научно The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Програмер The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Конвертор The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Калкулатор The text that shows in the dropdown navigation control for the calculator group. Конвертор The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Калкулатор The text that shows in the dropdown navigation control for the calculator group in upper case. Конвертори Pluralized version of the converter group text, used for the screen reader prompt. Калкулатори Pluralized version of the calculator group text, used for the screen reader prompt. Екранот е %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Изразот е %1, Тековното внесување е %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Екранот е %1 точка {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Изразот е %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Вредноста на екранот е ископирана во складот Screen reader prompt for the Calculator display copy button, when the button is invoked. Историја Screen reader prompt for the history flyout Меморија Screen reader prompt for the memory flyout Хексадецимално %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Децимално %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Октално %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Бинарно %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Исчисти ја цела историја Screen reader prompt for the Calculator History Clear button Историјата е исчистена Screen reader prompt for the Calculator History Clear button, when the button is invoked. Сокриј ја историјата Screen reader prompt for the Calculator History Hide button Отвори појавувач на историјата Screen reader prompt for the Calculator History button, when the flyout is closed. Затвори појавувач на историјата Screen reader prompt for the Calculator History button, when the flyout is open. Мемориски склад Screen reader prompt for the Calculator Memory button Мемориски склад (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Исчисти ја целата меморија Screen reader prompt for the Calculator Clear Memory button Меморијата е исчистена Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Отповикување меморија Screen reader prompt for the Calculator Memory Recall button Отповикување меморија (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Додавање меморија Screen reader prompt for the Calculator Memory Add button Додавање меморија (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Одземање меморија Screen reader prompt for the Calculator Memory Subtract button Одземање меморија (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Исчисти ја ставката на меморијата Screen reader prompt for the Calculator Clear Memory button Исчисти ја ставката на меморијата This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Додај во ставка на меморијата Screen reader prompt for the Calculator Memory Add button in the Memory list Додај во ставка на меморијата This is the tool tip automation name for the Calculator Memory Add button in the Memory list Одземи од ставка на меморијата Screen reader prompt for the Calculator Memory Subtract button in the Memory list Одземи од ставка на меморијата This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Исчисти ја ставката на меморијата Screen reader prompt for the Calculator Clear Memory button Исчисти ја ставката на меморијата Text string for the Calculator Clear Memory option in the Memory list context menu Додај во ставка на меморијата Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Додај во ставка на меморијата Text string for the Calculator Memory Add option in the Memory list context menu Одземи од ставка на меморијата Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Одземи од ставка на меморијата Text string for the Calculator Memory Subtract option in the Memory list context menu Избриши Text string for the Calculator Delete swipe button in the History list Копирај Text string for the Calculator Copy option in the History list context menu Избриши Text string for the Calculator Delete option in the History list context menu Избриши ставка од историјата Screen reader prompt for the Calculator Delete swipe button in the History list Избриши ставка од историјата Screen reader prompt for the Calculator Delete option in the History list context menu Бришење назад Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Нула Screen reader prompt for the Calculator number "0" button Еден Screen reader prompt for the Calculator number "1" button Две Screen reader prompt for the Calculator number "2" button Три Screen reader prompt for the Calculator number "3" button Четири Screen reader prompt for the Calculator number "4" button Пет Screen reader prompt for the Calculator number "5" button Шест Screen reader prompt for the Calculator number "6" button Седум Screen reader prompt for the Calculator number "7" button Осум Screen reader prompt for the Calculator number "8" button Девет Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button И Screen reader prompt for the Calculator And button Или Screen reader prompt for the Calculator Or button Не е Screen reader prompt for the Calculator Not button Ротирај налево Screen reader prompt for the Calculator ROL button Ротирај надесно Screen reader prompt for the Calculator ROR button Лев shift Screen reader prompt for the Calculator LSH button Десен shift Screen reader prompt for the Calculator RSH button Ексклузивно или Screen reader prompt for the Calculator XOR button Префрлување четворни зборови Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Префрлување двојни зборови Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Префрлување зборови Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Префрлување бајти Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Тастатура за вклучување битови Screen reader prompt for the Calculator bitFlip button Целосна тастатура Screen reader prompt for the Calculator numberPad button Разделник на децимали: Screen reader prompt for the "." button Исчисти го внесот Screen reader prompt for the "CE" button Исчисти Screen reader prompt for the "C" button Подели со Screen reader prompt for the divide button on the number pad Помножи со Screen reader prompt for the multiply button on the number pad Еднакво на Screen reader prompt for the equals button on the scientific operator keypad Инверзна функција Screen reader prompt for the shift button on the number pad in scientific mode. Минус Screen reader prompt for the minus button on the number pad Минус We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Плус Screen reader prompt for the plus button on the number pad Квадратен корен Screen reader prompt for the square root button on the scientific operator keypad Процент Screen reader prompt for the percent button on the scientific operator keypad Позитивно негативно Screen reader prompt for the negate button on the scientific operator keypad Позитивно негативно Screen reader prompt for the negate button on the converter operator keypad Реципрочен Screen reader prompt for the invert button on the scientific operator keypad Лева заграда Screen reader prompt for the Calculator "(" button on the scientific operator keypad Лева заграда, отворена заграда пресметува %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Десна заграда Screen reader prompt for the Calculator ")" button on the scientific operator keypad Број на отворени загради %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Нема отворени загради за затворање. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Научно означување Screen reader prompt for the Calculator F-E the scientific operator keypad Хиперболична функција Screen reader prompt for the Calculator button HYP in the scientific operator keypad Пи Screen reader prompt for the Calculator pi button on the scientific operator keypad Синус Screen reader prompt for the Calculator sin button on the scientific operator keypad Косинус Screen reader prompt for the Calculator cos button on the scientific operator keypad Тангенс Screen reader prompt for the Calculator tan button on the scientific operator keypad Хиперболичен синус Screen reader prompt for the Calculator sinh button on the scientific operator keypad Хиперболичен косинус Screen reader prompt for the Calculator cosh button on the scientific operator keypad Хиперболичен тангенс Screen reader prompt for the Calculator tanh button on the scientific operator keypad Квадрат Screen reader prompt for the x squared on the scientific operator keypad. Коцка Screen reader prompt for the x cubed on the scientific operator keypad. Аркус синус Screen reader prompt for the inverted sin on the scientific operator keypad. Аркус косинус Screen reader prompt for the inverted cos on the scientific operator keypad. Аркус тангенс Screen reader prompt for the inverted tan on the scientific operator keypad. Хиперболичен аркус синус Screen reader prompt for the inverted sinh on the scientific operator keypad. Хиперболичен аркус косинус Screen reader prompt for the inverted cosh on the scientific operator keypad. Хиперболичен аркус тангенс Screen reader prompt for the inverted tanh on the scientific operator keypad. „X“ на експонент Screen reader prompt for x power y button on the scientific operator keypad. Десет на експонент Screen reader prompt for the 10 power x button on the scientific operator keypad. „e“ на експонент Screen reader for the e power x on the scientific operator keypad. „y“ е корен од „x“ Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Логаритам Screen reader for the log base 10 on the scientific operator keypad Природен логаритам Screen reader for the log base e on the scientific operator keypad Модул Screen reader for the mod button on the scientific operator keypad Експоненцијално Screen reader for the exp button on the scientific operator keypad Степен минута секунда Screen reader for the exp button on the scientific operator keypad Степени Screen reader for the exp button on the scientific operator keypad Цел број Screen reader for the int button on the scientific operator keypad Децимален дел Screen reader for the frac button on the scientific operator keypad Факторијал Screen reader for the factorial button on the basic operator keypad Префрлување степени This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Префрлување градијани This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Префрлување радијани This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Паѓачко мени за режим Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Паѓачко мени со категории Screen reader prompt for the Categories dropdown field. Задржи најгоре Screen reader prompt for the Always-on-Top button when in normal mode. Назад на целосен приказ Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Задржи најгоре (Alt+стрелка за горе) This is the tool tip automation name for the Always-on-Top button when in normal mode. Назад на целосен приказ (Alt+стрелка за долу) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Конвертирај од %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Конвертира од %1 запирка %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Конвертира во %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 е %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Влезна единица Screen reader prompt for the Unit Converter Units1 i.e. top units field. Излезна единица Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Област Unit conversion category name called Area (eg. area of a sports field in square meters) Податоци Unit conversion category name called Data Енергија Unit conversion category name called Energy. (eg. the energy in a battery or in food) Должина Unit conversion category name called Length Моќност Unit conversion category name called Power (eg. the power of an engine or a light bulb) Брзина Unit conversion category name called Speed Време Unit conversion category name called Time Волумен Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Температура Unit conversion category name called Temperature Тежина и маса Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Притисок Unit conversion category name called Pressure Агол Unit conversion category name called Angle Валута Unit conversion category name called Currency Унци за течност (ОК) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) унци за течност (ОК) An abbreviation for a measurement unit of volume Унци за течност (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) унци за течност (САД) An abbreviation for a measurement unit of volume Галони (ОК) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галон (ОК) An abbreviation for a measurement unit of volume Галони (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галон (САД) An abbreviation for a measurement unit of volume Литри A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Милилитри A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мл An abbreviation for a measurement unit of volume Пинти (ОК) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (ОК) An abbreviation for a measurement unit of volume Пинти (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (САД) An abbreviation for a measurement unit of volume Супени лажици (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) супена лажица (САД) An abbreviation for a measurement unit of volume Лажичиња (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лажиче (САД) An abbreviation for a measurement unit of volume Супени лажици (ОК) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) супена лажица (ОК) An abbreviation for a measurement unit of volume Лажичиња (ОК) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лажиче (ОК) An abbreviation for a measurement unit of volume Кварта (ОК) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварти (ОК) An abbreviation for a measurement unit of volume Кварта (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварти (САД) An abbreviation for a measurement unit of volume Шолји (САД) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шолја (САД) An abbreviation for a measurement unit of volume А An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume б An abbreviation for a measurement unit of data БТУ An abbreviation for a measurement unit of volume БТУ/мин An abbreviation for a measurement unit of power Б An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy см An abbreviation for a measurement unit of length см/с An abbreviation for a measurement unit of speed см³ An abbreviation for a measurement unit of volume стапки³ An abbreviation for a measurement unit of volume инчи³ An abbreviation for a measurement unit of volume м³ An abbreviation for a measurement unit of volume јарди³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy стапки An abbreviation for a measurement unit of length стапки/с An abbreviation for a measurement unit of speed стапки•фунти An abbreviation for a measurement unit of energy Гб An abbreviation for a measurement unit of data ГБ An abbreviation for a measurement unit of data ха An abbreviation for a measurement unit of area кс (САД) An abbreviation for a measurement unit of power ч An abbreviation for a measurement unit of time инчи An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Кб An abbreviation for a measurement unit of data КБ An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy км An abbreviation for a measurement unit of length км/ч An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power јазли An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мб An abbreviation for a measurement unit of data МБ An abbreviation for a measurement unit of data м An abbreviation for a measurement unit of length м/с An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time милји An abbreviation for a measurement unit of length mi/h An abbreviation for a measurement unit of speed мм An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time мин An abbreviation for a measurement unit of time нм An abbreviation for a measurement unit of length наутички милји An abbreviation for a measurement unit of length Пб An abbreviation for a measurement unit of data ПБ An abbreviation for a measurement unit of data стапки•фунти/мин An abbreviation for a measurement unit of power с An abbreviation for a measurement unit of time см² An abbreviation for a measurement unit of area стапки² An abbreviation for a measurement unit of area инчи² An abbreviation for a measurement unit of area км² An abbreviation for a measurement unit of area м² An abbreviation for a measurement unit of area милји² An abbreviation for a measurement unit of area мк² An abbreviation for a measurement unit of area јарди² An abbreviation for a measurement unit of area Тб An abbreviation for a measurement unit of data ТБ An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power седм. An abbreviation for a measurement unit of time јарди An abbreviation for a measurement unit of length г. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data ГиБ An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data КиБ An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data МиБ An abbreviation for a measurement unit of data нибли An abbreviation for a measurement unit of data Пи An abbreviation for a measurement unit of data ПиБ An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data ТиБ An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data ЕБ An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data ЕиБ An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ЗБ An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ЗиБ An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data ји An abbreviation for a measurement unit of data ЈиБ An abbreviation for a measurement unit of data Ари A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Бита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Британски термални единици A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) БТУ/минута A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) бајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Термални калории A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) сантиметри A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметри во секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубни сантиметри A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубни стапки A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубни инчи A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубни метри A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кубни јарди A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дена A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Целзиусови An option in the unit converter to select degrees Celsius Фаренхајтови An option in the unit converter to select degrees Fahrenheit Електронволти A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стапки A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стапки во секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стапки-фунти A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стапки-фунти/минута A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гигабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гигабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Хектари A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Коњски сили (САД) A measurement unit for power Часа A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Инчи A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Џули A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловат-часови A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Келвин An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Килобита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килобајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Калории во храна A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килоџули A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Километри A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Километри на час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловати A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јазли A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Маха A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мегабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мегабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метри A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метри во секунда A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Микрони A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Микросекунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милји A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милји на час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милиметри A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милисекунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Минути A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нибли A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нанометри A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ангстреми A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Наутички милји A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабити A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Секунди A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни сантиметри A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни стапки A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни инчи A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни километри A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни метри A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни милји A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни милиметри A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратни јарди A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабити A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Терабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Вати A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Седмици A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јарди A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Години A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ЦД An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle град An abbreviation for a measurement unit of Angle атм An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure кПа An abbreviation for a measurement unit of Pressure mm Hg An abbreviation for a measurement unit of Pressure Па An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight дкг An abbreviation for a measurement unit of weight дг An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight хг An abbreviation for a measurement unit of weight кг An abbreviation for a measurement unit of weight тон (ОК) An abbreviation for a measurement unit of weight мг An abbreviation for a measurement unit of weight унци An abbreviation for a measurement unit of weight фунти An abbreviation for a measurement unit of weight тон (САД) An abbreviation for a measurement unit of weight ви An abbreviation for a measurement unit of weight т An abbreviation for a measurement unit of weight Карати A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Степени A measurement unit for Angle. Радијани A measurement unit for Angle. Градијани A measurement unit for Angle. Aтмосфери A measurement unit for Pressure. Ленти A measurement unit for Pressure. Килопаскали A measurement unit for Pressure. Милиметри живин столб A measurement unit for Pressure. Паскали A measurement unit for Pressure. Фунти по квадратен инч A measurement unit for Pressure. Центиграми A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Декаграми A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дециграми A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Грама A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Хектограми A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килограми A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тони (ОК) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Милиграми A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Унци A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фунти A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тони (САД) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Стони A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метрички тони A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ЦД-дискови A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ЦД-дискови A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фудбалски терени A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фудбалски терени A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискети A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискети A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ДВД-дискови A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ДВД-дискови A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батерии AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батерии AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) спојувалки A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) спојувалки A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) големи авиони A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) големи авиони A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) светилки A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) светилки A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) коњи A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) коњи A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кади A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кади A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снегулки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снегулки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слона An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слона An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) желки A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) желки A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) авиони A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) авиони A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кита A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кита A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шолји кафе A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шолји кафе A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пливачки базени An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пливачки базени An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дланки A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дланки A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листови хартија A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листови хартија A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) замоци A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) замоци A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банани A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) банани A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) парчиња торта A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) парчиња торта A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мотори на возови A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мотори на возови A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фудбалски топки A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фудбалски топки A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ставка на меморија Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Назад Screen reader prompt for the About panel back button Назад Content of tooltip being displayed on AboutControlBackButton Лиценцни услови за софтверот на Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Преглед Label displayed next to upcoming features Изјава на Microsoft за заштита на личните податоци Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Сите права се задржани. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) За да дознаете како можете да придонесете за Windows калкулатор, проверете го проектот на %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Информации Subtitle of about message on Settings page Испрати повратни информации The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Сѐ уште нема историја. The text that shows as the header for the history list Нема ништо зачувано во меморијата. The text that shows as the header for the memory list Меморија Screen reader prompt for the negate button on the converter operator keypad Овој израз не може да се залепи The paste operation cannot be performed, if the expression is invalid. Гибибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Гибибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мебибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пебибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Тебибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексбибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ексбибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зетабита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зетабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зебибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зебибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јотабајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јотабити A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јобибита A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Јобибајти A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Пресметка на датуми Режим на пресметка Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Додај Add toggle button text Додај или одземи денови Add or Subtract days option Датум Date result label Разлика меѓу датумите Date difference option Дена Add/Subtract Days label Разлика Difference result label Од From Date Header for Difference Date Picker Месеци Add/Subtract Months label Одземи Subtract toggle button text До To Date Header for Difference Date Picker Години Add/Subtract Years label Датум надвор од дозволените граници Out of bound message shown as result when the date calculation exceeds the bounds ден дена месец месеци Исти датуми седмица седмици година години Разлика %1 Automation name for reading out the date difference. %1 = Date difference Добиен датум %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Режим на калкулатор за %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Режим на конвертор %1 за {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Режим на пресметување датуми Automation name for when the mode header is focused and the current mode is Date calculation. Списоци на историја и меморија Automation name for the group of controls for history and memory lists. Мемориски контроли Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Стандардни функции Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Прикажи контроли Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Стандардни оператори Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Нумерички тастери Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Аглести оператори Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Научни функции Automation name for the group of Scientific functions. Избор на Radix Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Оператори програмери Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Избор на режим за внесување Automation name for the group of input mode toggling buttons. Бинарна тастатура Automation name for the group of bit toggling buttons. Лизгај го изразот налево Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Лизгај го изразот надесно Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Достигнати се максимални цифри. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 се зачува во меморијата {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Отворот за меморија %1 е %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Отворот за меморија %1 е исчистен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". поделено со Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. пати Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. минус Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. плус Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. на Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y корен Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. мод Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. лев shift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. десен shift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. или Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x или Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. и Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Ажурирано на %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Ажурирај ги цените The text displayed for a hyperlink button that refreshes currency converter ratios. Може да се наплатат трошоци. The text displayed when users are on a metered connection and using currency converter. Не може да се добијат нови цени. Обидете се повторно подоцна. The text displayed when currency ratio data fails to load. Исклучен. Проверете ги%HL%Мрежните параметри%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Ажурирање на валутните курсови This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Валутниот курс е ажуриран This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Не може да се ажурираат стапките This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Исчисти ја целата меморија (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Исчисти ја целата меморија Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} синус степени Name for the sine function in degrees mode. Used by screen readers. синус радијани Name for the sine function in radians mode. Used by screen readers. синус градијани Name for the sine function in gradians mode. Used by screen readers. обратни синус степени Name for the inverse sine function in degrees mode. Used by screen readers. обратни синус радијани Name for the inverse sine function in radians mode. Used by screen readers. обратни синус градијани Name for the inverse sine function in gradians mode. Used by screen readers. хиперболичен синус Name for the hyperbolic sine function. Used by screen readers. обратен хиперболичен синус Name for the inverse hyperbolic sine function. Used by screen readers. косинус степени Name for the cosine function in degrees mode. Used by screen readers. косинус радијани Name for the cosine function in radians mode. Used by screen readers. косинус градијани Name for the cosine function in gradians mode. Used by screen readers. обратни косинус степени Name for the inverse cosine function in degrees mode. Used by screen readers. обратни косинус радијани Name for the inverse cosine function in radians mode. Used by screen readers. обратни косинус градијани Name for the inverse cosine function in gradians mode. Used by screen readers. хиперболичен косинус Name for the hyperbolic cosine function. Used by screen readers. обратен хиперболичен косинус Name for the inverse hyperbolic cosine function. Used by screen readers. тангенс степени Name for the tangent function in degrees mode. Used by screen readers. тангенс радијани Name for the tangent function in radians mode. Used by screen readers. тангенс градијани Name for the tangent function in gradians mode. Used by screen readers. обратни тангенс степени Name for the inverse tangent function in degrees mode. Used by screen readers. обратни тангенс радијани Name for the inverse tangent function in radians mode. Used by screen readers. обратни тангенс градијани Name for the inverse tangent function in gradians mode. Used by screen readers. хиперболичен тангенс Name for the hyperbolic tangent function. Used by screen readers. обратен хиперболичен тангенс Name for the inverse hyperbolic tangent function. Used by screen readers. степени на секанс Name for the secant function in degrees mode. Used by screen readers. радијани на секанс Name for the secant function in radians mode. Used by screen readers. градиенти на секанс Name for the secant function in gradians mode. Used by screen readers. инверзни степени на секанс Name for the inverse secant function in degrees mode. Used by screen readers. инверзни радијани на секанс Name for the inverse secant function in radians mode. Used by screen readers. инверзни градиенти на секанс Name for the inverse secant function in gradians mode. Used by screen readers. хиперболичен секанс Name for the hyperbolic secant function. Used by screen readers. инверзен хиперболичен секанс Name for the inverse hyperbolic secant function. Used by screen readers. степени на косеканс Name for the cosecant function in degrees mode. Used by screen readers. радијани на косеканс Name for the cosecant function in radians mode. Used by screen readers. градиенти на косеканс Name for the cosecant function in gradians mode. Used by screen readers. инверзни степени на косеканс Name for the inverse cosecant function in degrees mode. Used by screen readers. инверзни радијани на косеканс Name for the inverse cosecant function in radians mode. Used by screen readers. инверзни градиенти на косеканс Name for the inverse cosecant function in gradians mode. Used by screen readers. хиперболичен косеканс Name for the hyperbolic cosecant function. Used by screen readers. инверзен хиперболичен косеканс Name for the inverse hyperbolic cosecant function. Used by screen readers. степени на котангенс Name for the cotangent function in degrees mode. Used by screen readers. Радијани на котангенс Name for the cotangent function in radians mode. Used by screen readers. градиенти на котангенс Name for the cotangent function in gradians mode. Used by screen readers. инверзни степени на котангенс Name for the inverse cotangent function in degrees mode. Used by screen readers. инверзни радијани на котангенс Name for the inverse cotangent function in radians mode. Used by screen readers. инверзни градиенти на котангенс Name for the inverse cotangent function in gradians mode. Used by screen readers. хиперболичен котангенс Name for the hyperbolic cotangent function. Used by screen readers. инверзен хиперболичен котангенс Name for the inverse hyperbolic cotangent function. Used by screen readers. Кубен корен Name for the cube root function. Used by screen readers. Логаритамска основа Name for the logbasey function. Used by screen readers. Апсолутна вредност Name for the absolute value function. Used by screen readers. лев shift Name for the programmer function that shifts bits to the left. Used by screen readers. десен shift Name for the programmer function that shifts bits to the right. Used by screen readers. факторијал Name for the factorial function. Used by screen readers. степен минута секунда Name for the degree minute second (dms) function. Used by screen readers. природен логаритам Name for the natural log (ln) function. Used by screen readers. квадрат Name for the square function. Used by screen readers. y корен Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Категорија %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Договор за услуги на Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Пјеонг An abbreviation for a measurement unit of area. Пјеонг A measurement unit for area. Од From Date Header for AddSubtract Date Picker Лизгај го резултатот на пресметката налево Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Лизгај го резултатот на пресметката надесно Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Пресметката не успеа Text displayed when the application is not able to do a calculation Логаритамска основа Y Screen reader prompt for the logBaseY button Тригонометрија Displayed on the button that contains a flyout for the trig functions in scientific mode. Функција Displayed on the button that contains a flyout for the general functions in scientific mode. Нееднаквости Displayed on the button that contains a flyout for the inequality functions. Нееднаквости Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Поместување на битови Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Инверзна функција Screen reader prompt for the shift button in the trig flyout in scientific mode. Хиперболична функција Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Секанс Screen reader prompt for the Calculator button sec in the scientific flyout keypad Хиперболичен секанс Screen reader prompt for the Calculator button sech in the scientific flyout keypad Секанс на лак Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Хиперболичен секанс на лак Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Косеканс Screen reader prompt for the Calculator button csc in the scientific flyout keypad Хиперболичен косеканс Screen reader prompt for the Calculator button csch in the scientific flyout keypad Косеканс на лак Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Хиперболичен косеканс на лак Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Котангенс Screen reader prompt for the Calculator button cot in the scientific flyout keypad Хиперболичен котангенс Screen reader prompt for the Calculator button coth in the scientific flyout keypad Котангенс на лак Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Хиперболичен контангенс на лак Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Под Screen reader prompt for the Calculator button floor in the scientific flyout keypad Горна заграда Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Случајни Screen reader prompt for the Calculator button random in the scientific flyout keypad Апсолутна вредност Screen reader prompt for the Calculator button abs in the scientific flyout keypad Еулеров број Screen reader prompt for the Calculator button e in the scientific flyout keypad Два на експонент Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Нанд Screen reader prompt for the Calculator button nand in the scientific flyout keypad Нанд Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Ниту Screen reader prompt for the Calculator button nor in the scientific flyout keypad Ниту Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Ротирај лево со носење Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Ротирај десно со носи Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Лево поместување Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Лево поместување Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Десно поместување Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Десно поместување Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Аритметичко поместување Label for a radio button that toggles arithmetic shift behavior for the shift operations. Логичкo поместување Label for a radio button that toggles logical shift behavior for the shift operations. Ротирај кружно поместување Label for a radio button that toggles rotate circular behavior for the shift operations. Ротирај преку кружно поместување со носење Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Кубен корен Screen reader prompt for the cube root button on the scientific operator keypad Тригонометрија Screen reader prompt for the square root button on the scientific operator keypad Функции Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Панели на научен оператор Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Панели на оператор на програматор Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad најзначаен дел Used to describe the last bit of a binary number. Used in bit flip Претставување со графикон Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Цртеж Screen reader prompt for the plot button on the graphing calculator operator keypad Освежувај приказ автоматски (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Графиконски приказ Screen reader prompt for the graph view button. Автоматско најдобро вклопување Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Рачно подесување Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Графичкиот приказ е ресетиран Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Зумирај (Ctrl + плус) This is the tool tip automation name for the Calculator zoom in button. Зумирај Screen reader prompt for the zoom in button. Одзумирај (Ctrl + минус) This is the tool tip automation name for the Calculator zoom out button. Одзумирај Screen reader prompt for the zoom out button. Додај равенка Placeholder text for the equation input button Не може да се сподели во моментов. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Погледнете што претставив со графикон со Windows калкулатор Sent as part of the shared content. The title for the share. Равенки Header that appears over the equations section when sharing Променливи Header that appears over the variables section when sharing Слика на графикон со равенки Alt text for the graph image when output via Share Променливи Header text for variables area Чекор Label text for the step text box Минимално Label text for the min text box Максимално Label text for the max text box Боја Label for the Line Color section of the style picker Стил Label for the Line Style section of the style picker Анализа на функција Title for KeyGraphFeatures Control Функцијата нема никакви хоризонтални асимптоти. Message displayed when the graph does not have any horizontal asymptotes Функцијата нема никакви точки на флексија. Message displayed when the graph does not have any inflection points Функцијата нема никакви максимални точки. Message displayed when the graph does not have any maxima Функцијата нема никакви минимални точки. Message displayed when the graph does not have any minima Константа String describing constant monotonicity of a function Се намалува String describing decreasing monotonicity of a function Не може да се одреди монотоноста на функцијата. Error displayed when monotonicity cannot be determined Зголемување String describing increasing monotonicity of a function Монотоноста на функцијата е непозната. Error displayed when monotonicity is unknown Функцијата нема никакви закосени асимптоти. Message displayed when the graph does not have any oblique asymptotes Не може да се одреди партитетот на функцијата. Error displayed when parity is cannot be determined Функцијата е парна. Message displayed with the function parity is even Функцијата не е ниту парна, ниту непарна. Message displayed with the function parity is neither even nor odd Функцијата е непарна. Message displayed with the function parity is odd Паритетот на функцијата е непознат. Error displayed when parity is unknown Периодноста не е поддржана за оваа функција. Error displayed when periodicity is not supported Функцијата не е периодична. Message displayed with the function periodicity is not periodic Периодноста на функцијата е непозната. Message displayed with the function periodicity is unknown Овие карактеристики се премногу сложени за Калкулаторот да ги пресмета: Error displayed when analysis features cannot be calculated Функцијата нема никакви вертикални асимптоти. Message displayed when the graph does not have any vertical asymptotes Функцијата нема x-пресеци. Message displayed when the graph does not have any x-intercepts Функцијата нема y-пресеци. Message displayed when the graph does not have any y-intercepts Домен Title for KeyGraphFeatures Domain Property Хоризонтални асимптоти Title for KeyGraphFeatures Horizontal aysmptotes Property Точки на промена Title for KeyGraphFeatures Inflection points Property Анализата не е поддржана за оваа функција. Error displayed when graph analysis is not supported or had an error. Анализата е поддржана само за функциите во форматот f(x). На пример: y = x Error displayed when graph analysis detects the function format is not f(x). Максимум Title for KeyGraphFeatures Maxima Property Минимум Title for KeyGraphFeatures Minima Property Монотоност Title for KeyGraphFeatures Monotonicity Property Коси асимптоти Title for KeyGraphFeatures Oblique asymptotes Property Паритет Title for KeyGraphFeatures Parity Property Период Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Опсег Title for KeyGraphFeatures Range Property Вертикални асимптоти Title for KeyGraphFeatures Vertical asymptotes Property X-пресек Title for KeyGraphFeatures XIntercept Property Y-пресек Title for KeyGraphFeatures YIntercept Property Не може да се изврши анализа за функцијата. Не може да се пресмета доменот за оваа функција. Error displayed when Domain is not returned from the analyzer. Не може да се пресмета опсегот за оваа функција. Error displayed when Range is not returned from the analyzer. Прелевање (бројот е преголем) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Потребен е режим на радијани за равенката да се претстави со графикон. Error that occurs during graphing when radians is required. Функцијата е премногу сложена за да се претстави со графикон Error that occurs during graphing when the equation is too complex. Потребен е режим на степени за равенката да се претстави со графикон Error that occurs during graphing when degrees is required Факторијалната функција има неважечки аргумент Error that occurs during graphing when a factorial function has an invalid argument. Факторијалната функција има аргумент што е преголем за да се претстави со графикон Error that occurs during graphing when a factorial has a large n Модулот може да се користи само со цели броеви Error that occurs during graphing when modulo is used with a float. Равенката нема решение Error that occurs during graphing when the equation has no solution. Не може да се подели со нула Error that occurs during graphing when a divison by zero occurs. Равенката содржи логички услови кои се меѓусебно исклучиви Error that occurs during graphing when mutually exclusive conditions are used. Равенката е надвор од домен Error that occurs during graphing when the equation is out of domain. Не е поддржано претставување на равенката со графикон Error that occurs during graphing when the equation is not supported. Недостига отворена мала заграда на равенката Error that occurs during graphing when the equation is missing a ( Недостига затворена мала заграда на равенката Error that occurs during graphing when the equation is missing a ) Има премногу децимални точки во еден број Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Недостигаат цифри на децималната точка Error that occurs during graphing with a decimal point without digits Неочекуван крај на изразот Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Неочекувани знаци во изразот Error that occurs during graphing when there is an unexpected token. Неважечки знаци во изразот Error that occurs during graphing when there is an invalid token. Постојат премногу знаци за еднакво Error that occurs during graphing when there are too many equals. Функцијата мора да содржи најмалку една x или y променлива Error that occurs during graphing when the equation is missing x or y. Неважечки израз Error that occurs during graphing when an invalid syntax is used. Изразот е празен Error that occurs during graphing when the expression is empty Еднакво е користен без равенка Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Недостига мала заграда по името на функцијата Error that occurs during graphing when parenthesis are missing after a function. Математичката операција има неточен број на параметри Error that occurs during graphing when a function has the wrong number of parameters Променливото име е неважечко Error that occurs during graphing when a variable name is invalid. Недостига отворена средна заграда на равенката Error that occurs during graphing when a { is missing Недостига затворена средна заграда на равенката Error that occurs during graphing when a } is missing. „i“ и „I“ не може да се користат како променливи имиња Error that occurs during graphing when i or I is used. Равенката не може да се претстави со графикон General error that occurs during graphing. Цифрата не може да се реши за дадената основа Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Основата мора да биде поголема од 2 и помала од 36 Error that occurs during graphing when the base is out of range. Една математичка операција бара еден од нејзините параметри да биде променлива Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Равенката ги меша логичките и скаларните операнди Error that occurs during graphing when operands are mixed. Such as true and 1. x или y не може да се користат во горните или долните граници Error that occurs during graphing when x or y is used in integral upper limits. x или y не може да се користат во граничната точка Error that occurs during graphing when x or y is used in the limit point. Не може да се користи сложена бесконечност Error that occurs during graphing when complex infinity is used Не може да се користат комплексни броеви во нееднаквости Error that occurs during graphing when complex numbers are used in inequalities. Назад во списокот со функции This is the tooltip for the back button in the equation analysis page in the graphing calculator Назад во списокот со функции This is the automation name for the back button in the equation analysis page in the graphing calculator Анализирај функција This is the tooltip for the analyze function button Анализирај функција This is the automation name for the analyze function button Анализирај функција This is the text for the for the analyze function context menu command Отстрани равенка This is the tooltip for the graphing calculator remove equation buttons Отстрани равенка This is the automation name for the graphing calculator remove equation buttons Отстрани равенка This is the text for the for the remove equation context menu command Сподели This is the automation name for the graphing calculator share button. Сподели This is the tooltip for the graphing calculator share button. Промени стил на равенка This is the tooltip for the graphing calculator equation style button Промени стил на равенка This is the automation name for the graphing calculator equation style button Промени стил на равенка This is the text for the for the equation style context menu command Прикажи ја равенката This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Скриј ја равенката This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Прикажи ја равенката %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Скриј ја равенката %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Престани следење This is the tooltip/automation name for the graphing calculator stop tracing button Започни следење This is the tooltip/automation name for the graphing calculator start tracing button Прикажување на прозорецот на графиконот, x-оската ограничена со %1 и %2, y-оската ограничена со %3 и %4, прикажување %5 равенки {Locked="%1","%2", "%3", "%4", "%5"}. Конфигурирај лизгач This is the tooltip text for the slider options button in Graphing Calculator Конфигурирај лизгач This is the automation name text for the slider options button in Graphing Calculator Префрли на режим на равенка Used in Graphing Calculator to switch the view to the equation mode Префрли на режим на графикон Used in Graphing Calculator to switch the view to the graph mode Префрли на режим на равенка Used in Graphing Calculator to switch the view to the equation mode Тековниот режим е режим на равенка Announcement used in Graphing Calculator when switching to the equation mode Тековниот режим е режим на графикон Announcement used in Graphing Calculator when switching to the graph mode Прозорец Heading for window extents on the settings Степени Degrees mode on settings page Градијани Gradian mode on settings page Радијани Radians mode on settings page Единици Heading for Unit's on the settings Ресетирај го приказот Hyperlink button to reset the view of the graph X-максимум X maximum value header X-минимум X minimum value header Y-максимум Y Maximum value header Y-минимум Y minimum value header Опции за претставување со графикон This is the tooltip text for the graph options button in Graphing Calculator Опции за претставување со графикон This is the automation name text for the graph options button in Graphing Calculator Опции за претставување со графикон Heading for the Graph options flyout in Graphing mode. Опции на променливи Screen reader prompt for the variable settings toggle button Променете ги опциите на променливи Tool tip for the variable settings toggle button Дебелина на линија Heading for the Graph options flyout in Graphing mode. Опции за линија Heading for the equation style flyout in Graphing mode. Мала ширина на линија Automation name for line width setting Средна ширина на линија Automation name for line width setting Голема ширина на линија Automation name for line width setting Многу голема ширина на линија Automation name for line width setting Внесете израз this is the placeholder text used by the textbox to enter an equation Копирај Copy menu item for the graph context menu Отсечи Cut menu item from the Equation TextBox Копирај Copy menu item from the Equation TextBox Залепи Paste menu item from the Equation TextBox Врати Undo menu item from the Equation TextBox Избери ги сите Select all menu item from the Equation TextBox Внесување функции The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Внесување функции The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Панел за внесување функции The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Панел со променливи The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Список со променливи The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Ставка од списокот со променливи %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Текстуална рамка за променлива вредност The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Лизгач за променлива вредност The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Текстуална рамка за променлива минимална вредност The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Текстуална рамка за променлива вредност на чекор The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Текстуална рамка за променлива максимална вредност The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Стил на непрекината линија Name of the solid line style for a graphed equation Стил на линија со точки Name of the dotted line style for a graphed equation Стил на линија со цртички Name of the dashed line style for a graphed equation Темносина Name of color in the color picker Морска пена Name of color in the color picker Виолетова Name of color in the color picker Зелена Name of color in the color picker Ментол зелена Name of color in the color picker Темнозелена Name of color in the color picker Јаглен Name of color in the color picker Црвена Name of color in the color picker Светловиолетова Name of color in the color picker Магента Name of color in the color picker Жолто злато Name of color in the color picker Светлопортокалова Name of color in the color picker Кафена Name of color in the color picker Црна Name of color in the color picker Бела Name of color in the color picker Боја 1 Name of color in the color picker Боја 2 Name of color in the color picker Боја 3 Name of color in the color picker Боја 4 Name of color in the color picker Тема на графиконот Graph settings heading for the theme options Секогаш светло Graph settings option to set graph to light theme Да одговара на темата на апликацијата Graph settings option to set graph to match the app theme Тема This is the automation name text for the Graph settings heading for the theme options Секогаш светло This is the automation name text for the Graph settings option to set graph to light theme Да одговара на темата на апликацијата This is the automation name text for the Graph settings option to set graph to match the app theme Функцијата е отстранета Announcement used in Graphing Calculator when a function is removed from the function list Рамка за равенка за анализа на функции This is the automation name text for the equation box in the function analysis panel Еднакво на Screen reader prompt for the equal button on the graphing calculator operator keypad Помалку од Screen reader prompt for the Less than button Помало од или еднакво Screen reader prompt for the Less than or equal button Еднакво Screen reader prompt for the Equal button Поголемо од или еднакво Screen reader prompt for the Greater than or equal button Поголемо од Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Поднеси Screen reader prompt for the submit button on the graphing calculator operator keypad Анализа на функција Screen reader prompt for the function analysis grid Опции за претставување со графикон Screen reader prompt for the graph options panel Списоци на историја и меморија Automation name for the group of controls for history and memory lists. Список на меморија Automation name for the group of controls for memory list. Отворот за историја со бр. %1 е исчистен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Калкулаторот секогаш на врвот Announcement to indicate calculator window is always shown on top. Калкулаторот во целосен приказ Announcement to indicate calculator window is now back to full view. Избрано е аритметичко поместување Label for a radio button that toggles arithmetic shift behavior for the shift operations. Избрано е логичко поместување Label for a radio button that toggles logical shift behavior for the shift operations. Избрана е опцијата за ротирање преку кружно поместување Label for a radio button that toggles rotate circular behavior for the shift operations. Избрана е опцијата за ротирање преку кружно поместување со носење Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Параметри Header text of Settings page Изглед Subtitle of appearance setting on Settings page Тема на апликацијата Title of App theme expander Изберете која тема на апликацијата да се прикажува Description of App theme expander Светло Lable for light theme option Темно Lable for dark theme option Користи ги системските параметри Lable for the app theme option to use system setting Назад Screen reader prompt for the Back button in title bar to back to main page Страницата со параметри Announcement used when Settings page is opened Отворете го контекстуалното мени за достапни дејства Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Блиц-извештајот не може да се обнови. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ml-IN/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ഇന്‍‌പുട്ട് അസാധുവാണ് Error message shown when the input makes a function fail, like log(-1) ഫലം അനിർവചനീയമാണ് Error message shown when there's no possible value for a function. ആവശ്യത്തിന് മെമ്മറിയില്ല Error message shown when we run out of memory during a calculation. കവിയുക Error message shown when there's an overflow during the calculation. ഫലം നിർവചിച്ചിട്ടില്ല Same as 101 ഫലം നിർവചിച്ചിട്ടില്ല Same 101 കവിയുക Same as 107 കവിയുക Same 107 പൂജ്യമുപയോഗിച്ച് വിഭജിക്കാനാവില്ല Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ml-IN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 കാല്‍ക്കുലേറ്റര്‍ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. കാല്‍ക്കുലേറ്റര്‍ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows കാൽക്കുലേറ്റർ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows കാൽക്കുലേറ്റർ [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. കാല്‍ക്കുലേറ്റര്‍ {@Appx_Description@} This description is used for the official application when published through Windows Store. കാല്‍ക്കുലേറ്റര്‍ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. പകര്‍ത്തുക Copy context menu string ഒട്ടിക്കുക Paste context menu string തുല്യമായതിനെ കുറിച്ച് The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, മൂല്യം %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 ബിറ്റ് {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-മത് Sub-string used in automation name for 63 bit in bit flip 62-മത് Sub-string used in automation name for 62 bit in bit flip 61-മത് Sub-string used in automation name for 61 bit in bit flip 60-മത് Sub-string used in automation name for 60 bit in bit flip 59-മത് Sub-string used in automation name for 59 bit in bit flip 58-മത് Sub-string used in automation name for 58 bit in bit flip 57-മത് Sub-string used in automation name for 57 bit in bit flip 56-മത് Sub-string used in automation name for 56 bit in bit flip 55-മത് Sub-string used in automation name for 55 bit in bit flip 54-മത് Sub-string used in automation name for 54 bit in bit flip 53-മത് Sub-string used in automation name for 53 bit in bit flip 52-മത് Sub-string used in automation name for 52 bit in bit flip 51-മത് Sub-string used in automation name for 51 bit in bit flip 50-മത് Sub-string used in automation name for 50 bit in bit flip 49-മത് Sub-string used in automation name for 49 bit in bit flip 48-മത് Sub-string used in automation name for 48 bit in bit flip 47-മത് Sub-string used in automation name for 47 bit in bit flip 46-മത് Sub-string used in automation name for 46 bit in bit flip 45-മത് Sub-string used in automation name for 45 bit in bit flip 44-മത് Sub-string used in automation name for 44 bit in bit flip 43-മത് Sub-string used in automation name for 43 bit in bit flip 42-മത് Sub-string used in automation name for 42 bit in bit flip 41-മത് Sub-string used in automation name for 41 bit in bit flip 40-മത് Sub-string used in automation name for 40 bit in bit flip 39-മത് Sub-string used in automation name for 39 bit in bit flip 38-മത് Sub-string used in automation name for 38 bit in bit flip 37-മത് Sub-string used in automation name for 37 bit in bit flip 36-മത് Sub-string used in automation name for 36 bit in bit flip 35-മത് Sub-string used in automation name for 35 bit in bit flip 34-മത് Sub-string used in automation name for 34 bit in bit flip 33-മത് Sub-string used in automation name for 33 bit in bit flip 32-മത് Sub-string used in automation name for 32 bit in bit flip 31-മത് Sub-string used in automation name for 31 bit in bit flip 30-മത് Sub-string used in automation name for 30 bit in bit flip 29-മത് Sub-string used in automation name for 29 bit in bit flip 28-മത് Sub-string used in automation name for 28 bit in bit flip 27-മത് Sub-string used in automation name for 27 bit in bit flip 26-മത് Sub-string used in automation name for 26 bit in bit flip 25-മത് Sub-string used in automation name for 25 bit in bit flip 24-മത് Sub-string used in automation name for 24 bit in bit flip 23-മത് Sub-string used in automation name for 23 bit in bit flip 22-മത് Sub-string used in automation name for 22 bit in bit flip 21-മത് Sub-string used in automation name for 21 bit in bit flip 20-മത് Sub-string used in automation name for 20 bit in bit flip 19-മത് Sub-string used in automation name for 19 bit in bit flip 18-മത് Sub-string used in automation name for 18 bit in bit flip 17-മത് Sub-string used in automation name for 17 bit in bit flip 16-മത് Sub-string used in automation name for 16 bit in bit flip 15-മത് Sub-string used in automation name for 15 bit in bit flip 14-മത Sub-string used in automation name for 14 bit in bit flip 13-മത് Sub-string used in automation name for 13 bit in bit flip 12-മത് Sub-string used in automation name for 12 bit in bit flip 11-മത് Sub-string used in automation name for 11 bit in bit flip 10-മത് Sub-string used in automation name for 10 bit in bit flip 9-മത് Sub-string used in automation name for 9 bit in bit flip 8-മത് Sub-string used in automation name for 8 bit in bit flip 7-മത് Sub-string used in automation name for 7 bit in bit flip 6-മത് Sub-string used in automation name for 6 bit in bit flip 5-മത് Sub-string used in automation name for 5 bit in bit flip 4-മത് Sub-string used in automation name for 4 bit in bit flip 3-മത് Sub-string used in automation name for 3 bit in bit flip 2-മത് Sub-string used in automation name for 2 bit in bit flip 1-മത് Sub-string used in automation name for 1 bit in bit flip ഏറ്റവും പ്രാധാന്യം കുറഞ്ഞ ബിറ്റ് Used to describe the first bit of a binary number. Used in bit flip മെമ്മറി ഫ്ലൈഔട്ട് തുറക്കുക This is the automation name and label for the memory button when the memory flyout is closed. മെമ്മറി ഫ്ലൈഔട്ട് അടയ്ക്കുക This is the automation name and label for the memory button when the memory flyout is open. മുകളിൽ തുടരുക This is the tool tip automation name for the always-on-top button when out of always-on-top mode. പൂർണ്ണ വീക്ഷണത്തിലേക്കു മടങ്ങുക This is the tool tip automation name for the always-on-top button when in always-on-top mode. മെമ്മറി This is the tool tip automation name for the memory button. ചരിത്രം (Ctrl+H) This is the tool tip automation name for the history button. ബിറ്റ് ടോഗിളിംഗ് കീപാഡ് This is the tool tip automation name for the bitFlip button. പൂർണ്ണ കീപാഡ് This is the tool tip automation name for the numberPad button. എല്ലാ മെമ്മറിയും മായ്ക്കുക (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. മെമ്മറി The text that shows as the header for the memory list മെമ്മറി The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ചരിത്രം The text that shows as the header for the history list ചരിത്രം The automation name for the History pivot item that is shown when Calculator is in wide layout. കൺവേർട്ടർ Label for a control that activates the unit converter mode. ശാസ്ത്രീയമായ Label for a control that activates scientific mode calculator layout സ്റ്റാൻഡേർഡ് Label for a control that activates standard mode calculator layout. കൺവെർട്ടർ മോഡ് Screen reader prompt for a control that activates the unit converter mode. ശാസ്ത്രീയമായ മോഡ് Screen reader prompt for a control that activates scientific mode calculator layout സ്റ്റാൻഡേർഡ് മോഡ് Screen reader prompt for a control that activates standard mode calculator layout. എല്ലാ ചരിത്രവും മായ്ക്കുക "ClearHistory" used on the calculator history pane that stores the calculation history. എല്ലാ ചരിത്രവും മായ്ക്കുക This is the tool tip automation name for the Clear History button. മറയ്ക്കുക "HideHistory" used on the calculator history pane that stores the calculation history. സ്റ്റാൻഡേർഡ് The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. ശാസ്ത്രീയമായത് The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. പ്രോഗ്രാമർ The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. കണ്‍വെര്‍ട്ടര്‍ The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". കാല്‍ക്കുലേറ്റര്‍ The text that shows in the dropdown navigation control for the calculator group. കണ്‍വെര്‍ട്ടര്‍ The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". കാൽക്കുലേറ്റർ The text that shows in the dropdown navigation control for the calculator group in upper case. കണ്‍വെര്‍ട്ടറുകൾ Pluralized version of the converter group text, used for the screen reader prompt. കാൽക്കുലേറ്ററുകൾ Pluralized version of the calculator group text, used for the screen reader prompt. %1 എന്നതാണ് പ്രദർശിപ്പിക്കുന്നത് {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". %1 എന്നതാണ് ഗണനപ്രയോഗം, %2 നിലവിലെ ഇൻപുട്ട് {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ഡിസ്പ്ലേ %1 പോയിന്റ് ആണ് {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. %1 എന്നതാണ് എക്‌സ്‌പ്രഷന്‍ {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". ഡിസ്പ്ലേ മൂല്യം ക്ലിപ്പ്ബോർഡിലേക്ക് പകർത്തി Screen reader prompt for the Calculator display copy button, when the button is invoked. ചരിത്രം Screen reader prompt for the history flyout മെമ്മറി Screen reader prompt for the memory flyout ഹെക്സാഡെസിമൽ %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ഡെസിമൽ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ഒക്റ്റൽ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ബൈനറി %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". എല്ലാ ചരിത്രവും മായ്ക്കുക Screen reader prompt for the Calculator History Clear button ചരിത്രം മായ്ച്ചു Screen reader prompt for the Calculator History Clear button, when the button is invoked. ചരിത്രം മറയ്ക്കുക Screen reader prompt for the Calculator History Hide button ഫ്ലൈഔട്ട് ചരിത്രം സൃഷ്‌ടിക്കുക Screen reader prompt for the Calculator History button, when the flyout is closed. ചരിത്രം ഫ്ലൈഔട്ട് അടയ്ക്കുക Screen reader prompt for the Calculator History button, when the flyout is open. മെമ്മറി സ്റ്റോർ Screen reader prompt for the Calculator Memory button മെമ്മറി സ്റ്റോർ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. എല്ലാ മെമ്മറിയും മായ്ക്കുക Screen reader prompt for the Calculator Clear Memory button മെമ്മറി മായ്ച്ചു Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. മെമ്മറി റീകോൾ Screen reader prompt for the Calculator Memory Recall button മെമ്മറി തിരിച്ചുവിളിക്കുന്നു (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. മെമ്മറി ചേർക്കുക Screen reader prompt for the Calculator Memory Add button മെമ്മറി ചേർക്കുക (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. മെമ്മറി കുറയ്ക്കുക Screen reader prompt for the Calculator Memory Subtract button മെമ്മറി കുറയ്ക്കുക (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. മെമ്മറി ഇനം മായ്ക്കുക Screen reader prompt for the Calculator Clear Memory button മെമ്മറി ഇനം മായ്ക്കുക This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. മെമ്മറി ഇനത്തിലേക്ക് ചേർക്കുക Screen reader prompt for the Calculator Memory Add button in the Memory list മെമ്മറി ഇനത്തിലേക്ക് ചേർക്കുക This is the tool tip automation name for the Calculator Memory Add button in the Memory list മെമ്മറി ഇനത്തിൽ നിന്ന് കുറയ്ക്കുക Screen reader prompt for the Calculator Memory Subtract button in the Memory list മെമ്മറി ഇനത്തിൽ നിന്ന് കുറയ്ക്കുക This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list മെമ്മറി ഇനം മായ്ക്കുക Screen reader prompt for the Calculator Clear Memory button മെമ്മറി ഇനം മായ്ക്കുക Text string for the Calculator Clear Memory option in the Memory list context menu മെമ്മറി ഇനത്തിലേക്ക് ചേർക്കുക Screen reader prompt for the Calculator Memory Add swipe button in the Memory list മെമ്മറി ഇനത്തിലേക്ക് ചേർക്കുക Text string for the Calculator Memory Add option in the Memory list context menu മെമ്മറി ഇനത്തിൽ നിന്ന് കുറയ്ക്കുക Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list മെമ്മറി ഇനത്തിൽ നിന്ന് കുറയ്ക്കുക Text string for the Calculator Memory Subtract option in the Memory list context menu ഇല്ലാതാക്കുക Text string for the Calculator Delete swipe button in the History list പകർത്തുക Text string for the Calculator Copy option in the History list context menu ഇല്ലാതാക്കുക Text string for the Calculator Delete option in the History list context menu ചരിത്ര ഇനം ഇല്ലാതാക്കുക Screen reader prompt for the Calculator Delete swipe button in the History list ചരിത്ര ഇനം ഇല്ലാതാക്കുക Screen reader prompt for the Calculator Delete option in the History list context menu ബാക്ക്സ്പേസ് Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button പൂജ്യം Screen reader prompt for the Calculator number "0" button ഒന്ന് Screen reader prompt for the Calculator number "1" button രണ്ട് Screen reader prompt for the Calculator number "2" button മൂന്ന് Screen reader prompt for the Calculator number "3" button നാല് Screen reader prompt for the Calculator number "4" button അഞ്ച് Screen reader prompt for the Calculator number "5" button ആറ് Screen reader prompt for the Calculator number "6" button ഏഴ് Screen reader prompt for the Calculator number "7" button എട്ട് Screen reader prompt for the Calculator number "8" button ഒമ്പത് Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button കൂടാതെ Screen reader prompt for the Calculator And button അല്ലെങ്കിൽ Screen reader prompt for the Calculator Or button അല്ല Screen reader prompt for the Calculator Not button ഇടത്തേക്ക് തിരിക്കുക Screen reader prompt for the Calculator ROL button വലത്തേക്ക് തിരിക്കുക Screen reader prompt for the Calculator ROR button ഇടത് ഷിഫ്‌റ്റ് Screen reader prompt for the Calculator LSH button വലത് ഷിഫ്‌റ്റ് Screen reader prompt for the Calculator RSH button എക്സ്ക്ലൂസീവ് അല്ലെങ്കിൽ Screen reader prompt for the Calculator XOR button ക്വാഡ്രപൽ Word ടോഗിൾ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". ഇരട്ട വാക്ക് ടോഗിൾ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". വാക്ക് ടോഗിൾ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". ബൈറ്റ് ടോഗിൾ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". ബിറ്റ് ടോഗിളിംഗ് കീപാഡ് Screen reader prompt for the Calculator bitFlip button പൂർണ്ണ കീപാഡ് Screen reader prompt for the Calculator numberPad button ഡെസിമൽ സെപ്പറേറ്റർ Screen reader prompt for the "." button എൻട്രി മായ്ക്കുക Screen reader prompt for the "CE" button മായ്ക്കുക Screen reader prompt for the "C" button ഇതുപയോഗിച്ച് വിഭജിക്കുക Screen reader prompt for the divide button on the number pad ഇങ്ങനെ ഗുണിക്കുക Screen reader prompt for the multiply button on the number pad സമമായവ Screen reader prompt for the equals button on the scientific operator keypad Inverse Function Screen reader prompt for the shift button on the number pad in scientific mode. മൈനസ് Screen reader prompt for the minus button on the number pad മൈനസ് We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 പ്ലസ് Screen reader prompt for the plus button on the number pad സ്ക്വയർ റൂട്ട് Screen reader prompt for the square root button on the scientific operator keypad ശതമാനം Screen reader prompt for the percent button on the scientific operator keypad പോസിറ്റീവ്, നെഗറ്റീവ് Screen reader prompt for the negate button on the scientific operator keypad പോസിറ്റീവ്, നെഗറ്റീവ് Screen reader prompt for the negate button on the converter operator keypad പരസ്പരപൂരകമായ Screen reader prompt for the invert button on the scientific operator keypad ഇടത് ആവരണചിഹ്നം Screen reader prompt for the Calculator "(" button on the scientific operator keypad ഇടത് പാരന്തെസിസ്, പാരന്തെസിസ് കൗണ്ട് %1 തുറക്കുക {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". വലത് ബ്രാക്കറ്റ് Screen reader prompt for the Calculator ")" button on the scientific operator keypad തുറന്ന പാരന്തെസിസ് കൗണ്ട് %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". അടയ്ക്കുന്നതിന് തുറന്ന പാരന്തെസിസ് ഇല്ല. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". സയന്റിഫിക് നൊട്ടേഷൻ Screen reader prompt for the Calculator F-E the scientific operator keypad ഹൈപ്പർബോളിക് പ്രവർത്തനം Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad സൈൻ Screen reader prompt for the Calculator sin button on the scientific operator keypad കോസൈൻ Screen reader prompt for the Calculator cos button on the scientific operator keypad ടാൻജെന്റ് Screen reader prompt for the Calculator tan button on the scientific operator keypad ഹൈപ്പർബോളിക് സൈൻ Screen reader prompt for the Calculator sinh button on the scientific operator keypad ഹൈപ്പർബോലിക് കോസൈൻ Screen reader prompt for the Calculator cosh button on the scientific operator keypad ഹൈപ്പർബോളിക് ടാൻജെന്റ് Screen reader prompt for the Calculator tanh button on the scientific operator keypad സമചതുരം Screen reader prompt for the x squared on the scientific operator keypad. ക്യൂബ് Screen reader prompt for the x cubed on the scientific operator keypad. ആർക്ക് സൈൻ Screen reader prompt for the inverted sin on the scientific operator keypad. ആർക്ക് കോസിൻ Screen reader prompt for the inverted cos on the scientific operator keypad. ആർക്ക് ടാൻജെന്റ് Screen reader prompt for the inverted tan on the scientific operator keypad. ഹൈപ്പർബോലിക് ആർക്ക് സൈൻ Screen reader prompt for the inverted sinh on the scientific operator keypad. ഹൈപ്പർ ആർക്ക് കോസിൻ Screen reader prompt for the inverted cosh on the scientific operator keypad. ഹൈപ്പർബോലിക് ആർക്ക് ടാഞ്ചന്റ് Screen reader prompt for the inverted tanh on the scientific operator keypad. എക്സ്പോണന്റിലേക്ക് 'X' Screen reader prompt for x power y button on the scientific operator keypad. എക്സ്പോണന്റിലേക്കുള്ള പത്ത് Screen reader prompt for the 10 power x button on the scientific operator keypad. എക്സ്പോണന്റിലേക്ക് 'e' Screen reader for the e power x on the scientific operator keypad. 'x' ന്റെ 'y' റൂട്ട് Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. ലോഗ് Screen reader for the log base 10 on the scientific operator keypad സ്വാഭാവിക ലോഗ് Screen reader for the log base e on the scientific operator keypad മൊഡ്യൂളോ Screen reader for the mod button on the scientific operator keypad എക്സ്പൊണൻഷ്യൽ Screen reader for the exp button on the scientific operator keypad ഡിഗ്രി മിനിറ്റ് സെക്കന്റ് Screen reader for the exp button on the scientific operator keypad ഡിഗ്രികൾ Screen reader for the exp button on the scientific operator keypad മുഴുവൻ ഭാഗം Screen reader for the int button on the scientific operator keypad ചെറിയ ഭാഗം Screen reader for the frac button on the scientific operator keypad ഫാക്റ്റോറിയൽ Screen reader for the factorial button on the basic operator keypad ഡിഗ്രീസ് ടോഗിൾ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". ഗാർഡിയൻസ് ടോഗിൾ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". റേഡിയൻസ് ടോഗിൾ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". മോഡ് ഡ്രോപ്ഡൗൺ ചെയ്യുക Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. വിഭാഗങ്ങൾ ഡ്രോപ്പ്ഡൗൺ ചെയ്യുക Screen reader prompt for the Categories dropdown field. മുകളിൽ തുടരുക Screen reader prompt for the Always-on-Top button when in normal mode. പൂർണ്ണ വീക്ഷണത്തിലേക്കു മടങ്ങുക Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. മുകളിൽ തുടരുക (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. പൂർണ്ണ കാഴ്ചയിലേക്ക് മടങ്ങുക (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 എന്നതിൽ നിന്ന് പരിവര്‍ത്തനം ചെയ്യുക Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 പോയിന്റ് %2 എന്നതിൽ നിന്ന് പരിവർത്തനം ചെയ്യുക {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 എന്നതിലേക്ക് പരിവര്‍ത്തനം ചെയ്യുക Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ആകുന്നു %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. ഇൻപുട്ട് യൂണിറ്റ് Screen reader prompt for the Unit Converter Units1 i.e. top units field. ഔട്ട്പുട്ട് യൂണിറ്റ് Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. ഏരിയ Unit conversion category name called Area (eg. area of a sports field in square meters) ഡാറ്റ Unit conversion category name called Data ഊർജ്ജം Unit conversion category name called Energy. (eg. the energy in a battery or in food) ദൈർഘ്യം Unit conversion category name called Length പവർ Unit conversion category name called Power (eg. the power of an engine or a light bulb) വേഗത Unit conversion category name called Speed സമയം Unit conversion category name called Time അളവ് Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) താപനില Unit conversion category name called Temperature ഭാരവും പിണ്ഡവും Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. സമ്മർദ്ദം Unit conversion category name called Pressure കോൺ Unit conversion category name called Angle കറൻസി Unit conversion category name called Currency ദ്രാവക ഔൺസുകൾ (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫ്ലൂയിഡ് ഔൺസ് (UK) An abbreviation for a measurement unit of volume ദ്രാവക ഔൺസുകൾ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫ്ലൂയിഡ് ഔൺസ് (US) An abbreviation for a measurement unit of volume ഗാലൻ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GAL (UK) An abbreviation for a measurement unit of volume ഗാലൻ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഗാലൻ (US) An abbreviation for a measurement unit of volume ലിറ്ററുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume മില്ലിലിറ്ററുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മില്ലീലിറ്റർ An abbreviation for a measurement unit of volume പിന്റ്സ് (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പൈന്റ് (UK) An abbreviation for a measurement unit of volume പിന്റ്സ് (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പോയിന്‍റ് (US) An abbreviation for a measurement unit of volume ടേബിൾസ്പൂണുകൾ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടേബിൾസ്പൂൺ (US) An abbreviation for a measurement unit of volume ടീസ്പൂൺ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടീസ്പൂൺ (US) An abbreviation for a measurement unit of volume ടേബിൾസ്പൂണുകൾ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടേബിൾസ്പൂൺ. (UK) An abbreviation for a measurement unit of volume ടീസ്പൂണുകൾ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടീസ്പൂൺ (UK) An abbreviation for a measurement unit of volume ക്വാർട്സ് (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume ക്വാർട്സ് (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്വാർട്ട് (US) An abbreviation for a measurement unit of volume കപ്പുകൾ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കപ്പ് (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/മിനിറ്റ് An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data CAL An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ഹെക്ടർ An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time ഇതില്‍ An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data കിലോകാലറി An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time മൈൽ An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length മി.സെ. An abbreviation for a measurement unit of time മിനിറ്റ് An abbreviation for a measurement unit of time നാനോമീറ്റർ An abbreviation for a measurement unit of length നോട്ടിക്കൽ മൈൽ An abbreviation for a measurement unit of length പെറ്റാബൈറ്റ് An abbreviation for a measurement unit of data പെറ്റാബൈറ്റ് An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area മിമി² An abbreviation for a measurement unit of area യാര്‍ഡ്² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power ആഴ്ച An abbreviation for a measurement unit of time യാഡ് An abbreviation for a measurement unit of length വർഷം An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data യി An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data ഏക്കറുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബിറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബ്രിട്ടീഷ് തെർമൽ യൂണിറ്റുകൾ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUകള്‍/മിനിറ്റ് A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബൈറ്റുകള്‍ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) തെർമൽ കലോറികൾ A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെന്‍റിമീറ്റര്‍‌ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഒരു സെക്കന്റിലെ സെന്റിമീറ്ററുകൾ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്യുബിക് സെന്റിമീറ്ററുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്യുബിക് അടി A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്യുബിക് ഇഞ്ചുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്യുബിക് മീറ്ററുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ക്യുബിക് യാർഡുകൾ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ദിവസങ്ങൾ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെൽഷ്യസ് An option in the unit converter to select degrees Celsius ഫാരൻഹീറ്റ് An option in the unit converter to select degrees Fahrenheit ഇലക്ട്രോൺ വോൾട്ടുകൾ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പാദം A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഒരു സെക്കന്റിലെ അടി A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫൂട്ട്-പൗണ്ടുകൾ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫൂട്ട്-പൗണ്ടുകൾ/മിനിറ്റ് A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജിഗാബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജിഗാബൈറ്റുകള്‍ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഹെക്ടേർസ് A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഹോഴ്സ്പവർ (US) A measurement unit for power മണിക്കൂർ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഇഞ്ചുകള്‍ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജൂൾസ് A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോവാട്ട്-മണിക്കൂർ A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) താപമാത്ര An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". കിലൊബൈറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോബൈറ്റുകള്‍ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഭക്ഷണ കലോറികൾ A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോജൂൾസ് A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോമീറ്ററുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഓരോ മണിക്കൂറിലെ കിലോമീറ്ററുകൾ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോവാട്സ് A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നോട്ടുകൾ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മാച്ച് A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) മെഗാബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മെഗാബൈറ്റുകള്‍ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മീറ്ററുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഓരോ സെക്കന്റിലെ മീറ്ററുകൾ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മൈക്രോൺസ് A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മൈക്രോസെക്കന്റുകൾ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മൈലുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഒരു മണിക്കൂറിലെ മൈലുകൾ A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മില്ലിമീറ്ററുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മില്ലിസെക്കന്റുകള്‍‌ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മിനിറ്റ് A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നിബിൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നാനോമീറ്ററുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആങ്സ്ട്രോംസ് A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നോട്ടിക്കൽ മൈലുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പെറ്റാബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പെറ്റാബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെക്കൻറ് A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സ്ക്വയർ സെന്റിമീറ്ററുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര അടി A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര ഇഞ്ചുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര കിലോമീറ്ററുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര മീറ്ററുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര മൈലുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര മില്ലിമീറ്ററുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ചതുരശ്ര യാർഡുകൾ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടെറാബിറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടെറാബൈറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) വാട്സുകൾ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആഴ്ചകൾ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) യാർഡുകൾ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) വർഷം A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight DAG An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight കിലോഗ്രാം An abbreviation for a measurement unit of weight ടൺ (UK) An abbreviation for a measurement unit of weight മില്ലീഗ്രാം An abbreviation for a measurement unit of weight ഔൺസ് An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ടൺ (US) An abbreviation for a measurement unit of weight റാത്തൽ An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight കാരറ്റ് A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഡിഗ്രികൾ A measurement unit for Angle. റേഡിയനുകൾ A measurement unit for Angle. ഗാർഡിയൻസ് A measurement unit for Angle. അന്തരീക്ഷം A measurement unit for Pressure. ബാറുകൾ A measurement unit for Pressure. കിലോപാസ്കൽസ് A measurement unit for Pressure. മെർക്കുറിയുടെ മില്ലിമീറ്റർ A measurement unit for Pressure. പാസ്ക്കൽസ് A measurement unit for Pressure. ചരുത്രശ്ര ഇഞ്ചിലെ പൗണ്ട് A measurement unit for Pressure. സെന്റിഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഡെക്കഗ്രാമുകൾ A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഡെസിഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഹെക്ടോഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിലോഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നീണ്ട ടണ്ണുകൾ (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മില്ലിഗ്രാമുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഔൺസുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പൗണ്ടുകൾ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഹ്രസ്വ ടണ്ണുകൾ (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സ്റ്റോൺ A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മെട്രിക് ടണ്ണുകൾ A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-കൾ A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-കൾ A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സോക്കർ ഫീൽഡുകൾ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സോക്കർ ഫീൽഡുകൾ A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫ്ലോപ്പി ഡിസ്ക്കുകൾ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ഫ്ലോപ്പി ഡിസ്ക്കുകൾ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD–കള്‍‌‌ A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബാറ്ററികൾ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബാറ്ററികൾ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പേപ്പർക്ലിപ്പുകൾ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പേപ്പർക്ലിപ്പുകൾ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജംബോ ജെറ്റുകൾ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജംബോ ജെറ്റുകൾ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ലൈറ്റ് ബൾബുകൾ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ലൈറ്റ് ബൾബുകൾ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കുതിരകൾ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കുതിരകൾ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബാത്ത്ടബുകൾ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ബാത്ത്ടബുകൾ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മഞ്ഞുകട്ടകൾ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മഞ്ഞുകട്ടകൾ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആനകൾ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആനകൾ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആമകൾ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ആമകൾ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജെറ്റുകൾ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജെറ്റുകൾ A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) തിമിംഗലങ്ങൾ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) തിമിംഗലങ്ങൾ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കോഫി കപ്പുകൾ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കോഫി കപ്പുകൾ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നീന്തൽ കുളങ്ങൾ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) നീന്തൽ കുളങ്ങൾ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കൈകൾ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കൈകൾ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പേപ്പർ ഷീറ്റുകൾ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പേപ്പർ ഷീറ്റുകൾ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കോട്ടകൾ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കോട്ടകൾ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) വാഴപ്പഴം A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) വാഴപ്പഴം A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കേക്ക് കഷണങ്ങൾ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കേക്ക് കഷണങ്ങൾ A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ട്രെയിൻ എഞ്ചിനുകൾ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ട്രെയിൻ എഞ്ചിനുകൾ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സോക്കർ ബോളുകൾ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സോക്കർ ബോളുകൾ A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മെമ്മറി ഇനം Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) പിന്നിലേക്ക് Screen reader prompt for the About panel back button പിന്നിലേക്ക് Content of tooltip being displayed on AboutControlBackButton Microsoft സോഫ്റ്റ്‌വെയർ ലൈസൻസ് നിബന്ധനകൾ Displayed on a link to the Microsoft Software License Terms on the About panel പ്രിവ്യൂ Label displayed next to upcoming features Microsoft സ്വകാര്യതാ പ്രസ്താവന Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. എല്ലാ അവകാശങ്ങളും നിക്ഷിപ്തം. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Windows കാൽക്കുലേറ്ററിന് സംഭാവന നൽകുന്നത് എങ്ങനെയെന്ന് അറിയാൻ %HL%GitHub%HL%-ലെ പ്രൊജക്റ്റ് പരിശോധിക്കുക. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel കുറിച്ച് Subtitle of about message on Settings page പ്രതികരണം അയയ്ക്കുക The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app ഇതുവരെ ചരിത്രമൊന്നുമില്ല. The text that shows as the header for the history list മെമ്മറിയിൽ ഒന്നും തന്നെ സംരക്ഷിച്ചിട്ടില്ല. The text that shows as the header for the memory list മെമ്മറി Screen reader prompt for the negate button on the converter operator keypad ഈ എക്പ്രഷൻ ഒട്ടിക്കാനാവില്ല The paste operation cannot be performed, if the expression is invalid. ജിബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ജിബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) കിബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മെബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) മെബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പെബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) പെബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടെബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ടെബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) എക്സാബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) എക്സാബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) എക്സിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) എക്സിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെറ്റബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെറ്റബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) സെബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) യോട്ടാബിറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) യോട്ടബൈറ്റുകൾ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) യോബിബിറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) യോബിബൈറ്റ്സ് A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) തീയതി കണക്കാക്കൽ കണക്കാക്കൽ മോഡ് Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". ചേർക്കുക Add toggle button text ദിവസങ്ങൾ ചേർക്കുകയോ/കുറയ്ക്കുകയോ ചെയ്യുക Add or Subtract days option തീയതി Date result label തീയതികൾക്കിടയിലെ വ്യത്യാസം Date difference option ദിവസങ്ങൾ Add/Subtract Days label വ്യത്യാസം Difference result label ഇവിടെ നിന്ന് From Date Header for Difference Date Picker മാസങ്ങൾ Add/Subtract Months label കുറയ്ക്കുക Subtract toggle button text ഇവിടേക്ക് To Date Header for Difference Date Picker വർഷം Add/Subtract Years label അതിർത്തിക്ക് പുറത്തുള്ള തീയതി Out of bound message shown as result when the date calculation exceeds the bounds ദിവസം ദിവസങ്ങൾ മാസം മാസങ്ങൾ അതേ തീയതികൾ ആഴ്ച ആഴ്ചകൾ വർഷം വർഷങ്ങൾ വ്യത്യാസം %1 Automation name for reading out the date difference. %1 = Date difference ഫല തീയതി %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 കാൽക്കുലേറ്റർ മോഡ് {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 കൺവെർട്ടർ മോഡ് {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. തീയതി കണക്കാക്കൽ മോഡ് Automation name for when the mode header is focused and the current mode is Date calculation. ചരിത്രവും മെമ്മറി ലിസ്റ്റുകളും Automation name for the group of controls for history and memory lists. മെമ്മറി നിയന്ത്രണങ്ങൾ Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) അടിസ്ഥാന കാര്യപ്രവർത്തനങ്ങൾ Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) പ്രദർശന നിയന്ത്രണങ്ങൾ Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) അടിസ്ഥാന ഓപ്പറേറ്റർമാർ Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) നമ്പർ പാഡ് Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) ആംഗിൾ ഓപ്പറേറ്ററുകൾ Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) ശാസ്ത്രീയമായ ഫംഗ്ഷനുകള്‍ Automation name for the group of Scientific functions. റാഡിക്സ് തിരഞ്ഞെടുപ്പ് Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix പ്രോഗ്രാമർ ഓപ്പറേറ്ററുകൾ Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). ഇൻപുട്ട് മോഡ് തിരഞ്ഞെടുപ്പ് Automation name for the group of input mode toggling buttons. ബിറ്റ് ടോഗ്ലിംഗ് കീപാഡ് Automation name for the group of bit toggling buttons. എക്‌സ്‌പ്രഷൻ ഇടത്തേക്ക് സ്ക്രോൾ ചെയ്യുക Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. എക്‌സ്‌പ്രഷൻ വലത്തേക്ക് സ്ക്രോൾ ചെയ്യുക Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. പരമാവധി അക്കങ്ങളിലെത്തി. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 മെമ്മറിയിലേക്ക് സംരക്ഷിച്ചു {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". മെമ്മറി സ്ലോട്ട് %1 എന്നത് %2 ആകുന്നു {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". മെമ്മറി സ്ലോട്ട് %1 മായ്ച്ചു {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". ഇതുപയോഗിച്ച് വിഭജിക്കുക Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. സമയങ്ങൾ Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. മൈനസ് Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. പ്ലസ് Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. പവർ Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y റൂട്ട് Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. മോഡ് Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ഇടത് ഷിഫ്‌റ്റ് Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. വലത് ഷിഫ്‌റ്റ് Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. അല്ലെങ്കിൽ Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x അല്ലെങ്കിൽ Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. ഒപ്പം Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. അപ്‌ഡേറ്റ് ചെയ്ത %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" നിരക്കുകൾ അപ്‌ഡേറ്റ് ചെയ്യുക The text displayed for a hyperlink button that refreshes currency converter ratios. ഡാറ്റാ നിരക്കുകൾ ബാധകമാകാം. The text displayed when users are on a metered connection and using currency converter. പുതിയ നിരക്കുകൾ ലഭ്യമാക്കാനായില്ല. പിന്നീട് വീണ്ടും ശ്രമിക്കുക. The text displayed when currency ratio data fails to load. ഓഫ്‌ലൈൻ. ദയവായി നിങ്ങളുടെ%HL%നെറ്റ്‌വർക്ക് ക്രമീകരണം%HL% പരിശോധിക്കുക Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} കറൻസി നിരക്കുകൾ അപ്ഡേറ്റ് ചെയ്യുന്നു This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. കറൻസി നിരക്കുകൾ അപ്ഡേറ്റ് ചെയ്തു This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. നിരക്കുകൾ അപ്ഡേറ്റുചെയ്യാൻ കഴിഞ്ഞില്ല This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} എല്ലാ മെമ്മറിയും മായ്ക്കുക (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. എല്ലാ മെമ്മറിയും മായ്ക്കുക Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} സൈൻ ഡിഗ്രികൾ Name for the sine function in degrees mode. Used by screen readers. സൈൻ റേഡിയനുകൾ Name for the sine function in radians mode. Used by screen readers. സൈൻ ഗ്രാഡിയനുകൾ Name for the sine function in gradians mode. Used by screen readers. വിപരീത സൈൻ ഡിഗ്രികൾ Name for the inverse sine function in degrees mode. Used by screen readers. വിപരീത സൈൻ റേഡിയനുകൾ Name for the inverse sine function in radians mode. Used by screen readers. വിപരീത സൈൻ ഗ്രാഡിയനുകൾ Name for the inverse sine function in gradians mode. Used by screen readers. ഹൈപ്പർബോളിക് സൈൻ Name for the hyperbolic sine function. Used by screen readers. വിപരീത ഹൈപ്പർബോളിക് സൈൻ Name for the inverse hyperbolic sine function. Used by screen readers. കോസൈൻ ഡിഗ്രികൾ Name for the cosine function in degrees mode. Used by screen readers. കോസൈൻ റേഡിയനുകൾ Name for the cosine function in radians mode. Used by screen readers. കോസൈൻ ഗ്രാഡിയനുകൾ Name for the cosine function in gradians mode. Used by screen readers. വിപരീത കോസൈൻ ഡിഗ്രികൾ Name for the inverse cosine function in degrees mode. Used by screen readers. വിപരീത കോസൈൻ റേഡിയനുകൾ Name for the inverse cosine function in radians mode. Used by screen readers. വിപരീത കോസൈൻ ഗ്രാഡിയനുകൾ Name for the inverse cosine function in gradians mode. Used by screen readers. ഹൈപ്പർബോലിക് കോസൈൻ Name for the hyperbolic cosine function. Used by screen readers. വിപരീത ഹൈപ്പർബോലിക് കോസൈൻ Name for the inverse hyperbolic cosine function. Used by screen readers. ടാൻജെന്റ് ഡിഗ്രികൾ Name for the tangent function in degrees mode. Used by screen readers. ടാൻജെന്റ് റേഡിയനുകൾ Name for the tangent function in radians mode. Used by screen readers. ടാൻജെന്റ് ഗ്രാഡിയനുകൾ Name for the tangent function in gradians mode. Used by screen readers. വിപരീത ടാൻജെന്റ് ഡിഗ്രികൾ Name for the inverse tangent function in degrees mode. Used by screen readers. വിപരീത ടാൻജെന്റ് റേഡിയനുകൾ Name for the inverse tangent function in radians mode. Used by screen readers. വിപരീത ടാൻജെന്റ് ഗ്രാഡിയനുകൾ Name for the inverse tangent function in gradians mode. Used by screen readers. ഹൈപ്പർബോളിക് ടാൻജെന്റ് Name for the hyperbolic tangent function. Used by screen readers. വിപരീത ഹൈപ്പർബോളിക് ടാൻജെന്റ് Name for the inverse hyperbolic tangent function. Used by screen readers. സീക്കന്റ് ഡിഗ്രികൾ Name for the secant function in degrees mode. Used by screen readers. സീക്കന്റ് റേഡിയൻസ് Name for the secant function in radians mode. Used by screen readers. സീക്കന്റ് ഗ്രേഡിയൻ‌സ് Name for the secant function in gradians mode. Used by screen readers. വിപരീത സീക്കന്റ് ഡിഗ്രികൾ Name for the inverse secant function in degrees mode. Used by screen readers. വിപരീത സീക്കന്റ് റേഡിയൻസ് Name for the inverse secant function in radians mode. Used by screen readers. വിപരീത സീക്കന്റ് ഗ്രേഡിയൻ‌സ് Name for the inverse secant function in gradians mode. Used by screen readers. ഹൈപ്പർബോളിക് സീക്കന്റ് Name for the hyperbolic secant function. Used by screen readers. വിപരീത ഹൈപ്പർബോളിക് സീക്കന്റ് Name for the inverse hyperbolic secant function. Used by screen readers. കൊസിക്കന്റ് ഡിഗ്രികൾ Name for the cosecant function in degrees mode. Used by screen readers. കൊസിക്കന്റ് റേഡിയൻസ് Name for the cosecant function in radians mode. Used by screen readers. കൊസിക്കന്റ് ഗ്രേഡിയൻസ് Name for the cosecant function in gradians mode. Used by screen readers. വിപരീത കൊസിക്കന്റ് ഡിഗ്രികൾ Name for the inverse cosecant function in degrees mode. Used by screen readers. വിപരീത കൊസിക്കന്റ് റേഡിയൻസ് Name for the inverse cosecant function in radians mode. Used by screen readers. വിപരീത കൊസിക്കന്റ് ഗ്രേഡിയൻസ് Name for the inverse cosecant function in gradians mode. Used by screen readers. ഹൈപ്പർബോളിക് കൊസിക്കന്റ് Name for the hyperbolic cosecant function. Used by screen readers. വിപരീത ഹൈപ്പർബോളിക് കൊസിക്കന്റ് Name for the inverse hyperbolic cosecant function. Used by screen readers. കോട്ടാൻജെന്റ് ഡിഗ്രികൾ Name for the cotangent function in degrees mode. Used by screen readers. കോട്ടാൻജെന്റ് റേഡിയൻസ് Name for the cotangent function in radians mode. Used by screen readers. കോട്ടാൻജെന്റ് ഗ്രേഡിയൻസ് Name for the cotangent function in gradians mode. Used by screen readers. വിപരീത കോട്ടാൻജെന്റ് ഡിഗ്രികൾ Name for the inverse cotangent function in degrees mode. Used by screen readers. വിപരീത കോട്ടാൻജെന്റ് റേഡിയൻസ് Name for the inverse cotangent function in radians mode. Used by screen readers. വിപരീത കോട്ടാൻജെന്റ് ഗ്രേഡിയൻസ് Name for the inverse cotangent function in gradians mode. Used by screen readers. ഹൈപ്പർബോളിക് കോട്ടാൻജെന്റ് Name for the hyperbolic cotangent function. Used by screen readers. വിപരീത ഹൈപ്പർബോളിക് കോട്ടാൻജെന്റ് Name for the inverse hyperbolic cotangent function. Used by screen readers. ക്യൂബ് റൂട്ട് Name for the cube root function. Used by screen readers. അടിസ്ഥാന ലോഗ് Name for the logbasey function. Used by screen readers. കേവല മൂല്യം Name for the absolute value function. Used by screen readers. ഇടത് ഷിഫ്‌റ്റ് Name for the programmer function that shifts bits to the left. Used by screen readers. വലത് ഷിഫ്‌റ്റ് Name for the programmer function that shifts bits to the right. Used by screen readers. നിര്‍മ്മാണപരത Name for the factorial function. Used by screen readers. ഡിഗ്രി മിനിറ്റ് സെക്കന്റ് Name for the degree minute second (dms) function. Used by screen readers. സ്വാഭാവിക ലോഗ് Name for the natural log (ln) function. Used by screen readers. സമചതുരം Name for the square function. Used by screen readers. y റൂട്ട് Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 വകുപ്പ് {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft സേവന കരാർ Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. ഇവിടെ നിന്ന് From Date Header for AddSubtract Date Picker കണക്കാക്കൽ ഫലം ഇടത്തേക്ക് സ്ക്രോൾ ചെയ്യുക Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. കണക്കാക്കൽ ഫലം വലത്തേക്ക് സ്ക്രോൾ ചെയ്യുക Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. കണക്കുകൂട്ടൽ പരാജയപ്പെട്ടു Text displayed when the application is not able to do a calculation അടിസ്ഥാന ലോഗ് Y Screen reader prompt for the logBaseY button ത്രികോണമിതി Displayed on the button that contains a flyout for the trig functions in scientific mode. nകാര്യപ്രവർത്തനം Displayed on the button that contains a flyout for the general functions in scientific mode. വ്യത്യാസങ്ങള്‍ Displayed on the button that contains a flyout for the inequality functions. വ്യത്യാസങ്ങൾ Screen reader prompt for the Inequalities button ബിറ്റ്വൈസ് Displayed on the button that contains a flyout for the bitwise functions in programmer mode. ബിറ്റ് ഷിഫ്റ്റ് Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse Function Screen reader prompt for the shift button in the trig flyout in scientific mode. ഹൈപ്പർബോളിക് പ്രവർത്തനം Screen reader prompt for the Calculator button HYP in the scientific flyout keypad സീക്കന്റ് Screen reader prompt for the Calculator button sec in the scientific flyout keypad ഹൈപ്പർബോളിക് സീക്കന്റ് Screen reader prompt for the Calculator button sech in the scientific flyout keypad ആർക്ക് സീക്കന്റ് Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ഹൈപ്പർബോളിക് ആർക്ക് സീക്കന്റ് Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad കൊസിക്കന്റ് Screen reader prompt for the Calculator button csc in the scientific flyout keypad ഹൈപ്പർബോളിക് കൊസിക്കന്റ് Screen reader prompt for the Calculator button csch in the scientific flyout keypad ആർക്ക് കൊസിക്കന്റ് Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ഹൈപ്പർബോളിക് ആർക്ക് കൊസിക്കന്റ് Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad കോട്ടാൻജെന്റ് Screen reader prompt for the Calculator button cot in the scientific flyout keypad ഹൈപ്പർബോളിക് കോട്ടാൻജെന്റ് Screen reader prompt for the Calculator button coth in the scientific flyout keypad ആർക്ക് കോട്ടാൻജെന്റ് Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ഹൈപ്പർബോളിക് ആർക്ക് കോട്ടാൻജെന്റ് Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ഫ്ലോര് Screen reader prompt for the Calculator button floor in the scientific flyout keypad സീലിംഗ് Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad റാൻഡം Screen reader prompt for the Calculator button random in the scientific flyout keypad കേവല മൂല്യം Screen reader prompt for the Calculator button abs in the scientific flyout keypad യൂളറിന്റെ നമ്പർ Screen reader prompt for the Calculator button e in the scientific flyout keypad എക്‌സ്‌പോണന്റിലേക്ക് രണ്ട് Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad നാന്ഡ് Screen reader prompt for the Calculator button nand in the scientific flyout keypad നാന്ഡ് Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. നോർ Screen reader prompt for the Calculator button nor in the scientific flyout keypad നോർ Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. കാരി ഉപയോഗിച്ച് ഇടതുവശത്ത് തിരിക്കുക Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad കാരി ഉപയോഗിച്ച് വലതുവശത്ത് തിരിക്കുക Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad ഇടത് ഷിഫ്റ്റ് Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad ഇടത് ഷിഫ്റ്റ് Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. വലത് ഷിഫ്റ്റ് Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad വലത് ഷിഫ്റ്റ് Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. അരിത്മെറ്റിക് ഷിഫ്റ്റ് Label for a radio button that toggles arithmetic shift behavior for the shift operations. ലോജിക്കൽ ഷിഫ്റ്റ് Label for a radio button that toggles logical shift behavior for the shift operations. സർക്കുലർ ഷിഫ്റ്റ് തിരിക്കുക Label for a radio button that toggles rotate circular behavior for the shift operations. കാരി സർക്കുലർ ഷിഫ്റ്റിലൂടെ തിരിക്കുക Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ക്യൂബ് റൂട്ട് Screen reader prompt for the cube root button on the scientific operator keypad ത്രികോണമിതി Screen reader prompt for the square root button on the scientific operator keypad പ്രവർത്തനങ്ങൾ Screen reader prompt for the square root button on the scientific operator keypad ബിറ്റ്വൈസ് Screen reader prompt for the square root button on the scientific operator keypad ബിറ്റ്ഷിഫ്റ്റ് Screen reader prompt for the square root button on the scientific operator keypad ശാസത്രീയ ഓപ്പറേറ്റർ പാനലുകൾ Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad പ്രോഗ്രാമർ ഓപ്പറേറ്റർ പാനലുകൾ Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ഏറ്റവും പ്രാധാന്യം കൂടിയ ബിറ്റ് Used to describe the last bit of a binary number. Used in bit flip ഗ്രാഫിൽ പകർത്തൽ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. പ്ലോട്ട് Screen reader prompt for the plot button on the graphing calculator operator keypad കാഴ്‌ച സ്വപ്രേരിതമായി പുതുക്കുക (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. ഗ്രാഫ് കാഴ്ച Screen reader prompt for the graph view button. സ്വപ്രേരിതമായി ഏറ്റവും യോജിക്കുന്നത് Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set കരകൃത ക്രമീകരണം Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set ഗ്രാഫ് കാഴ്‌ച പുനഃസജ്ജീകരിച്ചു Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph സൂം ഇൻ ചെയ്യുക (Ctrl + പ്ലസ്) This is the tool tip automation name for the Calculator zoom in button. വലുതാക്കുക Screen reader prompt for the zoom in button. സൂം ഔട്ട് ചെയ്യുക (Ctrl + മൈനസ്) This is the tool tip automation name for the Calculator zoom out button. ചെറുതാക്കുക Screen reader prompt for the zoom out button. സമവാക്യം ചേർക്കുക Placeholder text for the equation input button ഇപ്പോള്‍ പങ്കിടാന്‍ കഴിയുന്നില്ല. If there is an error in the sharing action will display a dialog with this text. ശരി Used on the dismiss button of the share action error dialog. Windows കാല്‍ക്കുലേറ്റര്‍ ഉപയോഗിച്ച് ഞാന്‍ എന്താണ് ഗ്രാഫ് ചെയ്തതെന്ന് നോക്കൂ Sent as part of the shared content. The title for the share. സമവാക്യങ്ങള്‍ Header that appears over the equations section when sharing വേരിയബിളുകള്‍ Header that appears over the variables section when sharing സമവാക്യങ്ങളുള്ള ഒരു ഗ്രാഫിന്റെ ഇമേജ് Alt text for the graph image when output via Share വേരിയബിളുകള്‍ Header text for variables area ഘട്ടം Label text for the step text box കുറഞ്ഞത് Label text for the min text box പരമാവധി Label text for the max text box നിറം Label for the Line Color section of the style picker ശൈലി Label for the Line Style section of the style picker കാര്യപ്രവര് ത്തനം വിശകലനം Title for KeyGraphFeatures Control കാര്യപ്രവര്‍ത്തനത്തിന് സമാന്തര അസംപാതരേഖകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any horizontal asymptotes കാര്യപ്രവര്‍ത്തനത്തിന് ഇൻഫ്ലക്ഷന്‍ പോയിന്റുകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any inflection points കാര്യപ്രവര്‍ത്തനത്തിന് മാക്‌സിമ പോയിന്റുകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any maxima കാര്യപ്രവര്‍ത്തനത്തിന് മിനിമ പോയിന്റുകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any minima സ്ഥിരമായത് String describing constant monotonicity of a function കുറയുന്നത് String describing decreasing monotonicity of a function കാര്യപ്രവര്‍ത്തനത്തിന്റെ ഏകതാനത നിര്‍ണ്ണയിക്കാന്‍ കഴിയില്ല. Error displayed when monotonicity cannot be determined വര്‍ദ്ധിക്കുന്നു String describing increasing monotonicity of a function കാര്യപ്രവര്‍ത്തനത്തിന്റെ ഏകതാനത അജ്ഞാതമാണ്. Error displayed when monotonicity is unknown കാര്യപ്രവര്‍ത്തനത്തിന് ചരിവുള്ള അസംപാതരേഖകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any oblique asymptotes കാര്യപ്രവര്‍ത്തനത്തിന്റെ സമാനത നിര്‍ണ്ണയിക്കാന്‍ കഴിയില്ല. Error displayed when parity is cannot be determined കാര്യപ്രവര്‍ത്തനം ഇരട്ടയാണ്. Message displayed with the function parity is even കാര്യപ്രവര്‍ത്തനം ഇരട്ടയോ ഒറ്റയോ അല്ല. Message displayed with the function parity is neither even nor odd കാര്യപ്രവര്‍ത്തനം ഒറ്റയാണ്. Message displayed with the function parity is odd കാര്യപ്രവര്‍ത്തനത്തിന്റെ സമാനത അജ്ഞാതമാണ്. Error displayed when parity is unknown ഈ കാര്യപ്രവര്‍ത്തനത്തിന് ആനുകാലികത പിന്തുണക്കുന്നില്ല. Error displayed when periodicity is not supported കാര്യപ്രവര്‍ത്തനം ആനുകാലികമല്ല. Message displayed with the function periodicity is not periodic കാര്യപ്രവര്‍ത്തനത്തിന്റെ ആനുകാലികത അജ്ഞാതമാണ്. Message displayed with the function periodicity is unknown ഈ സവിശേഷതകള്‍ കാല്‍‌ക്കുലേറ്റര്‍നായി കണക്കാക്കാനാവുന്നതിനേക്കാളേറേ സങ്കീര്‍ണ്ണമാണ്: Error displayed when analysis features cannot be calculated കാര്യപ്രവര്‍ത്തനത്തിന് ലംബ അസംപാതരേഖകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any vertical asymptotes കാര്യപ്രവര്‍ത്തനത്തിന് X-ഇന്റര്‍സെപ്റ്റുകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any x-intercepts കാര്യപ്രവര്‍ത്തനത്തിന് Y-ഇന്റര്‍സെപ്റ്റുകള്‍ ഒന്നുമില്ല. Message displayed when the graph does not have any y-intercepts ഡൊമൈന്‍ Title for KeyGraphFeatures Domain Property തിരശ്ചീന അനന്തതാസ്‌പർശകങ്ങൾ Title for KeyGraphFeatures Horizontal aysmptotes Property ഇൻഫ്ലക്ഷൻ പോയിന്റുകൾ Title for KeyGraphFeatures Inflection points Property ഈ കാര്യപ്രവര്‍ത്തനത്തിന് വിശകലനം പിന്തുണക്കുന്നില്ല. Error displayed when graph analysis is not supported or had an error. f(x) ഫോർമാറ്റിലെ ഫംഗ്ഷനുകൾക്ക് മാത്രമേ വിശകലനം പിന്തുണയ്ക്കുകയുള്ളൂ. ഉദാഹരണം: y = x Error displayed when graph analysis detects the function format is not f(x). മാക്‌സിമ Title for KeyGraphFeatures Maxima Property മിനിമ Title for KeyGraphFeatures Minima Property ഏകതാനത Title for KeyGraphFeatures Monotonicity Property ചരിവുള്ള അനന്തതാസ്‌പർശകങ്ങൾ Title for KeyGraphFeatures Oblique asymptotes Property സമാനത Title for KeyGraphFeatures Parity Property കാലയളവ് Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. ശ്രേണി Title for KeyGraphFeatures Range Property ലംബ അനന്തതാസ്‌പർശകങ്ങൾ Title for KeyGraphFeatures Vertical asymptotes Property X-ഇന്റര്‍സെപ്റ്റ്‌ Title for KeyGraphFeatures XIntercept Property Y-ഇന്റര്‍സെപ്റ്റ്‌ Title for KeyGraphFeatures YIntercept Property കാര്യപ്രവര്‍ത്തനത്തിന്റെ വിശകലനം നടപ്പിലാക്കാന്‍ കഴിഞ്ഞില്ല. ഈ കാര്യപ്രവര്‍ത്തനത്തിന് ഡൊമൈന്‍ കണക്കാക്കാന്‍ കഴിയില്ല. Error displayed when Domain is not returned from the analyzer. ഈ കാര്യപ്രവര്‍ത്തനത്തിന്റെ ശ്രേണി കണക്കാക്കാന്‍ കഴിയുന്നില്ല. Error displayed when Range is not returned from the analyzer. ഓവർഫ്ലോ (എണ്ണം വളരെ വലുതാണ്) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ഈ സമവാക്യം ഗ്രാഫ് ചെയ്യുന്നതിന് റേഡിയൻസ് മോഡ് ആവശ്യമാണ്. Error that occurs during graphing when radians is required. ഗ്രാഫിന് ഈ പ്രവർത്തനം വളരെ സങ്കീർണ്ണമാണ് Error that occurs during graphing when the equation is too complex. ഈ സമവാക്യം ഗ്രാഫ് ചെയ്യുന്നതിന് ഡിഗ്രി മോഡ് ആവശ്യമാണ്. Error that occurs during graphing when degrees is required ഏകാദി പ്രവർത്തനത്തിന് അസാധുവായ ഒരു വാദം ഉണ്ട് Error that occurs during graphing when a factorial function has an invalid argument. ഏകാദി പ്രവർത്തനത്തിന് ഒരു വാദം ഉണ്ട്, അത് ഗ്രാഫിന് വളരെ വലുതാണ് Error that occurs during graphing when a factorial has a large n മൊഡ്യൂളോ മുഴുവൻ അക്കങ്ങളിൽ മാത്രമേ ഉപയോഗിക്കാൻ കഴിയൂ Error that occurs during graphing when modulo is used with a float. സമവാക്യത്തിന് പരിഹാരമില്ല Error that occurs during graphing when the equation has no solution. പൂജ്യമുപയോഗിച്ച് വിഭജിക്കാനാവില്ല Error that occurs during graphing when a divison by zero occurs. സമവാക്യത്തിൽ തമ്മിൽ തമ്മിൽ പ്രത്യേകമായ ലോജിക്കൽ വ്യവസ്ഥകൾ അടങ്ങിയിരിക്കുന്നു Error that occurs during graphing when mutually exclusive conditions are used. സമവാക്യം ഡൊമെയ്നിന് പുറത്താണ് Error that occurs during graphing when the equation is out of domain. ഈ സമവാക്യം ഗ്രാഫിൽ പകർത്തുന്നതിന് പിന്തുണയില്ല Error that occurs during graphing when the equation is not supported. സമവാക്യത്തിന് ഒരു തുറക്കുന്ന പരാൻതീസിസ് കാണുന്നില്ല Error that occurs during graphing when the equation is missing a ( സമവാക്യത്തിന് ഒരു പരാൻതീസിസ് വലയം കാണുന്നില്ല Error that occurs during graphing when the equation is missing a ) ഒരു സംഖ്യയിൽ വളരെയധികം ദശാംശ പോയിന്റുകൾ ഉണ്ട് Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 ഒരു ദശാംശ പോയിന്റിൽ അക്കങ്ങൾ കാണുന്നില്ല Error that occurs during graphing with a decimal point without digits ഗണനപ്രയോഗത്തിന്റെ അപ്രതീക്ഷത അവസാനം Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* ഗണനപ്രയോഗത്തിലെ അപ്രതീക്ഷിത പ്രതീകങ്ങൾ Error that occurs during graphing when there is an unexpected token. ഗണനപ്രയോഗത്തിലെ അസാധുവായ പ്രതീകങ്ങൾ Error that occurs during graphing when there is an invalid token. വളരെയധികം തുല്യ ചിഹ്നങ്ങൾ ഉണ്ട് Error that occurs during graphing when there are too many equals. പ്രവർത്തനം കുറഞ്ഞത് ഒരു x അല്ലെങ്കിൽ y വേരിയബിൾ അടങ്ങിയിരിക്കണം Error that occurs during graphing when the equation is missing x or y. അസാധുവായ ഗണനപ്രയോഗം Error that occurs during graphing when an invalid syntax is used. ഗണനപ്രയോഗം ശൂന്യമാണ് Error that occurs during graphing when the expression is empty സമവാക്യം ഇല്ലാതെ സമം ഉപയോഗിച്ചു Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) പ്രവർത്തന നാമത്തിന് ശേഷം പരാൻതീസിസ് ലഭ്യമല്ല Error that occurs during graphing when parenthesis are missing after a function. ഒരു ഗണിത പ്രവർത്തനത്തിന് തെറ്റായ പാരാമീറ്ററുകൾ ഉണ്ട് Error that occurs during graphing when a function has the wrong number of parameters ഒരു വേരിയബിൾ നാമം അസാധുവാണ് Error that occurs during graphing when a variable name is invalid. സമവാക്യത്തിന് ഒരു തുറക്കുന്ന വലയം കാണുന്നില്ല Error that occurs during graphing when a { is missing സമവാക്യത്തിന് ഒരു അടയ്ക്കൽ വലയം കാണുന്നില്ല Error that occurs during graphing when a } is missing. "i", "I" എന്നിവ വേരിയബിൾ നാമങ്ങളായി ഉപയോഗിക്കാൻ കഴിയില്ല Error that occurs during graphing when i or I is used. സമവാക്യം ഗ്രാഫ് ചെയ്യാൻ കഴിഞ്ഞില്ല General error that occurs during graphing. തന്നിരിക്കുന്ന അടിസ്ഥാനത്തിനായി അക്കം പരിഹരിക്കാൻ കഴിഞ്ഞില്ല Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). അടിസ്ഥാനം 2 നേക്കാൾ വലുതും 36 ൽ താഴെയുമായിരിക്കണം Error that occurs during graphing when the base is out of range. ഒരു ഗണിത പ്രവർത്തനത്തിന് അതിന്റെ പാരാമീറ്ററുകളിൽ ഒന്ന് വേരിയബിൾ ആയിരിക്കണം Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. സമവാക്യം യുക്തിപരം, സ്കാലർ ഓപ്പറാൻഡുകൾ കൂട്ടിക്കലർത്തുകയാണ് Error that occurs during graphing when operands are mixed. Such as true and 1. മുകളിലോ താഴെയോയുള്ള പരിധിയിൽ x അല്ലെങ്കിൽ y ഉപയോഗിക്കാൻ കഴിയില്ല Error that occurs during graphing when x or y is used in integral upper limits. x അല്ലെങ്കിൽ y പരിധി പോയിന്റിൽ ഉപയോഗിക്കാൻ കഴിയില്ല Error that occurs during graphing when x or y is used in the limit point. സങ്കീർണ്ണമായ അനന്തത ഉപയോഗിക്കാൻ കഴിയില്ല Error that occurs during graphing when complex infinity is used അസമത്വങ്ങളിൽ സങ്കീർണ്ണ സംഖ്യകൾ ഉപയോഗിക്കാൻ കഴിയില്ല Error that occurs during graphing when complex numbers are used in inequalities. കാര്യപ്രവർത്തന ലിസ്റ്റിലേക്ക് മടങ്ങുക This is the tooltip for the back button in the equation analysis page in the graphing calculator കാര്യപ്രവർത്തന ലിസ്റ്റിലേക്ക് മടങ്ങുക This is the automation name for the back button in the equation analysis page in the graphing calculator കാര്യപ്രവര് ത്തനം വിശകലനം ചെയ്യുക This is the tooltip for the analyze function button കാര്യപ്രവര് ത്തനം വിശകലനം ചെയ്യുക This is the automation name for the analyze function button കാര്യപ്രവര് ത്തനം വിശകലനം ചെയ്യുക This is the text for the for the analyze function context menu command സമവാക്യം നീക്കം ചെയ്യുക This is the tooltip for the graphing calculator remove equation buttons സമവാക്യം നീക്കം ചെയ്യുക This is the automation name for the graphing calculator remove equation buttons സമവാക്യം നീക്കം ചെയ്യുക This is the text for the for the remove equation context menu command പങ്കിടുക This is the automation name for the graphing calculator share button. പങ്കിടുക This is the tooltip for the graphing calculator share button. സമവാക്യ ശൈലി മാറ്റുക This is the tooltip for the graphing calculator equation style button സമവാക്യ ശൈലി മാറ്റുക This is the automation name for the graphing calculator equation style button സമവാക്യ ശൈലി മാറ്റുക This is the text for the for the equation style context menu command സമവാക്യം കാണിക്കുക This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. സമവാക്യം മറയ്ക്കുക This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. സമവാക്യം %1 കാണിക്കുക {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. സമവാക്യം %1 മറയ്ക്കുക {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. കണ്ടെത്തല്‍ നിര്‍ത്തുക This is the tooltip/automation name for the graphing calculator stop tracing button കണ്ടെത്തല്‍ തുടങ്ങുക This is the tooltip/automation name for the graphing calculator start tracing button ഗ്രാഫ് കാണിക്കുന്ന വിൻഡോ, %1, %2 ബൗണ്ടഡ് ആയ എക്സ്-ആക്സിസ്, %3, %4 ബൗണ്ടഡ് ആയ വൈയ്-ആക്സിസ്, %5 ഈക്വാഷനുകൾ കാണിക്കുന്നു {Locked="%1","%2", "%3", "%4", "%5"}. സ്ലൈഡര്‍ കോണ്‍ഫിഗര്‍ ചെയ്യുക This is the tooltip text for the slider options button in Graphing Calculator സ്ലൈഡര്‍ കോണ്‍ഫിഗര്‍ ചെയ്യുക This is the automation name text for the slider options button in Graphing Calculator സമവാക്യ മോഡിലേക്ക് മാറുക Used in Graphing Calculator to switch the view to the equation mode ഗ്രാഫ് മോഡിലേക്ക് മാറുക Used in Graphing Calculator to switch the view to the graph mode സമവാക്യ മോഡിലേക്ക് മാറുക Used in Graphing Calculator to switch the view to the equation mode നിലവിലെ മോഡ് സമവാക്യ മോഡ് ആണ് Announcement used in Graphing Calculator when switching to the equation mode നിലവിലെ മോഡ് ഗ്രാഫ് മോഡ് ആണ്‌ Announcement used in Graphing Calculator when switching to the graph mode ജാലക Heading for window extents on the settings ഡിഗ്രികള്‍ Degrees mode on settings page ഗ്രേഡിയനുകള്‍ Gradian mode on settings page റേഡിയനുകള്‍ Radians mode on settings page യൂണിറ്റുകള്‍ Heading for Unit's on the settings കാഴ്ച പുനഃസജ്ജീകരിക്കുക Hyperlink button to reset the view of the graph X-പരമാവധി X maximum value header X-കുറഞ്ഞത് X minimum value header Y-പരമാവധി Y Maximum value header Y-കുറഞ്ഞത് Y minimum value header ഗ്രാഫ് ഐച്ഛികങ്ങൾ This is the tooltip text for the graph options button in Graphing Calculator ഗ്രാഫ് ഐച്ഛികങ്ങൾ This is the automation name text for the graph options button in Graphing Calculator ഗ്രാഫ് ഐച്ഛികങ്ങൾ Heading for the Graph options flyout in Graphing mode. വേരിയബിള്‍ ഐച്ഛികങ്ങൾ Screen reader prompt for the variable settings toggle button വേരിയബിള്‍ ഐച്ഛികങ്ങൾ ടോഗിൾ ചെയ്യുക Tool tip for the variable settings toggle button ലൈനിന്റെ ഘനം Heading for the Graph options flyout in Graphing mode. ലൈൻ ഐച്ഛികങ്ങൾ Heading for the equation style flyout in Graphing mode. ചെറിയ ലൈൻ വീതി Automation name for line width setting ഇടത്തരം ലൈൻ വീതി Automation name for line width setting വലിയ ലൈൻ വീതി Automation name for line width setting വളരെ വലിയ ലൈൻ വീതി Automation name for line width setting ഗണനപ്രയോഗം നല് കുക this is the placeholder text used by the textbox to enter an equation പകർത്തുക Copy menu item for the graph context menu മുറിക്കുക Cut menu item from the Equation TextBox പകർത്തുക Copy menu item from the Equation TextBox ഒട്ടിക്കുക Paste menu item from the Equation TextBox പൂർവ്വാവസ്ഥയിലാക്കുക Undo menu item from the Equation TextBox എല്ലാം തിരഞ്ഞെടുക്കുക Select all menu item from the Equation TextBox ഫംഗ്‌ഷന്‍ ഇൻപുട്ട് The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. ഫംഗ്‌ഷന്‍ ഇൻപുട്ട് The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. കാര്യപ്രവർത്തന ഇൻപുട്ട് പാനൽ The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. വേരിയബിൾ പാനൽ The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. വേരിയബിൾ ലിസ്റ്റ് The automation name for the Variable ListView that is shown when Calculator is in graphing mode. വേരിയബിൾ %1 ലിസ്റ്റ് ഇനം The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. വേരിയബിൾ മൂല്യ ടെക്സ്റ്റ്ബോക്സ് The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. വേരിയബിൾ മൂല്യ സ്ലൈഡർ The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. വേരിയബിൾ പരിമിത മൂല്യ ടെക്സ്റ്റ്ബോക്സ് The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. വേരിയബിൾ സ്റ്റെപ്പ് മൂല്യ ടെക്സ്റ്റ്ബോക്സ് The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. വേരിയബിൾ പരമാവധി മൂല്യ ടെക്സ്റ്റ്ബോക്സ് The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ദൃഢമായ ലൈൻ ശൈലി Name of the solid line style for a graphed equation ഡോട്ട് ലൈൻ ശൈലി Name of the dotted line style for a graphed equation ഡാഷ് ലൈന്‍ ശൈലി Name of the dashed line style for a graphed equation നേവി ബ്ലൂ Name of color in the color picker സീഫോം Name of color in the color picker വയലറ്റ് Name of color in the color picker പച്ച Name of color in the color picker മിന്റ് ഗ്രീൻ Name of color in the color picker കടും പച്ച Name of color in the color picker ചാർക്കോൾ Name of color in the color picker ചുവപ്പ് Name of color in the color picker പ്ലം ലൈറ്റ് Name of color in the color picker മജന്ത Name of color in the color picker യെല്ലോ ഗോൾഡ് Name of color in the color picker ഓറഞ്ച് ബ്രൈറ്റ് Name of color in the color picker ബ്രൗൺ Name of color in the color picker കറുപ്പ് Name of color in the color picker വെളുപ്പ് Name of color in the color picker വർണ്ണം 1 Name of color in the color picker വർണ്ണം 2 Name of color in the color picker വർണ്ണം 3 Name of color in the color picker വർണ്ണം 4 Name of color in the color picker ഗ്രാഫ് തീം Graph settings heading for the theme options എപ്പോഴും ഇളം Graph settings option to set graph to light theme ആപ്പ് തീം പൊരുത്തം Graph settings option to set graph to match the app theme തീം This is the automation name text for the Graph settings heading for the theme options എപ്പോഴും ഇളം This is the automation name text for the Graph settings option to set graph to light theme ആപ്പ് തീം പൊരുത്തം This is the automation name text for the Graph settings option to set graph to match the app theme കാര്യപ്രവര്‍ത്തനം നീക്കംചെയ്തു Announcement used in Graphing Calculator when a function is removed from the function list കാര്യപ്രവർത്തന വിശകലന സമവാക്യ ബോക്സ് This is the automation name text for the equation box in the function analysis panel സമം Screen reader prompt for the equal button on the graphing calculator operator keypad ഇനിപ്പറയുന്നതിലും കുറവ് Screen reader prompt for the Less than button ഇനിപ്പറയുന്നതിനേക്കാള്‍ കുറവ് അല്ലെങ്കിൽ തുല്യം Screen reader prompt for the Less than or equal button തുല്യം Screen reader prompt for the Equal button ഇനിപ്പറയുന്നതിനേക്കാള്‍ കൂടുതല്‍ അല്ലെങ്കിൽ തുല്യം Screen reader prompt for the Greater than or equal button ഇനിപ്പറയുന്നതിനേക്കാൾ കൂടുതലാണ് Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad സമർപ്പിക്കുക Screen reader prompt for the submit button on the graphing calculator operator keypad കാര്യപ്രവർത്തനം വിശകലനം Screen reader prompt for the function analysis grid ഗ്രാഫ് ഐച്ഛികങ്ങൾ Screen reader prompt for the graph options panel ചരിത്രവും മെമ്മറി ലിസ്റ്റുകളും Automation name for the group of controls for history and memory lists. മെമ്മറി ലിസ്റ്റ് Automation name for the group of controls for memory list. ചരിത്ര സ്ലോട്ട് %1 മായ്ച്ചു {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". എല്ലായ്പ്പോഴും മുകളിലുള്ള കാൽക്കുലേറ്റർ Announcement to indicate calculator window is always shown on top. കാൽക്കുലേറ്റർ പൂർണ്ണ കാഴ്ചയിലേക്ക് മടങ്ങുക Announcement to indicate calculator window is now back to full view. അരിത്‌മെറ്റിക്ക് ഷിഫ്റ്റ് തിരഞ്ഞെടുത്തു Label for a radio button that toggles arithmetic shift behavior for the shift operations. ലോജിക്കൽ ഷിഫ്റ്റ് തിരഞ്ഞെടുത്തു Label for a radio button that toggles logical shift behavior for the shift operations. തിരഞ്ഞെടുത്ത സർക്കുലർ ഷിഫ്റ്റ് തിരിക്കുക Label for a radio button that toggles rotate circular behavior for the shift operations. തിരഞ്ഞെടുത്ത കാരി സർക്കുലർ ഷിഫ്റ്റിലൂടെ തിരിക്കുക Label for a radio button that toggles rotate circular with carry behavior for the shift operations. ക്രമീകരണം Header text of Settings page പ്രത്യക്ഷത Subtitle of appearance setting on Settings page ആപ്പ് തീം Title of App theme expander ഏത് ആപ്പ് തീം പ്രദർശിപ്പിക്കണമെന്ന് തിരഞ്ഞെടുക്കുക Description of App theme expander ലൈറ്റ് Lable for light theme option ഇരുണ്ടത് Lable for dark theme option സിസ്റ്റം ക്രമീകരണം ഉപയോഗിക്കുക Lable for the app theme option to use system setting പിന്നിലേക്ക് Screen reader prompt for the Back button in title bar to back to main page സജ്ജീകരണ പേജ് Announcement used when Settings page is opened ലഭ്യമായ പ്രവർത്തനങ്ങൾക്കായി സന്ദർഭ മെനു തുറക്കുക Screen reader prompt for the context menu of the expression box ശരി The text of OK button to dismiss an error dialog. ഈ സ്നാപ്പ്ഷോട്ട് പുനഃസ്ഥാപിക്കാനായില്ല. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ms-MY/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Input tidak sah Error message shown when the input makes a function fail, like log(-1) Hasil tidak ditakrif Error message shown when there's no possible value for a function. Memori tidak mencukupi Error message shown when we run out of memory during a calculation. Limpahan Error message shown when there's an overflow during the calculation. Hasil tidak ditakrif Same as 101 Hasil tidak ditakrif Same 101 Limpahan Same as 107 Limpahan Same 107 Tidak boleh dibahagikan dengan sifar Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ms-MY/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kalkulator Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Kalkulator Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Salin Copy context menu string Tampal Paste context menu string Kira-kira sama dengan The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, nilai %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) Ke-63 Sub-string used in automation name for 63 bit in bit flip Ke-62 Sub-string used in automation name for 62 bit in bit flip Ke-61 Sub-string used in automation name for 61 bit in bit flip Ke-60 Sub-string used in automation name for 60 bit in bit flip Ke-59 Sub-string used in automation name for 59 bit in bit flip Ke-58 Sub-string used in automation name for 58 bit in bit flip Ke-57 Sub-string used in automation name for 57 bit in bit flip Ke-56 Sub-string used in automation name for 56 bit in bit flip Ke-55 Sub-string used in automation name for 55 bit in bit flip Ke-54 Sub-string used in automation name for 54 bit in bit flip Ke-53 Sub-string used in automation name for 53 bit in bit flip Ke-52 Sub-string used in automation name for 52 bit in bit flip Ke-51 Sub-string used in automation name for 51 bit in bit flip Ke-50 Sub-string used in automation name for 50 bit in bit flip Ke-49 Sub-string used in automation name for 49 bit in bit flip Ke-48 Sub-string used in automation name for 48 bit in bit flip Ke-47 Sub-string used in automation name for 47 bit in bit flip Ke-46 Sub-string used in automation name for 46 bit in bit flip Ke-45 Sub-string used in automation name for 45 bit in bit flip Ke-44 Sub-string used in automation name for 44 bit in bit flip Ke-43 Sub-string used in automation name for 43 bit in bit flip Ke-42 Sub-string used in automation name for 42 bit in bit flip Ke-41 Sub-string used in automation name for 41 bit in bit flip Ke-40 Sub-string used in automation name for 40 bit in bit flip Ke-39 Sub-string used in automation name for 39 bit in bit flip Ke-38 Sub-string used in automation name for 38 bit in bit flip Ke-37 Sub-string used in automation name for 37 bit in bit flip Ke-36 Sub-string used in automation name for 36 bit in bit flip Ke-35 Sub-string used in automation name for 35 bit in bit flip Ke-34 Sub-string used in automation name for 34 bit in bit flip Ke-33 Sub-string used in automation name for 33 bit in bit flip Ke-32 Sub-string used in automation name for 32 bit in bit flip Ke-31 Sub-string used in automation name for 31 bit in bit flip Ke-30 Sub-string used in automation name for 30 bit in bit flip Ke-29 Sub-string used in automation name for 29 bit in bit flip Ke-28 Sub-string used in automation name for 28 bit in bit flip Ke-27 Sub-string used in automation name for 27 bit in bit flip Ke-26 Sub-string used in automation name for 26 bit in bit flip Ke-25 Sub-string used in automation name for 25 bit in bit flip Ke-24 Sub-string used in automation name for 24 bit in bit flip Ke-23 Sub-string used in automation name for 23 bit in bit flip Ke-22 Sub-string used in automation name for 22 bit in bit flip Ke-21 Sub-string used in automation name for 21 bit in bit flip Ke-20 Sub-string used in automation name for 20 bit in bit flip Ke-19 Sub-string used in automation name for 19 bit in bit flip Ke-18 Sub-string used in automation name for 18 bit in bit flip Ke-17 Sub-string used in automation name for 17 bit in bit flip Ke-16 Sub-string used in automation name for 16 bit in bit flip Ke-15 Sub-string used in automation name for 15 bit in bit flip Ke-14 Sub-string used in automation name for 14 bit in bit flip Ke-13 Sub-string used in automation name for 13 bit in bit flip Ke-12 Sub-string used in automation name for 12 bit in bit flip Ke-11 Sub-string used in automation name for 11 bit in bit flip Ke-10 Sub-string used in automation name for 10 bit in bit flip Ke-9 Sub-string used in automation name for 9 bit in bit flip Ke-8 Sub-string used in automation name for 8 bit in bit flip Ke-7 Sub-string used in automation name for 7 bit in bit flip Ke-6 Sub-string used in automation name for 6 bit in bit flip Ke-5 Sub-string used in automation name for 5 bit in bit flip Ke-4 Sub-string used in automation name for 4 bit in bit flip Ke-3 Sub-string used in automation name for 3 bit in bit flip Ke-2 Sub-string used in automation name for 2 bit in bit flip Pertama Sub-string used in automation name for 1 bit in bit flip bit ketara paling kurang Used to describe the first bit of a binary number. Used in bit flip Buka flyout memori This is the automation name and label for the memory button when the memory flyout is closed. Tutup flyout memori This is the automation name and label for the memory button when the memory flyout is open. Kekal di atas This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Kembali ke pandangan penuh This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memori This is the tool tip automation name for the memory button. Sejarah (Ctrl+H) This is the tool tip automation name for the history button. Papan kekunci togol bit This is the tool tip automation name for the bitFlip button. Papan kekunci penuh This is the tool tip automation name for the numberPad button. Kosongkan semua memori (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memori The text that shows as the header for the memory list Memori The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Sejarah The text that shows as the header for the history list Sejarah The automation name for the History pivot item that is shown when Calculator is in wide layout. Penukar Label for a control that activates the unit converter mode. Saintifik Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Mod penukar Screen reader prompt for a control that activates the unit converter mode. Mod saintifik Screen reader prompt for a control that activates scientific mode calculator layout Mod standard Screen reader prompt for a control that activates standard mode calculator layout. Kosongkan semua sejarah "ClearHistory" used on the calculator history pane that stores the calculation history. Kosongkan semua sejarah This is the tool tip automation name for the Clear History button. Sembunyi "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Saintifik The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Pengatur cara The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Penukar The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Penukar The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Penukar Pluralized version of the converter group text, used for the screen reader prompt. Kalkulator Pluralized version of the calculator group text, used for the screen reader prompt. Paparan ialah %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Ungkapan ialah %1, Input semasa ialah %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Paparan ialah %1 perpuluhan {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Ungkapan ialah %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Nilai paparan disalin ke papan klip Screen reader prompt for the Calculator display copy button, when the button is invoked. Sejarah Screen reader prompt for the history flyout Memori Screen reader prompt for the memory flyout Perenambelasan %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Perpuluhan %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Perlapanan %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binari %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Kosongkan semua sejarah Screen reader prompt for the Calculator History Clear button Sejarah dikosongkan Screen reader prompt for the Calculator History Clear button, when the button is invoked. Sembunyi sejarah Screen reader prompt for the Calculator History Hide button Buka flyout sejarah Screen reader prompt for the Calculator History button, when the flyout is closed. Tutup flyout sejarah Screen reader prompt for the Calculator History button, when the flyout is open. Stor memori Screen reader prompt for the Calculator Memory button Simpan memori (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Kosongkan semua memori Screen reader prompt for the Calculator Clear Memory button Memori dikosongkan Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Tarik balik memori Screen reader prompt for the Calculator Memory Recall button Pulih kembali memori (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Tambah memori Screen reader prompt for the Calculator Memory Add button Tambah memori (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Tolak memori Screen reader prompt for the Calculator Memory Subtract button Tolak memori (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Kosongkan item memori Screen reader prompt for the Calculator Clear Memory button Kosongkan item memori This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Tambah ke item memori Screen reader prompt for the Calculator Memory Add button in the Memory list Tambah ke item memori This is the tool tip automation name for the Calculator Memory Add button in the Memory list Tolak daripada item memori Screen reader prompt for the Calculator Memory Subtract button in the Memory list Tolak daripada item memori This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Kosongkan item memori Screen reader prompt for the Calculator Clear Memory button Kosongkan item memori Text string for the Calculator Clear Memory option in the Memory list context menu Tambah ke item memori Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Tambah ke item memori Text string for the Calculator Memory Add option in the Memory list context menu Tolak daripada item memori Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Tolak daripada item memori Text string for the Calculator Memory Subtract option in the Memory list context menu Padam Text string for the Calculator Delete swipe button in the History list Salin Text string for the Calculator Copy option in the History list context menu Padam Text string for the Calculator Delete option in the History list context menu Padam sejarah item Screen reader prompt for the Calculator Delete swipe button in the History list Padam sejarah item Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Sifar Screen reader prompt for the Calculator number "0" button Satu Screen reader prompt for the Calculator number "1" button Dua Screen reader prompt for the Calculator number "2" button Tiga Screen reader prompt for the Calculator number "3" button Empat Screen reader prompt for the Calculator number "4" button Lima Screen reader prompt for the Calculator number "5" button Enam Screen reader prompt for the Calculator number "6" button Tujuh Screen reader prompt for the Calculator number "7" button Lapan Screen reader prompt for the Calculator number "8" button Sembilan Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Dan Screen reader prompt for the Calculator And button Atau Screen reader prompt for the Calculator Or button Bukan Screen reader prompt for the Calculator Not button Putar kiri Screen reader prompt for the Calculator ROL button Putar kanan Screen reader prompt for the Calculator ROR button Shift kiri Screen reader prompt for the Calculator LSH button Shift kanan Screen reader prompt for the Calculator RSH button Eksklusif atau Screen reader prompt for the Calculator XOR button Togol Perkataan Empat Kali Ganda Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Togol Perkataan Berganda Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Togol perkataan Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Togol bait Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Papan kekunci togol bit Screen reader prompt for the Calculator bitFlip button Papan kekunci penuh Screen reader prompt for the Calculator numberPad button Pemisah perpuluhan Screen reader prompt for the "." button Kosongkan entri Screen reader prompt for the "CE" button Kosongkan Screen reader prompt for the "C" button Bahagi dengan Screen reader prompt for the divide button on the number pad Darab dengan Screen reader prompt for the multiply button on the number pad Bersamaan Screen reader prompt for the equals button on the scientific operator keypad Fungsi songsang Screen reader prompt for the shift button on the number pad in scientific mode. Tolak Screen reader prompt for the minus button on the number pad Tolak We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Tambah Screen reader prompt for the plus button on the number pad Punca kuasa dua Screen reader prompt for the square root button on the scientific operator keypad Peratus Screen reader prompt for the percent button on the scientific operator keypad Positif negatif Screen reader prompt for the negate button on the scientific operator keypad Positif negatif Screen reader prompt for the negate button on the converter operator keypad Salingan Screen reader prompt for the invert button on the scientific operator keypad Tanda kurungan kiri Screen reader prompt for the Calculator "(" button on the scientific operator keypad Tanda kurung kiri, kiraan tanda kurung terbuka %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Tanda kurungan kanan Screen reader prompt for the Calculator ")" button on the scientific operator keypad Buka kiraan kurungan %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Tiada kurungan terbuka untuk ditutup. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Tatatanda saintifik Screen reader prompt for the Calculator F-E the scientific operator keypad Fungsi hiperbola Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangen Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperbolaan Screen reader prompt for the Calculator sinh button on the scientific operator keypad Kosinus hiperbolaan Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangen hiperbolaan Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kuasa dua Screen reader prompt for the x squared on the scientific operator keypad. Kiub Screen reader prompt for the x cubed on the scientific operator keypad. Lengkok sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Lengkok kosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Lengkok tangen Screen reader prompt for the inverted tan on the scientific operator keypad. Lengkok sinus hiperbolaan Screen reader prompt for the inverted sinh on the scientific operator keypad. Lengkok kosinus hiperbolaan Screen reader prompt for the inverted cosh on the scientific operator keypad. Lengkok tangen hiperbolaan Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' dikuasakan Screen reader prompt for x power y button on the scientific operator keypad. Sepuluh dikuasakan Screen reader prompt for the 10 power x button on the scientific operator keypad. ’e‘ dikuasakan Screen reader for the e power x on the scientific operator keypad. punca kuasa 'y' bagi 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Log Natural Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Eksponen Screen reader for the exp button on the scientific operator keypad Darjah minit saat Screen reader for the exp button on the scientific operator keypad Darjah Screen reader for the exp button on the scientific operator keypad Bahagian integer Screen reader for the int button on the scientific operator keypad Bahagian pecahan Screen reader for the frac button on the scientific operator keypad Faktorial Screen reader for the factorial button on the basic operator keypad Togol darjah This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Togol gradian This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Togol radian This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Juntai bawah mod Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Juntai bawah kategori Screen reader prompt for the Categories dropdown field. Kekal di atas Screen reader prompt for the Always-on-Top button when in normal mode. Kembali ke pandangan penuh Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Kekal di atas (Alt+Anak panah Ke Atas) This is the tool tip automation name for the Always-on-Top button when in normal mode. Kembali kepada pandangan penuh (Alt+Anak panah Ke Bawah) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Tukar daripada %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Tukar daripada %1 perpuluhan %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Tukar kepada %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ialah %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unit input Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unit output Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Kawasan Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Tenaga Unit conversion category name called Energy. (eg. the energy in a battery or in food) Panjang Unit conversion category name called Length Kuasa Unit conversion category name called Power (eg. the power of an engine or a light bulb) Kelajuan Unit conversion category name called Speed Masa Unit conversion category name called Time Isi padu Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Suhu Unit conversion category name called Temperature Berat dan jisim Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tekanan Unit conversion category name called Pressure Sudut Unit conversion category name called Angle Mata wang Unit conversion category name called Currency Auns bendalir (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Auns bendalir (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (AS) An abbreviation for a measurement unit of volume Gelen (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Gelen (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (AS) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililiter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pain (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pain (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (AS) An abbreviation for a measurement unit of volume Sudu besar (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sudu besar (AS) An abbreviation for a measurement unit of volume Sudu kecil (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sudu kecil (AS) An abbreviation for a measurement unit of volume Sudu besar (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sudu besar (UK) An abbreviation for a measurement unit of volume Sudu kecil (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sudu kecil (UK) An abbreviation for a measurement unit of volume Kuart (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Kuart (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (AS) An abbreviation for a measurement unit of volume Cawan (AS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cawan (AS) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ka³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume ela³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ka An abbreviation for a measurement unit of length ka/s An abbreviation for a measurement unit of speed ka•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (AS) An abbreviation for a measurement unit of power jam An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWj An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/j An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ka•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ka² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power mgu An abbreviation for a measurement unit of time ela An abbreviation for a measurement unit of length thn An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Ekar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unit terma British A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minit A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori terma A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter per saat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter padu A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki padu A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci padu A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter padu A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ela padu A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hari A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Volt elektron A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki sesaat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki-paun A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki-paun/minit A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuasa Kuda (AS) A measurement unit for power Jam A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-jam A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori makanan A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer sejam A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knot A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter sesaat A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosaat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batu A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batu sejam A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisaat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minit A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Menggigit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batu nautika A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Saat A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sentimeter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kaki persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inci persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Batu persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimeter persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ela persegi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minggu A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ela A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tahun A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight darjah An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tan (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tan (AS) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Darjah A measurement unit for Angle. Radian A measurement unit for Angle. Gradian A measurement unit for Angle. Atmosfera A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Milimeter merkuri A measurement unit for Pressure. Pascal A measurement unit for Pressure. Paun per inci persegi A measurement unit for Pressure. Sentigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Desigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tan panjang (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Auns A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Paun A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tan pendek (AS) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ston A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tan metrik A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) padang bola sepak A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) padang bola sepak A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cakera liut A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cakera liut A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateri AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateri AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) klip kertas A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) klip kertas A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mentol lampu A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mentol lampu A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuda A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuda A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tab mandi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tab mandi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) emping salji A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) emping salji A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gajah An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gajah An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) penyu A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) penyu A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jet A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paus A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paus A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cawan kopi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cawan kopi A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kolam renang An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kolam renang An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tangan A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tangan A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lembaran kertas A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lembaran kertas A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) istana A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) istana A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pisang A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pisang A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) potongan kek A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) potongan kek A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) enjin kereta api A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) enjin kereta api A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bola sepak A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bola sepak A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Item memori Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Ke Belakang Screen reader prompt for the About panel back button Ke Belakang Content of tooltip being displayed on AboutControlBackButton Syarat Pelesenan Perisian Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Pratonton Label displayed next to upcoming features Pernyataan Privasi Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Hak cipta terpelihara. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Untuk mengetahui cara anda boleh menyumbang kepada Kalkulator Windows, lihat projek pada %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Perihal Subtitle of about message on Settings page Hantar maklum balas The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Belum ada sejarah lagi. The text that shows as the header for the history list Tiada apa-apa yang disimpan dalam memori. The text that shows as the header for the memory list Memori Screen reader prompt for the negate button on the converter operator keypad Ungkapan ini tidak dapat ditampal The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibait A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pengiraan tarikh Mod pengiraan Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Tambah Add toggle button text Tambah atau tolak hari Add or Subtract days option Tarikh Date result label Perbezaan antara tarikh Date difference option Hari Add/Subtract Days label Perbezaan Difference result label Daripada From Date Header for Difference Date Picker Bulan Add/Subtract Months label Tolak Subtract toggle button text Kepada To Date Header for Difference Date Picker Tahun Add/Subtract Years label Tarikh di luar Sempadan Out of bound message shown as result when the date calculation exceeds the bounds hari hari bulan bulan Tarikh yang sama minggu minggu tahun tahun Perbezaan %1 Automation name for reading out the date difference. %1 = Date difference Tarikh yang terhasil %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Mod kalkulator %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Mod penukar %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mod pengiraan tarikh Automation name for when the mode header is focused and the current mode is Date calculation. Senarai Sejarah dan Memori Automation name for the group of controls for history and memory lists. Kawalan memori Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Fungsi standard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kawalan paparan Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Pengendali standard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Pad nombor Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Pengendali sudut Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Fungsi saintifik Automation name for the group of Scientific functions. Pemilihan radiks Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Pengendali pengatur cara Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Pilihan mod input Automation name for the group of input mode toggling buttons. Papan kekunci togol bit Automation name for the group of bit toggling buttons. Skrol ungkapan ke kiri Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Skrol ungkapan ke kanan Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Digit maks dicapai. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 disimpan ke memori {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Slot memori %1 ialah %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Slot memori %1 dikosongkan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". bahagi dengan Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. darab Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. tolak Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. tambah Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. dengan kuasa Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. punca kuasa y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. anjak kiri Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. anjak kanan Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. atau Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x atau Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. dan Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Dikemas kini %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Kemas kini kadar The text displayed for a hyperlink button that refreshes currency converter ratios. Caj data mungkin dikenakan. The text displayed when users are on a metered connection and using currency converter. Tidak dapat mendapatkan kadar baharu. Cuba lagi kemudian. The text displayed when currency ratio data fails to load. Luar talian. Sila semak%HL%Tetapan Rangkaian%HL% anda Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Mengemas kini kadar mata wang This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Kadar mata wang dikemas kini This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Tidak dapat mengemas kini kadar This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Kosongkan semua memori (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Kosongkan semua memori Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} darjah sinus Name for the sine function in degrees mode. Used by screen readers. radian sinus Name for the sine function in radians mode. Used by screen readers. gradian sinus Name for the sine function in gradians mode. Used by screen readers. darjah sinus songsang Name for the inverse sine function in degrees mode. Used by screen readers. radian sinus songsang Name for the inverse sine function in radians mode. Used by screen readers. gradian sinus songsang Name for the inverse sine function in gradians mode. Used by screen readers. sinus hiperbolaan Name for the hyperbolic sine function. Used by screen readers. sinus hiperbolaan songsang Name for the inverse hyperbolic sine function. Used by screen readers. darjah kosinus Name for the cosine function in degrees mode. Used by screen readers. radian kosinus Name for the cosine function in radians mode. Used by screen readers. gradian kosinus Name for the cosine function in gradians mode. Used by screen readers. darjah kosinus songsang Name for the inverse cosine function in degrees mode. Used by screen readers. radian kosinus songsang Name for the inverse cosine function in radians mode. Used by screen readers. gradian kosinus songsang Name for the inverse cosine function in gradians mode. Used by screen readers. kosinus hiperbolaan Name for the hyperbolic cosine function. Used by screen readers. kosinus hiperbolaan songsang Name for the inverse hyperbolic cosine function. Used by screen readers. darjah tangen Name for the tangent function in degrees mode. Used by screen readers. radian tangen Name for the tangent function in radians mode. Used by screen readers. gradian tangen Name for the tangent function in gradians mode. Used by screen readers. darjah tangen songsang Name for the inverse tangent function in degrees mode. Used by screen readers. radian tangen songsang Name for the inverse tangent function in radians mode. Used by screen readers. gradian tangen songsang Name for the inverse tangent function in gradians mode. Used by screen readers. tangen hiperbolaan Name for the hyperbolic tangent function. Used by screen readers. tangen hiperbolaan songsang Name for the inverse hyperbolic tangent function. Used by screen readers. darjah sekan Name for the secant function in degrees mode. Used by screen readers. radian sekan Name for the secant function in radians mode. Used by screen readers. gradien sekan Name for the secant function in gradians mode. Used by screen readers. darjah sekan songsang Name for the inverse secant function in degrees mode. Used by screen readers. radian sekan songsang Name for the inverse secant function in radians mode. Used by screen readers. gradien sekan songsang Name for the inverse secant function in gradians mode. Used by screen readers. sekan hiperbolik Name for the hyperbolic secant function. Used by screen readers. sekan hiperbolik songsang Name for the inverse hyperbolic secant function. Used by screen readers. darjah kosekan Name for the cosecant function in degrees mode. Used by screen readers. radian kosekan Name for the cosecant function in radians mode. Used by screen readers. gradien kosekan Name for the cosecant function in gradians mode. Used by screen readers. darjah kosekan songsang Name for the inverse cosecant function in degrees mode. Used by screen readers. radian kosekan songsang Name for the inverse cosecant function in radians mode. Used by screen readers. gradien kosekan songsang Name for the inverse cosecant function in gradians mode. Used by screen readers. kosekan hiperbolik Name for the hyperbolic cosecant function. Used by screen readers. kosekan hiperbolik songsang Name for the inverse hyperbolic cosecant function. Used by screen readers. darjah kotangen Name for the cotangent function in degrees mode. Used by screen readers. Radian kotangen Name for the cotangent function in radians mode. Used by screen readers. gradien kotangen Name for the cotangent function in gradians mode. Used by screen readers. darjah kotangen songsang Name for the inverse cotangent function in degrees mode. Used by screen readers. radian kotangen songsang Name for the inverse cotangent function in radians mode. Used by screen readers. gradien kotangen songsang Name for the inverse cotangent function in gradians mode. Used by screen readers. kotangen hiperbolik Name for the hyperbolic cotangent function. Used by screen readers. kotangen hiperbolik songsang Name for the inverse hyperbolic cotangent function. Used by screen readers. Punca kuasa tiga Name for the cube root function. Used by screen readers. Asas log Name for the logbasey function. Used by screen readers. Nilai mutlak Name for the absolute value function. Used by screen readers. anjak kiri Name for the programmer function that shifts bits to the left. Used by screen readers. anjak kanan Name for the programmer function that shifts bits to the right. Used by screen readers. faktorial Name for the factorial function. Used by screen readers. darjah minit saat Name for the degree minute second (dms) function. Used by screen readers. log semula jadi Name for the natural log (ln) function. Used by screen readers. kuasa dua Name for the square function. Used by screen readers. punca kuasa y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategori %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Perjanjian Perkhidmatan Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Daripada From Date Header for AddSubtract Date Picker Skrol hasil pengiraan ke kiri Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Skrol hasil pengiraan ke kanan Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Pengiraan gagal Text displayed when the application is not able to do a calculation Asas log Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Fungsi Displayed on the button that contains a flyout for the general functions in scientific mode. Ketidaksamaan Displayed on the button that contains a flyout for the inequality functions. Ketidaksamaan Screen reader prompt for the Inequalities button Bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Anjakan bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Fungsi songsang Screen reader prompt for the shift button in the trig flyout in scientific mode. Fungsi hiperbolik Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekan Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sekan hiperbolaan Screen reader prompt for the Calculator button sech in the scientific flyout keypad Sekan lengkuk Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Sekan lengkuk hiperbolaan Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekan Screen reader prompt for the Calculator button csc in the scientific flyout keypad Kosekan hiperbolaan Screen reader prompt for the Calculator button csch in the scientific flyout keypad Kosekan lengkuk Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kosekan lengkuk hiperbolaan Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangen Screen reader prompt for the Calculator button cot in the scientific flyout keypad Kotangen hiperbolaan Screen reader prompt for the Calculator button coth in the scientific flyout keypad Kotangen lengkuk Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Kotangen lengkuk hiperbolaan Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Lantai Screen reader prompt for the Calculator button floor in the scientific flyout keypad Siling Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Rawak Screen reader prompt for the Calculator button random in the scientific flyout keypad Nilai mutlak Screen reader prompt for the Calculator button abs in the scientific flyout keypad Nombor Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dua dikuasakan Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Tak Dan Screen reader prompt for the Calculator button nand in the scientific flyout keypad Tak Dan Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Tak Atau Screen reader prompt for the Calculator button nor in the scientific flyout keypad Tak Atau Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Putar ke kiri dengan bawaan Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Putar ke kanan dengan bawaan Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Anjakan kiri Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Anjakan kiri Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Anjakan kanan Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Anjakan kanan Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Anjakan aritmetik Label for a radio button that toggles arithmetic shift behavior for the shift operations. Anjakan logik Label for a radio button that toggles logical shift behavior for the shift operations. Putar anjakan membulat Label for a radio button that toggles rotate circular behavior for the shift operations. Putar melalui anjakan membulat bawaan Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Punca kuasa tiga Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Fungsi Screen reader prompt for the square root button on the scientific operator keypad Bit Screen reader prompt for the square root button on the scientific operator keypad Anjakan Bit Screen reader prompt for the square root button on the scientific operator keypad Panel pengendali saintifik Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panel pengendali pengaturcara Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit ketara paling banyak Used to describe the last bit of a binary number. Used in bit flip Membuat Graf Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plot Screen reader prompt for the plot button on the graphing calculator operator keypad Segar semula pandangan secara automatik (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Pandangan graf Screen reader prompt for the graph view button. Penyesuaian automatik terbaik Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Pelarasan manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Paparan graf telah diset semula Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zum ke dalam (Ctrl + tambah) This is the tool tip automation name for the Calculator zoom in button. Zum ke dalam Screen reader prompt for the zoom in button. Zum ke luar (Ctrl + tolak) This is the tool tip automation name for the Calculator zoom out button. Zum ke luar Screen reader prompt for the zoom out button. Tambah persamaan Placeholder text for the equation input button Tidak dapat berkongsi pada masa ini. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Lihat apa yang saya grafkan dengan Kalkulator Windows Sent as part of the shared content. The title for the share. Persamaan Header that appears over the equations section when sharing Pemboleh ubah Header that appears over the variables section when sharing Imej graf dengan persamaan Alt text for the graph image when output via Share Pemboleh ubah Header text for variables area Langkah Label text for the step text box Min Label text for the min text box Maks Label text for the max text box Warna. Label for the Line Color section of the style picker Gaya Label for the Line Style section of the style picker Analisis fungsi Title for KeyGraphFeatures Control Fungsi tidak mempunyai apa-apa asimptot mendatar. Message displayed when the graph does not have any horizontal asymptotes Fungsi ini tidak mempunyai apa-apa titik fleksi. Message displayed when the graph does not have any inflection points Fungsi tidak mempunyai apa-apa titik maksimum. Message displayed when the graph does not have any maxima Fungsi ini tidak mempunyai apa-apa titik minimum. Message displayed when the graph does not have any minima Malar String describing constant monotonicity of a function Menurun String describing decreasing monotonicity of a function Tidak dapat menentukan keekanadaan fungsi. Error displayed when monotonicity cannot be determined Meningkat String describing increasing monotonicity of a function Keekanadaan fungsi tidak diketahui. Error displayed when monotonicity is unknown Fungsi tidak mempunyai apa-apa asimptot serong. Message displayed when the graph does not have any oblique asymptotes Tidak dapat menentukan pariti fungsi. Error displayed when parity is cannot be determined Fungsi adalah genap. Message displayed with the function parity is even Fungsi bukan genap atau ganjil. Message displayed with the function parity is neither even nor odd Fungsi adalah ganjil. Message displayed with the function parity is odd Pariti fungsi tidak diketahui. Error displayed when parity is unknown Keberkalaan tidak disokong untuk fungsi ini. Error displayed when periodicity is not supported Fungsi tidak berkala. Message displayed with the function periodicity is not periodic Keberkalaan fungsi tidak diketahui. Message displayed with the function periodicity is unknown Ciri-ciri ini terlalu kompleks untuk Kalkulator untuk mengira: Error displayed when analysis features cannot be calculated Fungsi tidak mempunyai apa-apa asimptot menegak. Message displayed when the graph does not have any vertical asymptotes Fungsi tidak mempunyai apa-apa pintasan x. Message displayed when the graph does not have any x-intercepts Fungsi tidak mempunyai apa-apa pintasan y. Message displayed when the graph does not have any y-intercepts Domain Title for KeyGraphFeatures Domain Property Asimptot mendatar Title for KeyGraphFeatures Horizontal aysmptotes Property Titik infleksi Title for KeyGraphFeatures Inflection points Property Analisis tidak disokong untuk fungsi ini. Error displayed when graph analysis is not supported or had an error. Analisis hanya disokong untuk fungsi dalam format f(x). Contoh: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimum Title for KeyGraphFeatures Maxima Property Minimum Title for KeyGraphFeatures Minima Property Keekanadaan Title for KeyGraphFeatures Monotonicity Property Asimptot serong Title for KeyGraphFeatures Oblique asymptotes Property Pariti Title for KeyGraphFeatures Parity Property Tempoh Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Julat Title for KeyGraphFeatures Range Property Asimptot menegak Title for KeyGraphFeatures Vertical asymptotes Property Pintasan X Title for KeyGraphFeatures XIntercept Property Pintasan Y Title for KeyGraphFeatures YIntercept Property Analisis tidak dapat dilaksanakan untuk fungsi. Tidak dapat mengira domain untuk fungsi ini. Error displayed when Domain is not returned from the analyzer. Tidak dapat mengira julat untuk fungsi ini. Error displayed when Range is not returned from the analyzer. Limpahan (nombornya terlalu besar) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Mod radian diperlukan untuk menggrafkan persamaan ini. Error that occurs during graphing when radians is required. Fungsi ini terlalu kompleks untuk digrafkan Error that occurs during graphing when the equation is too complex. Mod darjah diperlukan untuk menggrafkan fungsi ini Error that occurs during graphing when degrees is required Fungsi faktorial mempunyai argumen yang tidak sah Error that occurs during graphing when a factorial function has an invalid argument. Fungsi faktorial mempunyai argumen yang terlalu besar untuk digrafkan Error that occurs during graphing when a factorial has a large n Modulo hanya boleh digunakan dengan nombor keseluruhan Error that occurs during graphing when modulo is used with a float. Persamaan tidak mempunyai penyelesaian Error that occurs during graphing when the equation has no solution. Tidak boleh dibahagikan dengan sifar Error that occurs during graphing when a divison by zero occurs. Persamaan mengandungi syarat logik yang saling eksklusif Error that occurs during graphing when mutually exclusive conditions are used. Persamaan adalah di luar domain Error that occurs during graphing when the equation is out of domain. Membuat graf persamaan ini tidak disokong Error that occurs during graphing when the equation is not supported. Persamaan tiada pembuka tanda kurungan Error that occurs during graphing when the equation is missing a ( Persamaan tiada penutup tanda kurungan Error that occurs during graphing when the equation is missing a ) Terdapat terlalu banyak titik perpuluhan dalam nombor Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Titik perpuluhan tiada digit Error that occurs during graphing with a decimal point without digits Penamat ungkapan yang tidak dijangka Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Aksara yang tidak dijangka dalam ungkapan Error that occurs during graphing when there is an unexpected token. Aksara tidak sah di dalam ungkapan Error that occurs during graphing when there is an invalid token. Terdapat terlalu banyak tanda sama dengan Error that occurs during graphing when there are too many equals. Fungsi mesti mengandungi sekurang-kurangnya satu pemboleh ubah x atau y Error that occurs during graphing when the equation is missing x or y. Ungkapan yang tidak sah. Error that occurs during graphing when an invalid syntax is used. Ungkapan itu kosong Error that occurs during graphing when the expression is empty Sama dengan digunakan tanpa persamaan Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Tanda kurungan tiada selepas nama fungsi Error that occurs during graphing when parenthesis are missing after a function. Operasi matematik mempunyai bilangan parameter yang salah Error that occurs during graphing when a function has the wrong number of parameters Nama pemboleh ubah tidak sah. Error that occurs during graphing when a variable name is invalid. Persamaan tiada pembuka kurungan Error that occurs during graphing when a { is missing Persamaan tiada penutup kurungan Error that occurs during graphing when a } is missing. "saya" dan "Saya" tidak boleh digunakan sebagai nama pemboleh ubah Error that occurs during graphing when i or I is used. Persamaan tidak boleh digrafkan General error that occurs during graphing. Digit tidak dapat diselesaikan untuk asas yang diberikan Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Asas mesti lebih besar daripada 2 dan kurang daripada 36 Error that occurs during graphing when the base is out of range. Operasi matematik memerlukan salah satu parameternya untuk menjadi pemboleh ubah Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Persamaan adalah mencampurkan logik dan kendalian skalar Error that occurs during graphing when operands are mixed. Such as true and 1. x atau y tidak boleh digunakan dalam had atas atau bawah Error that occurs during graphing when x or y is used in integral upper limits. x atau y tidak boleh digunakan dalam titik had Error that occurs during graphing when x or y is used in the limit point. Tidak boleh menggunakan infiniti kompleks Error that occurs during graphing when complex infinity is used Tidak boleh menggunakan nombor kompleks dalam ketidaksamaan Error that occurs during graphing when complex numbers are used in inequalities. Kembali ke senarai fungsi This is the tooltip for the back button in the equation analysis page in the graphing calculator Kembali ke senarai fungsi This is the automation name for the back button in the equation analysis page in the graphing calculator Fungsi analisis This is the tooltip for the analyze function button Fungsi analisis This is the automation name for the analyze function button Fungsi analisis This is the text for the for the analyze function context menu command Alih keluar persamaan This is the tooltip for the graphing calculator remove equation buttons Alih keluar persamaan This is the automation name for the graphing calculator remove equation buttons Alih keluar persamaan This is the text for the for the remove equation context menu command Kongsi This is the automation name for the graphing calculator share button. Kongsi This is the tooltip for the graphing calculator share button. Ubah gaya persamaan This is the tooltip for the graphing calculator equation style button Ubah gaya persamaan This is the automation name for the graphing calculator equation style button Ubah gaya persamaan This is the text for the for the equation style context menu command tunjukkan persamaan This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. sembunyikan persamaan This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Tunjukkan persamaan %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Sembunyikan persamaan %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Henti penjejakan This is the tooltip/automation name for the graphing calculator stop tracing button Mula penjejakan This is the tooltip/automation name for the graphing calculator start tracing button Tetingkap paparan graf, paksi x dihadkan oleh %1 dan %2, paksi y dihadkan dengan %3 dan %4, memaparkan persamaan %5 {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurasikan penggelongsor This is the tooltip text for the slider options button in Graphing Calculator Konfigurasikan penggelongsor This is the automation name text for the slider options button in Graphing Calculator Tukar kepada mod persamaan Used in Graphing Calculator to switch the view to the equation mode Tukar kepada mod graf Used in Graphing Calculator to switch the view to the graph mode Tukar kepada mod persamaan Used in Graphing Calculator to switch the view to the equation mode Mod semasa ialah mod persamaan Announcement used in Graphing Calculator when switching to the equation mode Mod semasa ialah mod graf Announcement used in Graphing Calculator when switching to the graph mode Tetingkap Heading for window extents on the settings Darjah Degrees mode on settings page Gradien Gradian mode on settings page Radian Radians mode on settings page Unit Heading for Unit's on the settings Set semula pandangan Hyperlink button to reset the view of the graph X-Maks X maximum value header X-Min X minimum value header Y-Maks Y Maximum value header Y-Min Y minimum value header Opsyen graf This is the tooltip text for the graph options button in Graphing Calculator Opsyen graf This is the automation name text for the graph options button in Graphing Calculator Opsyen graf Heading for the Graph options flyout in Graphing mode. Pilihan pemboleh ubah Screen reader prompt for the variable settings toggle button Opsyen pemboleh ubah togol Tool tip for the variable settings toggle button Ketebalan garisan Heading for the Graph options flyout in Graphing mode. Opsyen garisan Heading for the equation style flyout in Graphing mode. Lebar garis kecil Automation name for line width setting Lebar garis sederhana Automation name for line width setting Lebar garis besar Automation name for line width setting Lebar garis lebih besar Automation name for line width setting Masukkan ungkapan this is the placeholder text used by the textbox to enter an equation Salin Copy menu item for the graph context menu Potong Cut menu item from the Equation TextBox Salin Copy menu item from the Equation TextBox Tampal Paste menu item from the Equation TextBox Buat asal Undo menu item from the Equation TextBox Pilih semua Select all menu item from the Equation TextBox Input fungsi The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Input fungsi The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel input fungsi The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel pemboleh ubah The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Senarai pemboleh ubah The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Item senarai %1 pemboleh ubah The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Kotak teks nilai pemboleh ubah The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Penggelongsor nilai pemboleh ubah The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Kotak teks nilai minimum pemboleh ubah The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Kotak teks nilai langkah pemboleh ubah The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Kotak teks nilai maksimum pemboleh ubah The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Garisan stail tepat Name of the solid line style for a graphed equation Garisan stail titik Name of the dotted line style for a graphed equation Garisan stail sempang Name of the dashed line style for a graphed equation Biru kelasi Name of color in the color picker Buih laut Name of color in the color picker Ungu. Name of color in the color picker Hijau Name of color in the color picker Hijau pudina Name of color in the color picker Hijau tua Name of color in the color picker Arang. Name of color in the color picker Merah Name of color in the color picker Plum terang Name of color in the color picker Magenta Name of color in the color picker Kuning emas Name of color in the color picker Jingga terang Name of color in the color picker Coklat Name of color in the color picker Hitam Name of color in the color picker Putih Name of color in the color picker Warna 1 Name of color in the color picker Warna 2 Name of color in the color picker Warna 3 Name of color in the color picker Warna 4 Name of color in the color picker Tema graf Graph settings heading for the theme options Sentiasa terang. Graph settings option to set graph to light theme Padanan tema aplikasi Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Sentiasa terang. This is the automation name text for the Graph settings option to set graph to light theme Padanan tema aplikasi This is the automation name text for the Graph settings option to set graph to match the app theme Fungsi dialihkan Announcement used in Graphing Calculator when a function is removed from the function list Kotak persamaan analisis fungsi This is the automation name text for the equation box in the function analysis panel Bersamaan Screen reader prompt for the equal button on the graphing calculator operator keypad Kurang daripada Screen reader prompt for the Less than button Kurang daripada atau sama Screen reader prompt for the Less than or equal button Sama Screen reader prompt for the Equal button Lebih besar daripada atau sama Screen reader prompt for the Greater than or equal button Lebih besar daripada Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Serah Screen reader prompt for the submit button on the graphing calculator operator keypad Analisis fungsi Screen reader prompt for the function analysis grid Opsyen graf Screen reader prompt for the graph options panel Senarai Sejarah dan Memori Automation name for the group of controls for history and memory lists. Senarai memori Automation name for the group of controls for memory list. slot sejarah %1 dikosongkan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". kalkulator sentiasa di atas Announcement to indicate calculator window is always shown on top. kalkulator kembali ke paparan penuh Announcement to indicate calculator window is now back to full view. Anjakan aritmetik dipilih Label for a radio button that toggles arithmetic shift behavior for the shift operations. Anjakan logik dipilih Label for a radio button that toggles logical shift behavior for the shift operations. Putar anjakan membulat dipilih Label for a radio button that toggles rotate circular behavior for the shift operations. Putar melalui anjakan membulat bawaan dipilih Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Tetapan Header text of Settings page Penampilan Subtitle of appearance setting on Settings page Tema aplikasi Title of App theme expander Pilih tema aplikasi untuk dipaparkan Description of App theme expander Cerah Lable for light theme option Gelap Lable for dark theme option Gunakan tetapan sistem Lable for the app theme option to use system setting Ke Belakang Screen reader prompt for the Back button in title bar to back to main page Halaman tetapan Announcement used when Settings page is opened Buka menu konteks untuk tindakan yang tersedia Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Tidak dapat memulihkan petikan ini. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/nb-NO/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ugyldige inndata Error message shown when the input makes a function fail, like log(-1) Resultat er udefinert Error message shown when there's no possible value for a function. Ikke nok minne Error message shown when we run out of memory during a calculation. Overflyt Error message shown when there's an overflow during the calculation. Resultat er ikke definert Same as 101 Resultat er ikke definert Same 101 Overflyt Same as 107 Overflyt Same 107 Kan ikke dele på null Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/nb-NO/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkulator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkulator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopier Copy context menu string Lim inn Paste context menu string Tilsvarer omtrent The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, verdi %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1-biters {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip minst betydelige bit Used to describe the first bit of a binary number. Used in bit flip Åpne undermeny for minne This is the automation name and label for the memory button when the memory flyout is closed. Lukk undermeny for minne This is the automation name and label for the memory button when the memory flyout is open. Behold øverst This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Tilbake til fullskjermvisning This is the tool tip automation name for the always-on-top button when in always-on-top mode. Minne This is the tool tip automation name for the memory button. Logg (Ctrl+H) This is the tool tip automation name for the history button. Bitvekslende tastatur This is the tool tip automation name for the bitFlip button. Fullt tastatur This is the tool tip automation name for the numberPad button. Tøm minne (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Minne The text that shows as the header for the memory list Minne The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Logg The text that shows as the header for the history list Logg The automation name for the History pivot item that is shown when Calculator is in wide layout. Konverteringsprogram Label for a control that activates the unit converter mode. Vitenskapelig Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Konverteringsmodus Screen reader prompt for a control that activates the unit converter mode. Vitenskapelig modus Screen reader prompt for a control that activates scientific mode calculator layout Standardmodus Screen reader prompt for a control that activates standard mode calculator layout. Tøm logg "ClearHistory" used on the calculator history pane that stores the calculation history. Tøm logg This is the tool tip automation name for the Clear History button. Skjul "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Vitenskapelig The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmerer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Omformer The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Omformer The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Konverteringsprogrammer Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatorer Pluralized version of the calculator group text, used for the screen reader prompt. Resultatet er %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Uttrykket er %1, gjeldende inndata er %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Resultatet er %1 komma {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expression er %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Vis verdi som er kopiert til utklippstavlen Screen reader prompt for the Calculator display copy button, when the button is invoked. Logg Screen reader prompt for the history flyout Minne Screen reader prompt for the memory flyout Heksadesimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desimalverdi %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binær %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Tøm logg Screen reader prompt for the Calculator History Clear button Loggen er tom Screen reader prompt for the Calculator History Clear button, when the button is invoked. Skjul logg Screen reader prompt for the Calculator History Hide button Åpne undermeny for logg Screen reader prompt for the Calculator History button, when the flyout is closed. Lukk undermeny for logg Screen reader prompt for the Calculator History button, when the flyout is open. Minnelagring Screen reader prompt for the Calculator Memory button Minnelagring (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Tøm minne Screen reader prompt for the Calculator Clear Memory button Minnet er tomt Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Minnegjenkalling Screen reader prompt for the Calculator Memory Recall button Minnegjenkalling (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Tillegging av minne Screen reader prompt for the Calculator Memory Add button Tillegging av minne (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Minnefratrekk Screen reader prompt for the Calculator Memory Subtract button Minnefratrekk (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Tøm minneelement Screen reader prompt for the Calculator Clear Memory button Tøm minneelement This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Legg til i minneelement Screen reader prompt for the Calculator Memory Add button in the Memory list Legg til i minneelement This is the tool tip automation name for the Calculator Memory Add button in the Memory list Fratrekk fra minneelement Screen reader prompt for the Calculator Memory Subtract button in the Memory list Fratrekk fra minneelement This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Tøm minneelement Screen reader prompt for the Calculator Clear Memory button Tøm minneelement Text string for the Calculator Clear Memory option in the Memory list context menu Legg til i minneelement Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Legg til i minneelement Text string for the Calculator Memory Add option in the Memory list context menu Fratrekk fra minneelement Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Fratrekk fra minneelement Text string for the Calculator Memory Subtract option in the Memory list context menu Slett Text string for the Calculator Delete swipe button in the History list Kopier Text string for the Calculator Copy option in the History list context menu Slett Text string for the Calculator Delete option in the History list context menu Slett loggelement Screen reader prompt for the Calculator Delete swipe button in the History list Slett loggelement Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Null Screen reader prompt for the Calculator number "0" button En Screen reader prompt for the Calculator number "1" button To Screen reader prompt for the Calculator number "2" button Tre Screen reader prompt for the Calculator number "3" button Fire Screen reader prompt for the Calculator number "4" button Fem Screen reader prompt for the Calculator number "5" button Seks Screen reader prompt for the Calculator number "6" button Sju Screen reader prompt for the Calculator number "7" button Åtte Screen reader prompt for the Calculator number "8" button Ni Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button og Screen reader prompt for the Calculator And button eller Screen reader prompt for the Calculator Or button ikke Screen reader prompt for the Calculator Not button Roter til venstre Screen reader prompt for the Calculator ROL button Roter til høyre Screen reader prompt for the Calculator ROR button Venstre Skift Screen reader prompt for the Calculator LSH button Høyre Skift Screen reader prompt for the Calculator RSH button Eksklusiv eller Screen reader prompt for the Calculator XOR button Veksleknapp for firedobbelt ord Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Veksleknapp for dobbelt ord Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Veksleknapp for ord Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Veksleknapp for byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bitvekslende tastatur Screen reader prompt for the Calculator bitFlip button Fullt tastatur Screen reader prompt for the Calculator numberPad button Desimalskilletegn Screen reader prompt for the "." button Slett oppføring Screen reader prompt for the "CE" button Fjern Screen reader prompt for the "C" button Del med Screen reader prompt for the divide button on the number pad Multipliser med Screen reader prompt for the multiply button on the number pad Er lik Screen reader prompt for the equals button on the scientific operator keypad Omvendt funksjon Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Pluss Screen reader prompt for the plus button on the number pad Kvadratrot Screen reader prompt for the square root button on the scientific operator keypad Prosent Screen reader prompt for the percent button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the scientific operator keypad Positiv negativ Screen reader prompt for the negate button on the converter operator keypad Resiprok Screen reader prompt for the invert button on the scientific operator keypad Venstreparentes Screen reader prompt for the Calculator "(" button on the scientific operator keypad Venstreparentes, åpen parentes teller %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Høyreparentes Screen reader prompt for the Calculator ")" button on the scientific operator keypad Antall åpne parenteser %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Det er ingen åpne paranteser å lukke. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Vitenskapelig notasjon Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolsk funksjon Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolsk sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolsk cosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolsk tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kube Screen reader prompt for the x cubed on the scientific operator keypad. Arcus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arcus cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arcus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolsk arcsinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolsk arccosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolsk arctangens Screen reader prompt for the inverted tanh on the scientific operator keypad. X til eksponenten Screen reader prompt for x power y button on the scientific operator keypad. Ti til eksponenten Screen reader prompt for the 10 power x button on the scientific operator keypad. e opphøyet i Screen reader for the e power x on the scientific operator keypad. y-roten av x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logg Screen reader for the log base 10 on the scientific operator keypad Naturlig logg Screen reader for the log base e on the scientific operator keypad Modulus Screen reader for the mod button on the scientific operator keypad Eksponentiell Screen reader for the exp button on the scientific operator keypad Grad minutt sekund Screen reader for the exp button on the scientific operator keypad Grader Screen reader for the exp button on the scientific operator keypad Heltallsdel Screen reader for the int button on the scientific operator keypad Brøkdel Screen reader for the frac button on the scientific operator keypad Fakultet Screen reader for the factorial button on the basic operator keypad Veksleknapp for grader This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Veksleknapp for gradianer This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Veksleknapp for radianer This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Rullegardinliste for modus Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Rullegardinliste for kategorier Screen reader prompt for the Categories dropdown field. Behold øverst Screen reader prompt for the Always-on-Top button when in normal mode. Tilbake til fullskjermvisning Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Behold øverst (Alt + opp) This is the tool tip automation name for the Always-on-Top button when in normal mode. Tilbake til fullskjermvisning (Alt + ned) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konverter fra %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konverter fra %1 komma %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konverterer til %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 er %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Inndataenhet Screen reader prompt for the Unit Converter Units1 i.e. top units field. Utdataenhet Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Areal Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energi Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lengde Unit conversion category name called Length Effekt Unit conversion category name called Power (eg. the power of an engine or a light bulb) Hastighet Unit conversion category name called Speed Tid Unit conversion category name called Time Volum Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatur Unit conversion category name called Temperature Vekt og masse Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Trykk Unit conversion category name called Pressure Vinkel Unit conversion category name called Angle Valuta Unit conversion category name called Currency Ounce (væske – britisk) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (britisk) An abbreviation for a measurement unit of volume ounce (væske – amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (amerikansk) An abbreviation for a measurement unit of volume gallon (britisk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (britisk) An abbreviation for a measurement unit of volume gallon (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (amerikansk) An abbreviation for a measurement unit of volume liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume pint (britisk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (britisk) An abbreviation for a measurement unit of volume pint (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (amerikansk) An abbreviation for a measurement unit of volume spiseskjeer (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spiseskje (amerikansk) An abbreviation for a measurement unit of volume teskjeer (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ts (USA) An abbreviation for a measurement unit of volume spiseskjeer (britisk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spiseskje (britisk) An abbreviation for a measurement unit of volume Teskjeer (britisk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) teskje (britisk) An abbreviation for a measurement unit of volume quart (britisk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (britisk) An abbreviation for a measurement unit of volume quart (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (amerikansk) An abbreviation for a measurement unit of volume kopper (amerikansk) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kopp (USA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data Engelsk kalori An abbreviation for a measurement unit of volume Engelsk kalori/minutt An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data kal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (amerikansk) An abbreviation for a measurement unit of power t An abbreviation for a measurement unit of time tm An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kb An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/t An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length miles/t An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power u An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length år An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) biter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) engelske kalorier A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) engelske kalorier/minutt A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kalorier A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) centimeter per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kubikkcentimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kubikkfot A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kubikktommer A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kubikkmeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kubikkyard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dager A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) celsius An option in the unit converter to select degrees Celsius fahrenheit An option in the unit converter to select degrees Fahrenheit elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fot A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fot per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotpund A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotpund/minutt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hestekrefter (amerikansk) A measurement unit for power Timer A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tommer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-hours A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". kilobiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilokalorier A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilometer per time A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) knop A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) megabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) meter per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikroner A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mikrosekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) engelske mil per time A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) millisekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) minutter A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibbel A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångstrøm A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautiske mil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadratcentimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratfot A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadrattommer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadratkilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadratmeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmiles A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadratmillimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvadratyard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uker A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) År A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight grad An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad. An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tonn (britisk) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tonn (amerikansk) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grader A measurement unit for Angle. Radianer A measurement unit for Angle. Gradianer A measurement unit for Angle. Atmosfærer A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeter kvikksølv A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pund per kvadrattomme A measurement unit for Pressure. hundredels gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) desigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) long ton (britisk) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ounce A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pund A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) short ton (amerikansk) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonn (metrisk) A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-er A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-er A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotballbaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotballbaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-er A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-er A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) binders A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) binders A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojeter A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojeter A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lyspærer A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lyspærer A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hester A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hester A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badekar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badekar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snøfnugg A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snøfnugg A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skilpadder A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skilpadder A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fly A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fly A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvaler A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hvaler A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekopper A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekopper A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) svømmebasseng An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) svømmebasseng An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hender A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hender A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ark A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ark A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slott A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slott A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kakestykker A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kakestykker A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) togmotorer A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) togmotorer A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotballer A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotballer A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minneelement Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Tilbake Screen reader prompt for the About panel back button Tilbake Content of tooltip being displayed on AboutControlBackButton Lisensvilkår for Microsoft-programvare Displayed on a link to the Microsoft Software License Terms on the About panel Forhåndsvisning Label displayed next to upcoming features Microsofts personvernerklæring Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Med enerett. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Hvis du vil lære hvordan du kan bidra til kalkulator for Windows, sjekker du prosjektet på %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Om Subtitle of about message on Settings page Send tilbakemelding The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Det finnes ingen logg ennå. The text that shows as the header for the history list Ingenting er lagret i minnet. The text that shows as the header for the memory list Minne Screen reader prompt for the negate button on the converter operator keypad Uttrykket kan ikke limes inn The paste operation cannot be performed, if the expression is invalid. Gibibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibiter A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datoberegning Beregningsmodus Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Legg til Add toggle button text Legg til eller trekk fra dager Add or Subtract days option Dato Date result label Forskjell mellom datoer Date difference option Dager Add/Subtract Days label Forskjell Difference result label Fra From Date Header for Difference Date Picker Måneder Add/Subtract Months label Trekk fra Subtract toggle button text Til To Date Header for Difference Date Picker År Add/Subtract Years label Dato utenfor grensene Out of bound message shown as result when the date calculation exceeds the bounds dag dager måned måneder Samme datoer uke uker år år Forskjell %1 Automation name for reading out the date difference. %1 = Date difference Resultatdato %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1-kalkulatormodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1-konverteringsmodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modus for datoberegning Automation name for when the mode header is focused and the current mode is Date calculation. Logg og minnelister Automation name for the group of controls for history and memory lists. Minnekontroller Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardfunksjoner Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Skjermkontroller Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardoperatorer Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerisk tastatur Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Vinkeloperatorer Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Vitenskapelige funksjoner Automation name for the group of Scientific functions. Valg av grunntall Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeringsoperatorer Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Valg av inndatamodus Automation name for the group of input mode toggling buttons. Tastatur med bitveksling Automation name for the group of bit toggling buttons. Rull uttrykk til venstre Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Rull uttrykk til høyre Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Maks. antall siffer er nådd. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 lagret i minnet {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Minneplass %1 er %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Minneplass %1 er tom {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". delt med Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ganger Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. pluss Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. opphøyet i Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y rot Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. venstre skift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. høyre skift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. or Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x eller Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. og Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Oppdatert %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Oppdater valutakurser The text displayed for a hyperlink button that refreshes currency converter ratios. Datakostnader kan påløpe. The text displayed when users are on a metered connection and using currency converter. Kan ikke hente nye valutakurser. Prøv på nytt senere. The text displayed when currency ratio data fails to load. Frakoblet. Kontroller%HL%nettverksinnstillingene%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Oppdaterer valutakurser This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valutakurser er oppdatert This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kan ikke oppdatere kurser This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Tøm minne (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Tøm minne Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinusgrader Name for the sine function in degrees mode. Used by screen readers. sinusradianer Name for the sine function in radians mode. Used by screen readers. sinusgradianer Name for the sine function in gradians mode. Used by screen readers. omvendte sinusgrader Name for the inverse sine function in degrees mode. Used by screen readers. omvendte sinusradianer Name for the inverse sine function in radians mode. Used by screen readers. omvendte sinusgradianer Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolsk sinus Name for the hyperbolic sine function. Used by screen readers. omvendt hyperbolsk sinus Name for the inverse hyperbolic sine function. Used by screen readers. cosinusgrader Name for the cosine function in degrees mode. Used by screen readers. cosinusradianer Name for the cosine function in radians mode. Used by screen readers. cosinusgradianer Name for the cosine function in gradians mode. Used by screen readers. omvendte cosinusgrader Name for the inverse cosine function in degrees mode. Used by screen readers. omvendte cosinusradianer Name for the inverse cosine function in radians mode. Used by screen readers. omvendte cosinusgradianer Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolsk cosinus Name for the hyperbolic cosine function. Used by screen readers. omvendt hyperbolsk cosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangensgrader Name for the tangent function in degrees mode. Used by screen readers. tangensradianer Name for the tangent function in radians mode. Used by screen readers. tangensgradianer Name for the tangent function in gradians mode. Used by screen readers. omvendte tangensgrader Name for the inverse tangent function in degrees mode. Used by screen readers. inverse tangensradianer Name for the inverse tangent function in radians mode. Used by screen readers. omvendte tangensgradianer Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolsk tangens Name for the hyperbolic tangent function. Used by screen readers. omvendt hyperbolsk tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekansgrader Name for the secant function in degrees mode. Used by screen readers. sekansradianer Name for the secant function in radians mode. Used by screen readers. sekansgradianer Name for the secant function in gradians mode. Used by screen readers. omvendte sekansgrader Name for the inverse secant function in degrees mode. Used by screen readers. omvendte sekansradianer Name for the inverse secant function in radians mode. Used by screen readers. omvendte sekansgradianer Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolsk sekans Name for the hyperbolic secant function. Used by screen readers. omvendt hyperbolsk sekans Name for the inverse hyperbolic secant function. Used by screen readers. cosekansgrader Name for the cosecant function in degrees mode. Used by screen readers. cosekansradianer Name for the cosecant function in radians mode. Used by screen readers. cosekansgradianer Name for the cosecant function in gradians mode. Used by screen readers. omvendte cosekansgrader Name for the inverse cosecant function in degrees mode. Used by screen readers. omvendte cosekansradianer Name for the inverse cosecant function in radians mode. Used by screen readers. omvendte cosekansgradianer Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolsk cosekans Name for the hyperbolic cosecant function. Used by screen readers. omvendt hyperbolsk cosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangensgrader Name for the cotangent function in degrees mode. Used by screen readers. Cotangensradianer Name for the cotangent function in radians mode. Used by screen readers. cotangensgradianer Name for the cotangent function in gradians mode. Used by screen readers. omvendte cotangensgrader Name for the inverse cotangent function in degrees mode. Used by screen readers. omvendte cotangensradianer Name for the inverse cotangent function in radians mode. Used by screen readers. omvendte cotangensgradianer Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolsk cotangens Name for the hyperbolic cotangent function. Used by screen readers. omvendt hyperbolsk cotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubikkrot Name for the cube root function. Used by screen readers. Baselogg Name for the logbasey function. Used by screen readers. Absolutt verdi Name for the absolute value function. Used by screen readers. venstre skift Name for the programmer function that shifts bits to the left. Used by screen readers. høyre skift Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriell Name for the factorial function. Used by screen readers. grad minutt sekund Name for the degree minute second (dms) function. Used by screen readers. naturlig logg Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. y rot Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1-kategori {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsofts tjenesteavtale Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Fra From Date Header for AddSubtract Date Picker Rull beregningsresultat til venstre Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Rull beregningsresultat til høyre Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Beregning mislyktes Text displayed when the application is not able to do a calculation Baselogg Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Funksjon Displayed on the button that contains a flyout for the general functions in scientific mode. Ulikheter Displayed on the button that contains a flyout for the inequality functions. Ulikheter Screen reader prompt for the Inequalities button Bitvis Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitskift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Omvendt funksjon Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolsk funksjon Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolsk sekant Screen reader prompt for the Calculator button sech in the scientific flyout keypad Buesekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolsk buesekant Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolsk cosekant Screen reader prompt for the Calculator button csch in the scientific flyout keypad Buecosekant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolsk buecosekant Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolsk cotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Buecotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolsk buecotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Avrunding nedover Screen reader prompt for the Calculator button floor in the scientific flyout keypad Avrunding oppover Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Vilkårlig Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolutt verdi Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulers konstant Screen reader prompt for the Calculator button e in the scientific flyout keypad To til eksponenten Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Roter mot venstre med mente Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Roter mot høyre med mente Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Venstre Skift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Venstre skift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Høyre Skift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Høyre skift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetisk skift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logisk skift Label for a radio button that toggles logical shift behavior for the shift operations. Roter sirkulær skift Label for a radio button that toggles rotate circular behavior for the shift operations. Roter gjennom mentesirkulær skift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubikkrot Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Funksjoner Screen reader prompt for the square root button on the scientific operator keypad Bitvis Screen reader prompt for the square root button on the scientific operator keypad Bitskift Screen reader prompt for the square root button on the scientific operator keypad Vitenskapelige operatørpaneler Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Operatørpaneler for programmering Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad mest betydelige bit Used to describe the last bit of a binary number. Used in bit flip Grafisk fremstilling Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Tegn Screen reader prompt for the plot button on the graphing calculator operator keypad Oppdater visning automatisk (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafvisning Screen reader prompt for the graph view button. Automatisk beste tilpassing Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuell justering Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafvisning er tilbakestilt Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zoom inn (CTRL + pluss) This is the tool tip automation name for the Calculator zoom in button. Zoom inn Screen reader prompt for the zoom in button. Zoom ut (CTRL + minus) This is the tool tip automation name for the Calculator zoom out button. Zoom ut Screen reader prompt for the zoom out button. Legg til formel Placeholder text for the equation input button Kan ikke dele på dette tidspunktet. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Se hva jeg har laget grafisk fremstilling av med Windows Kalkulator Sent as part of the shared content. The title for the share. Formler Header that appears over the equations section when sharing Variabler Header that appears over the variables section when sharing Bilde av et diagram med formler Alt text for the graph image when output via Share Variabler Header text for variables area Trinn Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Farge Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Funksjonsanalyse Title for KeyGraphFeatures Control Funksjonen har ingen vannrette asymptoter. Message displayed when the graph does not have any horizontal asymptotes Funksjonen har ingen bøyningspunkter. Message displayed when the graph does not have any inflection points Funksjonen har ingen maksimumspunkter. Message displayed when the graph does not have any maxima Funksjonen har ingen minimumspunkter. Message displayed when the graph does not have any minima Kontinuerlig String describing constant monotonicity of a function Synkende String describing decreasing monotonicity of a function Kan ikke fastsette monotonisitet for funksjonen. Error displayed when monotonicity cannot be determined Økende String describing increasing monotonicity of a function Monotonisitet for funksjonen er ukjent. Error displayed when monotonicity is unknown Funksjonen har ingen skrå asymptoter. Message displayed when the graph does not have any oblique asymptotes Kan ikke fastsette pariteten for funksjonen. Error displayed when parity is cannot be determined Funksjonen er et partall. Message displayed with the function parity is even Funksjonen er verken partall eller oddetall. Message displayed with the function parity is neither even nor odd Funksjonen er et oddetall. Message displayed with the function parity is odd Funksjonspariteten er ukjent. Error displayed when parity is unknown Periodisitet støttes ikke for denne funksjonen. Error displayed when periodicity is not supported Funksjonen er ikke periodisk. Message displayed with the function periodicity is not periodic Funksjonsperiodisiteten er ukjent. Message displayed with the function periodicity is unknown Disse funksjonene er for kompliserte for Kalkulator å beregne: Error displayed when analysis features cannot be calculated Funksjonen har ingen loddrette asymptoter. Message displayed when the graph does not have any vertical asymptotes Funksjonen har ingen x-skjæringspunkter. Message displayed when the graph does not have any x-intercepts Funksjonen har ingen y-skjæringspunkter. Message displayed when the graph does not have any y-intercepts Domene Title for KeyGraphFeatures Domain Property Vannrette asymptoter Title for KeyGraphFeatures Horizontal aysmptotes Property Bøyningspunkter Title for KeyGraphFeatures Inflection points Property Analyse støttes ikke for denne funksjonen. Error displayed when graph analysis is not supported or had an error. Analyse støttes kun for funksjoner i f(x)-formatet. Eksempel: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimum Title for KeyGraphFeatures Maxima Property Minimum Title for KeyGraphFeatures Minima Property Monotonisitet Title for KeyGraphFeatures Monotonicity Property Skrå asymptoter Title for KeyGraphFeatures Oblique asymptotes Property Paritet Title for KeyGraphFeatures Parity Property Syklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Område Title for KeyGraphFeatures Range Property Loddrette asymptoter Title for KeyGraphFeatures Vertical asymptotes Property X-skjæringspunkt Title for KeyGraphFeatures XIntercept Property Y-skjæringspunkt Title for KeyGraphFeatures YIntercept Property Analyse kan ikke utføres for funksjonen. Kan ikke beregne domenet for denne funksjonen. Error displayed when Domain is not returned from the analyzer. Kan ikke beregne området for denne funksjonen. Error displayed when Range is not returned from the analyzer. Overflyt (tallet er for stort) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radianer-modus kreves for å fremstille denne ligningen grafisk. Error that occurs during graphing when radians is required. Denne funksjonen er for kompleks for grafisk fremstilling Error that occurs during graphing when the equation is too complex. Gradmodus er nødvendig for å fremstille denne funksjonen grafisk Error that occurs during graphing when degrees is required Faktoriellfunksjonen har et ugyldig argument Error that occurs during graphing when a factorial function has an invalid argument. Faktoriellfunksjonen har et argument som er for stort til å fremstille grafisk Error that occurs during graphing when a factorial has a large n Modulo kan bare brukes med hele tall Error that occurs during graphing when modulo is used with a float. Ligningen har ingen løsning Error that occurs during graphing when the equation has no solution. Kan ikke dele på null Error that occurs during graphing when a divison by zero occurs. Ligningen inneholder logiske betingelser som gjensidig ekskluderes Error that occurs during graphing when mutually exclusive conditions are used. Ligningen er utenfor domenet Error that occurs during graphing when the equation is out of domain. Grafisk fremstilling av denne ligningen støttes ikke Error that occurs during graphing when the equation is not supported. Ligningen mangler en venstre hakeparentes Error that occurs during graphing when the equation is missing a ( Ligningen mangler en avsluttende parentes Error that occurs during graphing when the equation is missing a ) Det er for mange desimal punkt i et tall Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Et desimaltegn mangler sifre Error that occurs during graphing with a decimal point without digits Uventet avslutning av uttrykk Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Uventede tegn i uttrykket Error that occurs during graphing when there is an unexpected token. Ugyldige tegn i uttrykket Error that occurs during graphing when there is an invalid token. Det er for mange likhetstegn Error that occurs during graphing when there are too many equals. Funksjonen må inneholde minst én x- eller y-variabel Error that occurs during graphing when the equation is missing x or y. Ugyldig uttrykk Error that occurs during graphing when an invalid syntax is used. Uttrykket er tomt Error that occurs during graphing when the expression is empty Lik ble brukt uten en formel Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parentes mangler etter funksjonsnavn Error that occurs during graphing when parenthesis are missing after a function. En matematisk operasjon har feil antall parametere Error that occurs during graphing when a function has the wrong number of parameters Et variabel navn er ugyldig Error that occurs during graphing when a variable name is invalid. Ligningen mangler en venstre parentes Error that occurs during graphing when a { is missing Ligningen mangler en avsluttende hakeparentes Error that occurs during graphing when a } is missing. «i» og «I» kan ikke brukes som variabelnavn Error that occurs during graphing when i or I is used. Ligningen kunne ikke fremstilles grafisk General error that occurs during graphing. Sifrene kunne ikke løses for den gitte basen Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Grunnlaget må være større enn 2 og mindre enn 36 Error that occurs during graphing when the base is out of range. En matematisk operasjon krever at en av parameterne er en variabel Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ligningen blander logiske og skalare operander Error that occurs during graphing when operands are mixed. Such as true and 1. x eller y kan ikke brukes i øvre eller nedre grense Error that occurs during graphing when x or y is used in integral upper limits. x eller y kan ikke brukes i grense punktet Error that occurs during graphing when x or y is used in the limit point. Kan ikke bruke kompleks uendelighet Error that occurs during graphing when complex infinity is used Kan ikke bruke komplekse tall i ulikheter Error that occurs during graphing when complex numbers are used in inequalities. Tilbake til funksjonsliste This is the tooltip for the back button in the equation analysis page in the graphing calculator Tilbake til funksjonsliste This is the automation name for the back button in the equation analysis page in the graphing calculator Analysefunksjon This is the tooltip for the analyze function button Analysefunksjon This is the automation name for the analyze function button Analysefunksjon This is the text for the for the analyze function context menu command Fjern formel This is the tooltip for the graphing calculator remove equation buttons Fjern formel This is the automation name for the graphing calculator remove equation buttons Fjern formel This is the text for the for the remove equation context menu command Del This is the automation name for the graphing calculator share button. Del This is the tooltip for the graphing calculator share button. Endre formelstil This is the tooltip for the graphing calculator equation style button Endre formelstil This is the automation name for the graphing calculator equation style button Endre formelstil This is the text for the for the equation style context menu command Vis formel This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Skjul formel This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Vis formel %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Skjul formel %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stopp sporing This is the tooltip/automation name for the graphing calculator stop tracing button Start sporing This is the tooltip/automation name for the graphing calculator start tracing button Graf visnings vindu, x-akse som er bundet av %1 og %2, y-akse bundet av %3 og %4, visning av %5 formler {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurer glidebryter This is the tooltip text for the slider options button in Graphing Calculator Konfigurer glidebryter This is the automation name text for the slider options button in Graphing Calculator Bytt til formelmodus Used in Graphing Calculator to switch the view to the equation mode Bytt til grafmodus Used in Graphing Calculator to switch the view to the graph mode Bytt til formelmodus Used in Graphing Calculator to switch the view to the equation mode Gjeldende modus er formelmodus Announcement used in Graphing Calculator when switching to the equation mode Gjeldende modus er grafmodus Announcement used in Graphing Calculator when switching to the graph mode Vindu Heading for window extents on the settings Grader Degrees mode on settings page Gradianer Gradian mode on settings page Radianer Radians mode on settings page Enheter Heading for Unit's on the settings Tilbakestill visning Hyperlink button to reset the view of the graph X-maks. X maximum value header X-min. X minimum value header Y-maks. Y Maximum value header Y-min. Y minimum value header Grafalternativer This is the tooltip text for the graph options button in Graphing Calculator Grafalternativer This is the automation name text for the graph options button in Graphing Calculator Grafalternativer Heading for the Graph options flyout in Graphing mode. Variabel-alternativer Screen reader prompt for the variable settings toggle button Veksle mellom variable alternativer Tool tip for the variable settings toggle button Linjetykkelse Heading for the Graph options flyout in Graphing mode. Linjealternativer Heading for the equation style flyout in Graphing mode. Liten linjebredde Automation name for line width setting Middels linjebredde Automation name for line width setting Stor linjebredde Automation name for line width setting Ekstra stor linjebredde Automation name for line width setting Angi et uttrykk this is the placeholder text used by the textbox to enter an equation Kopier Copy menu item for the graph context menu Klipp ut Cut menu item from the Equation TextBox Kopier Copy menu item from the Equation TextBox Lim inn Paste menu item from the Equation TextBox Angre Undo menu item from the Equation TextBox Merk alt Select all menu item from the Equation TextBox Funksjonsinndata The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funksjonsinndata The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Funksjonsinndatapanel The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variabelpanel The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variabelliste The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Listeelement for variabelen %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Tekstboks for variabel verdi The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Glidebryter for variabel verdi The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Tekstboks for variabel minimumsverdi The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Tekstboks for variabel trinnverdi The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Tekstboks for variabel maksverdi The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Linjestil, Heltrukket Name of the solid line style for a graphed equation Linjestil, prikket linje Name of the dotted line style for a graphed equation Linjestil, Linje av streker Name of the dashed line style for a graphed equation Marineblå Name of color in the color picker Bølgeskum Name of color in the color picker Fiolett Name of color in the color picker Grønn Name of color in the color picker Mintgrønn Name of color in the color picker Mørk grønn Name of color in the color picker Koksgrå Name of color in the color picker Rød Name of color in the color picker Lys plommefarget Name of color in the color picker Magenta Name of color in the color picker Gult gull Name of color in the color picker Lys oransje Name of color in the color picker Brun Name of color in the color picker Svart Name of color in the color picker Hvit Name of color in the color picker Farge 1 Name of color in the color picker Farge 2 Name of color in the color picker Farge 3 Name of color in the color picker Farge 4 Name of color in the color picker Graftema Graph settings heading for the theme options Alltid lys Graph settings option to set graph to light theme Sammenligne app-tema Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Alltid lys This is the automation name text for the Graph settings option to set graph to light theme Sammenligne app-tema This is the automation name text for the Graph settings option to set graph to match the app theme Funksjon fjernet Announcement used in Graphing Calculator when a function is removed from the function list Boks for funksjonsanalyselikning This is the automation name text for the equation box in the function analysis panel Er lik Screen reader prompt for the equal button on the graphing calculator operator keypad Mindre enn Screen reader prompt for the Less than button Mindre enn eller lik Screen reader prompt for the Less than or equal button Er lik Screen reader prompt for the Equal button Større enn eller lik Screen reader prompt for the Greater than or equal button Større enn Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Send inn Screen reader prompt for the submit button on the graphing calculator operator keypad Funksjonsanalyse Screen reader prompt for the function analysis grid Grafalternativer Screen reader prompt for the graph options panel Logg og minnelister Automation name for the group of controls for history and memory lists. Minneliste Automation name for the group of controls for memory list. Loggspor %1 fjernet {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator alltid øverst Announcement to indicate calculator window is always shown on top. Kalkulator tilbake til fullskjermvisning Announcement to indicate calculator window is now back to full view. Aritmetisk skift valgt Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logisk skift valgt Label for a radio button that toggles logical shift behavior for the shift operations. Rotasjon med sirkulært skift valgt Label for a radio button that toggles rotate circular behavior for the shift operations. Rotasjon gjennom mentesirkulært skift valgt Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Innstillinger Header text of Settings page Utseende Subtitle of appearance setting on Settings page App-tema Title of App theme expander Velg hvilket app-tema som skal vises Description of App theme expander Lyst Lable for light theme option Mørkt Lable for dark theme option Bruk systeminnstilling Lable for the app theme option to use system setting Tilbake Screen reader prompt for the Back button in title bar to back to main page Innstillingssiden Announcement used when Settings page is opened Åpne hurtigmenyen for å se tilgjengelige handlinger Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Kan ikke gjenopprette dette øyeblikksbildet. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/nl-NL/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ongeldige invoer Error message shown when the input makes a function fail, like log(-1) Resultaat is niet gedefinieerd Error message shown when there's no possible value for a function. Onvoldoende geheugen Error message shown when we run out of memory during a calculation. Overloop Error message shown when there's an overflow during the calculation. Resultaat is niet gedefinieerd Same as 101 Resultaat niet gedefinieerd Same 101 Overloop Same as 107 Overloop Same 107 Kan niet door nul delen Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/nl-NL/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Rekenmachine {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Rekenmachine [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Rekenmachine {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Rekenmachine [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Rekenmachine {@Appx_Description@} This description is used for the official application when published through Windows Store. Rekenmachine [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopie Copy context menu string Plakken Paste context menu string Ongeveer gelijk aan The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, waarde %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63ste Sub-string used in automation name for 63 bit in bit flip 62ste Sub-string used in automation name for 62 bit in bit flip 61ste Sub-string used in automation name for 61 bit in bit flip 60ste Sub-string used in automation name for 60 bit in bit flip 59ste Sub-string used in automation name for 59 bit in bit flip 58ste Sub-string used in automation name for 58 bit in bit flip 57ste Sub-string used in automation name for 57 bit in bit flip 56ste Sub-string used in automation name for 56 bit in bit flip 55ste Sub-string used in automation name for 55 bit in bit flip 54ste Sub-string used in automation name for 54 bit in bit flip 53ste Sub-string used in automation name for 53 bit in bit flip 52ste Sub-string used in automation name for 52 bit in bit flip 51ste Sub-string used in automation name for 51 bit in bit flip 50ste Sub-string used in automation name for 50 bit in bit flip 49ste Sub-string used in automation name for 49 bit in bit flip 48ste Sub-string used in automation name for 48 bit in bit flip 47ste Sub-string used in automation name for 47 bit in bit flip 46ste Sub-string used in automation name for 46 bit in bit flip 45ste Sub-string used in automation name for 45 bit in bit flip 44ste Sub-string used in automation name for 44 bit in bit flip 43ste Sub-string used in automation name for 43 bit in bit flip 42ste Sub-string used in automation name for 42 bit in bit flip 41ste Sub-string used in automation name for 41 bit in bit flip 40ste Sub-string used in automation name for 40 bit in bit flip 39ste Sub-string used in automation name for 39 bit in bit flip 38ste Sub-string used in automation name for 38 bit in bit flip 37ste Sub-string used in automation name for 37 bit in bit flip 36ste Sub-string used in automation name for 36 bit in bit flip 35ste Sub-string used in automation name for 35 bit in bit flip 34ste Sub-string used in automation name for 34 bit in bit flip 33ste Sub-string used in automation name for 33 bit in bit flip 32ste Sub-string used in automation name for 32 bit in bit flip 31ste Sub-string used in automation name for 31 bit in bit flip 30ste Sub-string used in automation name for 30 bit in bit flip 29ste Sub-string used in automation name for 29 bit in bit flip 28ste Sub-string used in automation name for 28 bit in bit flip 27ste Sub-string used in automation name for 27 bit in bit flip 26ste Sub-string used in automation name for 26 bit in bit flip 25ste Sub-string used in automation name for 25 bit in bit flip 24ste Sub-string used in automation name for 24 bit in bit flip 23ste Sub-string used in automation name for 23 bit in bit flip 22ste Sub-string used in automation name for 22 bit in bit flip 21ste Sub-string used in automation name for 21 bit in bit flip 20ste Sub-string used in automation name for 20 bit in bit flip 19de Sub-string used in automation name for 19 bit in bit flip 18de Sub-string used in automation name for 18 bit in bit flip 17de Sub-string used in automation name for 17 bit in bit flip 16de Sub-string used in automation name for 16 bit in bit flip 15de Sub-string used in automation name for 15 bit in bit flip 14de Sub-string used in automation name for 14 bit in bit flip 13de Sub-string used in automation name for 13 bit in bit flip 12de Sub-string used in automation name for 12 bit in bit flip 11de Sub-string used in automation name for 11 bit in bit flip 10de Sub-string used in automation name for 10 bit in bit flip 9de Sub-string used in automation name for 9 bit in bit flip 8ste Sub-string used in automation name for 8 bit in bit flip 7de Sub-string used in automation name for 7 bit in bit flip 6de Sub-string used in automation name for 6 bit in bit flip 5de Sub-string used in automation name for 5 bit in bit flip 4de Sub-string used in automation name for 4 bit in bit flip 3de Sub-string used in automation name for 3 bit in bit flip 2de Sub-string used in automation name for 2 bit in bit flip 1ste Sub-string used in automation name for 1 bit in bit flip minst significante bit Used to describe the first bit of a binary number. Used in bit flip Geheugen-flyout openen This is the automation name and label for the memory button when the memory flyout is closed. Geheugen-flyout sluiten This is the automation name and label for the memory button when the memory flyout is open. Op voorgrond behouden This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Terug naar volledige weergave This is the tool tip automation name for the always-on-top button when in always-on-top mode. Geheugen This is the tool tip automation name for the memory button. Geschiedenis (Ctrl+H) This is the tool tip automation name for the history button. Bit-wissel-toetsenblok This is the tool tip automation name for the bitFlip button. Volledig toetsenblok This is the tool tip automation name for the numberPad button. Geheugen wissen (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Geheugen The text that shows as the header for the memory list Geheugen The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Geschiedenis The text that shows as the header for the history list Geschiedenis The automation name for the History pivot item that is shown when Calculator is in wide layout. Conversieprogramma Label for a control that activates the unit converter mode. Wetenschappelijk Label for a control that activates scientific mode calculator layout Standaard Label for a control that activates standard mode calculator layout. Conversiemodus Screen reader prompt for a control that activates the unit converter mode. Wetenschappelijke modus Screen reader prompt for a control that activates scientific mode calculator layout Standaardmodus Screen reader prompt for a control that activates standard mode calculator layout. Alle geschiedenis wissen "ClearHistory" used on the calculator history pane that stores the calculation history. Alle geschiedenis wissen This is the tool tip automation name for the Clear History button. Verbergen "HideHistory" used on the calculator history pane that stores the calculation history. Standaard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Wetenschappelijk The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmeur The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Conversieprogramma The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Rekenmachine The text that shows in the dropdown navigation control for the calculator group. Conversieprogramma The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Rekenmachine The text that shows in the dropdown navigation control for the calculator group in upper case. Conversieprogramma's Pluralized version of the converter group text, used for the screen reader prompt. Rekenmachines Pluralized version of the calculator group text, used for the screen reader prompt. Weergave is %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Expressie is %1, huidige invoer is %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Weergave is %1 punt {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expressie is %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Schermwaarde gekopieerd naar klembord Screen reader prompt for the Calculator display copy button, when the button is invoked. Geschiedenis Screen reader prompt for the history flyout Geheugen Screen reader prompt for the memory flyout Hexadecimaal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimaal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octaal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binair %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Alle geschiedenis wissen Screen reader prompt for the Calculator History Clear button Geschiedenis gewist Screen reader prompt for the Calculator History Clear button, when the button is invoked. Geschiedenis verbergen Screen reader prompt for the Calculator History Hide button Geschiedenis-flyout openen Screen reader prompt for the Calculator History button, when the flyout is closed. Geschiedenis-flyout sluiten Screen reader prompt for the Calculator History button, when the flyout is open. Opslaan in geheugen Screen reader prompt for the Calculator Memory button In geheugen opslaan (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Geheugen wissen Screen reader prompt for the Calculator Clear Memory button Geheugen gewist Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Ophalen uit geheugen Screen reader prompt for the Calculator Memory Recall button Geheugenitem ophalen (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Toevoegen aan geheugen Screen reader prompt for the Calculator Memory Add button Bij geheugenitem optellen (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Van geheugenitem aftrekken Screen reader prompt for the Calculator Memory Subtract button Van geheugenitem aftrekken (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Geheugenitem wissen Screen reader prompt for the Calculator Clear Memory button Geheugenitem wissen This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Toevoegen aan geheugenitem Screen reader prompt for the Calculator Memory Add button in the Memory list Toevoegen aan geheugenitem This is the tool tip automation name for the Calculator Memory Add button in the Memory list Van geheugenitem aftrekken Screen reader prompt for the Calculator Memory Subtract button in the Memory list Van geheugenitem aftrekken This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Geheugenitem wissen Screen reader prompt for the Calculator Clear Memory button Geheugenitem wissen Text string for the Calculator Clear Memory option in the Memory list context menu Toevoegen aan geheugenitem Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Toevoegen aan geheugenitem Text string for the Calculator Memory Add option in the Memory list context menu Van geheugenitem aftrekken Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Van geheugenitem aftrekken Text string for the Calculator Memory Subtract option in the Memory list context menu Verwijderen Text string for the Calculator Delete swipe button in the History list Kopiëren Text string for the Calculator Copy option in the History list context menu Verwijderen Text string for the Calculator Delete option in the History list context menu Geschiedenisitem verwijderen Screen reader prompt for the Calculator Delete swipe button in the History list Geschiedenisitem verwijderen Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nul Screen reader prompt for the Calculator number "0" button Een Screen reader prompt for the Calculator number "1" button Twee Screen reader prompt for the Calculator number "2" button Drie Screen reader prompt for the Calculator number "3" button Vier Screen reader prompt for the Calculator number "4" button Vijf Screen reader prompt for the Calculator number "5" button Zes Screen reader prompt for the Calculator number "6" button Zeven Screen reader prompt for the Calculator number "7" button Acht Screen reader prompt for the Calculator number "8" button Negen Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button En Screen reader prompt for the Calculator And button Of Screen reader prompt for the Calculator Or button Niet Screen reader prompt for the Calculator Not button Naar links roteren Screen reader prompt for the Calculator ROL button Naar rechts roteren Screen reader prompt for the Calculator ROR button Schuiven naar links Screen reader prompt for the Calculator LSH button Schuiven naar rechts Screen reader prompt for the Calculator RSH button Exclusief of Screen reader prompt for the Calculator XOR button Viervoudig woord in-/uitschakelen Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Dubbel woord in-/uitschakelen Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Woorden in-/uitschakelen Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Byte in-/uitschakelen Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Bit-wissel-toetsenblok Screen reader prompt for the Calculator bitFlip button Volledig toetsenblok Screen reader prompt for the Calculator numberPad button Decimaalteken Screen reader prompt for the "." button Invoer wissen Screen reader prompt for the "CE" button Wissen Screen reader prompt for the "C" button Delen door Screen reader prompt for the divide button on the number pad Vermenigvuldigen met Screen reader prompt for the multiply button on the number pad Is gelijk aan Screen reader prompt for the equals button on the scientific operator keypad Inverse-functie Screen reader prompt for the shift button on the number pad in scientific mode. Min Screen reader prompt for the minus button on the number pad Min We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Wortel Screen reader prompt for the square root button on the scientific operator keypad Procent Screen reader prompt for the percent button on the scientific operator keypad Positief negatief Screen reader prompt for the negate button on the scientific operator keypad Positief negatief Screen reader prompt for the negate button on the converter operator keypad Reciproque Screen reader prompt for the invert button on the scientific operator keypad Haakje openen Screen reader prompt for the Calculator "(" button on the scientific operator keypad Haakje openen, aantal haakjes openen %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Haakje sluiten Screen reader prompt for the Calculator ")" button on the scientific operator keypad Aantal haakjes openen %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Er zijn geen haakjes openen om te sluiten. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Wetenschappelijke notatie Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolische functie Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hyperbolicus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hyperbolicus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangens hyperbolicus Screen reader prompt for the Calculator tanh button on the scientific operator keypad Vierkant Screen reader prompt for the x squared on the scientific operator keypad. Kubus Screen reader prompt for the x cubed on the scientific operator keypad. Arcsinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arccosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arctangens Screen reader prompt for the inverted tan on the scientific operator keypad. Arcsinus hyperbolicus Screen reader prompt for the inverted sinh on the scientific operator keypad. Arccosinus hyperbolicus Screen reader prompt for the inverted cosh on the scientific operator keypad. Arctangens hyperbolicus Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' tot de macht Screen reader prompt for x power y button on the scientific operator keypad. Tien tot de macht Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' tot de macht Screen reader for the e power x on the scientific operator keypad. 'y' wortel van 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritme Screen reader for the log base 10 on the scientific operator keypad Natuurlijk logaritme Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponentieel Screen reader for the exp button on the scientific operator keypad Graad minuut seconde Screen reader for the exp button on the scientific operator keypad Graden Screen reader for the exp button on the scientific operator keypad Geheel getal Screen reader for the int button on the scientific operator keypad Breuk Screen reader for the frac button on the scientific operator keypad Faculteit Screen reader for the factorial button on the basic operator keypad Graden in-/uitschakelen This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Gradiënten in-/uitschakelen This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Radialen in-/uitschakelen This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Vervolgkeuzelijst Modus Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Vervolgkeuzelijst Categorieën Screen reader prompt for the Categories dropdown field. Op voorgrond behouden Screen reader prompt for the Always-on-Top button when in normal mode. Terug naar volledige weergave Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Op voorgrond houden (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Terug naar volledige weergave (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converteren van %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converteren van %1 punt %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converteren naar %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 is %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Invoereenheid Screen reader prompt for the Unit Converter Units1 i.e. top units field. Uitvoereenheid Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Oppervlakte Unit conversion category name called Area (eg. area of a sports field in square meters) Gegevens Unit conversion category name called Data Energie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lengte Unit conversion category name called Length Vermogen Unit conversion category name called Power (eg. the power of an engine or a light bulb) Snelheid Unit conversion category name called Speed Tijd Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatuur Unit conversion category name called Temperature Gewicht en massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Druk Unit conversion category name called Pressure Hoek Unit conversion category name called Angle Valuta Unit conversion category name called Currency Fluid ounces (VK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (VK) An abbreviation for a measurement unit of volume Fluid ounces (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (VS) An abbreviation for a measurement unit of volume Gallons (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (VK) An abbreviation for a measurement unit of volume Gallons (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (VS) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pints (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (VK) An abbreviation for a measurement unit of volume Pints (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (VS) An abbreviation for a measurement unit of volume Tablespoons (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (VS) An abbreviation for a measurement unit of volume Teaspoons (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (VS) An abbreviation for a measurement unit of volume Tablespoons (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (VK) An abbreviation for a measurement unit of volume Teaspoons (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (VK) An abbreviation for a measurement unit of volume Quarts (VK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (VK) An abbreviation for a measurement unit of volume Quarts (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (VS) An abbreviation for a measurement unit of volume Cups (VS) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cup (VS) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy voet An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area pk (VS) An abbreviation for a measurement unit of power u An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/u An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mijl An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time zeemijl An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length jr An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) British Thermal Units A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU's/minuut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Thermische calorieën A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter per seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke centimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke voet A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke inch A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke meter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubieke yard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dagen A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voet A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voet per seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voetpond A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voetpond/minuut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectare A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Paardenkracht (VS) A measurement unit for power Uren A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inch A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-uren A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Voedingscalorieën A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer per uur A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knopen A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter per seconde A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Micron A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microseconden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mijl A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mijl per uur A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milliseconden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuten A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zeemijlen A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Seconden A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante centimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante voet A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante inch A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante kilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante meter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante mijl A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante millimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vierkante yard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Weken A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jaar A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd An abbreviation for a measurement unit of weight graden An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (VK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (VS) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karaat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graden A measurement unit for Angle. Radialen A measurement unit for Angle. Gradiënten A measurement unit for Angle. Atmosfeer A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeters kwik A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pond per vierkante inch A measurement unit for Pressure. Centigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Long tons (VK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounces A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ponden A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Short tons (VS) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrische ton A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd’s A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cd’s A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) voetbalvelden A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) voetbalvelden A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskettes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dvd’s A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dvd’s A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterijen AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterijen AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paperclips A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lampen A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lampen A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paarden A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) paarden A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badkuipen A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badkuipen A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sneeuwvlokjes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sneeuwvlokjes A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) olifanten An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) olifanten An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) schildpadden A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) schildpadden A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) straalvliegtuigen A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) straalvliegtuigen A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) walvissen A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) walvissen A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koffiekopjes A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) koffiekopjes A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zwembaden An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zwembaden An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) handen A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) handen A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vellen papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vellen papier A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastelen A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kastelen A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananen A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananen A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plakjes cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plakjes cake A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) treinmotoren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) treinmotoren A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) voetballen A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) voetballen A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Geheugenitem Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Terug Screen reader prompt for the About panel back button Terug Content of tooltip being displayed on AboutControlBackButton Licentievoorwaarden voor Microsoft-software Displayed on a link to the Microsoft Software License Terms on the About panel Voorbeeldweergave Label displayed next to upcoming features Privacyverklaring van Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Alle rechten voorbehouden. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Voor meer informatie over hoe u kunt bijdragen aan Windows-rekenmachine, bekijkt u het project op %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Info over Subtitle of about message on Settings page Feedback verzenden The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Er is nog geen geschiedenis. The text that shows as the header for the history list Er is niets opgeslagen in het geheugen. The text that shows as the header for the memory list Geheugen Screen reader prompt for the negate button on the converter operator keypad Deze expressie kan niet worden geplakt The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datumberekening Berekeningsmodus Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Toevoegen Add toggle button text Dagen optellen of aftrekken Add or Subtract days option Datum Date result label Verschil tussen datums Date difference option Dagen Add/Subtract Days label Verschil Difference result label Vanaf From Date Header for Difference Date Picker Maanden Add/Subtract Months label Aftrekken Subtract toggle button text Tot To Date Header for Difference Date Picker Jaar Add/Subtract Years label Datum buiten bereik Out of bound message shown as result when the date calculation exceeds the bounds dag dagen maand maanden Dezelfde datums week weken jaar jaren Verschil %1 Automation name for reading out the date difference. %1 = Date difference Resulterende datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 Rekenmachinemodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 Conversiemodus {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datumberekeningsmodus Automation name for when the mode header is focused and the current mode is Date calculation. Geschiedenis- en geheugenlijsten Automation name for the group of controls for history and memory lists. Geheugencontrollers Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standaardfuncties Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Beeldschermcontrollers Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standaardoperators Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numeriek toetsenbord Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Hoekoperators Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Wetenschappelijke functies Automation name for the group of Scientific functions. Radix selecteren Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeeroperators Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Invoermodusselectie Automation name for the group of input mode toggling buttons. Toetsenblok voor het omzetten van bits Automation name for the group of bit toggling buttons. Expressie naar links schuiven Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Expressie naar rechts schuiven Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Max. aantal cijfers bereikt. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 opgeslagen in geheugen {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Geheugensleuf %1 is %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Geheugensleuf %1 gewist {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". gedeeld door Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. maal Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. min Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. tot de macht Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y wortel Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. schuiven naar links Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. schuiven naar rechts Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. of Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x of Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. en Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Bijgewerkt %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Tarieven bijwerken The text displayed for a hyperlink button that refreshes currency converter ratios. Er worden mogelijk datakosten in rekening gebracht. The text displayed when users are on a metered connection and using currency converter. Nieuwe tarieven kunnen niet worden opgehaald. Probeer het later opnieuw. The text displayed when currency ratio data fails to load. Offline. Controleer je %HL%netwerkinstellingen%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Valutawisselkoersen worden bijgewerkt This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valutawisselkoersen bijgewerkt This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kan wisselkoersen niet bijwerken This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Geheugen wissen (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Geheugen wissen Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} graden sinus Name for the sine function in degrees mode. Used by screen readers. radialen sinus Name for the sine function in radians mode. Used by screen readers. gradiënten sinus Name for the sine function in gradians mode. Used by screen readers. graden arcsinus Name for the inverse sine function in degrees mode. Used by screen readers. radialen arcsinus Name for the inverse sine function in radians mode. Used by screen readers. gradiënten arcsinus Name for the inverse sine function in gradians mode. Used by screen readers. sinus hyperbolicus Name for the hyperbolic sine function. Used by screen readers. arcsinus hyperbolicus Name for the inverse hyperbolic sine function. Used by screen readers. graden cosinus Name for the cosine function in degrees mode. Used by screen readers. radialen cosinus Name for the cosine function in radians mode. Used by screen readers. gradiënten cosinus Name for the cosine function in gradians mode. Used by screen readers. graden arccosinus Name for the inverse cosine function in degrees mode. Used by screen readers. radialen arccosinus Name for the inverse cosine function in radians mode. Used by screen readers. gradiënten arccosinus Name for the inverse cosine function in gradians mode. Used by screen readers. cosinus hyperbolicus Name for the hyperbolic cosine function. Used by screen readers. arccosinus hyperbolicus Name for the inverse hyperbolic cosine function. Used by screen readers. graden tangens Name for the tangent function in degrees mode. Used by screen readers. radialen tangens Name for the tangent function in radians mode. Used by screen readers. gradiënten tangens Name for the tangent function in gradians mode. Used by screen readers. graden arctangens Name for the inverse tangent function in degrees mode. Used by screen readers. radialen arctangens Name for the inverse tangent function in radians mode. Used by screen readers. gradiënten arctangens Name for the inverse tangent function in gradians mode. Used by screen readers. tangens hyperbolicus Name for the hyperbolic tangent function. Used by screen readers. arctangens hyperbolicus Name for the inverse hyperbolic tangent function. Used by screen readers. graden secans Name for the secant function in degrees mode. Used by screen readers. radialen secans Name for the secant function in radians mode. Used by screen readers. gradiënten secans Name for the secant function in gradians mode. Used by screen readers. graden inverse secans Name for the inverse secant function in degrees mode. Used by screen readers. radialen inverse secans Name for the inverse secant function in radians mode. Used by screen readers. gradiënten inverse secans Name for the inverse secant function in gradians mode. Used by screen readers. secans hyperbolicus Name for the hyperbolic secant function. Used by screen readers. inverse secans hyperbolicus Name for the inverse hyperbolic secant function. Used by screen readers. graden cosecans Name for the cosecant function in degrees mode. Used by screen readers. radialen cosecans Name for the cosecant function in radians mode. Used by screen readers. gradiënten cosecans Name for the cosecant function in gradians mode. Used by screen readers. graden inverse cosecans Name for the inverse cosecant function in degrees mode. Used by screen readers. radialen inverse cosecans Name for the inverse cosecant function in radians mode. Used by screen readers. gradiënten inverse cosecans Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecans hyperbolicus Name for the hyperbolic cosecant function. Used by screen readers. inverse cosecans hyperbolicus Name for the inverse hyperbolic cosecant function. Used by screen readers. graden contangens Name for the cotangent function in degrees mode. Used by screen readers. Radialen cotangens Name for the cotangent function in radians mode. Used by screen readers. gradiënten cotangens Name for the cotangent function in gradians mode. Used by screen readers. graden inverse cotangens Name for the inverse cotangent function in degrees mode. Used by screen readers. radialen inverse cotangens Name for the inverse cotangent function in radians mode. Used by screen readers. gradiënten inverse cotangens Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangens hyperbolicus Name for the hyperbolic cotangent function. Used by screen readers. inverse cotangens hyperbolicus Name for the inverse hyperbolic cotangent function. Used by screen readers. Derdemachtswortel Name for the cube root function. Used by screen readers. Logaritmische basis Name for the logbasey function. Used by screen readers. Absolute waarde Name for the absolute value function. Used by screen readers. schuiven naar links Name for the programmer function that shifts bits to the left. Used by screen readers. schuiven naar rechts Name for the programmer function that shifts bits to the right. Used by screen readers. faculteit Name for the factorial function. Used by screen readers. graden minuut seconde Name for the degree minute second (dms) function. Used by screen readers. natuurlijke logaritme Name for the natural log (ln) function. Used by screen readers. vierkant Name for the square function. Used by screen readers. y wortel Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categorie %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft-servicesovereenkomst Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Vanaf From Date Header for AddSubtract Date Picker Berekeningsresultaat naar links schuiven Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Berekeningsresultaat naar rechts schuiven Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Berekening mislukt Text displayed when the application is not able to do a calculation Basislogboek Y Screen reader prompt for the logBaseY button Trigonometrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Functie Displayed on the button that contains a flyout for the general functions in scientific mode. Ongelijkheden Displayed on the button that contains a flyout for the inequality functions. Ongelijkheden Screen reader prompt for the Inequalities button Bitwise Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitshift Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverse-functie Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolische functie Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secans hyperbolicus Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arcsecans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arcsecans hyperbolicus Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecans hyperbolicus Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc-cosecans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arc-cosecans hyperbolicus Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangens hyperbolicus Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc-cotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arc-cotangens hyperbolicus Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Afronden beneden Screen reader prompt for the Calculator button floor in the scientific flyout keypad Afronden boven Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Willekeurig Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolute waarde Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler-constante Screen reader prompt for the Calculator button e in the scientific flyout keypad Twee tot de macht Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Niet En Screen reader prompt for the Calculator button nand in the scientific flyout keypad Niet En Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Niet Of Screen reader prompt for the Calculator button nor in the scientific flyout keypad Niet Of Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Draaien links met overnemen Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Draaien rechts met overnemen Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Schuiven naar links Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Verschuiving links Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Schuiven naar rechts Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Verplaatsing rechts Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Rekenkundige verschuiving Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logische verschuiving Label for a radio button that toggles logical shift behavior for the shift operations. Circulaire verschuiving draaien Label for a radio button that toggles rotate circular behavior for the shift operations. Draaien via overnemen circulaire verschuiving Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Derdemachtswortel Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrie Screen reader prompt for the square root button on the scientific operator keypad Functies Screen reader prompt for the square root button on the scientific operator keypad Bitwise Screen reader prompt for the square root button on the scientific operator keypad Bitshift Screen reader prompt for the square root button on the scientific operator keypad Operatorpanelen wetenschappelijk Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Operatorpanelen programmeren Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad meest significante bit Used to describe the last bit of a binary number. Used in bit flip Grafisch Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plotten Screen reader prompt for the plot button on the graphing calculator operator keypad Weergave automatisch vernieuwen (CTRL + 0) This is the tool tip automation name for the Calculator graph view button. Grafiekweergave Screen reader prompt for the graph view button. Automatisch passend maken Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Handmatige aanpassing Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafiekweergave is opnieuw ingesteld Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Inzoomen (Ctrl + plusteken) This is the tool tip automation name for the Calculator zoom in button. Inzoomen Screen reader prompt for the zoom in button. Uitzoomen (Ctrl + minteken) This is the tool tip automation name for the Calculator zoom out button. Uitzoomen Screen reader prompt for the zoom out button. Vergelijking toevoegen Placeholder text for the equation input button Kan op dit moment niet delen. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Kijk wat voor grafiek ik met Windows Rekenmachine heb gemaakt Sent as part of the shared content. The title for the share. Vergelijkingen Header that appears over the equations section when sharing Variabelen Header that appears over the variables section when sharing Afbeelding van een grafiek met vergelijkingen Alt text for the graph image when output via Share Variabelen Header text for variables area Stap Label text for the step text box Min Label text for the min text box Max Label text for the max text box Kleur Label for the Line Color section of the style picker Stij Label for the Line Style section of the style picker Functieanalyse Title for KeyGraphFeatures Control De functie heeft geen horizontale asymptoten. Message displayed when the graph does not have any horizontal asymptotes Er zijn geen buigpunten voor de functie. Message displayed when the graph does not have any inflection points De functie heeft geen maximale punten. Message displayed when the graph does not have any maxima De functie heeft geen minimale punten. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Aflopend String describing decreasing monotonicity of a function Kan de monotoniteit van de functie niet bepalen. Error displayed when monotonicity cannot be determined Oplopend String describing increasing monotonicity of a function De monotoniteit van de functie is onbekend. Error displayed when monotonicity is unknown De functie heeft geen schuine asymptoten. Message displayed when the graph does not have any oblique asymptotes Kan de pariteit van de functie niet bepalen. Error displayed when parity is cannot be determined De functie is even. Message displayed with the function parity is even De functie is nog even noch oneven. Message displayed with the function parity is neither even nor odd De functie is oneven. Message displayed with the function parity is odd De pariteit van de functie is onbekend. Error displayed when parity is unknown Periodiciteit wordt niet ondersteund voor deze functie. Error displayed when periodicity is not supported De functie is niet periodiek. Message displayed with the function periodicity is not periodic De periodiciteit van de functie is onbekend. Message displayed with the function periodicity is unknown Deze functies zijn te complex voor de rekenmachine: Error displayed when analysis features cannot be calculated De functie heeft geen verticale asymptoten. Message displayed when the graph does not have any vertical asymptotes De functie heeft geen x-snijpunten. Message displayed when the graph does not have any x-intercepts De functie heeft geen y-snijpunten. Message displayed when the graph does not have any y-intercepts Domein Title for KeyGraphFeatures Domain Property Horizontale asymptoten Title for KeyGraphFeatures Horizontal aysmptotes Property Buigpunten Title for KeyGraphFeatures Inflection points Property De analyse wordt niet ondersteund voor deze functie. Error displayed when graph analysis is not supported or had an error. Analyse wordt alleen ondersteund voor functies in de notatie f(x). Voorbeeld: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotoniteit Title for KeyGraphFeatures Monotonicity Property Schuine asymptoten Title for KeyGraphFeatures Oblique asymptotes Property Pariteit Title for KeyGraphFeatures Parity Property Cyclus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Bereik Title for KeyGraphFeatures Range Property Verticale asymptoten Title for KeyGraphFeatures Vertical asymptotes Property X-snijpunt Title for KeyGraphFeatures XIntercept Property Y-snijpunt Title for KeyGraphFeatures YIntercept Property De analyse kan niet worden uitgevoerd voor de functie. Kan het domein voor deze functie niet berekenen. Error displayed when Domain is not returned from the analyzer. Kan het bereik voor deze functie niet berekenen. Error displayed when Range is not returned from the analyzer. Overloop (het getal is te groot) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radialenmodus is vereist om deze vergelijking weer te geven in een grafiek. Error that occurs during graphing when radians is required. Deze functie is te complex om te worden weergegeven in een grafiek Error that occurs during graphing when the equation is too complex. Gradenmodus is vereist om deze vergelijking weer te geven in een grafiek Error that occurs during graphing when degrees is required De faculteitsfunctie heeft een ongeldig argument Error that occurs during graphing when a factorial function has an invalid argument. De faculteitsfunctie heeft een argument dat te groot is voor een grafiek Error that occurs during graphing when a factorial has a large n Modulo kan alleen worden gebruikt voor gehele getallen Error that occurs during graphing when modulo is used with a float. De vergelijking heeft geen oplossing Error that occurs during graphing when the equation has no solution. Kan niet delen door nul Error that occurs during graphing when a divison by zero occurs. De vergelijking bevat logische voorwaarden die elkaar wederzijds uitsluiten Error that occurs during graphing when mutually exclusive conditions are used. Vergelijking valt buiten het domein Error that occurs during graphing when the equation is out of domain. In een grafiek weergeven van deze vergelijking wordt niet ondersteund Error that occurs during graphing when the equation is not supported. Er ontbreekt een haakje openen in de vergelijking Error that occurs during graphing when the equation is missing a ( Er ontbreekt een haakje sluiten in de vergelijking Error that occurs during graphing when the equation is missing a ) Een getal bevat teveel cijfers achter de komma Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Er ontbreken cijfers achter de komma Error that occurs during graphing with a decimal point without digits Onverwacht einde van expressie Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* De expressie bevat onverwachte tekens Error that occurs during graphing when there is an unexpected token. De expressie bevat ongeldige tekens Error that occurs during graphing when there is an invalid token. Er zijn te veel gelijktekens Error that occurs during graphing when there are too many equals. De functie moet minstens één x- of y-variabele bevatten Error that occurs during graphing when the equation is missing x or y. Ongeldige expressie Error that occurs during graphing when an invalid syntax is used. De expressie is leeg Error that occurs during graphing when the expression is empty Gelijkteken is gebruikt zonder een vergelijking Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Haakjes na functienaam ontbreken Error that occurs during graphing when parenthesis are missing after a function. Er is een rekenkundige bewerking met een onjuist aantal parameters Error that occurs during graphing when a function has the wrong number of parameters Een variabelenaam is ongeldig Error that occurs during graphing when a variable name is invalid. Er ontbreekt een haak openen in de vergelijking Error that occurs during graphing when a { is missing Er ontbreekt een haak sluiten in de vergelijking Error that occurs during graphing when a } is missing. ‘i’ en ‘I’ kunnen niet worden gebruikt als variabelenaam Error that occurs during graphing when i or I is used. De vergelijking wordt niet weergegeven in een grafiek General error that occurs during graphing. Het cijfer kan niet worden omgezet voor de opgegeven basis Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). De basis moet groter dan 2 zijn en kleiner dan 36 Error that occurs during graphing when the base is out of range. Voor een wiskundige bewerking moet een van de paramaters een variabele zijn Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Vergelijking combineert logische en scalaire operanden Error that occurs during graphing when operands are mixed. Such as true and 1. x of y kan niet worden gebruikt in de boven- of ondergrens Error that occurs during graphing when x or y is used in integral upper limits. x of y kan niet worden gebruikt in het limietpunt Error that occurs during graphing when x or y is used in the limit point. Kan geen complex oneindigheid gebruiken Error that occurs during graphing when complex infinity is used Kan geen complex getallen gebruiken in ongelijkheden Error that occurs during graphing when complex numbers are used in inequalities. Teruggaan naar de lijst met functies This is the tooltip for the back button in the equation analysis page in the graphing calculator Teruggaan naar de lijst met functies This is the automation name for the back button in the equation analysis page in the graphing calculator Functie analyseren This is the tooltip for the analyze function button Functie analyseren This is the automation name for the analyze function button Functie analyseren This is the text for the for the analyze function context menu command Vergelijking verwijderen This is the tooltip for the graphing calculator remove equation buttons Vergelijking verwijderen This is the automation name for the graphing calculator remove equation buttons Vergelijking verwijderen This is the text for the for the remove equation context menu command Delen This is the automation name for the graphing calculator share button. Delen This is the tooltip for the graphing calculator share button. Vergelijkingsstijl wijzigen This is the tooltip for the graphing calculator equation style button Vergelijkingsstijl wijzigen This is the automation name for the graphing calculator equation style button Vergelijkingsstijl wijzigen This is the text for the for the equation style context menu command Vergelijking weergeven This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Vergelijking verbergen This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Vergelijking %1 weergeven {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Vergelijking %1 verbergen {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Tracering stoppen This is the tooltip/automation name for the graphing calculator stop tracing button Tracering starten This is the tooltip/automation name for the graphing calculator start tracing button Het diagramweergave venster, de x-as die wordt begrensd door %1 en %2, y-as die wordt begrensd door %3 en %4, waarbij %5 vergelijkingen worden weergegeven {Locked="%1","%2", "%3", "%4", "%5"}. Schuifregelaar configureren This is the tooltip text for the slider options button in Graphing Calculator Schuifregelaar configureren This is the automation name text for the slider options button in Graphing Calculator Vergelijkingsmodus activeren Used in Graphing Calculator to switch the view to the equation mode Grafiekmodus activeren Used in Graphing Calculator to switch the view to the graph mode Vergelijkingsmodus activeren Used in Graphing Calculator to switch the view to the equation mode De huidige modus is de vergelijkingsmodus Announcement used in Graphing Calculator when switching to the equation mode De huidige modus is grafiekmodus Announcement used in Graphing Calculator when switching to the graph mode Venster Heading for window extents on the settings Graden Degrees mode on settings page Gradiënten Gradian mode on settings page Radialen Radians mode on settings page Eenheden Heading for Unit's on the settings Weergave opnieuw instellen Hyperlink button to reset the view of the graph X-Max X maximum value header X-Min X minimum value header Y-Max Y Maximum value header Y-Min Y minimum value header Grafiekopties This is the tooltip text for the graph options button in Graphing Calculator Grafiekopties This is the automation name text for the graph options button in Graphing Calculator Grafiekopties Heading for the Graph options flyout in Graphing mode. Opties voor variabele Screen reader prompt for the variable settings toggle button Variabele opties voor wisselknop Tool tip for the variable settings toggle button Lijndikte Heading for the Graph options flyout in Graphing mode. Lijnopties Heading for the equation style flyout in Graphing mode. Kleine lijnbreedte Automation name for line width setting Gemiddelde lijnbreedte Automation name for line width setting Grote lijnbreedte Automation name for line width setting Extra grote lijnbreedte Automation name for line width setting Voer een expressie in this is the placeholder text used by the textbox to enter an equation Kopiëren Copy menu item for the graph context menu Knippen Cut menu item from the Equation TextBox Kopiëren Copy menu item from the Equation TextBox Plakken Paste menu item from the Equation TextBox Ongedaan maken Undo menu item from the Equation TextBox Alles selecteren Select all menu item from the Equation TextBox Functie-invoer The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Functie-invoer The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Paneel voor functie-invoer The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Paneel voor variabelen The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lijst met variabelen The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Lijstitem voor variabele %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Tekstvak Waarde van variabele The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Schuifregelaar voor waarde van variabele The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Tekstvak Minimale waarde van variabele The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Tekstvak Intervalwaarde van variabele The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Tekstvak Maximale waarde van variabele The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Effen lijnstijl Name of the solid line style for a graphed equation Lijnstijl voor punten Name of the dotted line style for a graphed equation Streepje lijnstijl: Name of the dashed line style for a graphed equation Marineblauw Name of color in the color picker Zeeschuim Name of color in the color picker Violet Name of color in the color picker Groen Name of color in the color picker Mintgroen Name of color in the color picker Donkergroen Name of color in the color picker Houtskool Name of color in the color picker Rood Name of color in the color picker Lichtpaars Name of color in the color picker Magenta Name of color in the color picker Geelgoud Name of color in the color picker Helderoranje Name of color in the color picker Bruin Name of color in the color picker Zwart Name of color in the color picker Wit Name of color in the color picker Kleur 1 Name of color in the color picker Kleur 2 Name of color in the color picker Kleur 3 Name of color in the color picker Kleur 4 Name of color in the color picker Grafiekthema Graph settings heading for the theme options Altijd licht Graph settings option to set graph to light theme Overeenkomen met app-thema Graph settings option to set graph to match the app theme Thema This is the automation name text for the Graph settings heading for the theme options Altijd licht This is the automation name text for the Graph settings option to set graph to light theme Overeenkomen met app-thema This is the automation name text for the Graph settings option to set graph to match the app theme Functie verwijderd Announcement used in Graphing Calculator when a function is removed from the function list Vak Vergelijking van functieanalyse This is the automation name text for the equation box in the function analysis panel Is gelijk aan Screen reader prompt for the equal button on the graphing calculator operator keypad Kleiner dan Screen reader prompt for the Less than button Kleiner dan of gelijk aan Screen reader prompt for the Less than or equal button Gelijk aan Screen reader prompt for the Equal button Groter dan of gelijk aan Screen reader prompt for the Greater than or equal button Groter dan Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Verzenden Screen reader prompt for the submit button on the graphing calculator operator keypad Functieanalyse Screen reader prompt for the function analysis grid Grafiekopties Screen reader prompt for the graph options panel Geschiedenis- en geheugenlijsten Automation name for the group of controls for history and memory lists. Geheugenlijst Automation name for the group of controls for memory list. Geschiedenissleuf %1 is gewist {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Rekenmachine altijd op voorgrond Announcement to indicate calculator window is always shown on top. Rekenmachine terug in volledige weergave Announcement to indicate calculator window is now back to full view. Rekenkundige verschuiving geselecteerd Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logische verschuiving geselecteerd Label for a radio button that toggles logical shift behavior for the shift operations. Circulaire verschuiving draaien geselecteerd Label for a radio button that toggles rotate circular behavior for the shift operations. Draaien via overnemen circulaire verschuiving geselecteerd Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Instellingen Header text of Settings page Uiterlijk Subtitle of appearance setting on Settings page App-thema Title of App theme expander Selecteer welk app-thema moet worden weergegeven Description of App theme expander Licht Lable for light theme option Donker Lable for dark theme option Systeeminstelling gebruiken Lable for the app theme option to use system setting Terug Screen reader prompt for the Back button in title bar to back to main page Instellingenpagina Announcement used when Settings page is opened Het contextmenu openen voor beschikbare acties Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Kan deze momentopname niet herstellen. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/pl-PL/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Nieprawidłowe dane wejściowe Error message shown when the input makes a function fail, like log(-1) Nieokreślony wynik Error message shown when there's no possible value for a function. Za mało pamięci Error message shown when we run out of memory during a calculation. Przepełnienie Error message shown when there's an overflow during the calculation. Wynik nieokreślony Same as 101 Wynik nieokreślony Same 101 Przepełnienie Same as 107 Przepełnienie Same 107 Nie można dzielić przez zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/pl-PL/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kalkulator Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Kalkulator Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiuj Copy context menu string Wklej Paste context menu string W przybliżeniu równa się The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, wartość %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1-bitowy {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip najmniej znaczący bit Used to describe the first bit of a binary number. Used in bit flip Otwórz okno wysuwane pamięci This is the automation name and label for the memory button when the memory flyout is closed. Zamknij okno wysuwane pamięci This is the automation name and label for the memory button when the memory flyout is open. Zostaw na wierzchu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Powrót do pełnego widoku This is the tool tip automation name for the always-on-top button when in always-on-top mode. Pamięć This is the tool tip automation name for the memory button. Historia (Ctrl+H) This is the tool tip automation name for the history button. Klawiatura bitowa This is the tool tip automation name for the bitFlip button. Pełna klawiatura This is the tool tip automation name for the numberPad button. Wyczyść całą pamięć (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Pamięć The text that shows as the header for the memory list Pamięć The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historia The text that shows as the header for the history list Historia The automation name for the History pivot item that is shown when Calculator is in wide layout. Konwerter Label for a control that activates the unit converter mode. Naukowy Label for a control that activates scientific mode calculator layout Standardowy Label for a control that activates standard mode calculator layout. Tryb konwertera Screen reader prompt for a control that activates the unit converter mode. Tryb naukowy Screen reader prompt for a control that activates scientific mode calculator layout Tryb standardowy Screen reader prompt for a control that activates standard mode calculator layout. Wyczyść całą historię "ClearHistory" used on the calculator history pane that stores the calculation history. Wyczyść całą historię This is the tool tip automation name for the Clear History button. Ukryj "HideHistory" used on the calculator history pane that stores the calculation history. Standardowy The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Naukowy The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programisty The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konwerter The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Konwerter The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Konwertery Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatory Pluralized version of the calculator group text, used for the screen reader prompt. Wyświetlana wartość to %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Wyrażenie to %1, a aktualnie wprowadzona wartość to %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Wyświetlana wartość to %1 przecinek {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Wyrażenie %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Wyświetlona wartość został skopiowana do schowka Screen reader prompt for the Calculator display copy button, when the button is invoked. Historia Screen reader prompt for the history flyout Pamięć Screen reader prompt for the memory flyout Wartość szesnastkowa %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Wartość dziesiętna %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Wartość ósemkowa %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Wartość binarna %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Wyczyść całą historię Screen reader prompt for the Calculator History Clear button Historia została wyczyszczona Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ukryj historię Screen reader prompt for the Calculator History Hide button Otwórz okno wysuwane historii Screen reader prompt for the Calculator History button, when the flyout is closed. Zamknij okno wysuwane historii Screen reader prompt for the Calculator History button, when the flyout is open. Zachowaj w pamięci Screen reader prompt for the Calculator Memory button Przechowaj w pamięci (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Wyczyść całą pamięć Screen reader prompt for the Calculator Clear Memory button Pamięć została wyczyszczona Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Przywołaj z pamięci Screen reader prompt for the Calculator Memory Recall button Przywołaj z pamięci (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Dodaj do pamięci Screen reader prompt for the Calculator Memory Add button Dodaj do pamięci (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Odejmij od pamięci Screen reader prompt for the Calculator Memory Subtract button Odejmij od pamięci (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Wyczyść pozycję w pamięci Screen reader prompt for the Calculator Clear Memory button Wyczyść pozycję w pamięci This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Dodaj do pozycji w pamięci Screen reader prompt for the Calculator Memory Add button in the Memory list Dodaj do pozycji w pamięci This is the tool tip automation name for the Calculator Memory Add button in the Memory list Odejmij od pozycji w pamięci Screen reader prompt for the Calculator Memory Subtract button in the Memory list Odejmij od pozycji w pamięci This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Wyczyść pozycję w pamięci Screen reader prompt for the Calculator Clear Memory button Wyczyść pozycję w pamięci Text string for the Calculator Clear Memory option in the Memory list context menu Dodaj do pozycji w pamięci Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Dodaj do pozycji w pamięci Text string for the Calculator Memory Add option in the Memory list context menu Odejmij od pozycji w pamięci Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Odejmij od pozycji w pamięci Text string for the Calculator Memory Subtract option in the Memory list context menu Usuń Text string for the Calculator Delete swipe button in the History list Kopiuj Text string for the Calculator Copy option in the History list context menu Usuń Text string for the Calculator Delete option in the History list context menu Usuń element historii Screen reader prompt for the Calculator Delete swipe button in the History list Usuń element historii Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Jeden Screen reader prompt for the Calculator number "1" button Dwa Screen reader prompt for the Calculator number "2" button Trzy Screen reader prompt for the Calculator number "3" button Cztery Screen reader prompt for the Calculator number "4" button Pięć Screen reader prompt for the Calculator number "5" button Sześć Screen reader prompt for the Calculator number "6" button Siedem Screen reader prompt for the Calculator number "7" button Osiem Screen reader prompt for the Calculator number "8" button Dziewięć Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button I Screen reader prompt for the Calculator And button Lub Screen reader prompt for the Calculator Or button Nie Screen reader prompt for the Calculator Not button Przesunięcie cykliczne w lewo Screen reader prompt for the Calculator ROL button Przesunięcie cykliczne w prawo Screen reader prompt for the Calculator ROR button Bitowe przesunięcie w lewo Screen reader prompt for the Calculator LSH button Bitowe przesunięcie w prawo Screen reader prompt for the Calculator RSH button Wyłączny lub Screen reader prompt for the Calculator XOR button Przełącz do jednostki Słowo poczwórne Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Przełącz do jednostki Słowo podwójne Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Przełącz do jednostki Słowo Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Przełącz do jednostki Bajt Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Klawiatura bitowa Screen reader prompt for the Calculator bitFlip button Pełna klawiatura Screen reader prompt for the Calculator numberPad button Separator dziesiętny Screen reader prompt for the "." button Wyczyść wpis Screen reader prompt for the "CE" button Wyczyść Screen reader prompt for the "C" button Podziel przez Screen reader prompt for the divide button on the number pad Pomnóż przez Screen reader prompt for the multiply button on the number pad Równa się Screen reader prompt for the equals button on the scientific operator keypad Funkcja odwrotna Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Pierwiastek kwadratowy Screen reader prompt for the square root button on the scientific operator keypad Procent Screen reader prompt for the percent button on the scientific operator keypad Dodatnie/ujemne Screen reader prompt for the negate button on the scientific operator keypad Dodatnie/ujemne Screen reader prompt for the negate button on the converter operator keypad Odwrotność Screen reader prompt for the invert button on the scientific operator keypad Lewy nawias Screen reader prompt for the Calculator "(" button on the scientific operator keypad Lewy nawias, liczba otwartych nawiasów: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Prawy nawias Screen reader prompt for the Calculator ")" button on the scientific operator keypad Liczba nawiasów otwierających: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Brak otwartych nawiasów do zamknięcia. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notacja naukowa Screen reader prompt for the Calculator F-E the scientific operator keypad Funkcja hiperboliczna Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperboliczny Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hiperboliczny Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangens hiperboliczny Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kwadrat Screen reader prompt for the x squared on the scientific operator keypad. Sześcian Screen reader prompt for the x cubed on the scientific operator keypad. Arcus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arcus cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arcus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Arcus sinus hiperboliczny Screen reader prompt for the inverted sinh on the scientific operator keypad. Arcus cosinus hiperboliczny Screen reader prompt for the inverted cosh on the scientific operator keypad. Arcus tangens hiperboliczny Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X' do wykładnika potęgowego Screen reader prompt for x power y button on the scientific operator keypad. Dziesięć do potęgi Screen reader prompt for the 10 power x button on the scientific operator keypad. „e” do potęgi Screen reader for the e power x on the scientific operator keypad. pierwiastek 'y' stopnia 'x' Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logarytm dziesiętny Screen reader for the log base 10 on the scientific operator keypad Logarytm naturalny Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Wykładnicze Screen reader for the exp button on the scientific operator keypad Stopień minuta sekunda Screen reader for the exp button on the scientific operator keypad Stopnie Screen reader for the exp button on the scientific operator keypad Część całkowita Screen reader for the int button on the scientific operator keypad Część ułamkowa Screen reader for the frac button on the scientific operator keypad Silnia Screen reader for the factorial button on the basic operator keypad Przełącz do jednostki Stopnie This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Przełącz do jednostki Gradus This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Przełącz do jednostki Radian This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista rozwijana trybów Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista rozwijana kategorii Screen reader prompt for the Categories dropdown field. Zostaw na wierzchu Screen reader prompt for the Always-on-Top button when in normal mode. Powrót do pełnego widoku Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Zostaw na wierzchu (Alt + strzałka w górę) This is the tool tip automation name for the Always-on-Top button when in normal mode. Powrót do pełnego widoku (Alt + strzałka w dół) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konwertuj z %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konwertuj z %1 przecinek %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konwertuje na %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 to %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Jednostka wejściowa Screen reader prompt for the Unit Converter Units1 i.e. top units field. Jednostka wyjściowa Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Powierzchnia Unit conversion category name called Area (eg. area of a sports field in square meters) Dane Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Długość Unit conversion category name called Length Zasilanie Unit conversion category name called Power (eg. the power of an engine or a light bulb) Prędkość Unit conversion category name called Speed Czas Unit conversion category name called Time Objętość Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Ciężar i masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Ciśnienie Unit conversion category name called Pressure Kąt Unit conversion category name called Angle Waluta Unit conversion category name called Currency Uncje cieczy (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uncja cieczy (UK) An abbreviation for a measurement unit of volume Uncje cieczy (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) uncja cieczy (USA) An abbreviation for a measurement unit of volume Galony (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galon (UK) An abbreviation for a measurement unit of volume Galony (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galon (USA) An abbreviation for a measurement unit of volume Litry A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) l An abbreviation for a measurement unit of volume Mililitry A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Półkwarty (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) półkwarta (UK) An abbreviation for a measurement unit of volume Półkwarty (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) półkwarta (USA) An abbreviation for a measurement unit of volume Łyżki stołowe (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) łyżka stołowa (USA) An abbreviation for a measurement unit of volume Łyżeczki (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) łyżeczka (USA) An abbreviation for a measurement unit of volume Łyżki stołowe (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) łyżka stołowa (UK) An abbreviation for a measurement unit of volume Łyżeczki (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) łyżeczka (UK) An abbreviation for a measurement unit of volume Kwarty (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kwarta (UK) An abbreviation for a measurement unit of volume Kwarty (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kwarta (USA) An abbreviation for a measurement unit of volume Cups (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filiżanka (USA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume stopa³ An abbreviation for a measurement unit of volume cal³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume jard³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy stopy An abbreviation for a measurement unit of length stopy/s An abbreviation for a measurement unit of speed stopa•funt An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area KM (USA) An abbreviation for a measurement unit of power godz. An abbreviation for a measurement unit of time cal An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power węzeł An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mila An abbreviation for a measurement unit of length m/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length mila morska An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data stopa•funt/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area stopa² An abbreviation for a measurement unit of area cal² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mila² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area jard² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power tydzień An abbreviation for a measurement unit of time jard An abbreviation for a measurement unit of length rok An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akry A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jednostki BTU A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/min A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorie A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centymetry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centymetry na sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centymetry sześcienne A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy sześcienne A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cale sześcienne A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metry sześcienne A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardy sześcienne A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsjusz An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronowolty A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy na sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopofunty A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopofunty/minutę A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektary A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Koń mechaniczny (USA) A measurement unit for power Godziny A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cale A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dżule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatogodzin A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelwiny An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilokalorie A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodżule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometry na godzinę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowaty A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Węzły A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Machy A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metry na sekundę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrony A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile na godzinę A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuty A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Półbajt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometry A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstremy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile morskie A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centymetry kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cale kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometry kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metry kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetry kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardy kwadratowe A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Waty A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tygodnie A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Lata A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) karat An abbreviation for a measurement unit of weight stpn An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure b An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure Hg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight uncja An abbreviation for a measurement unit of weight funt An abbreviation for a measurement unit of weight tona (USA) An abbreviation for a measurement unit of weight kamień An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karaty A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopnie A measurement unit for Angle. Radiany A measurement unit for Angle. Grad A measurement unit for Angle. Atmosfery A measurement unit for Pressure. Bary A measurement unit for Pressure. Kilopaskale A measurement unit for Pressure. Milimetry słupa rtęci A measurement unit for Pressure. Paskale A measurement unit for Pressure. Funty na cal kwadratowy A measurement unit for Pressure. Centygramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagramy A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decygramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tony brytyjskie (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uncje A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Funty A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tony amerykańskie (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kamień A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tony metryczne A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) boiska piłkarskie A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) boiska piłkarskie A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dyskietki A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dyskietki A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spinacze do papieru A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spinacze do papieru A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jety A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbo jety A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) żarówki A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) żarówki A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konie A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konie A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wanny A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wanny A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) płatki śniegu A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) płatki śniegu A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) słonie An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) słonie An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) żółwie A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) żółwie A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) odrzutowce A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) odrzutowce A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wieloryby A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) wieloryby A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filiżanki do kawy A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filiżanki do kawy A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baseny pływackie An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baseny pływackie An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dłonie A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dłonie A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arkusze papieru A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) arkusze papieru A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zamki A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) zamki A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banany A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banany A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kawałki ciasta A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kawałki ciasta A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotywy A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotywy A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piłki nożne A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piłki nożne A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pozycja w pamięci Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Wstecz Screen reader prompt for the About panel back button Wstecz Content of tooltip being displayed on AboutControlBackButton Postanowienia licencyjne dotyczące oprogramowania firmy Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Podgląd Label displayed next to upcoming features Zasady zachowania poufności informacji firmy Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Wszelkie prawa zastrzeżone. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Aby dowiedzieć się, jak można uczestniczyć w programie Kalkulator systemu Windows, Wyewidencjonuj projekt na stronie %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Informacje Subtitle of about message on Settings page Prześlij opinię The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Nie ma jeszcze historii. The text that shows as the header for the history list Brak elementów zapisanych w pamięci. The text that shows as the header for the memory list Pamięć Screen reader prompt for the negate button on the converter operator keypad Tego wyrażenia nie można wkleić The paste operation cannot be performed, if the expression is invalid. Gibibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Obliczanie daty Tryb obliczania Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Dodaj Add toggle button text Dodaj lub odejmij dni Add or Subtract days option Data Date result label Różnica między datami Date difference option Dni Add/Subtract Days label Różnica Difference result label Od From Date Header for Difference Date Picker Miesiące Add/Subtract Months label Odejmij Subtract toggle button text Do To Date Header for Difference Date Picker Lata Add/Subtract Years label Data poza zakresem Out of bound message shown as result when the date calculation exceeds the bounds dzień dni miesiąc miesiące Takie same daty tydzień tygodnie rok lata Różnica %1 Automation name for reading out the date difference. %1 = Date difference Wynikowa data %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Tryb kalkulatora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Tryb konwertera %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Tryb obliczania daty Automation name for when the mode header is focused and the current mode is Date calculation. Listy historii i pamięci Automation name for the group of controls for history and memory lists. Elementy sterujące pamięci Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funkcje standardowe Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Elementy sterujące wyświetlania Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operatory standardowe Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Klawiatura numeryczna Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operatory kątowe Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funkcje naukowe Automation name for the group of Scientific functions. Wybór podstawy Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operatory programistyczne Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Wybór trybu wprowadzania Automation name for the group of input mode toggling buttons. Klawiatura bitowa Automation name for the group of bit toggling buttons. Przewiń wyrażenie w lewo Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Przewiń wyrażenie w prawo Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Osiągnięto maksymalną liczbę cyfr. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 zapisano w pamięci {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Gniazdo pamięci %1 to %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Gniazdo pamięci %1 zostało opróżnione {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". podzielone przez Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. razy Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. do potęgi Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. pierwiastek y stopnia Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. bitowe przesunięcie w lewo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. bitowe przesunięcie w prawo Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. lub Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x lub Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. oraz Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Zaktualizowano %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Aktualizuj kursy The text displayed for a hyperlink button that refreshes currency converter ratios. Mogą zostać naliczone opłaty za przesyłanie danych. The text displayed when users are on a metered connection and using currency converter. Nie można pobrać nowych kursów. Spróbuj ponownie później. The text displayed when currency ratio data fails to load. W trybie offline. Sprawdź%HL%Ustawienia sieci%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Aktualizowanie kursów walut This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Kursy walut zaktualizowane This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nie można zaktualizować kursów. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Wyczyść całą pamięć (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Wyczyść całą pamięć Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus (stopnie) Name for the sine function in degrees mode. Used by screen readers. sinus (radiany) Name for the sine function in radians mode. Used by screen readers. sinus (grady) Name for the sine function in gradians mode. Used by screen readers. arcus sinus (stopnie) Name for the inverse sine function in degrees mode. Used by screen readers. arcus sinus (radiany) Name for the inverse sine function in radians mode. Used by screen readers. arcus sinus (grady) Name for the inverse sine function in gradians mode. Used by screen readers. sinus hiperboliczny Name for the hyperbolic sine function. Used by screen readers. arcus sinus hiperboliczny Name for the inverse hyperbolic sine function. Used by screen readers. cosinus (stopnie) Name for the cosine function in degrees mode. Used by screen readers. cosinus (radiany) Name for the cosine function in radians mode. Used by screen readers. cosinus (grady) Name for the cosine function in gradians mode. Used by screen readers. arcus cosinus (stopnie) Name for the inverse cosine function in degrees mode. Used by screen readers. arcus cosinus (radiany) Name for the inverse cosine function in radians mode. Used by screen readers. arcus cosinus (grady) Name for the inverse cosine function in gradians mode. Used by screen readers. cosinus hiperboliczny Name for the hyperbolic cosine function. Used by screen readers. arcus cosinus hiperboliczny Name for the inverse hyperbolic cosine function. Used by screen readers. tangens (stopnie) Name for the tangent function in degrees mode. Used by screen readers. tangens (radiany) Name for the tangent function in radians mode. Used by screen readers. tangens (grady) Name for the tangent function in gradians mode. Used by screen readers. arcus tangens (stopnie) Name for the inverse tangent function in degrees mode. Used by screen readers. arcus tangens (radiany) Name for the inverse tangent function in radians mode. Used by screen readers. arcus tangens (grady) Name for the inverse tangent function in gradians mode. Used by screen readers. tangens hiperboliczny Name for the hyperbolic tangent function. Used by screen readers. arcus tangens hiperboliczny Name for the inverse hyperbolic tangent function. Used by screen readers. secans (stopnie) Name for the secant function in degrees mode. Used by screen readers. secans (radiany) Name for the secant function in radians mode. Used by screen readers. secans (grady) Name for the secant function in gradians mode. Used by screen readers. arcus secans (stopnie) Name for the inverse secant function in degrees mode. Used by screen readers. arcus secans (radiany) Name for the inverse secant function in radians mode. Used by screen readers. arcus secans (grady) Name for the inverse secant function in gradians mode. Used by screen readers. secans hiperboliczny Name for the hyperbolic secant function. Used by screen readers. arcus secans hiperboliczny Name for the inverse hyperbolic secant function. Used by screen readers. cosecans (stopnie) Name for the cosecant function in degrees mode. Used by screen readers. cosecans (radiany) Name for the cosecant function in radians mode. Used by screen readers. cosecans (grady) Name for the cosecant function in gradians mode. Used by screen readers. arcus cosecans (stopnie) Name for the inverse cosecant function in degrees mode. Used by screen readers. arcus cosecans (radiany) Name for the inverse cosecant function in radians mode. Used by screen readers. arcus cosecans (grady) Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecans hiperboliczny Name for the hyperbolic cosecant function. Used by screen readers. arcus cosecans hiperboliczny Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangens (stopnie) Name for the cotangent function in degrees mode. Used by screen readers. cotangens (radiany) Name for the cotangent function in radians mode. Used by screen readers. cotangens (grady) Name for the cotangent function in gradians mode. Used by screen readers. arcus cotangens (stopnie) Name for the inverse cotangent function in degrees mode. Used by screen readers. arcus cotangens (radiany) Name for the inverse cotangent function in radians mode. Used by screen readers. arcus cotangens (grady) Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangens hiperboliczny Name for the hyperbolic cotangent function. Used by screen readers. arcus cotangens hiperboliczny Name for the inverse hyperbolic cotangent function. Used by screen readers. Pierwiastek sześcienny Name for the cube root function. Used by screen readers. Podstawa logarytmu Name for the logbasey function. Used by screen readers. Wartość bezwzględna Name for the absolute value function. Used by screen readers. lewy klawisz Shift Name for the programmer function that shifts bits to the left. Used by screen readers. prawy klawisz Shift Name for the programmer function that shifts bits to the right. Used by screen readers. silnia Name for the factorial function. Used by screen readers. stopień minuta sekunda Name for the degree minute second (dms) function. Used by screen readers. logarytm naturalny Name for the natural log (ln) function. Used by screen readers. kwadrat Name for the square function. Used by screen readers. pierwiastek y stopnia Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategoria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Umowa o świadczenie usług firmy Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Od From Date Header for AddSubtract Date Picker Przewiń wyniki obliczeń w lewo Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Przewiń wyniki obliczeń w prawo Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Obliczanie nie powiodło się Text displayed when the application is not able to do a calculation Logarytm przy podstawie Y Screen reader prompt for the logBaseY button Trygonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcja Displayed on the button that contains a flyout for the general functions in scientific mode. Nierówności Displayed on the button that contains a flyout for the inequality functions. Nierówności Screen reader prompt for the Inequalities button Operator bitowy Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Przesunięcie bitowe Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Funkcja odwrotna Screen reader prompt for the shift button in the trig flyout in scientific mode. Funkcja hiperboliczna Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secans hiperboliczny Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arcus secans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arcus secans hiperboliczny Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecans hiperboliczny Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arcus cosecans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arcus cosecans hiperboliczny Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangens hiperboliczny Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arcus cotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arcus cotangens hiperboliczny Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Dolny limit Screen reader prompt for the Calculator button floor in the scientific flyout keypad Górny limit Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Losowe Screen reader prompt for the Calculator button random in the scientific flyout keypad Wartość bezwzględna Screen reader prompt for the Calculator button abs in the scientific flyout keypad Liczba Eulera Screen reader prompt for the Calculator button e in the scientific flyout keypad Dwa do potęgi Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NAND Screen reader prompt for the Calculator button nand in the scientific flyout keypad NAND Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NOR Screen reader prompt for the Calculator button nor in the scientific flyout keypad NOR Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Obrót w lewo z przeniesieniem Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Obrót w prawo z przeniesieniem Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Bitowe przesunięcie w lewo Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Bitowe przesunięcie w lewo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Bitowe przesunięcie w prawo Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Bitowe przesunięcie w prawo Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Przesunięcie arytmetyczne Label for a radio button that toggles arithmetic shift behavior for the shift operations. Przesunięcie logiczne Label for a radio button that toggles logical shift behavior for the shift operations. Przesunięcie cykliczne Obrót Label for a radio button that toggles rotate circular behavior for the shift operations. Przesunięcie cykliczne Obrót przez przeniesienie Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Pierwiastek sześcienny Screen reader prompt for the cube root button on the scientific operator keypad Trygonometria Screen reader prompt for the square root button on the scientific operator keypad Funkcje Screen reader prompt for the square root button on the scientific operator keypad Operator bitowy Screen reader prompt for the square root button on the scientific operator keypad Przesunięcie bitowe Screen reader prompt for the square root button on the scientific operator keypad Panele operatorów naukowych Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panele operatorów programistycznych Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad najbardziej znaczący bit Used to describe the last bit of a binary number. Used in bit flip Tworzenie wykresów Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Kreśl Screen reader prompt for the plot button on the graphing calculator operator keypad Automatycznie odświeżaj widok (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Widok wykresu Screen reader prompt for the graph view button. Automatyczne optymalnie dopasowanie Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Korekta ręczna Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Widok wykresu został zresetowany Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Powiększ (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Powiększ Screen reader prompt for the zoom in button. Pomniejsz (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Pomniejsz Screen reader prompt for the zoom out button. Dodaj równanie Placeholder text for the equation input button Nie można udostępnić w tej chwili. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Zobacz, co udało mi się wykreślić za pomocą Kalkulatora Windows Sent as part of the shared content. The title for the share. Równania Header that appears over the equations section when sharing Zmienne Header that appears over the variables section when sharing Obraz przedstawiający wykres z równaniami Alt text for the graph image when output via Share Zmienne Header text for variables area Krok Label text for the step text box Min Label text for the min text box Maks. Label text for the max text box Kolor Label for the Line Color section of the style picker Styl Label for the Line Style section of the style picker Analiza funkcji Title for KeyGraphFeatures Control Ta funkcja nie ma asymptot poziomych. Message displayed when the graph does not have any horizontal asymptotes Ta funkcja nie ma punktów przegięcia. Message displayed when the graph does not have any inflection points Ta funkcja nie ma maksimów. Message displayed when the graph does not have any maxima Ta funkcja nie ma minimów. Message displayed when the graph does not have any minima Stała String describing constant monotonicity of a function Malejąca String describing decreasing monotonicity of a function Nie można ustalić monotoniczności funkcji. Error displayed when monotonicity cannot be determined Rosnąca String describing increasing monotonicity of a function Monotoniczność funkcji jest nieznana. Error displayed when monotonicity is unknown Ta funkcja nie ma asymptot ukośnych. Message displayed when the graph does not have any oblique asymptotes Nie można ustalić parzystości funkcji. Error displayed when parity is cannot be determined Funkcja jest parzysta. Message displayed with the function parity is even Funkcja nie jest parzysta ani nieparzysta. Message displayed with the function parity is neither even nor odd Funkcja jest nieparzysta. Message displayed with the function parity is odd Parzystość funkcji jest nieznana. Error displayed when parity is unknown Okresowość nie jest obsługiwana w przypadku tej funkcji. Error displayed when periodicity is not supported Funkcja nie jest okresowa. Message displayed with the function periodicity is not periodic Okresowość funkcji jest nieznana. Message displayed with the function periodicity is unknown Te funkcje są zbyt złożone, aby aplikacja Kalkulator mogła je obliczyć: Error displayed when analysis features cannot be calculated Ta funkcja nie ma asymptot pionowych. Message displayed when the graph does not have any vertical asymptotes Ta funkcja nie ma miejsc zerowych. Message displayed when the graph does not have any x-intercepts Ta funkcja nie ma punktów przecięcia z osią Y. Message displayed when the graph does not have any y-intercepts Dziedzina Title for KeyGraphFeatures Domain Property Asymptoty poziome Title for KeyGraphFeatures Horizontal aysmptotes Property Punkty przegięcia Title for KeyGraphFeatures Inflection points Property Analiza nie jest obsługiwana w przypadku tej funkcji. Error displayed when graph analysis is not supported or had an error. Analiza jest obsługiwana tylko w przypadku funkcji w formacie f(x). Przykład: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimum Title for KeyGraphFeatures Maxima Property Minimum Title for KeyGraphFeatures Minima Property Monotoniczność Title for KeyGraphFeatures Monotonicity Property Asymptoty ukośne Title for KeyGraphFeatures Oblique asymptotes Property Parzystość Title for KeyGraphFeatures Parity Property Cykl Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Zbiór wartości Title for KeyGraphFeatures Range Property Asymptoty pionowe Title for KeyGraphFeatures Vertical asymptotes Property Miejsce zerowe Title for KeyGraphFeatures XIntercept Property Punkt przecięcia z osią Y Title for KeyGraphFeatures YIntercept Property Nie można wykonać analizy dla tej funkcji. Nie można obliczyć dziedziny dla tej funkcji. Error displayed when Domain is not returned from the analyzer. Nie można obliczyć zbioru wartości dla tej funkcji. Error displayed when Range is not returned from the analyzer. Przepełnienie (liczba jest zbyt duża) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Do stworzenia wykresu tego równania wymagana jest funkcja Radiany. Error that occurs during graphing when radians is required. Nie można sporządzić wykresu tej funkcji, ponieważ jest ona zbyt złożona. Error that occurs during graphing when the equation is too complex. Do stworzenia wykresu tej funkcji wymagana jest funkcja Stopnie. Error that occurs during graphing when degrees is required Funkcja silnia ma nieprawidłowy argument Error that occurs during graphing when a factorial function has an invalid argument. Funkcja silnia ma zbyt duży argument, żeby można było sporządzić jej wykres Error that occurs during graphing when a factorial has a large n Operator modulo może być używany tylko z liczbami całkowitymi Error that occurs during graphing when modulo is used with a float. Równanie nie ma rozwiązania Error that occurs during graphing when the equation has no solution. Nie można dzielić przez zero Error that occurs during graphing when a divison by zero occurs. Równanie zawiera warunki logiczne, które wzajemnie się wykluczają Error that occurs during graphing when mutually exclusive conditions are used. Równanie znajduje się poza domeną Error that occurs during graphing when the equation is out of domain. Tworzenie wykresu tego równania nie jest obsługiwane Error that occurs during graphing when the equation is not supported. W równaniu brakuje otwierającego nawiasu okrągłego Error that occurs during graphing when the equation is missing a ( W równaniu brakuje zamykającego nawiasu okrągłego Error that occurs during graphing when the equation is missing a ) Liczba ma zbyt dużo separatorów dziesiętnych Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 W miejscu wartości dziesiętnych brakuje cyfr Error that occurs during graphing with a decimal point without digits Nieoczekiwany koniec wyrażenia Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Nieoczekiwane znaki w wyrażeniu Error that occurs during graphing when there is an unexpected token. Nieprawidłowe znaki w wyrażeniu Error that occurs during graphing when there is an invalid token. Zbyt wiele znaków równości Error that occurs during graphing when there are too many equals. Funkcja musi zawierać co najmniej jedną zmienną x lub y Error that occurs during graphing when the equation is missing x or y. Nieprawidłowe wyrażenie Error that occurs during graphing when an invalid syntax is used. Wyrażenie jest puste Error that occurs during graphing when the expression is empty Znak równości został użyty bez równania Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Brak nawiasu okrągłego po nazwie funkcji Error that occurs during graphing when parenthesis are missing after a function. Działanie matematyczne ma niepoprawną liczbę parametrów Error that occurs during graphing when a function has the wrong number of parameters Nieprawidłowa nazwa zmiennej Error that occurs during graphing when a variable name is invalid. W równaniu brakuje otwierającego nawiasu kwadratowego Error that occurs during graphing when a { is missing W równaniu brakuje zamykającego nawiasu kwadratowego Error that occurs during graphing when a } is missing. „i” oraz „I” nie mogą służyć jako nazwy zmiennych Error that occurs during graphing when i or I is used. Nie można sporządzić wykresu równania General error that occurs during graphing. Nie można rozpoznać cyfry dla podanej podstawy Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Wartość podstawowa musi być większa niż 2 i mniejsza niż 36 Error that occurs during graphing when the base is out of range. Operacja matematyczna wymaga, aby jeden z jej parametrów był zmienną Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. W równaniu użyte zostały wartości logiczne i skalarne Error that occurs during graphing when operands are mixed. Such as true and 1. Nie można użyć znaku x oraz y w górnym ani dolnym limicie Error that occurs during graphing when x or y is used in integral upper limits. Nie można użyć znaku x ani y w punkcie limitu Error that occurs during graphing when x or y is used in the limit point. Nie można użyć złożonej nieskończoności Error that occurs during graphing when complex infinity is used Liczby zespolone nie mogą być używane w nierównościach Error that occurs during graphing when complex numbers are used in inequalities. Powrót do listy funkcji This is the tooltip for the back button in the equation analysis page in the graphing calculator Powrót do listy funkcji This is the automation name for the back button in the equation analysis page in the graphing calculator Analizuj funkcję This is the tooltip for the analyze function button Analizuj funkcję This is the automation name for the analyze function button Analizuj funkcję This is the text for the for the analyze function context menu command Usuń równanie This is the tooltip for the graphing calculator remove equation buttons Usuń równanie This is the automation name for the graphing calculator remove equation buttons Usuń równanie This is the text for the for the remove equation context menu command Udostępnij This is the automation name for the graphing calculator share button. Udostępnij This is the tooltip for the graphing calculator share button. Zmień styl równania This is the tooltip for the graphing calculator equation style button Zmień styl równania This is the automation name for the graphing calculator equation style button Zmień styl równania This is the text for the for the equation style context menu command Pokaż równanie This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ukryj równanie This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Pokaż równanie %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ukryj równanie %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Zatrzymaj śledzenie This is the tooltip/automation name for the graphing calculator stop tracing button Rozpocznij śledzenie This is the tooltip/automation name for the graphing calculator start tracing button Okno wyświetlania wykresu, oś x powiązana %1 i %2, oś y powiązana z %3 i %4ą, wyświetlanie %5 równań {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguruj suwak This is the tooltip text for the slider options button in Graphing Calculator Konfiguruj suwak This is the automation name text for the slider options button in Graphing Calculator Przełącz do trybu równania Used in Graphing Calculator to switch the view to the equation mode Przełącz do trybu wykresu Used in Graphing Calculator to switch the view to the graph mode Przełącz do trybu równania Used in Graphing Calculator to switch the view to the equation mode Bieżący tryb to tryb równania Announcement used in Graphing Calculator when switching to the equation mode Bieżący tryb to tryb wykresu Announcement used in Graphing Calculator when switching to the graph mode Okno Heading for window extents on the settings Stopnie Degrees mode on settings page Grady Gradian mode on settings page Radiany Radians mode on settings page Jednostki Heading for Unit's on the settings Resetuj widok Hyperlink button to reset the view of the graph X-Maks. X maximum value header X-Min X minimum value header Y-Maks. Y Maximum value header Y-Min Y minimum value header Opcje wykresu This is the tooltip text for the graph options button in Graphing Calculator Opcje wykresu This is the automation name text for the graph options button in Graphing Calculator Opcje wykresu Heading for the Graph options flyout in Graphing mode. Opcje zmiennej Screen reader prompt for the variable settings toggle button Przełączanie opcji zmiennej Tool tip for the variable settings toggle button Grubość linii Heading for the Graph options flyout in Graphing mode. Opcje linii Heading for the equation style flyout in Graphing mode. Mała szerokość linii Automation name for line width setting Średnia szerokość linii Automation name for line width setting Duża szerokość linii Automation name for line width setting Bardzo duża szerokość linii Automation name for line width setting Wprowadź wyrażenie this is the placeholder text used by the textbox to enter an equation Kopiuj Copy menu item for the graph context menu Wytnij Cut menu item from the Equation TextBox Kopiuj Copy menu item from the Equation TextBox Wklej Paste menu item from the Equation TextBox Cofnij Undo menu item from the Equation TextBox Zaznacz wszystko Select all menu item from the Equation TextBox Dane wejściowe funkcji The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Dane wejściowe funkcji The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel wprowadzania funkcji The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel zmiennych The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista zmiennych The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Element listy zmiennej %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Pole tekstowe wartości zmiennej The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Suwak wartości zmiennej The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Pole tekstowe wartości minimalnej zmiennej The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Pole tekstowe wartości kroku zmiennej The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Pole tekstowe maksymalnej wartości zmiennej The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Styl linii ciągłej Name of the solid line style for a graphed equation Styl linii kropkowanej Name of the dotted line style for a graphed equation Styl linii kreskowanej Name of the dashed line style for a graphed equation Granatowy Name of color in the color picker Piana morska Name of color in the color picker Fioletowy Name of color in the color picker Zielony Name of color in the color picker Miętowa zieleń Name of color in the color picker Ciemnozielony Name of color in the color picker Węgiel drzewny Name of color in the color picker Czerwony Name of color in the color picker Jasnośliwkowy Name of color in the color picker Amarantowy Name of color in the color picker Żółtozłoty Name of color in the color picker Jasnopomarańczowy Name of color in the color picker Brązowy Name of color in the color picker Czarny Name of color in the color picker Biały Name of color in the color picker Kolor 1 Name of color in the color picker Kolor 2 Name of color in the color picker Kolor 3 Name of color in the color picker Kolor 4 Name of color in the color picker Kompozycja wykresu Graph settings heading for the theme options Zawsze jasne Graph settings option to set graph to light theme Dopasuj do motywu aplikacji Graph settings option to set graph to match the app theme Motyw This is the automation name text for the Graph settings heading for the theme options Zawsze jasne This is the automation name text for the Graph settings option to set graph to light theme Dopasuj do motywu aplikacji This is the automation name text for the Graph settings option to set graph to match the app theme Usunięto funkcję Announcement used in Graphing Calculator when a function is removed from the function list Pole równania analizy funkcji This is the automation name text for the equation box in the function analysis panel Równa się Screen reader prompt for the equal button on the graphing calculator operator keypad Mniejsze niż Screen reader prompt for the Less than button Mniejsze lub równe Screen reader prompt for the Less than or equal button Równe Screen reader prompt for the Equal button Większe lub równe Screen reader prompt for the Greater than or equal button Większe niż Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Prześlij Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza funkcji Screen reader prompt for the function analysis grid Opcje wykresu Screen reader prompt for the graph options panel Listy historii i pamięci Automation name for the group of controls for history and memory lists. Lista pamięci Automation name for the group of controls for memory list. Wyczyszczono miejsce historii %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator zawsze na wierzchu Announcement to indicate calculator window is always shown on top. Kalkulator powrócił do pełnego widoku Announcement to indicate calculator window is now back to full view. Zaznaczono Przesunięcie arytmetyczne Label for a radio button that toggles arithmetic shift behavior for the shift operations. Zaznaczono Przesunięcie logiczne Label for a radio button that toggles logical shift behavior for the shift operations. Zaznaczono Przesunięcie cykliczne Obrót Label for a radio button that toggles rotate circular behavior for the shift operations. Zaznaczono Przesunięcie cykliczne Obrót przez przeniesienie Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Ustawienia Header text of Settings page Wygląd Subtitle of appearance setting on Settings page Motyw aplikacji Title of App theme expander Wybierz motyw aplikacji do wyświetlenia Description of App theme expander Jasny Lable for light theme option Ciemny Lable for dark theme option Użyj ustawienia systemu Lable for the app theme option to use system setting Wstecz Screen reader prompt for the Back button in title bar to back to main page Strona ustawień Announcement used when Settings page is opened Otwieranie menu kontekstowego dla dostępnych akcji Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Nie można przywrócić tej migawki. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/pt-BR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrada inválida Error message shown when the input makes a function fail, like log(-1) Resultado indefinido Error message shown when there's no possible value for a function. Memória insuficiente Error message shown when we run out of memory during a calculation. Estouro Error message shown when there's an overflow during the calculation. Resultado não definido Same as 101 Resultado não definido Same 101 Estouro Same as 107 Estouro Same 107 Não é possível dividir por zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/pt-BR/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiar Copy context menu string Colar Paste context menu string Aproximadamente The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63º Sub-string used in automation name for 63 bit in bit flip 62º Sub-string used in automation name for 62 bit in bit flip 61º Sub-string used in automation name for 61 bit in bit flip 60º Sub-string used in automation name for 60 bit in bit flip 59º Sub-string used in automation name for 59 bit in bit flip 58º Sub-string used in automation name for 58 bit in bit flip 57º Sub-string used in automation name for 57 bit in bit flip 56º Sub-string used in automation name for 56 bit in bit flip 55º Sub-string used in automation name for 55 bit in bit flip 54º Sub-string used in automation name for 54 bit in bit flip 53º Sub-string used in automation name for 53 bit in bit flip 52º Sub-string used in automation name for 52 bit in bit flip 51º Sub-string used in automation name for 51 bit in bit flip 50º Sub-string used in automation name for 50 bit in bit flip 49º Sub-string used in automation name for 49 bit in bit flip 48º Sub-string used in automation name for 48 bit in bit flip 47º Sub-string used in automation name for 47 bit in bit flip 46º Sub-string used in automation name for 46 bit in bit flip 45º Sub-string used in automation name for 45 bit in bit flip 44º Sub-string used in automation name for 44 bit in bit flip 43º Sub-string used in automation name for 43 bit in bit flip 42º Sub-string used in automation name for 42 bit in bit flip 41º Sub-string used in automation name for 41 bit in bit flip 40º Sub-string used in automation name for 40 bit in bit flip 39º Sub-string used in automation name for 39 bit in bit flip 38º Sub-string used in automation name for 38 bit in bit flip 37º Sub-string used in automation name for 37 bit in bit flip 36º Sub-string used in automation name for 36 bit in bit flip 35º Sub-string used in automation name for 35 bit in bit flip 34º Sub-string used in automation name for 34 bit in bit flip 33º Sub-string used in automation name for 33 bit in bit flip 32º Sub-string used in automation name for 32 bit in bit flip 31º Sub-string used in automation name for 31 bit in bit flip 30º Sub-string used in automation name for 30 bit in bit flip 29º Sub-string used in automation name for 29 bit in bit flip 28º Sub-string used in automation name for 28 bit in bit flip 27º Sub-string used in automation name for 27 bit in bit flip 26º Sub-string used in automation name for 26 bit in bit flip 25º Sub-string used in automation name for 25 bit in bit flip 24º Sub-string used in automation name for 24 bit in bit flip 23º Sub-string used in automation name for 23 bit in bit flip 22º Sub-string used in automation name for 22 bit in bit flip 21º Sub-string used in automation name for 21 bit in bit flip 20º Sub-string used in automation name for 20 bit in bit flip 19º Sub-string used in automation name for 19 bit in bit flip 18º Sub-string used in automation name for 18 bit in bit flip 17º Sub-string used in automation name for 17 bit in bit flip 16º Sub-string used in automation name for 16 bit in bit flip 15º Sub-string used in automation name for 15 bit in bit flip 14º Sub-string used in automation name for 14 bit in bit flip 13º Sub-string used in automation name for 13 bit in bit flip 12º Sub-string used in automation name for 12 bit in bit flip 11º Sub-string used in automation name for 11 bit in bit flip 10º Sub-string used in automation name for 10 bit in bit flip Sub-string used in automation name for 9 bit in bit flip Sub-string used in automation name for 8 bit in bit flip Sub-string used in automation name for 7 bit in bit flip Sub-string used in automation name for 6 bit in bit flip Sub-string used in automation name for 5 bit in bit flip Sub-string used in automation name for 4 bit in bit flip Sub-string used in automation name for 3 bit in bit flip Sub-string used in automation name for 2 bit in bit flip Sub-string used in automation name for 1 bit in bit flip bit menos significativo Used to describe the first bit of a binary number. Used in bit flip Abrir submenu de memória This is the automation name and label for the memory button when the memory flyout is closed. Fechar submenu de memória This is the automation name and label for the memory button when the memory flyout is open. Manter na parte superior This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Voltar para visualização completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memória This is the tool tip automation name for the memory button. Histórico (Ctrl+H) This is the tool tip automation name for the history button. Teclado de alternância de bits This is the tool tip automation name for the bitFlip button. Teclado completo This is the tool tip automation name for the numberPad button. Limpar toda a memória (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memória The text that shows as the header for the memory list Memória The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Histórico The text that shows as the header for the history list Histórico The automation name for the History pivot item that is shown when Calculator is in wide layout. Conversor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Padrão Label for a control that activates standard mode calculator layout. Modo de conversor Screen reader prompt for a control that activates the unit converter mode. Modo científico Screen reader prompt for a control that activates scientific mode calculator layout Modo padrão Screen reader prompt for a control that activates standard mode calculator layout. Limpar todo o histórico "ClearHistory" used on the calculator history pane that stores the calculation history. Limpar todo o histórico This is the tool tip automation name for the Clear History button. Ocultar "HideHistory" used on the calculator history pane that stores the calculation history. Padrão The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Conversor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Conversor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Conversores Pluralized version of the converter group text, used for the screen reader prompt. Calculadoras Pluralized version of the calculator group text, used for the screen reader prompt. A exibição é %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". A expressão é %1, a entrada atual é %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Exibição é de %1 ponto(s) {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expression é %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Exibir valor copiado para a área de transferência Screen reader prompt for the Calculator display copy button, when the button is invoked. Histórico Screen reader prompt for the history flyout Memória Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binário %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Limpar todo o histórico Screen reader prompt for the Calculator History Clear button Histórico limpo Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ocultar o histórico Screen reader prompt for the Calculator History Hide button Abrir submenu de histórico Screen reader prompt for the Calculator History button, when the flyout is closed. Fechar submenu de histórico Screen reader prompt for the Calculator History button, when the flyout is open. Armazenamento de memória Screen reader prompt for the Calculator Memory button Armazenamento na memória (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Limpar toda a memória Screen reader prompt for the Calculator Clear Memory button Memória limpa Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Rechamada de memória Screen reader prompt for the Calculator Memory Recall button Rechamada da memória (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Adição de memória Screen reader prompt for the Calculator Memory Add button Adição à memória (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Subtração de memória Screen reader prompt for the Calculator Memory Subtract button Subtração da memória (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Limpar item de memória Screen reader prompt for the Calculator Clear Memory button Limpar item de memória This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Adicionar ao item de memória Screen reader prompt for the Calculator Memory Add button in the Memory list Adicionar ao item de memória This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtrair do item de memória Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtrair do item de memória This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Limpar item de memória Screen reader prompt for the Calculator Clear Memory button Limpar item de memória Text string for the Calculator Clear Memory option in the Memory list context menu Adicionar ao item de memória Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Adicionar ao item de memória Text string for the Calculator Memory Add option in the Memory list context menu Subtrair do item de memória Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtrair do item de memória Text string for the Calculator Memory Subtract option in the Memory list context menu Excluir Text string for the Calculator Delete swipe button in the History list Copiar Text string for the Calculator Copy option in the History list context menu Excluir Text string for the Calculator Delete option in the History list context menu Excluir item do histórico Screen reader prompt for the Calculator Delete swipe button in the History list Excluir item do histórico Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Um Screen reader prompt for the Calculator number "1" button Dois Screen reader prompt for the Calculator number "2" button Três Screen reader prompt for the Calculator number "3" button Quatro Screen reader prompt for the Calculator number "4" button Cinco Screen reader prompt for the Calculator number "5" button Seis Screen reader prompt for the Calculator number "6" button Sete Screen reader prompt for the Calculator number "7" button Oito Screen reader prompt for the Calculator number "8" button Nove Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button E Screen reader prompt for the Calculator And button Ou Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Girar à esquerda Screen reader prompt for the Calculator ROL button Girar à direita Screen reader prompt for the Calculator ROR button Deslocamento à esquerda Screen reader prompt for the Calculator LSH button Deslocamento à direita Screen reader prompt for the Calculator RSH button Exclusiva ou Screen reader prompt for the Calculator XOR button Alternância de palavra quádrupla Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Alternância de palavra dupla Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Alternância de palavra Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Alternância de byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclado de alternância de bits Screen reader prompt for the Calculator bitFlip button Teclado completo Screen reader prompt for the Calculator numberPad button Separador decimal Screen reader prompt for the "." button Limpar entrada Screen reader prompt for the "CE" button Limpar Screen reader prompt for the "C" button Dividir por Screen reader prompt for the divide button on the number pad Multiplicar por Screen reader prompt for the multiply button on the number pad Igual a Screen reader prompt for the equals button on the scientific operator keypad Função inversa Screen reader prompt for the shift button on the number pad in scientific mode. Menos Screen reader prompt for the minus button on the number pad Menos We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Mais Screen reader prompt for the plus button on the number pad Raiz quadrada Screen reader prompt for the square root button on the scientific operator keypad Por cento Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Recíproco Screen reader prompt for the invert button on the scientific operator keypad Parêntese esquerdo Screen reader prompt for the Calculator "(" button on the scientific operator keypad Parêntese esquerdo, contagem de parêntese de abertura %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parêntese direito Screen reader prompt for the Calculator ")" button on the scientific operator keypad Contagem de parênteses de abertura %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Não há parênteses de abertura para fechar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notação científica Screen reader prompt for the Calculator F-E the scientific operator keypad Função hiperbólica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno hiperbólico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosseno hiperbólico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hiperbólica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Quadrado Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arco seno Screen reader prompt for the inverted sin on the scientific operator keypad. Arco cosseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arco tangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arco seno hiperbólico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arco cosseno hiperbólico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arco tangente hiperbólico Screen reader prompt for the inverted tanh on the scientific operator keypad. Potência de “X” Screen reader prompt for x power y button on the scientific operator keypad. Potência de dez Screen reader prompt for the 10 power x button on the scientific operator keypad. Potência de “e” Screen reader for the e power x on the scientific operator keypad. raiz “y” de “x” Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Log Screen reader for the log base 10 on the scientific operator keypad Logaritmo natural Screen reader for the log base e on the scientific operator keypad Módulo Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grau minuto segundo Screen reader for the exp button on the scientific operator keypad Graus Screen reader for the exp button on the scientific operator keypad Parte inteira Screen reader for the int button on the scientific operator keypad Parte fracionária Screen reader for the frac button on the scientific operator keypad Fatorial Screen reader for the factorial button on the basic operator keypad Alternância de graus This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Alternância de grados This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Alternância de radianos This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Modo suspenso Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Categorias suspensas Screen reader prompt for the Categories dropdown field. Manter na parte superior Screen reader prompt for the Always-on-Top button when in normal mode. Voltar para visualização completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Manter na parte superior (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. Voltar para visualização completa (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converter de %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converter de %1 vírgula %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converte em %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 é %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unidade de entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unidade de saída Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Área Unit conversion category name called Area (eg. area of a sports field in square meters) Dados Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Comprimento Unit conversion category name called Length Potência Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocidade Unit conversion category name called Speed Tempo Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso e massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressão Unit conversion category name called Pressure Ângulo Unit conversion category name called Angle Moeda Unit conversion category name called Currency Onças fluidas (Reino Unido) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Reino Unido) An abbreviation for a measurement unit of volume Onças fluidas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (EUA) An abbreviation for a measurement unit of volume Galões (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Reino Unido) An abbreviation for a measurement unit of volume Galões (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EUA) An abbreviation for a measurement unit of volume Litros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintas (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Reino Unido) An abbreviation for a measurement unit of volume Pintas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EUA) An abbreviation for a measurement unit of volume Colheres de sopa (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colher de sopa (EUA) An abbreviation for a measurement unit of volume Colheres de chá (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colher de chá (EUA) An abbreviation for a measurement unit of volume Colheres de sopa (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colher de sopa (Reino Unido) An abbreviation for a measurement unit of volume Colheres de chá (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colher de chá (Reino Unido) An abbreviation for a measurement unit of volume Quartos (Reino Unido) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Reino Unido) An abbreviation for a measurement unit of volume Quartos (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EUA) An abbreviation for a measurement unit of volume Xícaras (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) xícara (EUA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (EUA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time pol An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length a. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas britânicas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorias térmicas A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dias A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elétrons-volts A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libra-pés A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libra-pés/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectares A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cavalos-vapor (EUA) A measurement unit for power Horas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatt por hora A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorias alimentares A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilômetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilômetros por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nós A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mícrons A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microssegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milissegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanômetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångströms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas náuticas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilômetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semanas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Reino Unido) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (EUA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quilates A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graus A measurement unit for Angle. Radianos A measurement unit for Angle. Grados A measurement unit for Angle. Atmosferas A measurement unit for Pressure. Bars A measurement unit for Pressure. Quilopascals A measurement unit for Pressure. Milímetros de mercúrio A measurement unit for Pressure. Pascals A measurement unit for Pressure. Libras por polegada quadrada A measurement unit for Pressure. Centigramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagramas A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilogramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas longas (Reino Unido) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onças A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas curtas (EUA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pedra A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas métricas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de futebol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de futebol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterias AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterias AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clipes de papel A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clipes de papel A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lâmpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lâmpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banheiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banheiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocos de neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocos de neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões a jato A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões a jato A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleias A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleias A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) xícaras de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) xícaras de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mãos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mãos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folhas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folhas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fatias de bolo A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fatias de bolo A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) motores de trem A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) motores de trem A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bolas de futebol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bolas de futebol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Item de memória Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Voltar Screen reader prompt for the About panel back button Voltar Content of tooltip being displayed on AboutControlBackButton Termos de Licença para Software Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Visualização Label displayed next to upcoming features Política de Privacidade da Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Todos os direitos reservados. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para saber como você pode contribuir para a calculadora do Windows, faça check-out no projeto em %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Sobre Subtitle of about message on Settings page Enviar feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Ainda não há histórico. The text that shows as the header for the history list Não há nada salvo na memória The text that shows as the header for the memory list Memória Screen reader prompt for the negate button on the converter operator keypad Não é possível colar esta expressão The paste operation cannot be performed, if the expression is invalid. Gibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cálculo de data Modo de cálculo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Adicionar Add toggle button text Adicionar ou subtrair dias Add or Subtract days option Data Date result label Diferença entre datas Date difference option Dias Add/Subtract Days label Diferença Difference result label De From Date Header for Difference Date Picker Meses Add/Subtract Months label Subtrair Subtract toggle button text Até To Date Header for Difference Date Picker Anos Add/Subtract Years label Data Fora do Limite Out of bound message shown as result when the date calculation exceeds the bounds dia dias mês meses Mesmas datas semana semanas ano anos Diferença %1 Automation name for reading out the date difference. %1 = Date difference Data resultante %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modo Calculadora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modo Conversor de %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modo de cálculo de data Automation name for when the mode header is focused and the current mode is Date calculation. Listas de memória e histórico Automation name for the group of controls for history and memory lists. Controles de memória Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funções padrão Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controles de exibição Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadores padrão Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclado numérico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadores de ângulo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funções científicas Automation name for the group of Scientific functions. Seleção de base Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadores de programador Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Seleção de método de entrada Automation name for the group of input mode toggling buttons. Teclado de alternância de bits Automation name for the group of bit toggling buttons. Rolar expressão para a esquerda Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Rolar expressão para a direita Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Nº máximo de dígitos alcançado. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 salvo na memória {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". O slot de memória %1 é %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Slot de memória %1 limpo {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividido por Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. vezes Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menos Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. mais Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. elevado à potência de Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. raiz de y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. deslocamento à esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. deslocamento à direita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ou Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ou Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. e Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Atualizado %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Atualizar taxas The text displayed for a hyperlink button that refreshes currency converter ratios. Encargos de dados podem ser aplicáveis. The text displayed when users are on a metered connection and using currency converter. Não foi possível obter novas taxas. Tente novamente mais tarde. The text displayed when currency ratio data fails to load. Offline. Verifique suas%HL%Configurações de Rede%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Atualizando as taxas de câmbio This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Taxas de câmbio atualizadas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Não foi possível atualizar as taxas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} Ti AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Limpar toda a memória (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Limpar toda a memória Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} graus do seno Name for the sine function in degrees mode. Used by screen readers. radianos do seno Name for the sine function in radians mode. Used by screen readers. grados do seno Name for the sine function in gradians mode. Used by screen readers. graus inversos do seno Name for the inverse sine function in degrees mode. Used by screen readers. radianos inversos do seno Name for the inverse sine function in radians mode. Used by screen readers. grados inversos do seno Name for the inverse sine function in gradians mode. Used by screen readers. seno hiperbólico Name for the hyperbolic sine function. Used by screen readers. seno hiperbólico inverso Name for the inverse hyperbolic sine function. Used by screen readers. graus do cosseno Name for the cosine function in degrees mode. Used by screen readers. radianos do cosseno Name for the cosine function in radians mode. Used by screen readers. grados do cosseno Name for the cosine function in gradians mode. Used by screen readers. graus inversos do cosseno Name for the inverse cosine function in degrees mode. Used by screen readers. radianos inversos do cosseno Name for the inverse cosine function in radians mode. Used by screen readers. grados inversos do cosseno Name for the inverse cosine function in gradians mode. Used by screen readers. cosseno hiperbólico Name for the hyperbolic cosine function. Used by screen readers. cosseno hiperbólico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. graus da tangente Name for the tangent function in degrees mode. Used by screen readers. radianos da tangente Name for the tangent function in radians mode. Used by screen readers. grados da tangente Name for the tangent function in gradians mode. Used by screen readers. graus inversos da tangente Name for the inverse tangent function in degrees mode. Used by screen readers. radianos inversos da tangente Name for the inverse tangent function in radians mode. Used by screen readers. grados inversos da tangente Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hiperbólica Name for the hyperbolic tangent function. Used by screen readers. tangente hiperbólica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. secante em graus Name for the secant function in degrees mode. Used by screen readers. secante em radianos Name for the secant function in radians mode. Used by screen readers. secante em grados Name for the secant function in gradians mode. Used by screen readers. secante inversa em graus Name for the inverse secant function in degrees mode. Used by screen readers. secante inversa em radianos Name for the inverse secant function in radians mode. Used by screen readers. secante inversa em grados Name for the inverse secant function in gradians mode. Used by screen readers. secante hiperbólica Name for the hyperbolic secant function. Used by screen readers. secante hiperbólica inversa Name for the inverse hyperbolic secant function. Used by screen readers. cossecante em graus Name for the cosecant function in degrees mode. Used by screen readers. cossecante em radianos Name for the cosecant function in radians mode. Used by screen readers. cossecante em grados Name for the cosecant function in gradians mode. Used by screen readers. cossecante inversa em graus Name for the inverse cosecant function in degrees mode. Used by screen readers. cossecante inversa em radianos Name for the inverse cosecant function in radians mode. Used by screen readers. cossecante inversa em grados Name for the inverse cosecant function in gradians mode. Used by screen readers. cossecante hiperbólica Name for the hyperbolic cosecant function. Used by screen readers. cossecante hiperbólica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangente em graus Name for the cotangent function in degrees mode. Used by screen readers. Cotangente em radianos Name for the cotangent function in radians mode. Used by screen readers. cotangente em grados Name for the cotangent function in gradians mode. Used by screen readers. cotangente inversa em graus Name for the inverse cotangent function in degrees mode. Used by screen readers. cotangente inversa em radianos Name for the inverse cotangent function in radians mode. Used by screen readers. cotangente inversa em grados Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hiperbólica Name for the hyperbolic cotangent function. Used by screen readers. cotangente hiperbólica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Raiz cúbica Name for the cube root function. Used by screen readers. Base de registro Name for the logbasey function. Used by screen readers. Valor absoluto Name for the absolute value function. Used by screen readers. deslocamento à esquerda Name for the programmer function that shifts bits to the left. Used by screen readers. deslocamento à direita Name for the programmer function that shifts bits to the right. Used by screen readers. fatorial Name for the factorial function. Used by screen readers. grau minuto segundo Name for the degree minute second (dms) function. Used by screen readers. logaritmo natural Name for the natural log (ln) function. Used by screen readers. quadrado Name for the square function. Used by screen readers. raiz de y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrato de Serviços Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. De From Date Header for AddSubtract Date Picker Rolar resultado do cálculo para a esquerda Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Rolar resultado do cálculo para a direita Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Falha no cálculo Text displayed when the application is not able to do a calculation Base de log Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Função Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualdades Displayed on the button that contains a flyout for the inequality functions. Desigualdades Screen reader prompt for the Inequalities button Bit a bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Deslocamento de bit Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Função inversa Screen reader prompt for the shift button in the trig flyout in scientific mode. Função hiperbólica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante hiperbólica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arco secante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arco secante hiperbólico Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cossecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cossecante hiperbólica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arco cosecante Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arco cossecante hiperbólico Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hiperbólica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arco cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arco cotangente hiperbólico Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Piso Screen reader prompt for the Calculator button floor in the scientific flyout keypad Teto Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatório Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número de Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Potência de dois Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Girar à esquerda com transporte Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Girar à direita com transporte Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Desvio à esquerda Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Deslocamento à esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deslocamento para a direita Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Deslocamento à direita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deslocamento aritmético Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deslocamento lógico Label for a radio button that toggles logical shift behavior for the shift operations. Girar deslocamento circular Label for a radio button that toggles rotate circular behavior for the shift operations. Girar através do deslocamento circular de transporte Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Raiz cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funções Screen reader prompt for the square root button on the scientific operator keypad Bit a bit Screen reader prompt for the square root button on the scientific operator keypad Bit-shift Screen reader prompt for the square root button on the scientific operator keypad Painéis de operação científica Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Painéis de operação do programador Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit mais significativo Used to describe the last bit of a binary number. Used in bit flip Representação gráfica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Traçar Screen reader prompt for the plot button on the graphing calculator operator keypad Atualizar a exibição automaticamente (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Exibição de gráfico Screen reader prompt for the graph view button. Melhor ajuste automático Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajuste manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set O modo de exibição do Graph foi redefinido Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Ampliar (Ctrl + mais) This is the tool tip automation name for the Calculator zoom in button. Ampliar Screen reader prompt for the zoom in button. Diminuir o zoom (Ctrl + menos) This is the tool tip automation name for the Calculator zoom out button. Reduzir Screen reader prompt for the zoom out button. Adicionar equação Placeholder text for the equation input button Não é possível compartilhar no momento. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Veja o gráfico que criei com a Calculadora Windows Sent as part of the shared content. The title for the share. Equações Header that appears over the equations section when sharing Variáveis Header that appears over the variables section when sharing Imagem de um gráfico com equações Alt text for the graph image when output via Share Variáveis Header text for variables area Etapa Label text for the step text box Mín. Label text for the min text box Máx. Label text for the max text box Cor Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Análise de função Title for KeyGraphFeatures Control A função não tem assíntotas horizontais. Message displayed when the graph does not have any horizontal asymptotes A função não tem pontos de inflexão. Message displayed when the graph does not have any inflection points A função não tem pontos de máximo. Message displayed when the graph does not have any maxima A função não tem pontos de mínimo. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Diminuição String describing decreasing monotonicity of a function Não é possível determinar a monotonicidade da função. Error displayed when monotonicity cannot be determined Aumento String describing increasing monotonicity of a function A monotonicidade da função é desconhecida. Error displayed when monotonicity is unknown A função não tem assíntotas oblíquas. Message displayed when the graph does not have any oblique asymptotes Não é possível determinar a paridade da função. Error displayed when parity is cannot be determined A função é par. Message displayed with the function parity is even A função não é nem par nem ímpar. Message displayed with the function parity is neither even nor odd A função é ímpar. Message displayed with the function parity is odd A paridade da função é desconhecida. Error displayed when parity is unknown A periodicidade não tem suporte para esta função. Error displayed when periodicity is not supported A função não é periódica. Message displayed with the function periodicity is not periodic A periodicidade da função é desconhecida. Message displayed with the function periodicity is unknown Estes recursos são muito complexos para a Calculadora calcular: Error displayed when analysis features cannot be calculated A função não tem assíntotas verticais. Message displayed when the graph does not have any vertical asymptotes A função não tem interceptações em x. Message displayed when the graph does not have any x-intercepts A função não tem interceptações em y. Message displayed when the graph does not have any y-intercepts Domínio Title for KeyGraphFeatures Domain Property Assíntotas horizontais Title for KeyGraphFeatures Horizontal aysmptotes Property Pontos de inflexão Title for KeyGraphFeatures Inflection points Property Não há suporte para análise nesta função. Error displayed when graph analysis is not supported or had an error. Só há suporte para análise em funções no formato f(x). Exemplo: y=x Error displayed when graph analysis detects the function format is not f(x). Máximos Title for KeyGraphFeatures Maxima Property Mínimos Title for KeyGraphFeatures Minima Property Monotonicidade Title for KeyGraphFeatures Monotonicity Property Assíntotas oblíquas Title for KeyGraphFeatures Oblique asymptotes Property Paridade Title for KeyGraphFeatures Parity Property Ciclo Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervalo Title for KeyGraphFeatures Range Property Assíntotas verticais Title for KeyGraphFeatures Vertical asymptotes Property Interceptação em X Title for KeyGraphFeatures XIntercept Property Interceptação em Y Title for KeyGraphFeatures YIntercept Property Não foi possível executar a análise para a função. Não é possível calcular o domínio para esta função. Error displayed when Domain is not returned from the analyzer. Não é possível calcular o intervalo para esta função. Error displayed when Range is not returned from the analyzer. Estouro (o número é muito grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. O modo radianos é necessário para o gráfico desta equação. Error that occurs during graphing when radians is required. Esta função é muito complexa para o gráfico Error that occurs during graphing when the equation is too complex. O modo graus é necessário para o gráfico desta função Error that occurs during graphing when degrees is required A função fatorial tem um argumento inválido Error that occurs during graphing when a factorial function has an invalid argument. A função fatorial tem um argumento que é muito grande para o Graph Error that occurs during graphing when a factorial has a large n O módulo só pode ser usado com números inteiros Error that occurs during graphing when modulo is used with a float. A equação não tem solução Error that occurs during graphing when the equation has no solution. Não é possível dividir por zero Error that occurs during graphing when a divison by zero occurs. A equação contém condições lógicas que são mutuamente exclusivas Error that occurs during graphing when mutually exclusive conditions are used. Equação fora do domínio Error that occurs during graphing when the equation is out of domain. Não há suporte para a representação gráfica desta equação Error that occurs during graphing when the equation is not supported. Falta um parêntese de abertura na equação Error that occurs during graphing when the equation is missing a ( Falta um parêntese de fechamento na equação Error that occurs during graphing when the equation is missing a ) Há muitos pontos decimais em um número Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Faltam dígitos em uma casa decimal Error that occurs during graphing with a decimal point without digits Final de expressão inesperado Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Caracteres inesperados na expressão Error that occurs during graphing when there is an unexpected token. Caracteres inválidos na expressão Error that occurs during graphing when there is an invalid token. Há muitos sinais de igual Error that occurs during graphing when there are too many equals. A função deve conter pelo menos uma variável x ou y Error that occurs during graphing when the equation is missing x or y. Expressão inválida. Error that occurs during graphing when an invalid syntax is used. A expressão está vazia Error that occurs during graphing when the expression is empty O sinal de igual foi usado sem uma equação Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parêntese ausente após o nome da função Error that occurs during graphing when parenthesis are missing after a function. Uma operação matemática tem o número incorreto de parâmetros Error that occurs during graphing when a function has the wrong number of parameters Um nome de variável é inválido Error that occurs during graphing when a variable name is invalid. Falta um colchete de abertura na equação Error that occurs during graphing when a { is missing Falta um colchete de fechamento na equação Error that occurs during graphing when a } is missing. "i" e "I" não podem ser usados como nomes de variáveis Error that occurs during graphing when i or I is used. A equação não pôde ser incluída no gráfico General error that occurs during graphing. Não foi possível resolver o dígito para a base especificada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). A base deve ser maior que 2 e menor que 36 Error that occurs during graphing when the base is out of range. Uma operação matemática requer que um de seus parâmetros seja uma variável Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. A equação mistura operandos lógicos e escalares Error that occurs during graphing when operands are mixed. Such as true and 1. x ou y não pode ser usado nos limites superior ou inferior Error that occurs during graphing when x or y is used in integral upper limits. x ou y não pode ser usado no limite de ponto Error that occurs during graphing when x or y is used in the limit point. Não é possível usar infinitos complexos Error that occurs during graphing when complex infinity is used Não é possível usar números complexos em inequações Error that occurs during graphing when complex numbers are used in inequalities. Voltar à lista de função This is the tooltip for the back button in the equation analysis page in the graphing calculator Voltar à lista de função This is the automation name for the back button in the equation analysis page in the graphing calculator Analisar função This is the tooltip for the analyze function button Analisar função This is the automation name for the analyze function button Analisar função This is the text for the for the analyze function context menu command Remover equação This is the tooltip for the graphing calculator remove equation buttons Remover equação This is the automation name for the graphing calculator remove equation buttons Remover equação This is the text for the for the remove equation context menu command Compartilhar This is the automation name for the graphing calculator share button. Compartilhar This is the tooltip for the graphing calculator share button. Alterar estilo de equação This is the tooltip for the graphing calculator equation style button Alterar estilo de equação This is the automation name for the graphing calculator equation style button Alterar estilo de equação This is the text for the for the equation style context menu command Mostrar equação This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ocultar equação This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostrar equação %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ocultar equação %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Parar rastreamento This is the tooltip/automation name for the graphing calculator stop tracing button Iniciar rastreamento This is the tooltip/automation name for the graphing calculator start tracing button Janela de visualização de gráfico, eixo x limitado por %1 e %2, eixo y vinculado por %3 e %4, exibindo %5 equações {Locked="%1","%2", "%3", "%4", "%5"}. Configurar controle deslizante This is the tooltip text for the slider options button in Graphing Calculator Configurar controle deslizante This is the automation name text for the slider options button in Graphing Calculator Alternar para o modo de equação Used in Graphing Calculator to switch the view to the equation mode Alternar para o modo de gráfico Used in Graphing Calculator to switch the view to the graph mode Alternar para o modo de equação Used in Graphing Calculator to switch the view to the equation mode O modo atual é o modo de equação Announcement used in Graphing Calculator when switching to the equation mode O modo atual é o modo de gráfico Announcement used in Graphing Calculator when switching to the graph mode Janela Heading for window extents on the settings Graus Degrees mode on settings page Grados Gradian mode on settings page Radianos Radians mode on settings page Unidades Heading for Unit's on the settings Redefinir modo de exibição Hyperlink button to reset the view of the graph X-Máx. X maximum value header X-Mín. X minimum value header Y-Máx. Y Maximum value header Y-Mín. Y minimum value header Opções do Graph This is the tooltip text for the graph options button in Graphing Calculator Opções do Graph This is the automation name text for the graph options button in Graphing Calculator Opções de gráfico Heading for the Graph options flyout in Graphing mode. Opções variáveis Screen reader prompt for the variable settings toggle button Alternar opções de variável Tool tip for the variable settings toggle button Espessura da linha Heading for the Graph options flyout in Graphing mode. Opções de linha Heading for the equation style flyout in Graphing mode. Largura de linha pequena Automation name for line width setting Largura de linha média Automation name for line width setting Largura de linha grande Automation name for line width setting Largura de linha extra grande Automation name for line width setting Insira uma expressão this is the placeholder text used by the textbox to enter an equation Copiar Copy menu item for the graph context menu Recortar Cut menu item from the Equation TextBox Copiar Copy menu item from the Equation TextBox Colar Paste menu item from the Equation TextBox Desfazer Undo menu item from the Equation TextBox Selecionar tudo Select all menu item from the Equation TextBox Entrada da função The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada da função The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Painel de entrada de função The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Painel variável The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista de variáveis The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variável %1 item da lista The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Caixa de texto do valor da variável The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Controle deslizante de valor variável The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Caixa de texto do valor mínimo da variável The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Caixa de texto do valor da etapa variável The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Caixa de texto do valor máximo da variável The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estilo de linha sólida Name of the solid line style for a graphed equation Estilo de linha pontilhada Name of the dotted line style for a graphed equation Estilo de linha tracejada Name of the dashed line style for a graphed equation Azul-marinho Name of color in the color picker Espuma-do-mar Name of color in the color picker Violeta Name of color in the color picker Verde Name of color in the color picker Verde-menta Name of color in the color picker Verde escuro Name of color in the color picker Carvão Name of color in the color picker Vermelho Name of color in the color picker Ameixa-claro Name of color in the color picker Magenta Name of color in the color picker Ouro amarelo Name of color in the color picker Laranja brilhante Name of color in the color picker Marrom Name of color in the color picker Preto Name of color in the color picker Branco Name of color in the color picker Cor 1 Name of color in the color picker Cor 2 Name of color in the color picker Cor 3 Name of color in the color picker Cor 4 Name of color in the color picker Tema do Graph Graph settings heading for the theme options Sempre claro Graph settings option to set graph to light theme Combinar tema do aplicativo Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Sempre claro This is the automation name text for the Graph settings option to set graph to light theme Combinar tema do aplicativo This is the automation name text for the Graph settings option to set graph to match the app theme Função removida Announcement used in Graphing Calculator when a function is removed from the function list Caixa de equação de análise de função This is the automation name text for the equation box in the function analysis panel Igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menor que Screen reader prompt for the Less than button Menor ou igual a Screen reader prompt for the Less than or equal button Igual Screen reader prompt for the Equal button Maior ou igual a Screen reader prompt for the Greater than or equal button Maior do que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Enviar Screen reader prompt for the submit button on the graphing calculator operator keypad Análise de função Screen reader prompt for the function analysis grid Opções de gráfico Screen reader prompt for the graph options panel Listas de memória e histórico Automation name for the group of controls for history and memory lists. Lista de memória Automation name for the group of controls for memory list. Slot de histórico %1 removido {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculadora sempre visível Announcement to indicate calculator window is always shown on top. Calculadora de volta ao modo de exibição completo Announcement to indicate calculator window is now back to full view. Deslocamento aritmético selecionado Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deslocamento lógico selecionado Label for a radio button that toggles logical shift behavior for the shift operations. Girar deslocamento circular selecionado Label for a radio button that toggles rotate circular behavior for the shift operations. Girar através do deslocamento circular de transporte selecionado Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Configurações Header text of Settings page Aparência Subtitle of appearance setting on Settings page Tema do aplicativo Title of App theme expander Selecionar o tema do aplicativo a ser exibido Description of App theme expander Claro Lable for light theme option Escuro Lable for dark theme option Usar configuração do sistema Lable for the app theme option to use system setting Voltar Screen reader prompt for the Back button in title bar to back to main page Página de configurações Announcement used when Settings page is opened Abrir o menu de contexto para ações disponíveis Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Não foi possível restaurar este instantâneo. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/pt-PT/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Entrada inválida Error message shown when the input makes a function fail, like log(-1) O resultado é indefinido Error message shown when there's no possible value for a function. Memória insuficiente Error message shown when we run out of memory during a calculation. Capacidade excedida Error message shown when there's an overflow during the calculation. Resultado não definido Same as 101 Resultado não definido Same 101 Capacidade excedida Same as 107 Capacidade excedida Same 107 Não é possível dividir por zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/pt-PT/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculadora {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculadora [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculadora do Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculadora do Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculadora {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculadora [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiar Copy context menu string Colar Paste context menu string Aproximadamente igual a The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valor %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bits {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63.º Sub-string used in automation name for 63 bit in bit flip 62.º Sub-string used in automation name for 62 bit in bit flip 61.º Sub-string used in automation name for 61 bit in bit flip 60.º Sub-string used in automation name for 60 bit in bit flip 59.º Sub-string used in automation name for 59 bit in bit flip 58.º Sub-string used in automation name for 58 bit in bit flip 57.º Sub-string used in automation name for 57 bit in bit flip 56.º Sub-string used in automation name for 56 bit in bit flip 55.º Sub-string used in automation name for 55 bit in bit flip 54.º Sub-string used in automation name for 54 bit in bit flip 53.º Sub-string used in automation name for 53 bit in bit flip 52.º Sub-string used in automation name for 52 bit in bit flip 51.º Sub-string used in automation name for 51 bit in bit flip 50.º Sub-string used in automation name for 50 bit in bit flip 49.º Sub-string used in automation name for 49 bit in bit flip 48.º Sub-string used in automation name for 48 bit in bit flip 47.º Sub-string used in automation name for 47 bit in bit flip 46.º Sub-string used in automation name for 46 bit in bit flip 45.º Sub-string used in automation name for 45 bit in bit flip 44.º Sub-string used in automation name for 44 bit in bit flip 43.º Sub-string used in automation name for 43 bit in bit flip 42.º Sub-string used in automation name for 42 bit in bit flip 41.º Sub-string used in automation name for 41 bit in bit flip 40.º Sub-string used in automation name for 40 bit in bit flip 39.º Sub-string used in automation name for 39 bit in bit flip 38.º Sub-string used in automation name for 38 bit in bit flip 37.º Sub-string used in automation name for 37 bit in bit flip 36.º Sub-string used in automation name for 36 bit in bit flip 35.º Sub-string used in automation name for 35 bit in bit flip 34.º Sub-string used in automation name for 34 bit in bit flip 33.º Sub-string used in automation name for 33 bit in bit flip 32.º Sub-string used in automation name for 32 bit in bit flip 31.º Sub-string used in automation name for 31 bit in bit flip 30.º Sub-string used in automation name for 30 bit in bit flip 29.º Sub-string used in automation name for 29 bit in bit flip 28.º Sub-string used in automation name for 28 bit in bit flip 27.º Sub-string used in automation name for 27 bit in bit flip 26.º Sub-string used in automation name for 26 bit in bit flip 25.º Sub-string used in automation name for 25 bit in bit flip 24.º Sub-string used in automation name for 24 bit in bit flip 23.º Sub-string used in automation name for 23 bit in bit flip 22.º Sub-string used in automation name for 22 bit in bit flip 21.º Sub-string used in automation name for 21 bit in bit flip 20.º Sub-string used in automation name for 20 bit in bit flip 19.º Sub-string used in automation name for 19 bit in bit flip 18.º Sub-string used in automation name for 18 bit in bit flip 17.º Sub-string used in automation name for 17 bit in bit flip 16.º Sub-string used in automation name for 16 bit in bit flip 15.º Sub-string used in automation name for 15 bit in bit flip 14.º Sub-string used in automation name for 14 bit in bit flip 13.º Sub-string used in automation name for 13 bit in bit flip 12.º Sub-string used in automation name for 12 bit in bit flip 11.º Sub-string used in automation name for 11 bit in bit flip 10.º Sub-string used in automation name for 10 bit in bit flip 9.º Sub-string used in automation name for 9 bit in bit flip 8.º Sub-string used in automation name for 8 bit in bit flip 7.º Sub-string used in automation name for 7 bit in bit flip 6.º Sub-string used in automation name for 6 bit in bit flip 5.º Sub-string used in automation name for 5 bit in bit flip 4.º Sub-string used in automation name for 4 bit in bit flip 3.º Sub-string used in automation name for 3 bit in bit flip 2.º Sub-string used in automation name for 2 bit in bit flip 1.º Sub-string used in automation name for 1 bit in bit flip bit menos significativo Used to describe the first bit of a binary number. Used in bit flip Submenu Abrir memória This is the automation name and label for the memory button when the memory flyout is closed. Submenu Fechar memória This is the automation name and label for the memory button when the memory flyout is open. Manter sempre visível This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Voltar à vista completa This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memória This is the tool tip automation name for the memory button. Histórico (Ctrl+H) This is the tool tip automation name for the history button. Teclado de bits alternados This is the tool tip automation name for the bitFlip button. Teclado completo This is the tool tip automation name for the numberPad button. Limpar toda a memória (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memória The text that shows as the header for the memory list Memória The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Histórico The text that shows as the header for the history list Histórico The automation name for the History pivot item that is shown when Calculator is in wide layout. Conversor Label for a control that activates the unit converter mode. Científica Label for a control that activates scientific mode calculator layout Padrão Label for a control that activates standard mode calculator layout. Modo de conversor Screen reader prompt for a control that activates the unit converter mode. Modo científico Screen reader prompt for a control that activates scientific mode calculator layout Modo padrão Screen reader prompt for a control that activates standard mode calculator layout. Limpar todo o histórico "ClearHistory" used on the calculator history pane that stores the calculation history. Limpar todo o histórico This is the tool tip automation name for the Clear History button. Ocultar "HideHistory" used on the calculator history pane that stores the calculation history. Padrão The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Científica The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programador The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Conversor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group. Conversor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculadora The text that shows in the dropdown navigation control for the calculator group in upper case. Conversores Pluralized version of the converter group text, used for the screen reader prompt. Calculadoras Pluralized version of the calculator group text, used for the screen reader prompt. Visualização é %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". A expressão é %1, a Entrada atual é %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Apresentar no ponto %1 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expressão é %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Valor apresentado copiado para a área de transferência Screen reader prompt for the Calculator display copy button, when the button is invoked. Histórico Screen reader prompt for the history flyout Memória Screen reader prompt for the memory flyout Hexadecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binário %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Limpar todo o histórico Screen reader prompt for the Calculator History Clear button Histórico limpo Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ocultar histórico Screen reader prompt for the Calculator History Hide button Submenu Abrir histórico Screen reader prompt for the Calculator History button, when the flyout is closed. Submenu Fechar histórico Screen reader prompt for the Calculator History button, when the flyout is open. Armazenar memória Screen reader prompt for the Calculator Memory button Armazenar memória (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Limpar toda a memória Screen reader prompt for the Calculator Clear Memory button Memória limpa Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Recuperar memória Screen reader prompt for the Calculator Memory Recall button Recuperar memória (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Adicionar memória Screen reader prompt for the Calculator Memory Add button Adicionar memória (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Subtrair memória Screen reader prompt for the Calculator Memory Subtract button Subtrair memória (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Limpar item da memória Screen reader prompt for the Calculator Clear Memory button Limpar item da memória This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Adicionar ao item de memória Screen reader prompt for the Calculator Memory Add button in the Memory list Adicionar ao item de memória This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtrair do item de memória Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtrair do item de memória This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Limpar item de memória Screen reader prompt for the Calculator Clear Memory button Limpar item da memória Text string for the Calculator Clear Memory option in the Memory list context menu Adicionar ao item de memória Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Adicionar ao item de memória Text string for the Calculator Memory Add option in the Memory list context menu Subtrair do item de memória Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtrair do item de memória Text string for the Calculator Memory Subtract option in the Memory list context menu Eliminar Text string for the Calculator Delete swipe button in the History list Copiar Text string for the Calculator Copy option in the History list context menu Eliminar Text string for the Calculator Delete option in the History list context menu Eliminar item do histórico Screen reader prompt for the Calculator Delete swipe button in the History list Eliminar item do histórico Screen reader prompt for the Calculator Delete option in the History list context menu Retrocesso Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Um Screen reader prompt for the Calculator number "1" button Dois Screen reader prompt for the Calculator number "2" button Três Screen reader prompt for the Calculator number "3" button Quatro Screen reader prompt for the Calculator number "4" button Cinco Screen reader prompt for the Calculator number "5" button Seis Screen reader prompt for the Calculator number "6" button Sete Screen reader prompt for the Calculator number "7" button Oito Screen reader prompt for the Calculator number "8" button Nove Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button L Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button E Screen reader prompt for the Calculator And button Ou Screen reader prompt for the Calculator Or button Não Screen reader prompt for the Calculator Not button Rodar para a esquerda Screen reader prompt for the Calculator ROL button Rodar para a direita Screen reader prompt for the Calculator ROR button Deslocar para a esquerda Screen reader prompt for the Calculator LSH button Deslocar para a direita Screen reader prompt for the Calculator RSH button Disjunção exclusiva Screen reader prompt for the Calculator XOR button Ativar/desativar palavra quádrupla Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Ativar/desativar palavra dupla Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Ativar/desativar palavra Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Ativar/desativar byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Teclado de bits alternados Screen reader prompt for the Calculator bitFlip button Teclado completo Screen reader prompt for the Calculator numberPad button Separador decimal Screen reader prompt for the "." button Limpar entrada Screen reader prompt for the "CE" button Limpar Screen reader prompt for the "C" button Dividir por Screen reader prompt for the divide button on the number pad Multiplicar por Screen reader prompt for the multiply button on the number pad Igual a Screen reader prompt for the equals button on the scientific operator keypad Função de inversão Screen reader prompt for the shift button on the number pad in scientific mode. Menos Screen reader prompt for the minus button on the number pad Menos We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Mais Screen reader prompt for the plus button on the number pad Raiz quadrada Screen reader prompt for the square root button on the scientific operator keypad Percentagem Screen reader prompt for the percent button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the scientific operator keypad Positivo negativo Screen reader prompt for the negate button on the converter operator keypad Recíproco Screen reader prompt for the invert button on the scientific operator keypad Parêntese à esquerda Screen reader prompt for the Calculator "(" button on the scientific operator keypad Parêntese à esquerda, abrir contagem de parênteses %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Parêntese à direita Screen reader prompt for the Calculator ")" button on the scientific operator keypad Contagem de parêntesis abertos %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Não existem parêntesis abertos para fechar. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notação científica Screen reader prompt for the Calculator F-E the scientific operator keypad Função hiperbólica Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Seno Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosseno Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangente Screen reader prompt for the Calculator tan button on the scientific operator keypad Seno hiperbólico Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosseno hiperbólico Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangente hiperbólica Screen reader prompt for the Calculator tanh button on the scientific operator keypad Quadrado Screen reader prompt for the x squared on the scientific operator keypad. Cubo Screen reader prompt for the x cubed on the scientific operator keypad. Arco seno Screen reader prompt for the inverted sin on the scientific operator keypad. Arco cosseno Screen reader prompt for the inverted cos on the scientific operator keypad. Arco tangente Screen reader prompt for the inverted tan on the scientific operator keypad. Arco seno hiperbólico Screen reader prompt for the inverted sinh on the scientific operator keypad. Arco cosseno hiperbólico Screen reader prompt for the inverted cosh on the scientific operator keypad. Arco tangente hiperbólico Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" elevado a Screen reader prompt for x power y button on the scientific operator keypad. Dez elevado a Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" elevado a Screen reader for the e power x on the scientific operator keypad. Raiz "y" de "x" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmo Screen reader for the log base 10 on the scientific operator keypad Logaritmo natural Screen reader for the log base e on the scientific operator keypad Módulo Screen reader for the mod button on the scientific operator keypad Exponencial Screen reader for the exp button on the scientific operator keypad Grau minuto segundo Screen reader for the exp button on the scientific operator keypad Graus Screen reader for the exp button on the scientific operator keypad Parte inteira Screen reader for the int button on the scientific operator keypad Parte fracionária Screen reader for the frac button on the scientific operator keypad Fatorial Screen reader for the factorial button on the basic operator keypad Ativar/desativar graus This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Ativar/desativar grados This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Ativar/desativar radianos This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista pendente de modos Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista pendente de categorias Screen reader prompt for the Categories dropdown field. Manter sempre visível Screen reader prompt for the Always-on-Top button when in normal mode. Voltar à vista completa Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Manter visível (Alt+Para Cima) This is the tool tip automation name for the Always-on-Top button when in normal mode. Voltar à vista completa (Alt+Para Baixo) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Converter de %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Converter de %1 vírgula %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Converte em %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 é %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Unidade de entrada Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unidade de saída Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Área Unit conversion category name called Area (eg. area of a sports field in square meters) Dados Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Comprimento Unit conversion category name called Length Potência Unit conversion category name called Power (eg. the power of an engine or a light bulb) Velocidade Unit conversion category name called Speed Tempo Unit conversion category name called Time Volume Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Peso e massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pressão Unit conversion category name called Pressure Ângulo Unit conversion category name called Angle Moeda Unit conversion category name called Currency Onças líquidas (RU) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz líq (RU) An abbreviation for a measurement unit of volume Onças líquidas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) oz líq (US) An abbreviation for a measurement unit of volume Galões (RU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (RU) An abbreviation for a measurement unit of volume Galões (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (EUA) An abbreviation for a measurement unit of volume Litros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) P An abbreviation for a measurement unit of volume Mililitros A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pintos (RU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (RU) An abbreviation for a measurement unit of volume Pintos (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (EUA) An abbreviation for a measurement unit of volume Colheres de sopa (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colh. sopa (EUA) An abbreviation for a measurement unit of volume Colheres de chá (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colh. chá (EUA) An abbreviation for a measurement unit of volume Colheres de sopa (RU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colh. sopa (RU) An abbreviation for a measurement unit of volume Colheres de chá (RU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) colh. chá (RU) An abbreviation for a measurement unit of volume Quartos (RU) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (RU) An abbreviation for a measurement unit of volume Quartos (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (EUA) An abbreviation for a measurement unit of volume Chávenas (EUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cháv. (EUA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume pés³ An abbreviation for a measurement unit of volume pol³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy pés An abbreviation for a measurement unit of length pés/s An abbreviation for a measurement unit of speed pés•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area cv (EUA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time pol An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data pés•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area pés² An abbreviation for a measurement unit of area pol² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sem An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length ano An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acres A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unidades térmicas britânicas A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minuto A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorias térmicas A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros cúbicos A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas cúbicas A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dias A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Eletrões-volt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés-libras A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés-libras/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectares A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Potência em cavalos (EUA) A measurement unit for power Horas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-horas A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Quilobits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilobytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorias alimentares A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilojoules A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilowatts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nós A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros por segundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mícrones A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microssegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas por hora A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milissegundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minutos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanómetros A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas náuticas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Segundos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centímetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pés quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polegadas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilómetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milhas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milímetros quadrados A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas quadradas A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watts A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Semanas A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardas A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Anos A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grau An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight t (RU) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight t (EUA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Quilates A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Graus A measurement unit for Angle. Radianos A measurement unit for Angle. Grados A measurement unit for Angle. Atmosferas A measurement unit for Pressure. Barras A measurement unit for Pressure. Quilopascals A measurement unit for Pressure. Milímetros de mercúrio A measurement unit for Pressure. Pascals A measurement unit for Pressure. Libras por polegada quadrada A measurement unit for Pressure. Centigramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagramas A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectogramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Quilogramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas longas (RU) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramas A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onças A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libras A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas curtas (EUA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Toneladas métricas A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDs A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de futebol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) campos de futebol A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disquetes A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDs A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterias AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterias AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clipes de papel A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) clipes de papel A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviões jumbo A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lâmpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lâmpadas A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cavalos A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banheiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banheiras A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocos de neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flocos de neve A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantes An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tartarugas A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jatos A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jatos A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleias A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baleias A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chávenas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) chávenas de café A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscinas An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mãos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mãos A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folhas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) folhas de papel A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castelos A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananas A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fatias de bolo A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fatias de bolo A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotivas A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotivas A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bolas de futebol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bolas de futebol A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Item de memória Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Anterior Screen reader prompt for the About panel back button Anterior Content of tooltip being displayed on AboutControlBackButton Termos de Licenciamento para Software Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Pré-visualizar Label displayed next to upcoming features Declaração de Privacidade da Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Todos os direitos reservados. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Para saber como pode contribuir para a Calculadora do Windows, consulte o projeto no %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Acerca de Subtitle of about message on Settings page Enviar comentários The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Ainda não existe histórico. The text that shows as the header for the history list Não existe nada guardado na memória. The text that shows as the header for the memory list Memória Screen reader prompt for the negate button on the converter operator keypad Esta expressão não pode ser colada The paste operation cannot be performed, if the expression is invalid. Gibibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte(s) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cálculo de data Modo de cálculo Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Adicionar Add toggle button text Adicionar ou subtrair dias Add or Subtract days option Data Date result label Diferença entre datas Date difference option Dias Add/Subtract Days label Diferença Difference result label De From Date Header for Difference Date Picker Meses Add/Subtract Months label Subtrair Subtract toggle button text A To Date Header for Difference Date Picker Anos Add/Subtract Years label Data fora do Limite Out of bound message shown as result when the date calculation exceeds the bounds dia dias mês meses Mesmas datas semana semanas ano anos Diferença %1 Automation name for reading out the date difference. %1 = Date difference Data resultante %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Modo de Cálculo de %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Modo de Conversor de %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Modo de cálculo de data Automation name for when the mode header is focused and the current mode is Date calculation. Listas de Histórico e Memória Automation name for the group of controls for history and memory lists. Controlos da memória Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funções padrão Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Controlos de visualização Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operadores padrão Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Teclado numérico Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operadores de ângulo Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funções científicas Automation name for the group of Scientific functions. Seleção de raiz Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operadores de programador Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Seleção do modo de introdução Automation name for the group of input mode toggling buttons. Teclado de alternância de bits Automation name for the group of bit toggling buttons. Deslocar expressão para a esquerda Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Deslocar expressão para a direita Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Máx. de dígitos atingido. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 guardado na memória {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". A ranhura de memória %1 é %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". A ranhura de memória %1 foi limpa {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". dividido por Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. vezes Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. menos Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. mais Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. à potência de Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. raiz de y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. deslocar para a esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. deslocar para a direita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ou Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ou Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. e Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Atualização a %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Atualizar taxas The text displayed for a hyperlink button that refreshes currency converter ratios. Poderão aplicar-se encargos relativos a dados. The text displayed when users are on a metered connection and using currency converter. Não foi possível obter as novas taxas. Tente novamente mais tarde. The text displayed when currency ratio data fails to load. Offline. Verifique as suas%HL%Definições de Rede%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} A atualizar taxas de câmbio This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Taxas de câmbio atualizadas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Não foi possível atualizar as taxas This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} T Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} CA AccessKey for the area converter navbar item. {StringCategory="Accelerator"} L AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} P AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} V AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} Te AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} L Access key for the Clear history button.{StringCategory="Accelerator"} L Access key for the Clear memory button. {StringCategory="Accelerator"} Limpar toda a memória (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Limpar toda a memória Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} seno, graus Name for the sine function in degrees mode. Used by screen readers. seno, radianos Name for the sine function in radians mode. Used by screen readers. seno, grados Name for the sine function in gradians mode. Used by screen readers. seno inverso, graus Name for the inverse sine function in degrees mode. Used by screen readers. seno inverso, radianos Name for the inverse sine function in radians mode. Used by screen readers. seno inverso, grados Name for the inverse sine function in gradians mode. Used by screen readers. seno hiperbólico Name for the hyperbolic sine function. Used by screen readers. seno hiperbólico inverso Name for the inverse hyperbolic sine function. Used by screen readers. cosseno, graus Name for the cosine function in degrees mode. Used by screen readers. cosseno, radianos Name for the cosine function in radians mode. Used by screen readers. cosseno, grados Name for the cosine function in gradians mode. Used by screen readers. cosseno inverso, graus Name for the inverse cosine function in degrees mode. Used by screen readers. cosseno inverso, radianos Name for the inverse cosine function in radians mode. Used by screen readers. cosseno inverso, grados Name for the inverse cosine function in gradians mode. Used by screen readers. cosseno hiperbólico Name for the hyperbolic cosine function. Used by screen readers. cosseno hiperbólico inverso Name for the inverse hyperbolic cosine function. Used by screen readers. tangente, graus Name for the tangent function in degrees mode. Used by screen readers. tangente, radianos Name for the tangent function in radians mode. Used by screen readers. tangente, grados Name for the tangent function in gradians mode. Used by screen readers. tangente inversa, graus Name for the inverse tangent function in degrees mode. Used by screen readers. tangente inversa, radianos Name for the inverse tangent function in radians mode. Used by screen readers. tangente inversa, grados Name for the inverse tangent function in gradians mode. Used by screen readers. tangente hiperbólica Name for the hyperbolic tangent function. Used by screen readers. tangente hiperbólica inversa Name for the inverse hyperbolic tangent function. Used by screen readers. graus da secante Name for the secant function in degrees mode. Used by screen readers. radianos da secante Name for the secant function in radians mode. Used by screen readers. grados da secante Name for the secant function in gradians mode. Used by screen readers. graus da secante inversa Name for the inverse secant function in degrees mode. Used by screen readers. radianos da secante inversa Name for the inverse secant function in radians mode. Used by screen readers. grados da secante inversa Name for the inverse secant function in gradians mode. Used by screen readers. secante hiperbólica Name for the hyperbolic secant function. Used by screen readers. secante hiperbólica inversa Name for the inverse hyperbolic secant function. Used by screen readers. graus da cossecante Name for the cosecant function in degrees mode. Used by screen readers. radianos da cossecante Name for the cosecant function in radians mode. Used by screen readers. grados da cossecante Name for the cosecant function in gradians mode. Used by screen readers. graus da cossecante inversa Name for the inverse cosecant function in degrees mode. Used by screen readers. radianos da cossecante inversa Name for the inverse cosecant function in radians mode. Used by screen readers. grados da cossecante inversa Name for the inverse cosecant function in gradians mode. Used by screen readers. cossecante hiperbólica Name for the hyperbolic cosecant function. Used by screen readers. cossecante hiperbólica inversa Name for the inverse hyperbolic cosecant function. Used by screen readers. graus da cotangente Name for the cotangent function in degrees mode. Used by screen readers. Radianos da cotangente Name for the cotangent function in radians mode. Used by screen readers. grados da cotangente Name for the cotangent function in gradians mode. Used by screen readers. graus da cotangente inversa Name for the inverse cotangent function in degrees mode. Used by screen readers. radianos da cotangente inversa Name for the inverse cotangent function in radians mode. Used by screen readers. grados da cotangente inversa Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangente hiperbólica Name for the hyperbolic cotangent function. Used by screen readers. cotangente hiperbólica inversa Name for the inverse hyperbolic cotangent function. Used by screen readers. Raiz cúbica Name for the cube root function. Used by screen readers. Base logarítmica Name for the logbasey function. Used by screen readers. Valor absoluto Name for the absolute value function. Used by screen readers. deslocar para a esquerda Name for the programmer function that shifts bits to the left. Used by screen readers. deslocar para a direita Name for the programmer function that shifts bits to the right. Used by screen readers. fatorial Name for the factorial function. Used by screen readers. grau minuto segundo Name for the degree minute second (dms) function. Used by screen readers. logaritmo natural Name for the natural log (ln) function. Used by screen readers. quadrado Name for the square function. Used by screen readers. raiz de y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 categoria {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contrato de Serviços Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. De From Date Header for AddSubtract Date Picker Deslocar resultado do cálculo para a esquerda Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Deslocar resultado do cálculo para a direita Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Falha no cálculo Text displayed when the application is not able to do a calculation Base logarítmica Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Função Displayed on the button that contains a flyout for the general functions in scientific mode. Desigualdades Displayed on the button that contains a flyout for the inequality functions. Desigualdades Screen reader prompt for the Inequalities button Bit-a-bit Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Deslocamento de bits Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Função de inversão Screen reader prompt for the shift button in the trig flyout in scientific mode. Função hiperbólica Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secante hiperbólica Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arco secante Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arco secante hiperbólico Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cossecante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cossecante hiperbólica Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arco cossecante Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arco cossecante hiperbólico Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangente Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangente hiperbólica Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arco cotangente Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arco cotangente hiperbólico Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Mínimo Screen reader prompt for the Calculator button floor in the scientific flyout keypad Máximo Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleatório Screen reader prompt for the Calculator button random in the scientific flyout keypad Valor absoluto Screen reader prompt for the Calculator button abs in the scientific flyout keypad Número do Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Dois elevado ao expoente Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rodar para a esquerda com transporte Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rodar para a direita com transporte Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Deslocar para a esquerda Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Deslocamento para a esquerda Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deslocar para a direita Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Deslocamento para a direita Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deslocamento aritmético Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deslocamento lógico Label for a radio button that toggles logical shift behavior for the shift operations. Rodar deslocamento circular Label for a radio button that toggles rotate circular behavior for the shift operations. Rodar através de deslocamento circular com transporte Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Raiz cúbica Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funções Screen reader prompt for the square root button on the scientific operator keypad Bit-a-bit Screen reader prompt for the square root button on the scientific operator keypad Deslocamento de bits Screen reader prompt for the square root button on the scientific operator keypad Painéis de operadores científicos Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Painéis de operador do programador Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bit mais significativo Used to describe the last bit of a binary number. Used in bit flip Representação gráfica Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Desenhar Screen reader prompt for the plot button on the graphing calculator operator keypad Atualizar vista automaticamente (Ctrl+0) This is the tool tip automation name for the Calculator graph view button. Vista de gráficos Screen reader prompt for the graph view button. Melhor ajuste automático Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajuste manual Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set A vista do gráfico foi reposta Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Ampliar (Ctrl+Sinal de Adição) This is the tool tip automation name for the Calculator zoom in button. Ampliar Screen reader prompt for the zoom in button. Reduzir (Ctrl+Sinal de Subtração) This is the tool tip automation name for the Calculator zoom out button. Reduzir Screen reader prompt for the zoom out button. Adicionar equação Placeholder text for the equation input button De momento, não é possível partilhar. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Ver o gráfico criado com a Calculadora do Windows Sent as part of the shared content. The title for the share. Equações Header that appears over the equations section when sharing Variáveis Header that appears over the variables section when sharing Imagem de um gráfico com equações Alt text for the graph image when output via Share Variáveis Header text for variables area Passo Label text for the step text box Mín. Label text for the min text box Máx. Label text for the max text box Cor Label for the Line Color section of the style picker Estilo Label for the Line Style section of the style picker Análise de funções Title for KeyGraphFeatures Control A função não tem nenhuma assimptota horizontal. Message displayed when the graph does not have any horizontal asymptotes A função não tem nenhum ponto de inflexão. Message displayed when the graph does not have any inflection points A função não tem nenhum ponto de máximo. Message displayed when the graph does not have any maxima A função não tem nenhum ponto de mínimo. Message displayed when the graph does not have any minima Constante String describing constant monotonicity of a function Decrescente String describing decreasing monotonicity of a function Não é possível determinar a monotonicidade da função. Error displayed when monotonicity cannot be determined Crescente String describing increasing monotonicity of a function A monotonicidade da função é desconhecida. Error displayed when monotonicity is unknown A função não tem nenhuma assimptota oblíqua. Message displayed when the graph does not have any oblique asymptotes Não é possível determinar a paridade da função. Error displayed when parity is cannot be determined A função é par. Message displayed with the function parity is even A função não é par nem ímpar. Message displayed with the function parity is neither even nor odd A função é ímpar. Message displayed with the function parity is odd A paridade da função é desconhecida. Error displayed when parity is unknown A periodicidade não é suportada para esta função. Error displayed when periodicity is not supported A função não é periódica. Message displayed with the function periodicity is not periodic A periodicidade da função é desconhecida. Message displayed with the function periodicity is unknown Estas funcionalidades são demasiado complexas para a Calculadora calcular: Error displayed when analysis features cannot be calculated A função não tem nenhuma assimptota vertical. Message displayed when the graph does not have any vertical asymptotes A função não tem nenhuma interceção de x. Message displayed when the graph does not have any x-intercepts A função não tem nenhuma interceção de y. Message displayed when the graph does not have any y-intercepts Domínio Title for KeyGraphFeatures Domain Property Assimptotas horizontais Title for KeyGraphFeatures Horizontal aysmptotes Property Pontos de inflexão Title for KeyGraphFeatures Inflection points Property A análise não é suportada para esta função. Error displayed when graph analysis is not supported or had an error. A análise só é suportada para funções no formato f(x). Exemplo: y=x Error displayed when graph analysis detects the function format is not f(x). Máximo Title for KeyGraphFeatures Maxima Property Mínimo Title for KeyGraphFeatures Minima Property Monotonicidade Title for KeyGraphFeatures Monotonicity Property Assimptotas oblíquas Title for KeyGraphFeatures Oblique asymptotes Property Paridade Title for KeyGraphFeatures Parity Property Ciclo Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervalo Title for KeyGraphFeatures Range Property Assimptotas verticais Title for KeyGraphFeatures Vertical asymptotes Property Interceção de X Title for KeyGraphFeatures XIntercept Property Interceção de Y Title for KeyGraphFeatures YIntercept Property Não foi possível executar a análise para a função. Não é possível calcular o domínio para esta função. Error displayed when Domain is not returned from the analyzer. Não é possível calcular o intervalo para esta função. Error displayed when Range is not returned from the analyzer. Transbordo (o número é demasiado grande) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. O modo de radianos é necessário para representar esta equação num gráfico. Error that occurs during graphing when radians is required. Esta função é demasiado complexa para representar num gráfico Error that occurs during graphing when the equation is too complex. O modo de graus é necessário para representar esta equação num gráfico. Error that occurs during graphing when degrees is required A função fatorial tem um argumento inválido Error that occurs during graphing when a factorial function has an invalid argument. A função fatorial tem um argumento demasiado grande para representar num gráfico Error that occurs during graphing when a factorial has a large n Módulo só pode ser utilizado com números inteiros Error that occurs during graphing when modulo is used with a float. A equação não tem solução Error that occurs during graphing when the equation has no solution. Não é possível dividir por zero Error that occurs during graphing when a divison by zero occurs. A equação contém condições lógicas que são mutuamente exclusivas Error that occurs during graphing when mutually exclusive conditions are used. A equação está fora do domínio Error that occurs during graphing when the equation is out of domain. A representação gráfica desta equação não é suportada Error that occurs during graphing when the equation is not supported. Falta um parêntese de abertura na equação Error that occurs during graphing when the equation is missing a ( Falta um parêntese de fecho na equação Error that occurs during graphing when the equation is missing a ) Existem muitos pontos decimais num número Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Faltam dígitos a um ponto decimal Error that occurs during graphing with a decimal point without digits Fim de expressão inesperado Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Carateres inesperados na expressão Error that occurs during graphing when there is an unexpected token. Carateres inválidos na expressão Error that occurs during graphing when there is an invalid token. Existem muitos sinais de igual Error that occurs during graphing when there are too many equals. A função deve conter pelo menos uma variável x ou y Error that occurs during graphing when the equation is missing x or y. Expressão inválida Error that occurs during graphing when an invalid syntax is used. A expressão está vazia. Error that occurs during graphing when the expression is empty Igual foi utilizado sem uma equação Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parêntese em falta após o nome da função Error that occurs during graphing when parenthesis are missing after a function. Uma operação matemática tem o número incorreto de parâmetros Error that occurs during graphing when a function has the wrong number of parameters Um nome de variável é inválido Error that occurs during graphing when a variable name is invalid. Falta um parêntese reto de abertura na equação Error that occurs during graphing when a { is missing Falta um parêntese reto de fecho na equação Error that occurs during graphing when a } is missing. "i" e "I" não podem ser usados como nomes das variáveis Error that occurs during graphing when i or I is used. Não foi possível representar a equação num gráfico General error that occurs during graphing. Não foi possível resolver o dígito para a base dada Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). A base deve ser maior que 2 e menos de 36 Error that occurs during graphing when the base is out of range. Uma operação matemática requer que um dos seus parâmetros seja uma variável Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. A equação está a misturar operandos lógicos e escalares Error that occurs during graphing when operands are mixed. Such as true and 1. x ou y não pode ser utilizado nos limites superior ou inferior Error that occurs during graphing when x or y is used in integral upper limits. x ou y não pode ser usado no ponto limite Error that occurs during graphing when x or y is used in the limit point. Não pode utilizar a infinidade complexa Error that occurs during graphing when complex infinity is used Não pode utilizar números complexos em desigualdades Error that occurs during graphing when complex numbers are used in inequalities. Voltar à lista de funções This is the tooltip for the back button in the equation analysis page in the graphing calculator Voltar à lista de funções This is the automation name for the back button in the equation analysis page in the graphing calculator Analisar função This is the tooltip for the analyze function button Analisar função This is the automation name for the analyze function button Analisar função This is the text for the for the analyze function context menu command Remover equação This is the tooltip for the graphing calculator remove equation buttons Remover equação This is the automation name for the graphing calculator remove equation buttons Remover equação This is the text for the for the remove equation context menu command Partilhar This is the automation name for the graphing calculator share button. Partilhar This is the tooltip for the graphing calculator share button. Alterar estilo de equação This is the tooltip for the graphing calculator equation style button Alterar estilo de equação This is the automation name for the graphing calculator equation style button Alterar estilo de equação This is the text for the for the equation style context menu command Mostrar equação This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ocultar equação This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Mostrar equação %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ocultar equação %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Parar rastreio This is the tooltip/automation name for the graphing calculator stop tracing button Iniciar rastreio This is the tooltip/automation name for the graphing calculator start tracing button Janela de visualização de gráficos, eixo x delimitado por %1 e %2, eixo y delimitado por %3 e %4, exibindo equações %5 {Locked="%1","%2", "%3", "%4", "%5"}. Configurar controlo de deslize This is the tooltip text for the slider options button in Graphing Calculator Configurar controlo de deslize This is the automation name text for the slider options button in Graphing Calculator Mudar para modo de equação Used in Graphing Calculator to switch the view to the equation mode Mudar para modo de gráfico Used in Graphing Calculator to switch the view to the graph mode Mudar para modo de equação Used in Graphing Calculator to switch the view to the equation mode O modo atual é o modo de equação Announcement used in Graphing Calculator when switching to the equation mode O modo atual é o modo de gráfico Announcement used in Graphing Calculator when switching to the graph mode Janela Heading for window extents on the settings Graus Degrees mode on settings page Grados Gradian mode on settings page Radianos Radians mode on settings page Unidades Heading for Unit's on the settings Repor vista Hyperlink button to reset the view of the graph Máx. de X X maximum value header Mín. de X X minimum value header Máx. de Y Y Maximum value header Mín. de Y Y minimum value header Opções do gráfico This is the tooltip text for the graph options button in Graphing Calculator Opções do gráfico This is the automation name text for the graph options button in Graphing Calculator Opções do gráfico Heading for the Graph options flyout in Graphing mode. Opções variáveis Screen reader prompt for the variable settings toggle button Ativar/desativar opções variáveis Tool tip for the variable settings toggle button Espessura da linha Heading for the Graph options flyout in Graphing mode. Opções de linha Heading for the equation style flyout in Graphing mode. Largura de linha pequena Automation name for line width setting Largura de linha média Automation name for line width setting Largura de linha grande Automation name for line width setting Largura de linha muito grande Automation name for line width setting Introduzir uma expressão this is the placeholder text used by the textbox to enter an equation Copiar Copy menu item for the graph context menu Cortar Cut menu item from the Equation TextBox Copiar Copy menu item from the Equation TextBox Colar Paste menu item from the Equation TextBox Anular Undo menu item from the Equation TextBox Selecionar tudo Select all menu item from the Equation TextBox Entrada de função The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Entrada de função The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Painel de entrada de funções The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Painel variável The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista variável The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Item da lista %1 da variável The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Caixa de texto do valor da variável The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Controlo de deslize do valor da variável The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Caixa de texto do valor mínimo da variável The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Caixa de texto do valor de incremento da variável The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Caixa de texto do valor máximo da variável The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Estilo de linha sólido Name of the solid line style for a graphed equation Estilo de linha ponteado Name of the dotted line style for a graphed equation Estilo de linha tracejado Name of the dashed line style for a graphed equation Azul-marinho Name of color in the color picker Espuma marinha Name of color in the color picker Violeta Name of color in the color picker Verde Name of color in the color picker Verde menta Name of color in the color picker Verde escuro Name of color in the color picker Carvão Name of color in the color picker Vermelho Name of color in the color picker Ameixa-claro Name of color in the color picker Magenta Name of color in the color picker Amarelo dourado Name of color in the color picker Laranja-vivo Name of color in the color picker Castanho Name of color in the color picker Preto Name of color in the color picker Branco Name of color in the color picker Cor 1 Name of color in the color picker Cor 2 Name of color in the color picker Cor 3 Name of color in the color picker Cor 4 Name of color in the color picker Tema do gráfico Graph settings heading for the theme options Sempre claro Graph settings option to set graph to light theme Combinar temas de aplicações Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Sempre claro This is the automation name text for the Graph settings option to set graph to light theme Combinar temas de aplicações This is the automation name text for the Graph settings option to set graph to match the app theme Função removida Announcement used in Graphing Calculator when a function is removed from the function list Caixa de equação de análise de funções This is the automation name text for the equation box in the function analysis panel Igual a Screen reader prompt for the equal button on the graphing calculator operator keypad Menor que Screen reader prompt for the Less than button Menor ou igual a Screen reader prompt for the Less than or equal button Igual Screen reader prompt for the Equal button Maior ou igual a Screen reader prompt for the Greater than or equal button Maior que Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Submeter Screen reader prompt for the submit button on the graphing calculator operator keypad Análise de funções Screen reader prompt for the function analysis grid Opções do gráfico Screen reader prompt for the graph options panel Listas de Histórico e Memória Automation name for the group of controls for history and memory lists. Lista de memória Automation name for the group of controls for memory list. Posição %1 do histórico foi libertada {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculadora sempre no topo Announcement to indicate calculator window is always shown on top. Calculadora de volta para vista completa Announcement to indicate calculator window is now back to full view. Deslocamento aritmético selecionado Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deslocamento lógico selecionado Label for a radio button that toggles logical shift behavior for the shift operations. Rodar deslocamento circular selecionado Label for a radio button that toggles rotate circular behavior for the shift operations. Rodar através de deslocamento circular com transporte selecionado Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Definições Header text of Settings page Aspeto Subtitle of appearance setting on Settings page Tema da aplicação Title of App theme expander Selecionar o tema da aplicação a apresentar Description of App theme expander Claro Lable for light theme option Escuro Lable for dark theme option Utilizar definição do sistema Lable for the app theme option to use system setting Anterior Screen reader prompt for the Back button in title bar to back to main page Página Definições Announcement used when Settings page is opened Abrir o menu de contexto para ações disponíveis Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Não foi possível restaurar este instantâneo. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ro-RO/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Intrare nevalidă Error message shown when the input makes a function fail, like log(-1) Rezultatul este indefinit Error message shown when there's no possible value for a function. Memorie insuficientă Error message shown when we run out of memory during a calculation. Depășire Error message shown when there's an overflow during the calculation. Rezultat nedefinit Same as 101 Rezultat nedefinit Same 101 Depășire Same as 107 Depășire Same 107 Nu se poate împărți la zero Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ro-RO/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Calculator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Calculator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Calculator Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Calculator Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Calculator {@Appx_Description@} This description is used for the official application when published through Windows Store. Calculator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Copiere Copy context menu string Lipire Paste context menu string Aproximativ egal cu The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, valoare %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) bitul %1 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) al 63-lea Sub-string used in automation name for 63 bit in bit flip al 62-lea Sub-string used in automation name for 62 bit in bit flip al 61-lea Sub-string used in automation name for 61 bit in bit flip al 60-lea Sub-string used in automation name for 60 bit in bit flip al 59-lea Sub-string used in automation name for 59 bit in bit flip al 58-lea Sub-string used in automation name for 58 bit in bit flip al 57-lea Sub-string used in automation name for 57 bit in bit flip al 56-lea Sub-string used in automation name for 56 bit in bit flip al 55-lea Sub-string used in automation name for 55 bit in bit flip al 54-lea Sub-string used in automation name for 54 bit in bit flip al 53-lea Sub-string used in automation name for 53 bit in bit flip al 52-lea Sub-string used in automation name for 52 bit in bit flip al 51-lea Sub-string used in automation name for 51 bit in bit flip al 50-lea Sub-string used in automation name for 50 bit in bit flip al 49-lea Sub-string used in automation name for 49 bit in bit flip al 48-lea Sub-string used in automation name for 48 bit in bit flip al 47-lea Sub-string used in automation name for 47 bit in bit flip al 46-lea Sub-string used in automation name for 46 bit in bit flip al 45-lea Sub-string used in automation name for 45 bit in bit flip al 44-lea Sub-string used in automation name for 44 bit in bit flip al 43-lea Sub-string used in automation name for 43 bit in bit flip al 42-lea Sub-string used in automation name for 42 bit in bit flip al 41-lea Sub-string used in automation name for 41 bit in bit flip al 40-lea Sub-string used in automation name for 40 bit in bit flip al 39-lea Sub-string used in automation name for 39 bit in bit flip al 38-lea Sub-string used in automation name for 38 bit in bit flip al 37-lea Sub-string used in automation name for 37 bit in bit flip al 36-lea Sub-string used in automation name for 36 bit in bit flip al 35-lea Sub-string used in automation name for 35 bit in bit flip al 34-lea Sub-string used in automation name for 34 bit in bit flip al 33-lea Sub-string used in automation name for 33 bit in bit flip al 32-lea Sub-string used in automation name for 32 bit in bit flip al 31-lea Sub-string used in automation name for 31 bit in bit flip al 30-lea Sub-string used in automation name for 30 bit in bit flip al 29-lea Sub-string used in automation name for 29 bit in bit flip al 28-lea Sub-string used in automation name for 28 bit in bit flip al 27-lea Sub-string used in automation name for 27 bit in bit flip al 26-lea Sub-string used in automation name for 26 bit in bit flip al 25-lea Sub-string used in automation name for 25 bit in bit flip al 24-lea Sub-string used in automation name for 24 bit in bit flip al 23-lea Sub-string used in automation name for 23 bit in bit flip al 22-lea Sub-string used in automation name for 22 bit in bit flip al 21-lea Sub-string used in automation name for 21 bit in bit flip al 20-lea Sub-string used in automation name for 20 bit in bit flip al 19-lea Sub-string used in automation name for 19 bit in bit flip al 18-lea Sub-string used in automation name for 18 bit in bit flip al 17-lea Sub-string used in automation name for 17 bit in bit flip al 16-lea Sub-string used in automation name for 16 bit in bit flip al 15-lea Sub-string used in automation name for 15 bit in bit flip al 14-lea Sub-string used in automation name for 14 bit in bit flip al 13-lea Sub-string used in automation name for 13 bit in bit flip al 12-lea Sub-string used in automation name for 12 bit in bit flip al 11-lea Sub-string used in automation name for 11 bit in bit flip al 10-lea Sub-string used in automation name for 10 bit in bit flip al 9-lea Sub-string used in automation name for 9 bit in bit flip al 8-lea Sub-string used in automation name for 8 bit in bit flip al 7-lea Sub-string used in automation name for 7 bit in bit flip al 6-lea Sub-string used in automation name for 6 bit in bit flip al 5-lea Sub-string used in automation name for 5 bit in bit flip al 4-lea Sub-string used in automation name for 4 bit in bit flip al 3-lea Sub-string used in automation name for 3 bit in bit flip al 2-lea Sub-string used in automation name for 2 bit in bit flip întâi Sub-string used in automation name for 1 bit in bit flip bitul cel mai puțin semnificativ Used to describe the first bit of a binary number. Used in bit flip Deschidere fișă memorie This is the automation name and label for the memory button when the memory flyout is closed. Închidere fișă memorie This is the automation name and label for the memory button when the memory flyout is open. Păstrați în partea de sus This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Înapoi la vizualizarea completă This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memorie This is the tool tip automation name for the memory button. Istoric (Ctrl+H) This is the tool tip automation name for the history button. Minitastatură - comutare biți This is the tool tip automation name for the bitFlip button. Tastatură completă This is the tool tip automation name for the numberPad button. Goliți toată memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memorie The text that shows as the header for the memory list Memorie The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Istoric The text that shows as the header for the history list Istoric The automation name for the History pivot item that is shown when Calculator is in wide layout. Convertor Label for a control that activates the unit converter mode. Științific Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Mod convertor Screen reader prompt for a control that activates the unit converter mode. Mod științific Screen reader prompt for a control that activates scientific mode calculator layout Mod standard Screen reader prompt for a control that activates standard mode calculator layout. Goliți tot istoricul "ClearHistory" used on the calculator history pane that stores the calculation history. Goliți tot istoricul This is the tool tip automation name for the Clear History button. Ascundere "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Științific The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programator The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Convertor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group. Convertor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Calculator The text that shows in the dropdown navigation control for the calculator group in upper case. Convertori Pluralized version of the converter group text, used for the screen reader prompt. Calculatoare Pluralized version of the calculator group text, used for the screen reader prompt. Afișajul este %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Expresia este %1, intrarea curentă este %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Afișajul este %1 punct {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Expresia este %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Valoarea afișată copiată în clipboard Screen reader prompt for the Calculator display copy button, when the button is invoked. Istoric Screen reader prompt for the history flyout Memorie Screen reader prompt for the memory flyout Hexazecimal %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Zecimal %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Octal %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binar %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Goliți tot istoricul Screen reader prompt for the Calculator History Clear button Istoric golit Screen reader prompt for the Calculator History Clear button, when the button is invoked. Ascundeți istoricul Screen reader prompt for the Calculator History Hide button Deschidere fișă istoric Screen reader prompt for the Calculator History button, when the flyout is closed. Închidere fișă istoric Screen reader prompt for the Calculator History button, when the flyout is open. Stocare în memorie Screen reader prompt for the Calculator Memory button Stocare în memorie (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Goliți toată memoria Screen reader prompt for the Calculator Clear Memory button Memorie golită Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Reapelare din memorie Screen reader prompt for the Calculator Memory Recall button Reapelare din memorie (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Adăugare în memorie Screen reader prompt for the Calculator Memory Add button Adunare în memorie (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Scădere din memorie Screen reader prompt for the Calculator Memory Subtract button Scădere din memorie (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Ștergeți elementul de memorie Screen reader prompt for the Calculator Clear Memory button Ștergeți elementul de memorie This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Adăugare la element memorie Screen reader prompt for the Calculator Memory Add button in the Memory list Adăugare la element memorie This is the tool tip automation name for the Calculator Memory Add button in the Memory list Scădeți din elementul de memorie Screen reader prompt for the Calculator Memory Subtract button in the Memory list Scădeți din elementul de memorie This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Ștergeți elementul de memorie Screen reader prompt for the Calculator Clear Memory button Ștergeți elementul de memorie Text string for the Calculator Clear Memory option in the Memory list context menu Adăugare la element memorie Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Adăugare la element memorie Text string for the Calculator Memory Add option in the Memory list context menu Scădeți din elementul de memorie Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Scădeți din elementul de memorie Text string for the Calculator Memory Subtract option in the Memory list context menu Ștergere Text string for the Calculator Delete swipe button in the History list Copiere Text string for the Calculator Copy option in the History list context menu Ștergere Text string for the Calculator Delete option in the History list context menu Ștergeți elementul de istoric Screen reader prompt for the Calculator Delete swipe button in the History list Ștergeți elementul de istoric Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Unu Screen reader prompt for the Calculator number "1" button Doi Screen reader prompt for the Calculator number "2" button Trei Screen reader prompt for the Calculator number "3" button Patru Screen reader prompt for the Calculator number "4" button Cinci Screen reader prompt for the Calculator number "5" button Șase Screen reader prompt for the Calculator number "6" button Șapte Screen reader prompt for the Calculator number "7" button Opt Screen reader prompt for the Calculator number "8" button Nouă Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Sau Screen reader prompt for the Calculator Or button Nu Screen reader prompt for the Calculator Not button Rotire la stânga Screen reader prompt for the Calculator ROL button Rotire la dreapta Screen reader prompt for the Calculator ROR button Deplasare la stânga Screen reader prompt for the Calculator LSH button Deplasare la dreapta Screen reader prompt for the Calculator RSH button Sau exclusiv Screen reader prompt for the Calculator XOR button Comutare cuvânt cvadruplu Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Comutare cuvânt dublu Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Comutare cuvânt Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Comutare byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Minitastatură - comutare biți Screen reader prompt for the Calculator bitFlip button Tastatură completă Screen reader prompt for the Calculator numberPad button Separator zecimal Screen reader prompt for the "." button Ștergere intrare Screen reader prompt for the "CE" button Golire Screen reader prompt for the "C" button Împărțire la Screen reader prompt for the divide button on the number pad Înmulțire cu Screen reader prompt for the multiply button on the number pad Egal cu Screen reader prompt for the equals button on the scientific operator keypad Funcție inversă Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Rădăcină pătrată Screen reader prompt for the square root button on the scientific operator keypad Procent Screen reader prompt for the percent button on the scientific operator keypad Pozitiv negativ Screen reader prompt for the negate button on the scientific operator keypad Pozitiv negativ Screen reader prompt for the negate button on the converter operator keypad Invers Screen reader prompt for the invert button on the scientific operator keypad Paranteză stânga Screen reader prompt for the Calculator "(" button on the scientific operator keypad Contor paranteze stânga, paranteze deschise %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Paranteză dreaptă Screen reader prompt for the Calculator ")" button on the scientific operator keypad Număr paranteze deschise %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nu există paranteze deschise de închis. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Notație științifică Screen reader prompt for the Calculator F-E the scientific operator keypad Funcție hiperbolică Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangentă Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperbolic Screen reader prompt for the Calculator sinh button on the scientific operator keypad Cosinus hiperbolic Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangentă hiperbolică Screen reader prompt for the Calculator tanh button on the scientific operator keypad Pătrat Screen reader prompt for the x squared on the scientific operator keypad. Cub Screen reader prompt for the x cubed on the scientific operator keypad. Arcsinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arccosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arctangentă Screen reader prompt for the inverted tan on the scientific operator keypad. Arcsinus hiperbolic Screen reader prompt for the inverted sinh on the scientific operator keypad. Arccosinus hiperbolic Screen reader prompt for the inverted cosh on the scientific operator keypad. Arctangentă hiperbolică Screen reader prompt for the inverted tanh on the scientific operator keypad. X la puterea Screen reader prompt for x power y button on the scientific operator keypad. Zece la puterea Screen reader prompt for the 10 power x button on the scientific operator keypad. „e” la puterea Screen reader for the e power x on the scientific operator keypad. Radical de ordinul „y” din „x” Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Jurnal Screen reader for the log base 10 on the scientific operator keypad Logaritm natural Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponențială Screen reader for the exp button on the scientific operator keypad Grad minut secundă Screen reader for the exp button on the scientific operator keypad Grade Screen reader for the exp button on the scientific operator keypad Parte întreagă Screen reader for the int button on the scientific operator keypad Parte fracționară Screen reader for the frac button on the scientific operator keypad Factorial Screen reader for the factorial button on the basic operator keypad Comutare grade This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Comutare grade centezimale This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Comutare radiani This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista verticală Mod Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista verticală Categorii Screen reader prompt for the Categories dropdown field. Păstrați în partea de sus Screen reader prompt for the Always-on-Top button when in normal mode. Înapoi la vizualizarea completă Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Păstrați în partea de sus (Alt+Săgeată în sus) This is the tool tip automation name for the Always-on-Top button when in normal mode. Înapoi la vizualizarea completă (Alt+Săgeată în jos) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Convertește din %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Convertește din %1 punct %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Convertește în %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 este %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Introduceți o unitate Screen reader prompt for the Unit Converter Units1 i.e. top units field. Unitate de ieșire Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Arie Unit conversion category name called Area (eg. area of a sports field in square meters) Date Unit conversion category name called Data Energie Unit conversion category name called Energy. (eg. the energy in a battery or in food) Lungime Unit conversion category name called Length Putere Unit conversion category name called Power (eg. the power of an engine or a light bulb) Viteză Unit conversion category name called Speed Timp Unit conversion category name called Time Volum Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatură Unit conversion category name called Temperature Greutate și masă Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Presiune Unit conversion category name called Pressure Unghi Unit conversion category name called Angle Monedă Unit conversion category name called Currency Uncii fluide (Regatul Unit) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (Regatul Unit) An abbreviation for a measurement unit of volume Uncii fluide (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (S.U.A.) An abbreviation for a measurement unit of volume Galoane (Regatul Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (Regatul Unit) An abbreviation for a measurement unit of volume Galoane (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (S.U.A.) An abbreviation for a measurement unit of volume Litri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Halbe (Regatul Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (Regatul Unit) An abbreviation for a measurement unit of volume Halbe (SUA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (S.U.A.) An abbreviation for a measurement unit of volume Linguri (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lingură (S.U.A.) An abbreviation for a measurement unit of volume Lingurițe (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) linguriță (S.U.A.) An abbreviation for a measurement unit of volume Linguri (Regatul Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lingură (Regatul Unit) An abbreviation for a measurement unit of volume Lingurițe (Regatul Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) linguriță (Regatul Unit) An abbreviation for a measurement unit of volume Cuarte (Regatul Unit) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (Regatul Unit) An abbreviation for a measurement unit of volume Cuarte (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (S.U.A.) An abbreviation for a measurement unit of volume Căni (S.U.A.) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cană (S.U.A.) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume z An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area cp (S.U.A.) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time inchi An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power săpt An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length an An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Acri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Biți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Byți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorii termice A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri pe secundă A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picioare cub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inchi cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iarzi cubi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zile A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Electronvolți A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picioare A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picioare pe secundă A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picioare-livre A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picior-livre/minut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectare A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Cai-putere (SUA) A measurement unit for power Ore A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inchi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jouli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-ore A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobaiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calorii alimentare A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojouli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri pe oră A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowați A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Noduri A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri pe secundă A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microni A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Microsecunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile pe oră A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisecunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minute A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstromi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile marine A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Secunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Picioare pătrate A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inchi pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mile pătrate A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetri pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Iarzi pătrați A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Wați A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Săptămâni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yarzi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ani A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight grd An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kpa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (Regatul Unit) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (S.U.A.) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Carate A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grade A measurement unit for Angle. Radiani A measurement unit for Angle. Grade centezimale A measurement unit for Angle. Atmosfere A measurement unit for Pressure. Bari A measurement unit for Pressure. Kilopascali A measurement unit for Pressure. Milimetri coloană de mercur A measurement unit for Pressure. Pascali A measurement unit for Pressure. Livre per inch pătrat A measurement unit for Pressure. Centigrame A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decagrame A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrame A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grame A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hectograme A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilograme A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tone lungi (Regatul Unit) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligrame A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uncii A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Livre A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tone scurte (SUA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Piatră A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tone metrice A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-uri A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-uri A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terenuri de fotbal A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) terenuri de fotbal A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dischete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dischete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-uri A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-uri A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterii AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterii AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) agrafe de birou A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) agrafe de birou A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avioane Jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avioane Jumbo jet A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) becuri A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) becuri A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cai A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) cai A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) căzi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) căzi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fulgi de zăpadă A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fulgi de zăpadă A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanți An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanți An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) țestoase A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) țestoase A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avioane cu reacție A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) avioane cu reacție A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balene A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balene A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) căni de cafea A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) căni de cafea A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscine An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) piscine An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palme A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) palme A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) foi de hârtie A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) foi de hârtie A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castele A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) castele A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) felii de tort A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) felii de tort A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotive A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) locomotive A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mingi de fotbal A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mingi de fotbal A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Element de memorie Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Înapoi Screen reader prompt for the About panel back button Înapoi Content of tooltip being displayed on AboutControlBackButton Termenii licenței pentru software Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Previzualizare Label displayed next to upcoming features Angajamentul de respectare a confidențialității Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Toate drepturile rezervate. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Pentru a afla cum puteți contribui la Windows calculator, extrageți proiectul pe %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Despre Subtitle of about message on Settings page Trimiteți feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Nu există niciun istoric deocamdată. The text that shows as the header for the history list Nu este nimic salvat în memorie. The text that shows as the header for the memory list Memorie Screen reader prompt for the negate button on the converter operator keypad Această expresie nu se poate lipi The paste operation cannot be performed, if the expression is invalid. Gibibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibiți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyți A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Calcul dată Mod calcul Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Adunare Add toggle button text Adăugați sau scădeți zile Add or Subtract days option Data Date result label Diferență între date Date difference option Zile Add/Subtract Days label Diferență Difference result label De la From Date Header for Difference Date Picker Luni Add/Subtract Months label Scădere Subtract toggle button text La To Date Header for Difference Date Picker Ani Add/Subtract Years label Data în afara limitelor Out of bound message shown as result when the date calculation exceeds the bounds zi zile lună luni Aceleași date săptămână săptămâni an ani Diferența %1 Automation name for reading out the date difference. %1 = Date difference Data rezultată %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Mod calculator %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Mod convertor %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Mod calcul dată Automation name for when the mode header is focused and the current mode is Date calculation. Listele Istoric și Memorie Automation name for the group of controls for history and memory lists. Comenzi memorie Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funcții standard Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Afișare comenzi Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operatori standard Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Tastatură numerică Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operatori unghi Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funcții științifice Automation name for the group of Scientific functions. Selecție bază Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operatori programator Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Selectare mod de intrare Automation name for the group of input mode toggling buttons. Tastatură de comutare biți Automation name for the group of bit toggling buttons. Defilați expresie spre stânga Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Defilați expresie spre dreapta Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Număr maxim de cifre atins. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 salvate în memorie {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Slotul de memorie %1 este %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Slotul de memorie %1 a fost golit {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". împărțit la Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. ori Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. la puterea Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. radical de ordinul y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. deplasare la stânga Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. deplasare la dreapta Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. sau Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x sau Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. şi Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Actualizat %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Actualizați tarifele The text displayed for a hyperlink button that refreshes currency converter ratios. Se pot aplica tarife pentru date. The text displayed when users are on a metered connection and using currency converter. Nu s-au putut obține noile tarife. Încercați din nou mai târziu. The text displayed when currency ratio data fails to load. Offline. Verificați%HL%Setările de rețea%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Se actualizează cursurile de schimb This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Cursurile de schimb au fost actualizate This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nu s-au putut actualiza cursurile de schimb This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Goliți toată memoria (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Goliți toată memoria Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} grade sinus Name for the sine function in degrees mode. Used by screen readers. radiani sinus Name for the sine function in radians mode. Used by screen readers. grade centezimale sinus Name for the sine function in gradians mode. Used by screen readers. grade sinus invers Name for the inverse sine function in degrees mode. Used by screen readers. radiani sinus invers Name for the inverse sine function in radians mode. Used by screen readers. grade centezimale sinus invers Name for the inverse sine function in gradians mode. Used by screen readers. sinus hiperbolic Name for the hyperbolic sine function. Used by screen readers. sinus hiperbolic invers Name for the inverse hyperbolic sine function. Used by screen readers. grade cosinus Name for the cosine function in degrees mode. Used by screen readers. radiani cosinus Name for the cosine function in radians mode. Used by screen readers. grade centezimale cosinus Name for the cosine function in gradians mode. Used by screen readers. grade cosinus invers Name for the inverse cosine function in degrees mode. Used by screen readers. radiani cosinus invers Name for the inverse cosine function in radians mode. Used by screen readers. grade centezimale cosinus invers Name for the inverse cosine function in gradians mode. Used by screen readers. cosinus hiperbolic Name for the hyperbolic cosine function. Used by screen readers. cosinus hiperbolic invers Name for the inverse hyperbolic cosine function. Used by screen readers. grade tangentă Name for the tangent function in degrees mode. Used by screen readers. radiani tangentă Name for the tangent function in radians mode. Used by screen readers. grade centezimale tangentă Name for the tangent function in gradians mode. Used by screen readers. grade tangentă inversă Name for the inverse tangent function in degrees mode. Used by screen readers. radiani tangentă inversă Name for the inverse tangent function in radians mode. Used by screen readers. grade centezimale tangentă inversă Name for the inverse tangent function in gradians mode. Used by screen readers. tangentă hiperbolică Name for the hyperbolic tangent function. Used by screen readers. tangentă hiperbolică inversă Name for the inverse hyperbolic tangent function. Used by screen readers. secantă - grade Name for the secant function in degrees mode. Used by screen readers. secantă - radiani Name for the secant function in radians mode. Used by screen readers. secantă - grade centezimale Name for the secant function in gradians mode. Used by screen readers. secantă inversă - grade Name for the inverse secant function in degrees mode. Used by screen readers. secantă inversă - radiani Name for the inverse secant function in radians mode. Used by screen readers. secantă inversă - grade centezimale Name for the inverse secant function in gradians mode. Used by screen readers. secantă hiperbolică Name for the hyperbolic secant function. Used by screen readers. secantă inversă hiperbolică Name for the inverse hyperbolic secant function. Used by screen readers. cosecantă - grade Name for the cosecant function in degrees mode. Used by screen readers. cosecantă - radiani Name for the cosecant function in radians mode. Used by screen readers. cosecantă - grade centezimale Name for the cosecant function in gradians mode. Used by screen readers. cosecantă inversă - grade Name for the inverse cosecant function in degrees mode. Used by screen readers. cosecantă inversă - radiani Name for the inverse cosecant function in radians mode. Used by screen readers. cosecantă inversă - grade centezimale Name for the inverse cosecant function in gradians mode. Used by screen readers. cosecantă hiperbolică Name for the hyperbolic cosecant function. Used by screen readers. cosecantă inversă hiperbolică Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangentă - grade Name for the cotangent function in degrees mode. Used by screen readers. Cotangentă - radiani Name for the cotangent function in radians mode. Used by screen readers. cotangentă - grade centezimale Name for the cotangent function in gradians mode. Used by screen readers. cotangentă inversă - grade Name for the inverse cotangent function in degrees mode. Used by screen readers. cotangentă inversă - radiani Name for the inverse cotangent function in radians mode. Used by screen readers. cotangentă inversă - grade centezimale Name for the inverse cotangent function in gradians mode. Used by screen readers. cotangentă hiperbolică Name for the hyperbolic cotangent function. Used by screen readers. cotangentă inversă hiperbolică Name for the inverse hyperbolic cotangent function. Used by screen readers. Rădăcină cubică Name for the cube root function. Used by screen readers. Logaritm bază Name for the logbasey function. Used by screen readers. Valoare absolută Name for the absolute value function. Used by screen readers. deplasare la stânga Name for the programmer function that shifts bits to the left. Used by screen readers. deplasare la dreapta Name for the programmer function that shifts bits to the right. Used by screen readers. factorial Name for the factorial function. Used by screen readers. grad minut secundă Name for the degree minute second (dms) function. Used by screen readers. logaritm natural Name for the natural log (ln) function. Used by screen readers. pătrat Name for the square function. Used by screen readers. radical de ordinul y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Categoria %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Contractul de furnizare a serviciilor Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. De la From Date Header for AddSubtract Date Picker Derulați rezultatul calculului la stânga Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Derulați rezultatul calculului la dreapta Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Calcul nereușit Text displayed when the application is not able to do a calculation Logaritm bază Y Screen reader prompt for the logBaseY button Trigonometrie Displayed on the button that contains a flyout for the trig functions in scientific mode. Funcție Displayed on the button that contains a flyout for the general functions in scientific mode. Inegalități Displayed on the button that contains a flyout for the inequality functions. Inegalități Screen reader prompt for the Inequalities button Pe biți Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Deplasare de biți Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Funcție inversă Screen reader prompt for the shift button in the trig flyout in scientific mode. Funcție hiperbolică Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Secantă Screen reader prompt for the Calculator button sec in the scientific flyout keypad Secantă hiperbolică Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arc secantă Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Arc secantă hiperbolică Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosecantă Screen reader prompt for the Calculator button csc in the scientific flyout keypad Cosecantă hiperbolică Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arc cosecantă Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Arc cosecantă hiperbolică Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangentă Screen reader prompt for the Calculator button cot in the scientific flyout keypad Cotangentă hiperbolică Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arc cotangentă Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Arc cotangentă hiperbolică Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Rotunjire în minus Screen reader prompt for the Calculator button floor in the scientific flyout keypad Rotunjire în plus Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Aleator Screen reader prompt for the Calculator button random in the scientific flyout keypad Valoare absolută Screen reader prompt for the Calculator button abs in the scientific flyout keypad Numărul lui Euler Screen reader prompt for the Calculator button e in the scientific flyout keypad Doi la puterea Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad N-și Screen reader prompt for the Calculator button nand in the scientific flyout keypad N-și Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. N-sau Screen reader prompt for the Calculator button nor in the scientific flyout keypad N-sau Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotire la stânga cu transport Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotire la dreapta cu transport Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Deplasare la stânga Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Deplasare la stânga Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deplasare la dreapta Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Deplasare la dreapta Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Deplasare aritmetică Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deplasare logică Label for a radio button that toggles logical shift behavior for the shift operations. Deplasare rotire circulară Label for a radio button that toggles rotate circular behavior for the shift operations. Deplasare prin rotire cu transport circular Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Rădăcină cubică Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrie Screen reader prompt for the square root button on the scientific operator keypad Funcții Screen reader prompt for the square root button on the scientific operator keypad Pe biți Screen reader prompt for the square root button on the scientific operator keypad Deplasarebiți Screen reader prompt for the square root button on the scientific operator keypad Panouri de operatori științifici Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panouri de operatori pentru programatori Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad bitul cel mai semnificativ Used to describe the last bit of a binary number. Used in bit flip Reprezentare grafică Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Reprezentare grafică Screen reader prompt for the plot button on the graphing calculator operator keypad Reîmprospătare automată a vizualizării (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Vizualizare grafic Screen reader prompt for the graph view button. Cea mai bună potrivire automată Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ajustare manuală Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Vizualizarea grafic a fost resetată Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Mărire (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Mărire Screen reader prompt for the zoom in button. Micșorare (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Micșorare Screen reader prompt for the zoom out button. Adăugați ecuația Placeholder text for the equation input button Nu se poate partaja în acest moment. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Iată ce am reprezentat grafic folosind Calculator Windows Sent as part of the shared content. The title for the share. Ecuații Header that appears over the equations section when sharing Variabile Header that appears over the variables section when sharing Imaginea unui grafic cu ecuații Alt text for the graph image when output via Share Variabile Header text for variables area Pas Label text for the step text box Min Label text for the min text box Max Label text for the max text box Culoare Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Analiza funcțiilor Title for KeyGraphFeatures Control Funcția nu are asimptote orizontale. Message displayed when the graph does not have any horizontal asymptotes Funcția nu are puncte de inflexiune. Message displayed when the graph does not have any inflection points Funcția nu are puncte de maxim. Message displayed when the graph does not have any maxima Funcția nu are puncte de minim. Message displayed when the graph does not have any minima Constantă String describing constant monotonicity of a function Descrescătoare String describing decreasing monotonicity of a function Nu se poate determina monotonia funcției. Error displayed when monotonicity cannot be determined Crescătoare String describing increasing monotonicity of a function Monotonia funcției este necunoscută. Error displayed when monotonicity is unknown Funcția nu are asimptote oblice. Message displayed when the graph does not have any oblique asymptotes Nu se poate determina paritatea funcției. Error displayed when parity is cannot be determined Funcția este pară. Message displayed with the function parity is even Funcția nu este nici pară, nici impară. Message displayed with the function parity is neither even nor odd Funcția este impară. Message displayed with the function parity is odd Paritatea funcției este necunoscută. Error displayed when parity is unknown Periodicitatea nu este acceptată pentru această funcție. Error displayed when periodicity is not supported Funcția nu este periodică. Message displayed with the function periodicity is not periodic Periodicitatea funcției este necunoscută. Message displayed with the function periodicity is unknown Aceste caracteristici sunt prea complexe pentru a fi calculate de Calculator: Error displayed when analysis features cannot be calculated Funcția nu are asimptote verticale. Message displayed when the graph does not have any vertical asymptotes Funcția nu are intersecții cu axa x. Message displayed when the graph does not have any x-intercepts Funcția nu are intersecții cu axa y. Message displayed when the graph does not have any y-intercepts Domeniu Title for KeyGraphFeatures Domain Property Asimptote orizontale Title for KeyGraphFeatures Horizontal aysmptotes Property Puncte de inflexiune Title for KeyGraphFeatures Inflection points Property Analiza nu este acceptată pentru această funcție. Error displayed when graph analysis is not supported or had an error. Analiza este acceptată doar pentru funcțiile în format f(x). Exemplu: y = x Error displayed when graph analysis detects the function format is not f(x). Maxim Title for KeyGraphFeatures Maxima Property Minim Title for KeyGraphFeatures Minima Property Monotonie Title for KeyGraphFeatures Monotonicity Property Asimptote oblice Title for KeyGraphFeatures Oblique asymptotes Property Paritate Title for KeyGraphFeatures Parity Property Ciclu Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Interval Title for KeyGraphFeatures Range Property Asimptote verticale Title for KeyGraphFeatures Vertical asymptotes Property Intersecție cu axa X Title for KeyGraphFeatures XIntercept Property Intersecție cu axa Y Title for KeyGraphFeatures YIntercept Property Analiza nu s-a putut efectua pentru funcție. Nu se poate calcula domeniul pentru această funcție. Error displayed when Domain is not returned from the analyzer. Nu se poate calcula intervalul pentru această funcție. Error displayed when Range is not returned from the analyzer. Depășire (numărul este prea mare) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Modul Radiani este necesar pentru a reprezenta grafic această ecuație. Error that occurs during graphing when radians is required. Această funcție este prea complexă pentru reprezentarea grafică Error that occurs during graphing when the equation is too complex. Modul Grade este necesar pentru a reprezenta grafic această ecuație. Error that occurs during graphing when degrees is required Funcția factorială are un argument incorect Error that occurs during graphing when a factorial function has an invalid argument. Funcția factorială are un argument prea mare pentru reprezentarea grafică Error that occurs during graphing when a factorial has a large n Modul se pot utiliza numai cu numere întregi Error that occurs during graphing when modulo is used with a float. Ecuația nu are nicio soluție Error that occurs during graphing when the equation has no solution. Nu se poate împărți la zero Error that occurs during graphing when a divison by zero occurs. Ecuația conține condiții logice care sunt reciproc exclusive Error that occurs during graphing when mutually exclusive conditions are used. Ecuația este în afara domeniului Error that occurs during graphing when the equation is out of domain. Reprezentarea grafică a acestei ecuații nu este acceptată Error that occurs during graphing when the equation is not supported. Ecuației îi lipsește o paranteză de deschidere Error that occurs during graphing when the equation is missing a ( Ecuației îi lipsește o paranteză de închidere Error that occurs during graphing when the equation is missing a ) Există prea multe puncte zecimale într-un număr Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Unui punct zecimal îi lipsește cifrele Error that occurs during graphing with a decimal point without digits Sfârșit de expresie neașteptat Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Caractere neașteptate în această expresie Error that occurs during graphing when there is an unexpected token. Caractere nevalide în această expresie Error that occurs during graphing when there is an invalid token. Sunt prea multe semne de egal Error that occurs during graphing when there are too many equals. Funcția trebuie să conțină cel puțin o variabilă x sau y Error that occurs during graphing when the equation is missing x or y. Expresie nevalidă Error that occurs during graphing when an invalid syntax is used. Expresia este necompletată Error that occurs during graphing when the expression is empty Egalul a fost utilizat fără o ecuație Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Paranteza lipsește după numele funcției Error that occurs during graphing when parenthesis are missing after a function. O operațiune matematică are un număr incorect de parametri Error that occurs during graphing when a function has the wrong number of parameters Numele unei variabile nu este valid Error that occurs during graphing when a variable name is invalid. Ecuației îi lipsește o paranteză dreaptă deschisă Error that occurs during graphing when a { is missing Ecuației îi lipsește o paranteză dreaptă închisă Error that occurs during graphing when a } is missing. „i” și „I” nu se pot utiliza ca nume de variabile Error that occurs during graphing when i or I is used. Ecuația nu a putut fi reprezentată grafic General error that occurs during graphing. Cifra nu poate fi rezolvată pentru baza dată Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Această bază trebuie să fie mai mare de 2 și mai mică decât 36 Error that occurs during graphing when the base is out of range. O operație matematică necesită ca unul dintre parametri să fie o variabilă Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ecuația îmbină operanzii logici și scalari Error that occurs during graphing when operands are mixed. Such as true and 1. x sau y nu pot fi utilizate între limitele superioare sau inferioare Error that occurs during graphing when x or y is used in integral upper limits. x sau y nu pot fi utilizate în punctul de limită Error that occurs during graphing when x or y is used in the limit point. Imposibil de utilizat infinit complex Error that occurs during graphing when complex infinity is used Nu se pot utiliza numere complexe în inegalități Error that occurs during graphing when complex numbers are used in inequalities. Reveniți la lista de funcții This is the tooltip for the back button in the equation analysis page in the graphing calculator Reveniți la lista de funcții This is the automation name for the back button in the equation analysis page in the graphing calculator Analizare funcție This is the tooltip for the analyze function button Analizare funcție This is the automation name for the analyze function button Analizare funcție This is the text for the for the analyze function context menu command Eliminați ecuația This is the tooltip for the graphing calculator remove equation buttons Eliminați ecuația This is the automation name for the graphing calculator remove equation buttons Eliminați ecuația This is the text for the for the remove equation context menu command Partajare This is the automation name for the graphing calculator share button. Partajare This is the tooltip for the graphing calculator share button. Schimbați stilul ecuației This is the tooltip for the graphing calculator equation style button Schimbați stilul ecuației This is the automation name for the graphing calculator equation style button Schimbați stilul ecuației This is the text for the for the equation style context menu command Afișați ecuația This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Ascundeți ecuația This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Afișați ecuația %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Ascundeți ecuația %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Opriți urmărirea This is the tooltip/automation name for the graphing calculator stop tracing button Începeți urmărirea This is the tooltip/automation name for the graphing calculator start tracing button Fereastra de vizualizare a graficului, de axei x după %1 și %2, de axă y de %3 și %4, afișând ecuațiile %5 {Locked="%1","%2", "%3", "%4", "%5"}. Configurați cursorul This is the tooltip text for the slider options button in Graphing Calculator Configurați cursorul This is the automation name text for the slider options button in Graphing Calculator Comutați la modul ecuație Used in Graphing Calculator to switch the view to the equation mode Comutați la modul grafic Used in Graphing Calculator to switch the view to the graph mode Comutați la modul ecuație Used in Graphing Calculator to switch the view to the equation mode Modul curent este ecuație Announcement used in Graphing Calculator when switching to the equation mode Modul curent este grafic Announcement used in Graphing Calculator when switching to the graph mode Fereastră Heading for window extents on the settings Grade Degrees mode on settings page Grade centezimale Gradian mode on settings page Radiani Radians mode on settings page Unități Heading for Unit's on the settings Resetare vizualizare Hyperlink button to reset the view of the graph X-max X maximum value header X-min X minimum value header Y-max Y Maximum value header Y-min Y minimum value header Opțiuni grafic This is the tooltip text for the graph options button in Graphing Calculator Opțiuni grafic This is the automation name text for the graph options button in Graphing Calculator Opțiuni grafic Heading for the Graph options flyout in Graphing mode. Opțiuni variabilă Screen reader prompt for the variable settings toggle button Comutare opțiuni variabilă Tool tip for the variable settings toggle button Grosime linie Heading for the Graph options flyout in Graphing mode. Opțiuni linie Heading for the equation style flyout in Graphing mode. Lățime mică linie Automation name for line width setting Lățime medie linie Automation name for line width setting Lățime mare linie Automation name for line width setting Lățime foarte mare linie Automation name for line width setting Introduceți o expresie this is the placeholder text used by the textbox to enter an equation Copiere Copy menu item for the graph context menu Decupare Cut menu item from the Equation TextBox Copiere Copy menu item from the Equation TextBox Lipire Paste menu item from the Equation TextBox Anulare Undo menu item from the Equation TextBox Selectați tot Select all menu item from the Equation TextBox Intrare de funcție The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Intrare de funcție The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panou de intrare funcții The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panou variabile The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Listă variabile The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Element de listă %1 variabil The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Casetă text pentru valori variabile The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Glisor valori variabile The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Casetă text cu valori minime variabile The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Casetă text cu valoarea pasului variabil The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Casetă text pentru valori maxime variabile The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Stil linie compactă Name of the solid line style for a graphed equation Stil linie cu puncte Name of the dotted line style for a graphed equation Stil linie întreruptă Name of the dashed line style for a graphed equation Bleumarin Name of color in the color picker Spumă de mare Name of color in the color picker Violet Name of color in the color picker Verde Name of color in the color picker Verde mentă Name of color in the color picker Verde închis Name of color in the color picker Cărbune Name of color in the color picker Roșu Name of color in the color picker Violet prună deschis Name of color in the color picker Magenta Name of color in the color picker Galben auriu Name of color in the color picker Portocaliu strălucitor Name of color in the color picker Maro Name of color in the color picker Negru Name of color in the color picker Alb Name of color in the color picker Culoare 1 Name of color in the color picker Culoare 2 Name of color in the color picker Culoare 3 Name of color in the color picker Culoare 4 Name of color in the color picker Temă grafic Graph settings heading for the theme options Întotdeauna deschis Graph settings option to set graph to light theme Potriviți tema aplicației Graph settings option to set graph to match the app theme Temă This is the automation name text for the Graph settings heading for the theme options Întotdeauna deschis This is the automation name text for the Graph settings option to set graph to light theme Potriviți tema aplicației This is the automation name text for the Graph settings option to set graph to match the app theme Funcție eliminată Announcement used in Graphing Calculator when a function is removed from the function list Casetă ecuație analiză funcție This is the automation name text for the equation box in the function analysis panel Este egal cu Screen reader prompt for the equal button on the graphing calculator operator keypad Mai mic decât Screen reader prompt for the Less than button Mai mic sau egal cu Screen reader prompt for the Less than or equal button Egal Screen reader prompt for the Equal button Mai mare sau egal cu Screen reader prompt for the Greater than or equal button Mai mare decât Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Remitere Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza funcțiilor Screen reader prompt for the function analysis grid Opțiuni grafic Screen reader prompt for the graph options panel Listele Istoric și Memorie Automation name for the group of controls for history and memory lists. Lista Memorie Automation name for the group of controls for memory list. Slotul Istoric %1 a fost șters {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Calculator întotdeauna deasupra Announcement to indicate calculator window is always shown on top. Calculator înapoi la vizualizarea completă Announcement to indicate calculator window is now back to full view. Deplasare aritmetică selectată Label for a radio button that toggles arithmetic shift behavior for the shift operations. Deplasare logică selectată Label for a radio button that toggles logical shift behavior for the shift operations. Deplasare rotire circulară selectată Label for a radio button that toggles rotate circular behavior for the shift operations. Deplasare prin rotire cu transport circular selectată Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Setări Header text of Settings page Aspect Subtitle of appearance setting on Settings page Temă aplicație Title of App theme expander Selectați ce temă de aplicație să afișați Description of App theme expander Luminos Lable for light theme option Întunecat Lable for dark theme option Utilizați setarea sistemului Lable for the app theme option to use system setting Înapoi Screen reader prompt for the Back button in title bar to back to main page Pagina de setări Announcement used when Settings page is opened Deschideți meniul contextual pentru acțiunile disponibile Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Nu s-a putut restaura acest instantaneu. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ru-RU/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Неверный ввод Error message shown when the input makes a function fail, like log(-1) Результат не определен Error message shown when there's no possible value for a function. Недостаточно памяти Error message shown when we run out of memory during a calculation. Переполнение Error message shown when there's an overflow during the calculation. Результат не определен Same as 101 Результат не определен Same 101 Переполнение Same as 107 Переполнение Same 107 Деление на ноль невозможно Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ru-RU/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Калькулятор {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Калькулятор [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Калькулятор Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Калькулятор Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Калькулятор {@Appx_Description@} This description is used for the official application when published through Windows Store. Калькулятор [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Копировать Copy context menu string Вставить Paste context menu string Приблизительно равно The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, значение %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 бит {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-й Sub-string used in automation name for 63 bit in bit flip 62-й Sub-string used in automation name for 62 bit in bit flip 61-й Sub-string used in automation name for 61 bit in bit flip 60-й Sub-string used in automation name for 60 bit in bit flip 59-й Sub-string used in automation name for 59 bit in bit flip 58-й Sub-string used in automation name for 58 bit in bit flip 57-й Sub-string used in automation name for 57 bit in bit flip 56-й Sub-string used in automation name for 56 bit in bit flip 55-й Sub-string used in automation name for 55 bit in bit flip 54-й Sub-string used in automation name for 54 bit in bit flip 53-й Sub-string used in automation name for 53 bit in bit flip 52-й Sub-string used in automation name for 52 bit in bit flip 51-й Sub-string used in automation name for 51 bit in bit flip 50-й Sub-string used in automation name for 50 bit in bit flip 49-й Sub-string used in automation name for 49 bit in bit flip 48-й Sub-string used in automation name for 48 bit in bit flip 47-й Sub-string used in automation name for 47 bit in bit flip 46-й Sub-string used in automation name for 46 bit in bit flip 45-й Sub-string used in automation name for 45 bit in bit flip 44-й Sub-string used in automation name for 44 bit in bit flip 43-й Sub-string used in automation name for 43 bit in bit flip 42-й Sub-string used in automation name for 42 bit in bit flip 41-й Sub-string used in automation name for 41 bit in bit flip 40-й Sub-string used in automation name for 40 bit in bit flip 39-й Sub-string used in automation name for 39 bit in bit flip 38-й Sub-string used in automation name for 38 bit in bit flip 37-й Sub-string used in automation name for 37 bit in bit flip 36-й Sub-string used in automation name for 36 bit in bit flip 35-й Sub-string used in automation name for 35 bit in bit flip 34-й Sub-string used in automation name for 34 bit in bit flip 33-й Sub-string used in automation name for 33 bit in bit flip 32-й Sub-string used in automation name for 32 bit in bit flip 31-й Sub-string used in automation name for 31 bit in bit flip 30-й Sub-string used in automation name for 30 bit in bit flip 29-й Sub-string used in automation name for 29 bit in bit flip 28-й Sub-string used in automation name for 28 bit in bit flip 27-й Sub-string used in automation name for 27 bit in bit flip 26-й Sub-string used in automation name for 26 bit in bit flip 25-й Sub-string used in automation name for 25 bit in bit flip 24-й Sub-string used in automation name for 24 bit in bit flip 23-й Sub-string used in automation name for 23 bit in bit flip 22-й Sub-string used in automation name for 22 bit in bit flip 21-й Sub-string used in automation name for 21 bit in bit flip 20-й Sub-string used in automation name for 20 bit in bit flip 19-й Sub-string used in automation name for 19 bit in bit flip 18-й Sub-string used in automation name for 18 bit in bit flip 17-й Sub-string used in automation name for 17 bit in bit flip 16-й Sub-string used in automation name for 16 bit in bit flip 15-й Sub-string used in automation name for 15 bit in bit flip 14-й Sub-string used in automation name for 14 bit in bit flip 13-й Sub-string used in automation name for 13 bit in bit flip 12-й Sub-string used in automation name for 12 bit in bit flip 11-й Sub-string used in automation name for 11 bit in bit flip 10-й Sub-string used in automation name for 10 bit in bit flip 9-й Sub-string used in automation name for 9 bit in bit flip 8-й Sub-string used in automation name for 8 bit in bit flip 7-й Sub-string used in automation name for 7 bit in bit flip 6-й Sub-string used in automation name for 6 bit in bit flip 5-й Sub-string used in automation name for 5 bit in bit flip 4-й Sub-string used in automation name for 4 bit in bit flip 3-й Sub-string used in automation name for 3 bit in bit flip 2-й Sub-string used in automation name for 2 bit in bit flip 1-й Sub-string used in automation name for 1 bit in bit flip младший значащий бит Used to describe the first bit of a binary number. Used in bit flip Открыть всплывающее меню памяти This is the automation name and label for the memory button when the memory flyout is closed. Закрыть всплывающее меню памяти This is the automation name and label for the memory button when the memory flyout is open. Поверх остальных окон This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Вернуться к полному представлению This is the tool tip automation name for the always-on-top button when in always-on-top mode. Память This is the tool tip automation name for the memory button. Журнал (CTRL+H) This is the tool tip automation name for the history button. Битовая клавиатура This is the tool tip automation name for the bitFlip button. Полная клавиатура This is the tool tip automation name for the numberPad button. Очистка всей памяти (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Память The text that shows as the header for the memory list Память The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Журнал The text that shows as the header for the history list Журнал The automation name for the History pivot item that is shown when Calculator is in wide layout. Преобразователь Label for a control that activates the unit converter mode. Инженерный Label for a control that activates scientific mode calculator layout Обычный Label for a control that activates standard mode calculator layout. Режим преобразования Screen reader prompt for a control that activates the unit converter mode. Инженерный режим Screen reader prompt for a control that activates scientific mode calculator layout Обычный режим Screen reader prompt for a control that activates standard mode calculator layout. Очистка всех журналов "ClearHistory" used on the calculator history pane that stores the calculation history. Очистка всех журналов This is the tool tip automation name for the Clear History button. Скрыть "HideHistory" used on the calculator history pane that stores the calculation history. Обычный The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Инженерный The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Программист The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Преобразование The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Калькулятор The text that shows in the dropdown navigation control for the calculator group. Преобразователь The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Калькулятор The text that shows in the dropdown navigation control for the calculator group in upper case. Конвертеры Pluralized version of the converter group text, used for the screen reader prompt. Калькуляторы Pluralized version of the calculator group text, used for the screen reader prompt. Отображать как %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Выражение: %1; Текущий ввод: %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". На экране показано %1 запятая {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Выражение — %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Отобразить значение, скопированное в буфер обмена Screen reader prompt for the Calculator display copy button, when the button is invoked. Журнал Screen reader prompt for the history flyout Память Screen reader prompt for the memory flyout Шестнадцатеричный формат — %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Десятичное число %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Восьмеричный формат — %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Двоичный формат — %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Очистка всех журналов Screen reader prompt for the Calculator History Clear button Журнал очищен Screen reader prompt for the Calculator History Clear button, when the button is invoked. Скрыть журнал Screen reader prompt for the Calculator History Hide button Открыть всплывающее меню журнала Screen reader prompt for the Calculator History button, when the flyout is closed. Закрыть всплывающее окно "Журнал" Screen reader prompt for the Calculator History button, when the flyout is open. Сохранение в памяти Screen reader prompt for the Calculator Memory button Сохранение в памяти (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Очистка всей памяти Screen reader prompt for the Calculator Clear Memory button Память очищена Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Вызов из памяти Screen reader prompt for the Calculator Memory Recall button Вызов из памяти (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Добавление памяти Screen reader prompt for the Calculator Memory Add button Добавление памяти (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Вычитание памяти Screen reader prompt for the Calculator Memory Subtract button Вычитание памяти (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Удалить элемент в памяти Screen reader prompt for the Calculator Clear Memory button Удалить элемент в памяти This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Добавить к элементу в памяти Screen reader prompt for the Calculator Memory Add button in the Memory list Добавить к элементу в памяти This is the tool tip automation name for the Calculator Memory Add button in the Memory list Вычесть из элемента в памяти Screen reader prompt for the Calculator Memory Subtract button in the Memory list Вычесть из элемента в памяти This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Удалить элемент в памяти Screen reader prompt for the Calculator Clear Memory button Удалить элемент в памяти Text string for the Calculator Clear Memory option in the Memory list context menu Добавить к элементу в памяти Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Добавить к элементу в памяти Text string for the Calculator Memory Add option in the Memory list context menu Вычесть из элемента в памяти Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Вычесть из элемента в памяти Text string for the Calculator Memory Subtract option in the Memory list context menu Удалить Text string for the Calculator Delete swipe button in the History list Копировать Text string for the Calculator Copy option in the History list context menu Удалить Text string for the Calculator Delete option in the History list context menu Удалить элемент журнала Screen reader prompt for the Calculator Delete swipe button in the History list Удалить элемент журнала Screen reader prompt for the Calculator Delete option in the History list context menu Удаление предыдущего символа Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Нуль Screen reader prompt for the Calculator number "0" button Один Screen reader prompt for the Calculator number "1" button Два Screen reader prompt for the Calculator number "2" button Три Screen reader prompt for the Calculator number "3" button Четыре Screen reader prompt for the Calculator number "4" button Пять Screen reader prompt for the Calculator number "5" button Шесть Screen reader prompt for the Calculator number "6" button Семь Screen reader prompt for the Calculator number "7" button Восемь Screen reader prompt for the Calculator number "8" button Девять Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button И Screen reader prompt for the Calculator And button Или Screen reader prompt for the Calculator Or button Не Screen reader prompt for the Calculator Not button Повернуть влево Screen reader prompt for the Calculator ROL button Повернуть вправо Screen reader prompt for the Calculator ROR button SHIFT слева Screen reader prompt for the Calculator LSH button Сдвиг вправо Screen reader prompt for the Calculator RSH button Исключающее ИЛИ Screen reader prompt for the Calculator XOR button Переключение на учетверенное машинное слово Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Переключение на удвоенное машинное слово Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Переключить на слова Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Переключение на байты Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Битовая клавиатура Screen reader prompt for the Calculator bitFlip button Полная клавиатура Screen reader prompt for the Calculator numberPad button Десятичный разделитель Screen reader prompt for the "." button Очистить запись Screen reader prompt for the "CE" button Очистить Screen reader prompt for the "C" button Разделить на Screen reader prompt for the divide button on the number pad Умножить на Screen reader prompt for the multiply button on the number pad Равно Screen reader prompt for the equals button on the scientific operator keypad Обратная функция Screen reader prompt for the shift button on the number pad in scientific mode. Минус Screen reader prompt for the minus button on the number pad Минус We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Плюс Screen reader prompt for the plus button on the number pad Квадратный корень Screen reader prompt for the square root button on the scientific operator keypad Процент Screen reader prompt for the percent button on the scientific operator keypad Положительное отрицательное Screen reader prompt for the negate button on the scientific operator keypad Положительное отрицательное Screen reader prompt for the negate button on the converter operator keypad Обратная величина Screen reader prompt for the invert button on the scientific operator keypad Открывающая круглая скобка Screen reader prompt for the Calculator "(" button on the scientific operator keypad Левая круглая скобка, количество открывающих круглых скобок — %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Закрывающая круглая скобка Screen reader prompt for the Calculator ")" button on the scientific operator keypad Количество открывающих скобок: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Нет открывающих скобок, для которых требуются закрывающие. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Экспоненциальное представление Screen reader prompt for the Calculator F-E the scientific operator keypad Гиперболическая функция Screen reader prompt for the Calculator button HYP in the scientific operator keypad Пи Screen reader prompt for the Calculator pi button on the scientific operator keypad Синус Screen reader prompt for the Calculator sin button on the scientific operator keypad Косинус Screen reader prompt for the Calculator cos button on the scientific operator keypad Тангенс Screen reader prompt for the Calculator tan button on the scientific operator keypad Гиперболический синус Screen reader prompt for the Calculator sinh button on the scientific operator keypad Гиперболический косинус Screen reader prompt for the Calculator cosh button on the scientific operator keypad Гиперболический тангенс Screen reader prompt for the Calculator tanh button on the scientific operator keypad Квадрат Screen reader prompt for the x squared on the scientific operator keypad. Куб Screen reader prompt for the x cubed on the scientific operator keypad. Арксинус Screen reader prompt for the inverted sin on the scientific operator keypad. Арккосинус Screen reader prompt for the inverted cos on the scientific operator keypad. Арктангенс Screen reader prompt for the inverted tan on the scientific operator keypad. Гиперболический арксинус Screen reader prompt for the inverted sinh on the scientific operator keypad. Гиперболический арккосинус Screen reader prompt for the inverted cosh on the scientific operator keypad. Гиперболический арктангенс Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" в степени Screen reader prompt for x power y button on the scientific operator keypad. Десять в степени Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" в степени Screen reader for the e power x on the scientific operator keypad. Корень "y" из "x" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Логарифм Screen reader for the log base 10 on the scientific operator keypad Натуральный логарифм Screen reader for the log base e on the scientific operator keypad Остаток от деления Screen reader for the mod button on the scientific operator keypad Экспоненциальная Screen reader for the exp button on the scientific operator keypad Градусы минуты секунды Screen reader for the exp button on the scientific operator keypad Градусы Screen reader for the exp button on the scientific operator keypad Целая часть Screen reader for the int button on the scientific operator keypad Дробная часть Screen reader for the frac button on the scientific operator keypad Факториал Screen reader for the factorial button on the basic operator keypad Переключить на градусы This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Переключение на градианы This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Переключить на радианы This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Раскрывающееся меню режима Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Раскрывающееся меню категорий Screen reader prompt for the Categories dropdown field. Поверх остальных окон Screen reader prompt for the Always-on-Top button when in normal mode. Вернуться к полному представлению Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Поверх остальных окон (ALT + СТРЕЛКА ВВЕРХ) This is the tool tip automation name for the Always-on-Top button when in normal mode. Вернуться к полному представлению (ALT + СТРЕЛКА ВНИЗ) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Преобразовать из %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Преобразовать из %1 целых %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Преобразовывается в %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 — это %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Входные единицы Screen reader prompt for the Unit Converter Units1 i.e. top units field. Выходные единицы Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Площадь Unit conversion category name called Area (eg. area of a sports field in square meters) Данные Unit conversion category name called Data Энергия Unit conversion category name called Energy. (eg. the energy in a battery or in food) Длина Unit conversion category name called Length Мощность Unit conversion category name called Power (eg. the power of an engine or a light bulb) Скорость Unit conversion category name called Speed Время Unit conversion category name called Time Объем Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Температура Unit conversion category name called Temperature Вес и масса Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Давление Unit conversion category name called Pressure Угол Unit conversion category name called Angle Валюта Unit conversion category name called Currency Жидкие унции (Соединенное Королевство) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) жидкая унция (Соединенное Королевство) An abbreviation for a measurement unit of volume жидких унций (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) жидкая унция (США) An abbreviation for a measurement unit of volume галлонов (Соединенное Королевство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галлон (Соединенное Королевство) An abbreviation for a measurement unit of volume галлонов (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) галлон (США) An abbreviation for a measurement unit of volume литров A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) л An abbreviation for a measurement unit of volume миллилитров A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мл An abbreviation for a measurement unit of volume Пинты (Соединенное Королевство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (Соединенное Королевство) An abbreviation for a measurement unit of volume Пинты (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пинта (США) An abbreviation for a measurement unit of volume столовых ложек (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) столовая ложка (США) An abbreviation for a measurement unit of volume чайных ложек (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ч. л. (США) An abbreviation for a measurement unit of volume столовых ложек (Соединенное Королевство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) столовая ложка (Соединенное Королевство) An abbreviation for a measurement unit of volume Чайные ложки (Соединенное Королевство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) чайные ложки (Соединенное Королевство) An abbreviation for a measurement unit of volume кварт (Соединенное Королевство) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварта (Соединенное Королевство) An abbreviation for a measurement unit of volume кварт (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кварта (США) An abbreviation for a measurement unit of volume стаканов (США) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) чашка (США) An abbreviation for a measurement unit of volume А An abbreviation for a measurement unit of length акр An abbreviation for a measurement unit of volume бит An abbreviation for a measurement unit of data БТЕ An abbreviation for a measurement unit of volume БТЕ/мин An abbreviation for a measurement unit of power Б An abbreviation for a measurement unit of data калории An abbreviation for a measurement unit of energy см An abbreviation for a measurement unit of length см/с An abbreviation for a measurement unit of speed см³ An abbreviation for a measurement unit of volume фут³ An abbreviation for a measurement unit of volume дюйм³ An abbreviation for a measurement unit of volume м³ An abbreviation for a measurement unit of volume ярд³ An abbreviation for a measurement unit of volume дн. An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" эВ An abbreviation for a measurement unit of energy фут An abbreviation for a measurement unit of length фут/с An abbreviation for a measurement unit of speed фут-фунт An abbreviation for a measurement unit of energy Гбит An abbreviation for a measurement unit of data ГБ An abbreviation for a measurement unit of data га An abbreviation for a measurement unit of area л. с. (США) An abbreviation for a measurement unit of power ч An abbreviation for a measurement unit of time дюйм An abbreviation for a measurement unit of length Дж An abbreviation for a measurement unit of energy кВтч An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Кбит An abbreviation for a measurement unit of data КБ An abbreviation for a measurement unit of data ккал An abbreviation for a measurement unit of energy кДж An abbreviation for a measurement unit of energy км An abbreviation for a measurement unit of length км/ч An abbreviation for a measurement unit of speed кВт An abbreviation for a measurement unit of power узел An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Мбит An abbreviation for a measurement unit of data МБ An abbreviation for a measurement unit of data м An abbreviation for a measurement unit of length м/с An abbreviation for a measurement unit of speed мкм An abbreviation for a measurement unit of length мкс An abbreviation for a measurement unit of time миля An abbreviation for a measurement unit of length миль/ч An abbreviation for a measurement unit of speed мм An abbreviation for a measurement unit of length мс An abbreviation for a measurement unit of time мин An abbreviation for a measurement unit of time нм An abbreviation for a measurement unit of length морская миля An abbreviation for a measurement unit of length Пбит An abbreviation for a measurement unit of data ПБ An abbreviation for a measurement unit of data фут-фунтов/мин An abbreviation for a measurement unit of power с An abbreviation for a measurement unit of time см² An abbreviation for a measurement unit of area фт² An abbreviation for a measurement unit of area дюйм² An abbreviation for a measurement unit of area км² An abbreviation for a measurement unit of area м² An abbreviation for a measurement unit of area миль² An abbreviation for a measurement unit of area мм² An abbreviation for a measurement unit of area ярд² An abbreviation for a measurement unit of area ТБ An abbreviation for a measurement unit of data ТБ An abbreviation for a measurement unit of data Вт An abbreviation for a measurement unit of power нед. An abbreviation for a measurement unit of time ярд An abbreviation for a measurement unit of length лет An abbreviation for a measurement unit of time Ги An abbreviation for a measurement unit of data ГиБ An abbreviation for a measurement unit of data Ки An abbreviation for a measurement unit of data КиБ An abbreviation for a measurement unit of data Ми An abbreviation for a measurement unit of data МиБ An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Пи An abbreviation for a measurement unit of data ПиБ An abbreviation for a measurement unit of data Ти An abbreviation for a measurement unit of data ТиБ An abbreviation for a measurement unit of data Э An abbreviation for a measurement unit of data ЭБ An abbreviation for a measurement unit of data Эи An abbreviation for a measurement unit of data ЭиБ An abbreviation for a measurement unit of data З An abbreviation for a measurement unit of data ЗБ An abbreviation for a measurement unit of data Зи An abbreviation for a measurement unit of data ЗиБ An abbreviation for a measurement unit of data Й An abbreviation for a measurement unit of data ЙБ An abbreviation for a measurement unit of data Йи An abbreviation for a measurement unit of data ЙиБ An abbreviation for a measurement unit of data Акры A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Биты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) британских тепловых единиц A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) БТЕ/мин A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Байт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Калории A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметры A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Сантиметры в секунду A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубических сантиметров A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубических футов A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубических дюймов A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубических метров A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кубических ярдов A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дней A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шкала Цельсия An option in the unit converter to select degrees Celsius шкала Фаренгейта An option in the unit converter to select degrees Fahrenheit Электрон-вольты A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Футы A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Футы в секунду A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фут-фунтов A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Фут-фунты в минуту A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гигабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гигабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гектаров A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Лошадиная сила (США) A measurement unit for power Часы A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дюймов A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) джоулей A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Киловатт-часы A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) шкала Кельвина An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". килобит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) килобайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пищевых калорий A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Килоджоули A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Километры A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) километров в час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) киловатт A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) узлов A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) число Маха A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) мегабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мегабайты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метры A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) метров в секунду A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) микрон A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) микросекунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Мили A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) миль в час A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) миллиметров A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) миллисекунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) минут A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Полубайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Нанометры A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ангстремы A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Морские мили A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Петабиты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) петабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) секунд A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратных сантиметров A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратные футы A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратных дюймов A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратные километры A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратных метров A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Квадратные мили A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратных миллиметров A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) квадратных ярдов A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) терабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) терабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ватт A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Недели A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ярдов A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лет A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Компакт-диск An abbreviation for a measurement unit of weight град. An abbreviation for a measurement unit of Angle рад An abbreviation for a measurement unit of Angle град An abbreviation for a measurement unit of Angle атм An abbreviation for a measurement unit of Pressure бар An abbreviation for a measurement unit of Pressure кПа An abbreviation for a measurement unit of Pressure мм рт. ст. An abbreviation for a measurement unit of Pressure Па An abbreviation for a measurement unit of Pressure фунт-сила на кв. дюйм An abbreviation for a measurement unit of Pressure An abbreviation for a measurement unit of weight даг An abbreviation for a measurement unit of weight дг An abbreviation for a measurement unit of weight г An abbreviation for a measurement unit of weight гектограмм An abbreviation for a measurement unit of weight кг An abbreviation for a measurement unit of weight тонна (Соединенное Королевство) An abbreviation for a measurement unit of weight мг An abbreviation for a measurement unit of weight унция An abbreviation for a measurement unit of weight фунты An abbreviation for a measurement unit of weight тонна (США) An abbreviation for a measurement unit of weight стоун An abbreviation for a measurement unit of weight т An abbreviation for a measurement unit of weight карат A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Градусы A measurement unit for Angle. Радианы A measurement unit for Angle. Градианы A measurement unit for Angle. Атмосферы A measurement unit for Pressure. Бары A measurement unit for Pressure. Килопаскали A measurement unit for Pressure. Миллиметры ртутного столба A measurement unit for Pressure. Паскали A measurement unit for Pressure. Фунты на квадратный дюйм A measurement unit for Pressure. сантиграмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) декаграмм A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Дециграммы A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) грамм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гектограмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) килограмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) длинных тонн (Соединенное Королевство) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) миллиграмм A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) унций A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) фунтов A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Короткие тонны (США) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) стоунов A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Метрические тонны A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) компакт-дисков A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) компакт-дисков A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбольные поля A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбольные поля A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискет A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дискет A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-дисков A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-дисков A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батарей AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) батарей AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) канцелярских скрепок A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) канцелярских скрепок A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) авиалайнеры A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) авиалайнеры A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лампочек A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лампочек A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лошадиных сил A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) лошадиных сил A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ванн A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ванн A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снежинки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) снежинки A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слонов An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) слонов An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) черепах A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) черепах A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивных самолетов A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) реактивных самолетов A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) китов A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) китов A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) чашек кофе A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) чашек кофе A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) бассейнов An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) бассейнов An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) рук A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) рук A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листов бумаги A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) листов бумаги A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дворцов A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) дворцов A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) бананов A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) бананов A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кусков пирога A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кусков пирога A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) двигатели поезда A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) двигателей поезда A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбольных мячей A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) футбольных мячей A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Элемент памяти Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Назад Screen reader prompt for the About panel back button Назад Content of tooltip being displayed on AboutControlBackButton Условия лицензионного соглашения на использование программного обеспечения корпорации Майкрософт Displayed on a link to the Microsoft Software License Terms on the About panel Предварительный просмотр Label displayed next to upcoming features Заявление о конфиденциальности корпорации Майкрософт Displayed on a link to the Microsoft Privacy Statement on the About panel © Корпорация Майкрософт (Microsoft Corporation), %1. Все права защищены. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Чтобы узнать, как вы можете участвовать в разработке калькулятора Windows, изучите проект на %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Сведения Subtitle of about message on Settings page Отправить отзыв The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Журнала еще нет. The text that shows as the header for the history list Нет сохраненных элементов в памяти. The text that shows as the header for the memory list Память Screen reader prompt for the negate button on the converter operator keypad Это выражение нельзя вставить The paste operation cannot be performed, if the expression is invalid. гибибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) гибибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Кибибиты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) кибибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) мебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) пебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) тебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) тебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксабиты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) эксабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) эксбибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Эксбибайты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зетабиты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Зетабайты A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зебибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) зебибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йоттабит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Йоттабайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) йобибит A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) йобибайт A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Вычисление даты Режим вычисления Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Добавить Add toggle button text Добавить или вычесть дни Add or Subtract days option Дата Date result label Разница между датами Date difference option дн. Add/Subtract Days label Разница Difference result label С From Date Header for Difference Date Picker Месяцы Add/Subtract Months label Вычесть Subtract toggle button text До To Date Header for Difference Date Picker Годы Add/Subtract Years label Дата выходит за границы Out of bound message shown as result when the date calculation exceeds the bounds день дни месяц мес. Одинаковые даты неделя недель год года Разница %1 Automation name for reading out the date difference. %1 = Date difference Итоговая дата %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Режим калькулятора %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Режим преобразования %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Режим вычисления даты Automation name for when the mode header is focused and the current mode is Date calculation. Списки журналов и памяти Automation name for the group of controls for history and memory lists. Элементы управления памятью Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Стандартные функции Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Элементы управления отображением Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Стандартные операторы Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Числовая панель Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Операторы для вычисления углов Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Научные функции Automation name for the group of Scientific functions. Выбор основания Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Операторы программирования Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Выбор режима ввода Automation name for the group of input mode toggling buttons. Битовая клавиатура Automation name for the group of bit toggling buttons. Прокрутить выражение влево Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Прокрутить выражение вправо Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Достигнуто максимальное количество цифр. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 сохранено в памяти {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Слот памяти %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Слот памяти %1 очищен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". разделить на Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. умножить на Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. минус Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. плюс Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. в степень Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. корень y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. по модулю Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. со сдвигом влево Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. со сдвигом вправо Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. или Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. сложить по модулю два с Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. и Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Обновлено %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Обновить курсы The text displayed for a hyperlink button that refreshes currency converter ratios. Может взиматься плата за передачу данных. The text displayed when users are on a metered connection and using currency converter. Не удалось получить новые тарифы. Попробуйте еще раз позже. The text displayed when currency ratio data fails to load. Не в сети. Проверьте %HL%параметры сети%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Обновление курса валют This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Курсы валют обновлены This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Не удалось обновить курсы This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Очистка всей памяти (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Очистка всей памяти Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} синус, градусы Name for the sine function in degrees mode. Used by screen readers. синус, радианы Name for the sine function in radians mode. Used by screen readers. синус, грады Name for the sine function in gradians mode. Used by screen readers. арксинус, градусы Name for the inverse sine function in degrees mode. Used by screen readers. арксинус, радианы Name for the inverse sine function in radians mode. Used by screen readers. арксинус, грады Name for the inverse sine function in gradians mode. Used by screen readers. гиперболический синус Name for the hyperbolic sine function. Used by screen readers. гиперболический арксинус Name for the inverse hyperbolic sine function. Used by screen readers. косинус, градусы Name for the cosine function in degrees mode. Used by screen readers. косинус, радианы Name for the cosine function in radians mode. Used by screen readers. косинус, грады Name for the cosine function in gradians mode. Used by screen readers. арккосинус, градусы Name for the inverse cosine function in degrees mode. Used by screen readers. арккосинус, радианы Name for the inverse cosine function in radians mode. Used by screen readers. арккосинус, грады Name for the inverse cosine function in gradians mode. Used by screen readers. гиперболический косинус Name for the hyperbolic cosine function. Used by screen readers. гиперболический арккосинус Name for the inverse hyperbolic cosine function. Used by screen readers. тангенс, градусы Name for the tangent function in degrees mode. Used by screen readers. тангенс, радианы Name for the tangent function in radians mode. Used by screen readers. тангенс, грады Name for the tangent function in gradians mode. Used by screen readers. арктангенс, градусы Name for the inverse tangent function in degrees mode. Used by screen readers. арктангенс, радианы Name for the inverse tangent function in radians mode. Used by screen readers. арктангенс, грады Name for the inverse tangent function in gradians mode. Used by screen readers. гиперболический тангенс Name for the hyperbolic tangent function. Used by screen readers. гиперболический арктангенс Name for the inverse hyperbolic tangent function. Used by screen readers. секанс, градусы Name for the secant function in degrees mode. Used by screen readers. секанс, радианы Name for the secant function in radians mode. Used by screen readers. секанс, градианы Name for the secant function in gradians mode. Used by screen readers. арксеканс, градусы Name for the inverse secant function in degrees mode. Used by screen readers. арксеканс, радианы Name for the inverse secant function in radians mode. Used by screen readers. арксеканс, градианы Name for the inverse secant function in gradians mode. Used by screen readers. гиперболический секанс Name for the hyperbolic secant function. Used by screen readers. гиперболический арксеканс Name for the inverse hyperbolic secant function. Used by screen readers. косеканс, градусы Name for the cosecant function in degrees mode. Used by screen readers. косеканс, радианы Name for the cosecant function in radians mode. Used by screen readers. косеканс, градианы Name for the cosecant function in gradians mode. Used by screen readers. арккосеканс, градусы Name for the inverse cosecant function in degrees mode. Used by screen readers. арккосеканс, радианы Name for the inverse cosecant function in radians mode. Used by screen readers. арккосеканс, градианы Name for the inverse cosecant function in gradians mode. Used by screen readers. гиперболический косеканс Name for the hyperbolic cosecant function. Used by screen readers. гиперболический арккосеканс Name for the inverse hyperbolic cosecant function. Used by screen readers. котангенс, градусы Name for the cotangent function in degrees mode. Used by screen readers. Котангенс, радианы Name for the cotangent function in radians mode. Used by screen readers. котангенс, градианы Name for the cotangent function in gradians mode. Used by screen readers. арккотангенс, градусы Name for the inverse cotangent function in degrees mode. Used by screen readers. арккотангенс, радианы Name for the inverse cotangent function in radians mode. Used by screen readers. арккотангенс, градианы Name for the inverse cotangent function in gradians mode. Used by screen readers. гиперболический котангенс Name for the hyperbolic cotangent function. Used by screen readers. гиперболический арккотангенс Name for the inverse hyperbolic cotangent function. Used by screen readers. Кубический корень Name for the cube root function. Used by screen readers. Основание логарифма Name for the logbasey function. Used by screen readers. Абсолютная величина Name for the absolute value function. Used by screen readers. сдвиг влево Name for the programmer function that shifts bits to the left. Used by screen readers. сдвиг вправо Name for the programmer function that shifts bits to the right. Used by screen readers. факториал Name for the factorial function. Used by screen readers. градус минута секунда Name for the degree minute second (dms) function. Used by screen readers. натуральный логарифм Name for the natural log (ln) function. Used by screen readers. квадрат Name for the square function. Used by screen readers. корень y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Категория %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Соглашение об использовании служб Майкрософт Displayed on a link to the Microsoft Services Agreement in the about this app information Пхен An abbreviation for a measurement unit of area. Пхен A measurement unit for area. С From Date Header for AddSubtract Date Picker Прокрутить результат вычисления влево Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Прокрутить результат вычисления вправо Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Ошибка вычисления Text displayed when the application is not able to do a calculation Основание логарифма Y Screen reader prompt for the logBaseY button Тригонометрия Displayed on the button that contains a flyout for the trig functions in scientific mode. Функция Displayed on the button that contains a flyout for the general functions in scientific mode. Неравенства Displayed on the button that contains a flyout for the inequality functions. Неравенства Screen reader prompt for the Inequalities button Побитовые Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Сдвиг битов Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Обратная функция Screen reader prompt for the shift button in the trig flyout in scientific mode. Гиперболическая функция Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Секанс Screen reader prompt for the Calculator button sec in the scientific flyout keypad Гиперболический секанс Screen reader prompt for the Calculator button sech in the scientific flyout keypad Арксеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Гиперболический арксеканс Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Косеканс Screen reader prompt for the Calculator button csc in the scientific flyout keypad Гиперболический косеканс Screen reader prompt for the Calculator button csch in the scientific flyout keypad Арккосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Гиперболический арккосеканс Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Котангенс Screen reader prompt for the Calculator button cot in the scientific flyout keypad Гиперболический котангенс Screen reader prompt for the Calculator button coth in the scientific flyout keypad Арккотангенс Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Гиперболический арккотангенс Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Пол Screen reader prompt for the Calculator button floor in the scientific flyout keypad Потолок Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Случайно Screen reader prompt for the Calculator button random in the scientific flyout keypad Абсолютная величина Screen reader prompt for the Calculator button abs in the scientific flyout keypad Эйлерово число Screen reader prompt for the Calculator button e in the scientific flyout keypad Два в степени Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad И-не Screen reader prompt for the Calculator button nand in the scientific flyout keypad И-не Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Или-не Screen reader prompt for the Calculator button nor in the scientific flyout keypad Или-не Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Ротация влево с переносом Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Ротация вправо с переносом Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad SHIFT слева Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Сдвиг влево Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. SHIFT справа Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Сдвиг вправо Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Арифметический сдвиг Label for a radio button that toggles arithmetic shift behavior for the shift operations. Логический сдвиг Label for a radio button that toggles logical shift behavior for the shift operations. Циклический сдвиг путем ротации Label for a radio button that toggles rotate circular behavior for the shift operations. Циклический сдвиг путем ротации через перенос Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Кубический корень Screen reader prompt for the cube root button on the scientific operator keypad Тригонометрия Screen reader prompt for the square root button on the scientific operator keypad Функции Screen reader prompt for the square root button on the scientific operator keypad Побитовые Screen reader prompt for the square root button on the scientific operator keypad Сдвиг битов Screen reader prompt for the square root button on the scientific operator keypad Панели научных операторов Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Панели операторов программиста Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad старший значащий бит Used to describe the last bit of a binary number. Used in bit flip Построение графиков Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Построить Screen reader prompt for the plot button on the graphing calculator operator keypad Автоматическое обновление представления (CTRL + 0) This is the tool tip automation name for the Calculator graph view button. График Screen reader prompt for the graph view button. Автоматический подбор размера Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Наcтройка вручную Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Представление графика сброшено Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Увеличить (CTRL+"плюс") This is the tool tip automation name for the Calculator zoom in button. Увеличить Screen reader prompt for the zoom in button. Уменьшить (CTRL+"минус") This is the tool tip automation name for the Calculator zoom out button. Уменьшить Screen reader prompt for the zoom out button. Добавить уравнение Placeholder text for the equation input button Не удается поделиться сейчас. If there is an error in the sharing action will display a dialog with this text. ОК Used on the dismiss button of the share action error dialog. Посмотрите, что я сделал с помощью Калькулятора Windows Sent as part of the shared content. The title for the share. Уравнения Header that appears over the equations section when sharing Переменные Header that appears over the variables section when sharing Изображение графа с уравнениями Alt text for the graph image when output via Share Переменные Header text for variables area Шаг Label text for the step text box Мин. Label text for the min text box Макс. Label text for the max text box Цвет Label for the Line Color section of the style picker Стиль Label for the Line Style section of the style picker Анализ функции Title for KeyGraphFeatures Control Функция не имеет горизонтальных асимптот. Message displayed when the graph does not have any horizontal asymptotes Функция не имеет точек перегиба. Message displayed when the graph does not have any inflection points Функция не имеет точек максимума. Message displayed when the graph does not have any maxima Функция не имеет точек минимума. Message displayed when the graph does not have any minima Постоянная String describing constant monotonicity of a function Убывающая String describing decreasing monotonicity of a function Не удалось определить монотонность функции. Error displayed when monotonicity cannot be determined Возрастающая String describing increasing monotonicity of a function Монотонность функции неизвестна. Error displayed when monotonicity is unknown Функция не имеет наклонных асимптот. Message displayed when the graph does not have any oblique asymptotes Не удалось определить четность функции. Error displayed when parity is cannot be determined Четная функция. Message displayed with the function parity is even Функция не является ни четной, ни нечетной. Message displayed with the function parity is neither even nor odd Нечетная функция. Message displayed with the function parity is odd Четность функции неизвестна. Error displayed when parity is unknown Периодичность не поддерживается для этой функции. Error displayed when periodicity is not supported Функция не является периодической. Message displayed with the function periodicity is not periodic Периодичность функции неизвестна. Message displayed with the function periodicity is unknown Эти функции слишком сложны для расчета с помощью Калькулятора: Error displayed when analysis features cannot be calculated Функция не имеет вертикальных асимптот. Message displayed when the graph does not have any vertical asymptotes Функция не содержит пересечение с осью X. Message displayed when the graph does not have any x-intercepts Функция не содержит пересечение с осью Y. Message displayed when the graph does not have any y-intercepts Область Title for KeyGraphFeatures Domain Property Горизонтальные асимптоты Title for KeyGraphFeatures Horizontal aysmptotes Property Точки перегиба Title for KeyGraphFeatures Inflection points Property Анализ не поддерживается для этой функции. Error displayed when graph analysis is not supported or had an error. Анализ поддерживается только для функций в формате f(x). Пример: y=x Error displayed when graph analysis detects the function format is not f(x). Максимум Title for KeyGraphFeatures Maxima Property Минимум Title for KeyGraphFeatures Minima Property Монотонность Title for KeyGraphFeatures Monotonicity Property Наклонные асимптоты Title for KeyGraphFeatures Oblique asymptotes Property Четность Title for KeyGraphFeatures Parity Property Период Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Область значений Title for KeyGraphFeatures Range Property Вертикальные асимптоты Title for KeyGraphFeatures Vertical asymptotes Property Пересечение с осью X Title for KeyGraphFeatures XIntercept Property Пересечение с осью Y Title for KeyGraphFeatures YIntercept Property Не удалось выполнить анализ функции. Не удается вычислить область для этой функции. Error displayed when Domain is not returned from the analyzer. Не удается вычислить область значений для этой функции. Error displayed when Range is not returned from the analyzer. Переполнение (слишком большое число) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Режим радиан необходим для построения графика этого уравнения. Error that occurs during graphing when radians is required. Эта функция слишком сложна для построения графика Error that occurs during graphing when the equation is too complex. Для отображения этой функции требуется режим градусов Error that occurs during graphing when degrees is required Функция факториала имеет неверный аргумент Error that occurs during graphing when a factorial function has an invalid argument. Факториальная функция имеет слишком большой аргумент для графика Error that occurs during graphing when a factorial has a large n По модулю можно брать только целые числа Error that occurs during graphing when modulo is used with a float. Уравнение не имеет решения Error that occurs during graphing when the equation has no solution. Невозможно разделить на ноль Error that occurs during graphing when a divison by zero occurs. Уравнение содержит логические условия, которые являются взаимоисключающими Error that occurs during graphing when mutually exclusive conditions are used. Уравнение вне области определения Error that occurs during graphing when the equation is out of domain. Графики этого уравнения не поддерживаются Error that occurs during graphing when the equation is not supported. В уравнении отсутствует открывающая круглая скобка Error that occurs during graphing when the equation is missing a ( В уравнении отсутствует закрывающая круглая скобка Error that occurs during graphing when the equation is missing a ) В числе слишком много десятичных знаков Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Десятичная запятая не имеет цифр Error that occurs during graphing with a decimal point without digits Неожиданный конец выражения Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Непредвиденные символы в выражении Error that occurs during graphing when there is an unexpected token. Недопустимые символы в выражении Error that occurs during graphing when there is an invalid token. Слишком много знаков равенства Error that occurs during graphing when there are too many equals. Функция должна содержать хотя бы одну переменную x или y Error that occurs during graphing when the equation is missing x or y. Неверное выражение Error that occurs during graphing when an invalid syntax is used. Пустое выражение Error that occurs during graphing when the expression is empty Знак равенства использован без уравнения Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Скобки отсутствуют после имени функции Error that occurs during graphing when parenthesis are missing after a function. Неверное количество параметров функции Error that occurs during graphing when a function has the wrong number of parameters Имя переменной неверно Error that occurs during graphing when a variable name is invalid. В уравнении отсутствует открывающая скобка Error that occurs during graphing when a { is missing В уравнении отсутствует закрывающая скобка Error that occurs during graphing when a } is missing. «i» и «I» не могут использоваться как имена переменных Error that occurs during graphing when i or I is used. График уравнения не может быть построен General error that occurs during graphing. Не удалось определить цифру для заданного основания Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Значение должно быть больше 2 и меньше 36 Error that occurs during graphing when the base is out of range. Один из параметров функции должен быть переменной Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Уравнение смешивает логические и скалярные операнды Error that occurs during graphing when operands are mixed. Such as true and 1. x или y нельзя использовать в верхнем или нижнем пределах Error that occurs during graphing when x or y is used in integral upper limits. x или y нельзя использовать в предельной точке Error that occurs during graphing when x or y is used in the limit point. Нельзя использовать комплексную бесконечность Error that occurs during graphing when complex infinity is used Нельзя использовать комплексные числа в неравенствах Error that occurs during graphing when complex numbers are used in inequalities. Вернуться к списку функций This is the tooltip for the back button in the equation analysis page in the graphing calculator Вернуться к списку функций This is the automation name for the back button in the equation analysis page in the graphing calculator Проанализировать функцию This is the tooltip for the analyze function button Проанализировать функцию This is the automation name for the analyze function button Проанализировать функцию This is the text for the for the analyze function context menu command Удалить уравнение This is the tooltip for the graphing calculator remove equation buttons Удалить уравнение This is the automation name for the graphing calculator remove equation buttons Удалить уравнение This is the text for the for the remove equation context menu command Поделиться This is the automation name for the graphing calculator share button. Поделиться This is the tooltip for the graphing calculator share button. Изменить стиль уравнения This is the tooltip for the graphing calculator equation style button Изменить стиль уравнения This is the automation name for the graphing calculator equation style button Изменить стиль уравнения This is the text for the for the equation style context menu command Показать уравнение This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Скрыть уравнение This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Показать уравнение %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Скрыть уравнение %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Остановить трассировку This is the tooltip/automation name for the graphing calculator stop tracing button Начать трассировку This is the tooltip/automation name for the graphing calculator start tracing button Окно для просмотра графа, ось x с осью %1 и %2, ось y, привязанная %3 и %4, отображает %5 уравнения {Locked="%1","%2", "%3", "%4", "%5"}. Настроить ползунок This is the tooltip text for the slider options button in Graphing Calculator Настроить ползунок This is the automation name text for the slider options button in Graphing Calculator Перейти в режим уравнения Used in Graphing Calculator to switch the view to the equation mode Перейти в режим графика Used in Graphing Calculator to switch the view to the graph mode Перейти в режим уравнения Used in Graphing Calculator to switch the view to the equation mode Текущий режим — режим уравнения Announcement used in Graphing Calculator when switching to the equation mode Текущий режим — режим графа Announcement used in Graphing Calculator when switching to the graph mode Окно Heading for window extents on the settings Градусы Degrees mode on settings page Градианы Gradian mode on settings page Радианы Radians mode on settings page Единицы Heading for Unit's on the settings Сбросить представление Hyperlink button to reset the view of the graph Макс. X X maximum value header Мин. X X minimum value header Макс. Y Y Maximum value header Мин. Y Y minimum value header Параметры графика This is the tooltip text for the graph options button in Graphing Calculator Параметры графика This is the automation name text for the graph options button in Graphing Calculator Параметры графика Heading for the Graph options flyout in Graphing mode. Параметры-переменные Screen reader prompt for the variable settings toggle button Переменные параметры переключателя Tool tip for the variable settings toggle button Толщина линии Heading for the Graph options flyout in Graphing mode. Параметры линии Heading for the equation style flyout in Graphing mode. Небольшая толщина линии Automation name for line width setting Средняя толщина линии Automation name for line width setting Большая толщина линии Automation name for line width setting Очень большая толщина линии Automation name for line width setting Введите выражение this is the placeholder text used by the textbox to enter an equation Копировать Copy menu item for the graph context menu Вырезать Cut menu item from the Equation TextBox Копировать Copy menu item from the Equation TextBox Вставить Paste menu item from the Equation TextBox Отменить Undo menu item from the Equation TextBox Выбрать все Select all menu item from the Equation TextBox Ввод функции The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Ввод функции The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Панель ввода функций The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Панель переменных The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Список переменных The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Элемент списка переменных %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Текстовое поле "Значение переменной" The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Ползунок для изменения значений переменных The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Текстовое поле "Минимальное значение переменной" The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Текстовое поле "Значение шага для диапазона переменных" The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Текстовое поле "Максимальное значение переменной" The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Сплошная линия Name of the solid line style for a graphed equation Пунктирная линия Name of the dotted line style for a graphed equation Штриховая линия Name of the dashed line style for a graphed equation Синий Name of color in the color picker Цвет морской пены Name of color in the color picker Фиолетовый Name of color in the color picker Зеленый Name of color in the color picker Мятно-зеленый Name of color in the color picker Темно-зеленый Name of color in the color picker Угольный Name of color in the color picker Красный Name of color in the color picker Светло-бледно-фиолетовый Name of color in the color picker Пурпурный Name of color in the color picker Золотисто-желтый Name of color in the color picker Ярко-оранжевый Name of color in the color picker Коричневый Name of color in the color picker Черный Name of color in the color picker Белый Name of color in the color picker Цвет 1 Name of color in the color picker Цвет 2 Name of color in the color picker Цвет 3 Name of color in the color picker Цвет 4 Name of color in the color picker Тема диаграммы Graph settings heading for the theme options Всегда светлый Graph settings option to set graph to light theme Подобрать под тему приложения Graph settings option to set graph to match the app theme Тема This is the automation name text for the Graph settings heading for the theme options Всегда светлый This is the automation name text for the Graph settings option to set graph to light theme Подобрать под тему приложения This is the automation name text for the Graph settings option to set graph to match the app theme Функция удалена Announcement used in Graphing Calculator when a function is removed from the function list Поле формулы для анализа функции This is the automation name text for the equation box in the function analysis panel Равно Screen reader prompt for the equal button on the graphing calculator operator keypad Меньше, чем Screen reader prompt for the Less than button Меньше или равно Screen reader prompt for the Less than or equal button Равны Screen reader prompt for the Equal button Больше или равно Screen reader prompt for the Greater than or equal button Больше Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Отправить Screen reader prompt for the submit button on the graphing calculator operator keypad Анализ функции Screen reader prompt for the function analysis grid Параметры графика Screen reader prompt for the graph options panel Списки журналов и памяти Automation name for the group of controls for history and memory lists. Список памяти Automation name for the group of controls for memory list. Слот журнала %1 очищен {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Калькулятор всегда сверху Announcement to indicate calculator window is always shown on top. Калькулятор вернулся к полному представлению Announcement to indicate calculator window is now back to full view. Выбран арифметический сдвиг Label for a radio button that toggles arithmetic shift behavior for the shift operations. Выбран логический сдвиг Label for a radio button that toggles logical shift behavior for the shift operations. Выбран циклический сдвиг путем ротации Label for a radio button that toggles rotate circular behavior for the shift operations. Выбран циклический сдвиг путем ротации через перенос Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Параметры Header text of Settings page Внешний вид Subtitle of appearance setting on Settings page Тема приложения Title of App theme expander Выберите тему приложения для отображения Description of App theme expander Светлая Lable for light theme option Темная Lable for dark theme option Использовать параметры системы Lable for the app theme option to use system setting Назад Screen reader prompt for the Back button in title bar to back to main page Страница параметров Announcement used when Settings page is opened Открыть контекстное меню для просмотра доступных действий Screen reader prompt for the context menu of the expression box ОК The text of OK button to dismiss an error dialog. Не удалось восстановить этот моментальный снимок. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/sk-SK/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Neplatný vstup Error message shown when the input makes a function fail, like log(-1) Výsledok nie je definovaný Error message shown when there's no possible value for a function. Nedostatok pamäte Error message shown when we run out of memory during a calculation. Pretečenie Error message shown when there's an overflow during the calculation. Výsledok nie je definovaný Same as 101 Výsledok nie je definovaný Same 101 Pretečenie Same as 107 Pretečenie Same 107 Nulou nemožno deliť Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/sk-SK/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulačka {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulačka [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkulačka {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkulačka [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulačka {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulačka [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopírovať Copy context menu string Prilepiť Paste context menu string Približne sa rovná The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, hodnota %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip najmenej významný bit Used to describe the first bit of a binary number. Used in bit flip Otvoriť rozbaľovaciu ponuku pamäte This is the automation name and label for the memory button when the memory flyout is closed. Zavrieť rozbaľovaciu ponuku pamäte This is the automation name and label for the memory button when the memory flyout is open. Ponechať navrchu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Späť na celé zobrazenie This is the tool tip automation name for the always-on-top button when in always-on-top mode. Pamäť This is the tool tip automation name for the memory button. História (Ctrl+H) This is the tool tip automation name for the history button. Numerická klávesnica s prepínaním bitov This is the tool tip automation name for the bitFlip button. Celá numerická klávesnica This is the tool tip automation name for the numberPad button. Vymazať celú pamäť (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Pamäť The text that shows as the header for the memory list Pamäť The automation name for the Memory pivot item that is shown when Calculator is in wide layout. História The text that shows as the header for the history list História The automation name for the History pivot item that is shown when Calculator is in wide layout. Konvertor Label for a control that activates the unit converter mode. Vedecká Label for a control that activates scientific mode calculator layout Štandardná Label for a control that activates standard mode calculator layout. Režim konvertora Screen reader prompt for a control that activates the unit converter mode. Režim vedeckej kalkulačky Screen reader prompt for a control that activates scientific mode calculator layout Režim štandardnej kalkulačky Screen reader prompt for a control that activates standard mode calculator layout. Vymazať celú históriu "ClearHistory" used on the calculator history pane that stores the calculation history. Vymazať celú históriu This is the tool tip automation name for the Clear History button. Skryť "HideHistory" used on the calculator history pane that stores the calculation history. Štandardná The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Vedecká The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programátor The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konvertor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulačka The text that shows in the dropdown navigation control for the calculator group. Konvertor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulačka The text that shows in the dropdown navigation control for the calculator group in upper case. Konvertory Pluralized version of the converter group text, used for the screen reader prompt. Kalkulačky Pluralized version of the calculator group text, used for the screen reader prompt. Zobrazenie je %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Výraz je %1, Hodnota aktuálneho vstupu je %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Zobrazenie je %1 celých {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Výraz je %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Zobrazovaná hodnota bola skopírovaná do schránky Screen reader prompt for the Calculator display copy button, when the button is invoked. História Screen reader prompt for the history flyout Pamäť Screen reader prompt for the memory flyout Šestnástkové %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Desatinné %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Osmičkové %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binárne %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Vymazať celú históriu Screen reader prompt for the Calculator History Clear button História bola vymazaná Screen reader prompt for the Calculator History Clear button, when the button is invoked. Skryť históriu Screen reader prompt for the Calculator History Hide button Otvoriť rozbaľovaciu ponuku histórie Screen reader prompt for the Calculator History button, when the flyout is closed. Zavrieť rozbaľovaciu ponuku histórie Screen reader prompt for the Calculator History button, when the flyout is open. Uloženie v pamäti Screen reader prompt for the Calculator Memory button Uložiť do pamäte (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Vymazať celú pamäť Screen reader prompt for the Calculator Clear Memory button Pamäť bola vymazaná Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Vyvolať z pamäte Screen reader prompt for the Calculator Memory Recall button Vyvolať z pamäte (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Pridať do pamäte Screen reader prompt for the Calculator Memory Add button Pridať do pamäte (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Odčítať z pamäte Screen reader prompt for the Calculator Memory Subtract button Odčítať z pamäte (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Vymazať položku pamäte Screen reader prompt for the Calculator Clear Memory button Vymazať položku pamäte This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Pridá do položky pamäte Screen reader prompt for the Calculator Memory Add button in the Memory list Pridá do položky pamäte This is the tool tip automation name for the Calculator Memory Add button in the Memory list Odčítať z položky pamäte Screen reader prompt for the Calculator Memory Subtract button in the Memory list Odčítať z položky pamäte This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Vymazať položku pamäte Screen reader prompt for the Calculator Clear Memory button Vymazať položku pamäte Text string for the Calculator Clear Memory option in the Memory list context menu Pridá do položky pamäte Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Pridá do položky pamäte Text string for the Calculator Memory Add option in the Memory list context menu Odčítať z položky pamäte Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Odčítať z položky pamäte Text string for the Calculator Memory Subtract option in the Memory list context menu Odstrániť Text string for the Calculator Delete swipe button in the History list Kopírovať Text string for the Calculator Copy option in the History list context menu Odstrániť Text string for the Calculator Delete option in the History list context menu Odstrániť položku histórie Screen reader prompt for the Calculator Delete swipe button in the History list Odstrániť položku histórie Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nula Screen reader prompt for the Calculator number "0" button Jeden Screen reader prompt for the Calculator number "1" button Dva Screen reader prompt for the Calculator number "2" button Tri Screen reader prompt for the Calculator number "3" button Štyri Screen reader prompt for the Calculator number "4" button Päť Screen reader prompt for the Calculator number "5" button Šesť Screen reader prompt for the Calculator number "6" button Sedem Screen reader prompt for the Calculator number "7" button Osem Screen reader prompt for the Calculator number "8" button Deväť Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button A Screen reader prompt for the Calculator And button Alebo Screen reader prompt for the Calculator Or button Nie Screen reader prompt for the Calculator Not button Otočiť naľavo Screen reader prompt for the Calculator ROL button Otočiť napravo Screen reader prompt for the Calculator ROR button Ľavý kláves Shift Screen reader prompt for the Calculator LSH button Pravý kláves Shift Screen reader prompt for the Calculator RSH button Exkluzívna alebo Screen reader prompt for the Calculator XOR button Prepínač štvoritých slov Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Prepínač dvojitých slov Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Prepínač slov Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Prepínač bajtov Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Numerická klávesnica s prepínaním bitov Screen reader prompt for the Calculator bitFlip button Celá numerická klávesnica Screen reader prompt for the Calculator numberPad button Oddeľovač desatinných miest Screen reader prompt for the "." button Vymazať položku Screen reader prompt for the "CE" button Vymazať Screen reader prompt for the "C" button Delené Screen reader prompt for the divide button on the number pad Krát Screen reader prompt for the multiply button on the number pad Rovná sa Screen reader prompt for the equals button on the scientific operator keypad Inverzná funkcia Screen reader prompt for the shift button on the number pad in scientific mode. Mínus Screen reader prompt for the minus button on the number pad Mínus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Druhá odmocnina Screen reader prompt for the square root button on the scientific operator keypad Percento Screen reader prompt for the percent button on the scientific operator keypad Kladné záporné Screen reader prompt for the negate button on the scientific operator keypad Kladné záporné Screen reader prompt for the negate button on the converter operator keypad Prevrátené Screen reader prompt for the invert button on the scientific operator keypad Ľavá zátvorka Screen reader prompt for the Calculator "(" button on the scientific operator keypad Ľavá zátvorka, počet ľavých zátvoriek je %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Pravá zátvorka Screen reader prompt for the Calculator ")" button on the scientific operator keypad Počet vstupných zátvoriek: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nenachádza sa tu žiadna vstupná zátvorka, ku ktorej je možné pridať výstupnú. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Vedecký zápis Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolická funkcia Screen reader prompt for the Calculator button HYP in the scientific operator keypad Screen reader prompt for the Calculator pi button on the scientific operator keypad Sínus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosínus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolický sínus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolický kosínus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolický tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Štvorec Screen reader prompt for the x squared on the scientific operator keypad. Kocka Screen reader prompt for the x cubed on the scientific operator keypad. Arkussínus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkuskosínus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkustangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolický arkussínus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolický arkuskosínus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolický arkustangens Screen reader prompt for the inverted tanh on the scientific operator keypad. X s exponentom Screen reader prompt for x power y button on the scientific operator keypad. 10 s exponentom Screen reader prompt for the 10 power x button on the scientific operator keypad. e s exponentom Screen reader for the e power x on the scientific operator keypad. y. odmocnina z x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritmus Screen reader for the log base 10 on the scientific operator keypad Prirodzený logaritmus Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponenciála Screen reader for the exp button on the scientific operator keypad Stupeň minúta sekunda Screen reader for the exp button on the scientific operator keypad Stupne Screen reader for the exp button on the scientific operator keypad Časť celého čísla Screen reader for the int button on the scientific operator keypad Zlomková časť Screen reader for the frac button on the scientific operator keypad Faktoriál Screen reader for the factorial button on the basic operator keypad Prepínač stupňov This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Prepínač gradiánov This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Prepínač radiánov This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Rozbaľovací zoznam režimu Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Rozbaľovací zoznam kategórií Screen reader prompt for the Categories dropdown field. Ponechať navrchu Screen reader prompt for the Always-on-Top button when in normal mode. Späť na celé zobrazenie Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Ponechať navrchu (Alt + šípka nahor) This is the tool tip automation name for the Always-on-Top button when in normal mode. Späť na celé zobrazenie (Alt + šípka nadol) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Skonvertuje z %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Skonvertuje z %1 celých %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Skonvertuje na %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 = %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Jednotka vstupu Screen reader prompt for the Unit Converter Units1 i.e. top units field. Jednotka výstupu Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Plocha Unit conversion category name called Area (eg. area of a sports field in square meters) Údaje Unit conversion category name called Data Energia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Dĺžka Unit conversion category name called Length Výkon Unit conversion category name called Power (eg. the power of an engine or a light bulb) Rýchlosť Unit conversion category name called Speed Čas Unit conversion category name called Time Objem Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Teplota Unit conversion category name called Temperature Hmotnosť Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tlak Unit conversion category name called Pressure Uhol Unit conversion category name called Angle Mena Unit conversion category name called Currency Tekuté unce (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Tekuté unce (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (USA) An abbreviation for a measurement unit of volume Galóny (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Galóny (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (USA) An abbreviation for a measurement unit of volume Litre A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) l An abbreviation for a measurement unit of volume Mililitre A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pinty (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pinty (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (USA) An abbreviation for a measurement unit of volume Polievkové lyžice (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PL. (USA) An abbreviation for a measurement unit of volume Čajové lyžičky (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ČL. (USA) An abbreviation for a measurement unit of volume Polievkové lyžice (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PL. (UK) An abbreviation for a measurement unit of volume Čajové lyžičky (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ČL. (UK) An abbreviation for a measurement unit of volume Kvarty (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Kvarty (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (USA) An abbreviation for a measurement unit of volume Šálky (USA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šálka (USA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d. An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed librostopy An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area k (USA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kb An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length m/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data librostopy/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power týž. An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length r. An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britské tepelné jednotky A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britské tepelné jednotky/min A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tepelné kalórie A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetre za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubické centimetre A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubické stopy A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubické palce A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubické metre A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubické yardy A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stupne Celzia An option in the unit converter to select degrees Celsius Stupne Fahrenheita An option in the unit converter to select degrees Fahrenheit Elektrónvolty A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopy za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Librostopy A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Librostopy/min A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektáre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Konská sila (USA) A measurement unit for power Hodiny A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Palce A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jouly A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatthodiny A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stupne Kelvina An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilokalórie A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojouly A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometre za hodinu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatty A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Uzly A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metre za sekundu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrometre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Míle A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Míle za hodinu A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minúty A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometre A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angströmy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Námorné míle A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundy A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové centimetre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové stopy A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové palce A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové kilometre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové metre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové míle A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové milimetre A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Štvorcové yardy A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watty A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Týždne A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yardy A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Roky A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight st. An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gon An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tona (USA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karáty A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stupne A measurement unit for Angle. Radiány A measurement unit for Angle. Gradiány A measurement unit for Angle. Atmosféry A measurement unit for Pressure. Bary A measurement unit for Pressure. Kilopascaly A measurement unit for Pressure. Milimetre ortuťového stĺpca A measurement unit for Pressure. Pascaly A measurement unit for Pressure. Libry na štvorcový palec A measurement unit for Pressure. Centigramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagramy A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dlhé tony (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramy A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unce A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Libry A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Krátke tony (USA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kameň A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metrické tony A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD disky A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD disky A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbalové ihriská A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbalové ihriská A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskety A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskety A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD disky A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD disky A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batérie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batérie AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sponky na papier A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sponky na papier A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) veľké dopravné lietadlá A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) veľké dopravné lietadlá A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žiarovky A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žiarovky A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kone A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kone A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vane A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vane A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snehové vločky A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snehové vločky A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slony An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slony An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) korytnačky A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) korytnačky A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lietadlá A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lietadlá A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) veľryby A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) veľryby A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávové šálky A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kávové šálky A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plavecké bazény An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plavecké bazény An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruky A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ruky A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hárky papiera A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hárky papiera A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hrady A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hrady A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banány A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banány A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kusy torty A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kusy torty A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotívy A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotívy A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbalové lopty A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) futbalové lopty A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Položka pamäte Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Naspäť Screen reader prompt for the About panel back button Naspäť Content of tooltip being displayed on AboutControlBackButton Licenčné podmienky pre softvér od spoločnosti Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Ukážka Label displayed next to upcoming features Prehlásenie spoločnosti Microsoft o ochrane osobných údajov Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Všetky práva vyhradené. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Ak chcete zistiť, ako môžete prispievať do programu Windows kalkulačka, vezmite projekt na %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Informácie Subtitle of about message on Settings page Odoslať pripomienky The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Zatiaľ nie je k dispozícii žiadna história. The text that shows as the header for the history list V pamäti nie je nič uložené. The text that shows as the header for the memory list Pamäť Screen reader prompt for the negate button on the converter operator keypad Tento výraz sa nedá prilepiť The paste operation cannot be performed, if the expression is invalid. Gibibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zettabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibity A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibajty A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Výpočet dátumu Režim výpočtu Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Pridať Add toggle button text Pripočítať alebo odčítať dni Add or Subtract days option Dátum Date result label Rozdiel medzi dátumami Date difference option Dni Add/Subtract Days label Rozdiel Difference result label Od From Date Header for Difference Date Picker Mesiace Add/Subtract Months label Odčítať Subtract toggle button text Do To Date Header for Difference Date Picker Roky Add/Subtract Years label Dátum mimo rozsahu Out of bound message shown as result when the date calculation exceeds the bounds deň dni mesiac mesiace Rovnaké dátumy týždeň týždne rok roky Rozdiel %1 Automation name for reading out the date difference. %1 = Date difference Výsledný dátum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Režim kalkulačky %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Režim konvertora %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Režim výpočtu dátumu Automation name for when the mode header is focused and the current mode is Date calculation. Zoznamy histórie a pamäte Automation name for the group of controls for history and memory lists. Ovládacie prvky pamäte Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Štandardné funkcie Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Ovládacie prvky zobrazenia Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Štandardné operátory Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerická klávesnica Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operátory uhlov Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Vedecké funkcie Automation name for the group of Scientific functions. Výber základu sústavy Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operátory programátorov Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Výber režimu vstupu Automation name for the group of input mode toggling buttons. Numerická klávesnica s prepínaním bitov Automation name for the group of bit toggling buttons. Výraz posúvania doľava Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Výraz posúvania doprava Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Dosiahol sa maximálny počet číslic. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 uložené do pamäte {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Pamäťová zásuvka %1 je zmenená na %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Pamäťový slot %1 bol vymazaný {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". delené Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. krát Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. mínus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. umocnené na Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. odmocnina y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. modulo Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ľavý posun Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. pravý posun Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. alebo Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. vylučujúce alebo Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. a Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Aktualizované %1 o %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Aktualizovať kurz The text displayed for a hyperlink button that refreshes currency converter ratios. Prenos údajov môže byť spoplatnený. The text displayed when users are on a metered connection and using currency converter. Nový kurz sa nepodarilo získať. Skúste to znova neskôr. The text displayed when currency ratio data fails to load. Služba je offline. Skontrolujte svoje %HL%nastavenia siete%HL%. Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Aktualizujú sa menové kurzy This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Menové kurzy boli aktualizované. This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Kurzy sa nepodarilo aktualizovať This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} l AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Vymazať celú pamäť (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Vymazať celú pamäť Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sínus, stupne Name for the sine function in degrees mode. Used by screen readers. sínus, radiány Name for the sine function in radians mode. Used by screen readers. sínus, grády Name for the sine function in gradians mode. Used by screen readers. inverzný sínus, stupne Name for the inverse sine function in degrees mode. Used by screen readers. inverzný sínus, radiány Name for the inverse sine function in radians mode. Used by screen readers. inverzný sínus, grády Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolický sínus Name for the hyperbolic sine function. Used by screen readers. inverzný hyperbolický sínus Name for the inverse hyperbolic sine function. Used by screen readers. kosínus, stupne Name for the cosine function in degrees mode. Used by screen readers. kosínus, radiány Name for the cosine function in radians mode. Used by screen readers. kosínus, grády Name for the cosine function in gradians mode. Used by screen readers. inverzný kosínus, stupne Name for the inverse cosine function in degrees mode. Used by screen readers. inverzný kosínus, radiány Name for the inverse cosine function in radians mode. Used by screen readers. inverzný kosínus, grády Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolický kosínus Name for the hyperbolic cosine function. Used by screen readers. inverzný hyperbolický kosínus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens, stupne Name for the tangent function in degrees mode. Used by screen readers. tangens, radiány Name for the tangent function in radians mode. Used by screen readers. tangens, grády Name for the tangent function in gradians mode. Used by screen readers. inverzný tangens, stupne Name for the inverse tangent function in degrees mode. Used by screen readers. inverzný tangens, radiány Name for the inverse tangent function in radians mode. Used by screen readers. inverzný tangens, grády Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolický tangens Name for the hyperbolic tangent function. Used by screen readers. inverzný hyperbolický tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekans, stupne Name for the secant function in degrees mode. Used by screen readers. sekans, radiány Name for the secant function in radians mode. Used by screen readers. sekans, gradiány Name for the secant function in gradians mode. Used by screen readers. inverzný sekans, stupne Name for the inverse secant function in degrees mode. Used by screen readers. inverzný sekans, radiány Name for the inverse secant function in radians mode. Used by screen readers. inverzný sekans, gradiány Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolický sekans Name for the hyperbolic secant function. Used by screen readers. inverzný hyperbolický sekans Name for the inverse hyperbolic secant function. Used by screen readers. kosekans, stupne Name for the cosecant function in degrees mode. Used by screen readers. kosekans, radiány Name for the cosecant function in radians mode. Used by screen readers. kosekans, gradiány Name for the cosecant function in gradians mode. Used by screen readers. inverzný kosekans, stupne Name for the inverse cosecant function in degrees mode. Used by screen readers. inverzný kosekans, radiány Name for the inverse cosecant function in radians mode. Used by screen readers. inverzný kosekans, gradiány Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolický kosekans Name for the hyperbolic cosecant function. Used by screen readers. inverzný hyperbolický kosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. kotangens, stupne Name for the cotangent function in degrees mode. Used by screen readers. Kotangens, radiány Name for the cotangent function in radians mode. Used by screen readers. kotangens, gradiány Name for the cotangent function in gradians mode. Used by screen readers. inverzný kotangens, stupne Name for the inverse cotangent function in degrees mode. Used by screen readers. inverzný kotangens, radiány Name for the inverse cotangent function in radians mode. Used by screen readers. inverzný kotangens, gradiány Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolický kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverzný hyperbolický kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Tretia odmocnina Name for the cube root function. Used by screen readers. Logaritmický základ Name for the logbasey function. Used by screen readers. Absolútna hodnota Name for the absolute value function. Used by screen readers. ľavý posun Name for the programmer function that shifts bits to the left. Used by screen readers. pravý posun Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriál Name for the factorial function. Used by screen readers. stupeň minúta sekunda Name for the degree minute second (dms) function. Used by screen readers. prirodzený logaritmus Name for the natural log (ln) function. Used by screen readers. štvorec Name for the square function. Used by screen readers. odmocnina y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategória: %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Zmluva o poskytovaní služieb spoločnosti Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Od From Date Header for AddSubtract Date Picker Posunúť výsledok výpočtu doľava Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Posunúť výsledok výpočtu doprava Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Výpočet zlyhal Text displayed when the application is not able to do a calculation Logaritmický základ Y Screen reader prompt for the logBaseY button Trigonometria Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcia Displayed on the button that contains a flyout for the general functions in scientific mode. Nerovnosti Displayed on the button that contains a flyout for the inequality functions. Nerovnosti Screen reader prompt for the Inequalities button Bitový operátor Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitový posun Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverzná funkcia Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolická funkcia Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolický sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkussekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolický arkussekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolický kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkuskosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolický arkuskosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolický kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkuskotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolický arkuskotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Dolný limit Screen reader prompt for the Calculator button floor in the scientific flyout keypad Horný limit Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Náhodné Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolútna hodnota Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerovo číslo Screen reader prompt for the Calculator button e in the scientific flyout keypad Dva na exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Otočiť doľava s prevodom Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Otočiť doprava s prevodom Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Ľavý posun Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Ľavý posun Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Pravý posun Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Pravý posun Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetický posun Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logický posun Label for a radio button that toggles logical shift behavior for the shift operations. Cyklický posun Otočiť Label for a radio button that toggles rotate circular behavior for the shift operations. Cyklický posun Otočiť cez prevod Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Tretia odmocnina Screen reader prompt for the cube root button on the scientific operator keypad Trigonometria Screen reader prompt for the square root button on the scientific operator keypad Funkcie Screen reader prompt for the square root button on the scientific operator keypad Bitový operátor Screen reader prompt for the square root button on the scientific operator keypad Bitový posun Screen reader prompt for the square root button on the scientific operator keypad Panely vedeckých operátorov Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panely operátorov programátorov Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad najvýznamnejší bit Used to describe the last bit of a binary number. Used in bit flip Grafická kalkulačka Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Vykresliť Screen reader prompt for the plot button on the graphing calculator operator keypad Automaticky obnoviť zobrazenie (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Zobrazenie grafu Screen reader prompt for the graph view button. Automatické najlepšie prispôsobenie Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuálna úprava Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Zobrazenie grafu bolo resetované Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Priblížiť (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Priblížiť Screen reader prompt for the zoom in button. Vzdialiť (Ctrl + mínus) This is the tool tip automation name for the Calculator zoom out button. Vzdialiť Screen reader prompt for the zoom out button. Pridať rovnicu Placeholder text for the equation input button Momentálne nie je možné zdieľať. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Pozrite sa, aký graf sa mi podarilo urobiť s Windows Kalkulačkou Sent as part of the shared content. The title for the share. Rovnice Header that appears over the equations section when sharing Premenné Header that appears over the variables section when sharing Obrázok grafu s rovnicami Alt text for the graph image when output via Share Premenné Header text for variables area Krok Label text for the step text box Min Label text for the min text box Max Label text for the max text box Farba Label for the Line Color section of the style picker Výpočet štýlu Label for the Line Style section of the style picker Analýza funkcií Title for KeyGraphFeatures Control Funkcia nemá žiadne vodorovné asymptoty. Message displayed when the graph does not have any horizontal asymptotes Funkcia nemá žiadne inflexné body. Message displayed when the graph does not have any inflection points Funkcia nemá žiadne maximálne body. Message displayed when the graph does not have any maxima Funkcia nemá žiadne minimálne body. Message displayed when the graph does not have any minima Konštanta String describing constant monotonicity of a function Klesajúca String describing decreasing monotonicity of a function Nie je možné určiť monotónnosť funkcie. Error displayed when monotonicity cannot be determined Rastúca String describing increasing monotonicity of a function Monotónnosť funkcie nie je známa. Error displayed when monotonicity is unknown Funkcia nemá žiadne šikmé asymptoty. Message displayed when the graph does not have any oblique asymptotes Nie je možné určiť paritu funkcie. Error displayed when parity is cannot be determined Funkcia je párna. Message displayed with the function parity is even Funkcia nie je ani párna, ani nepárna. Message displayed with the function parity is neither even nor odd Funkcia je nepárna. Message displayed with the function parity is odd Parita funkcie je neznáma. Error displayed when parity is unknown Periodicita nie je pre túto funkciu podporovaná. Error displayed when periodicity is not supported Funkcia nie je periodická. Message displayed with the function periodicity is not periodic Periodicita funkcie je neznáma. Message displayed with the function periodicity is unknown Tieto funkcie sú pre Kalkulačku príliš zložité na vypočítanie: Error displayed when analysis features cannot be calculated Funkcia nemá žiadne zvislé asymptoty. Message displayed when the graph does not have any vertical asymptotes Funkcia nemá žiadne priesečníky s osou X. Message displayed when the graph does not have any x-intercepts Funkcia nemá žiadne priesečníky s osou Y. Message displayed when the graph does not have any y-intercepts Definičný obor Title for KeyGraphFeatures Domain Property Horizontálne asymptoty Title for KeyGraphFeatures Horizontal aysmptotes Property Inflexné body Title for KeyGraphFeatures Inflection points Property Analýza nie je pre túto funkciu podporovaná. Error displayed when graph analysis is not supported or had an error. Analýza je podporovaná iba pre funkcie vo formáte f(x). Príklad: y=x Error displayed when graph analysis detects the function format is not f(x). Maxima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotónnosť Title for KeyGraphFeatures Monotonicity Property Šikmé asymptoty Title for KeyGraphFeatures Oblique asymptotes Property Parita Title for KeyGraphFeatures Parity Property Cyklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Rozsah Title for KeyGraphFeatures Range Property Vertikálne asymptoty Title for KeyGraphFeatures Vertical asymptotes Property Priesečník s osou X Title for KeyGraphFeatures XIntercept Property Priesečník s osou Y Title for KeyGraphFeatures YIntercept Property Pre funkciu sa nepodarilo vykonať analýzu. Pre túto funkciu nie je možné vypočítať definičný obor. Error displayed when Domain is not returned from the analyzer. Pre túto funkciu nie je možné vypočítať rozsah. Error displayed when Range is not returned from the analyzer. Pretečenie (číslo je príliš veľké) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Na znázornenie tejto rovnice sa vyžaduje režim radiánov. Error that occurs during graphing when radians is required. Táto funkcia je príliš zložitá na znázornenie Error that occurs during graphing when the equation is too complex. Na znázornenie tejto funkcie sa vyžaduje režim stupňov Error that occurs during graphing when degrees is required Funkcia faktoriálu obsahuje neplatný argument Error that occurs during graphing when a factorial function has an invalid argument. Funkcia faktoriálu obsahuje argument, ktorý je príliš veľký na znázornenie Error that occurs during graphing when a factorial has a large n Operácia modulo sa dá použiť len s celými číslami Error that occurs during graphing when modulo is used with a float. Rovnica nemá riešenie Error that occurs during graphing when the equation has no solution. Nulou nemožno deliť Error that occurs during graphing when a divison by zero occurs. Rovnica obsahuje logické podmienky, ktoré sa vzájomne vylučujú Error that occurs during graphing when mutually exclusive conditions are used. Rovnica je mimo domény Error that occurs during graphing when the equation is out of domain. Znázornenie tejto rovnice v grafe nie je podporované Error that occurs during graphing when the equation is not supported. V rovnici chýba ľavá zátvorka Error that occurs during graphing when the equation is missing a ( V rovnici chýba pravá zátvorka Error that occurs during graphing when the equation is missing a ) Číslo v čísle je príliš veľa desatinných miest Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Za desatinnou čiarkou chýbajú číslice Error that occurs during graphing with a decimal point without digits Neočakávaný koniec výrazu Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Neočakávané znaky vo výraze Error that occurs during graphing when there is an unexpected token. Neplatné znaky vo výraze Error that occurs during graphing when there is an invalid token. Príliš veľa znakov rovnosti. Error that occurs during graphing when there are too many equals. Funkcia musí obsahovať aspoň jednu premennú x alebo y Error that occurs during graphing when the equation is missing x or y. Neplatný výraz Error that occurs during graphing when an invalid syntax is used. Výraz je prázdny Error that occurs during graphing when the expression is empty Znak rovnosti sa použil bez rovnice Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Chýba zátvorka za názvom funkcie Error that occurs during graphing when parenthesis are missing after a function. Matematická operácia obsahuje nesprávny počet parametrov Error that occurs during graphing when a function has the wrong number of parameters Názov premennej je neplatný Error that occurs during graphing when a variable name is invalid. V rovnici chýba ľavá hranatá zátvorka Error that occurs during graphing when a { is missing V rovnici chýba pravá hranatá zátvorka Error that occurs during graphing when a } is missing. „i“ a „I“ sa nemôžu používať ako názvy premenných Error that occurs during graphing when i or I is used. Rovnicu nie je možné znázorniť General error that occurs during graphing. Číslicu nie je možné vyriešiť pre daný základ Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Základ musí byť väčšie ako 2 a menšie než 36 Error that occurs during graphing when the base is out of range. Matematická operácia vyžaduje, aby niektorý z jej parametrov bol premennou Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. V rovnici sa kombinujú logické a skalárne operandy Error that occurs during graphing when operands are mixed. Such as true and 1. x alebo y sa nemôžu používať v hornom ani dolnom limite Error that occurs during graphing when x or y is used in integral upper limits. x alebo y sa nemôžu používať v hromadnom bode Error that occurs during graphing when x or y is used in the limit point. Nie je možné použiť komplexné nekonečno Error that occurs during graphing when complex infinity is used V nerovnostiach nie je možné používať komplexné čísla Error that occurs during graphing when complex numbers are used in inequalities. Späť na zoznam funkcií This is the tooltip for the back button in the equation analysis page in the graphing calculator Späť na zoznam funkcií This is the automation name for the back button in the equation analysis page in the graphing calculator Analyzovať funkciu This is the tooltip for the analyze function button Analyzovať funkciu This is the automation name for the analyze function button Analyzovať funkciu This is the text for the for the analyze function context menu command Odstrániť rovnicu This is the tooltip for the graphing calculator remove equation buttons Odstrániť rovnicu This is the automation name for the graphing calculator remove equation buttons Odstrániť rovnicu This is the text for the for the remove equation context menu command Zdieľať This is the automation name for the graphing calculator share button. Zdieľať This is the tooltip for the graphing calculator share button. Zmeniť štýl rovnice This is the tooltip for the graphing calculator equation style button Zmeniť štýl rovnice This is the automation name for the graphing calculator equation style button Zmeniť štýl rovnice This is the text for the for the equation style context menu command Zobraziť rovnicu This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Skryť rovnicu This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Zobraziť rovnicu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Skryť rovnicu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Zastaviť sledovanie This is the tooltip/automation name for the graphing calculator stop tracing button Spustiť sledovanie This is the tooltip/automation name for the graphing calculator start tracing button Okno na zobrazenie grafu, OS x vyznačený %1 a %2, os y vyznačený %3 a %4, zobrazovať %5 rovnice {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurovať jazdec This is the tooltip text for the slider options button in Graphing Calculator Konfigurovať jazdec This is the automation name text for the slider options button in Graphing Calculator Prepnúť na režim rovnice Used in Graphing Calculator to switch the view to the equation mode Prepnúť na režim grafu Used in Graphing Calculator to switch the view to the graph mode Prepnúť na režim rovnice Used in Graphing Calculator to switch the view to the equation mode Aktuálne sa používa režim rovnice Announcement used in Graphing Calculator when switching to the equation mode Aktuálne sa používa režim grafu Announcement used in Graphing Calculator when switching to the graph mode Okno Heading for window extents on the settings Stupne Degrees mode on settings page Gradiány Gradian mode on settings page Radiány Radians mode on settings page Jednotky Heading for Unit's on the settings Obnoviť Hyperlink button to reset the view of the graph X – max X maximum value header X – min X minimum value header Y – max Y Maximum value header Y – min Y minimum value header Možnosti grafu This is the tooltip text for the graph options button in Graphing Calculator Možnosti grafu This is the automation name text for the graph options button in Graphing Calculator Možnosti grafu Heading for the Graph options flyout in Graphing mode. Možnosti premennej Screen reader prompt for the variable settings toggle button Prepínať možnosti premennej Tool tip for the variable settings toggle button Hrúbka čiary Heading for the Graph options flyout in Graphing mode. Možnosti čiary Heading for the equation style flyout in Graphing mode. Šírka malej čiary Automation name for line width setting Šírka strednej čiary Automation name for line width setting Šírka veľkej čiary Automation name for line width setting Šírka veľmi veľkej čiary Automation name for line width setting Zadajte výraz this is the placeholder text used by the textbox to enter an equation Kopírovať Copy menu item for the graph context menu Vystrihnúť Cut menu item from the Equation TextBox Kopírovať Copy menu item from the Equation TextBox Prilepiť Paste menu item from the Equation TextBox Zrušiť zmenu Undo menu item from the Equation TextBox Vybrať všetko Select all menu item from the Equation TextBox Vstup funkcie The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Vstup funkcie The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Panel vstupov funkcie The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Panel premenných The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Zoznam premenných The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Položka zoznamu premenných %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Textové pole hodnoty premennej The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Posúvač hodnoty premennej The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textové pole minimálnej hodnoty premennej The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textové pole hodnoty kroku premennej The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textové pole maximálnej hodnoty premennej The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Štýl plnej čiary Name of the solid line style for a graphed equation Štýl bodkovanej čiary Name of the dotted line style for a graphed equation Štýl čiarkovanej čiary Name of the dashed line style for a graphed equation Námornícka modrá Name of color in the color picker Svetlozelená Name of color in the color picker Fialová Name of color in the color picker Zelená Name of color in the color picker Mätová Name of color in the color picker Tmavozelená Name of color in the color picker Čiernosivá Name of color in the color picker Červená Name of color in the color picker Svetlá slivková Name of color in the color picker Purpurová Name of color in the color picker Zlatožltá Name of color in the color picker Jasnooranžová Name of color in the color picker Hnedá Name of color in the color picker Čierna Name of color in the color picker Biela Name of color in the color picker Farba 1 Name of color in the color picker Farba 2 Name of color in the color picker Farba 3 Name of color in the color picker Farba 4 Name of color in the color picker Motív grafu Graph settings heading for the theme options Vždy svetlé Graph settings option to set graph to light theme Zhoda s motívom aplikácie Graph settings option to set graph to match the app theme Motív This is the automation name text for the Graph settings heading for the theme options Vždy svetlé This is the automation name text for the Graph settings option to set graph to light theme Zhoda s motívom aplikácie This is the automation name text for the Graph settings option to set graph to match the app theme Funkcia odstránená Announcement used in Graphing Calculator when a function is removed from the function list Pole rovnice v analýze funkcie This is the automation name text for the equation box in the function analysis panel Rovná sa Screen reader prompt for the equal button on the graphing calculator operator keypad Menej ako Screen reader prompt for the Less than button Menší alebo rovný Screen reader prompt for the Less than or equal button Rovná sa Screen reader prompt for the Equal button Väčší alebo rovný Screen reader prompt for the Greater than or equal button Väčší ako Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Odoslať Screen reader prompt for the submit button on the graphing calculator operator keypad Analýza funkcií Screen reader prompt for the function analysis grid Možnosti grafu Screen reader prompt for the graph options panel Zoznamy histórie a pamäte Automation name for the group of controls for history and memory lists. Zoznam pamäte Automation name for the group of controls for memory list. Úsek histórie %1 bol vymazaný {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulačka je vždy navrchu Announcement to indicate calculator window is always shown on top. Kalkulačka sa vrátila do úplného zobrazenia Announcement to indicate calculator window is now back to full view. Vybratá možnosť Aritmetický posun Label for a radio button that toggles arithmetic shift behavior for the shift operations. Vybratá možnosť Logický posun Label for a radio button that toggles logical shift behavior for the shift operations. Vybratá možnosť Cyklický posun Otočiť Label for a radio button that toggles rotate circular behavior for the shift operations. Vybratá možnosť Cyklický posun Otočiť cez prevod Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Nastavenia Header text of Settings page Vzhľad Subtitle of appearance setting on Settings page Motív aplikácie Title of App theme expander Vyberte, ktorý motív aplikácie sa má zobraziť Description of App theme expander Svetlý Lable for light theme option Tmavý Lable for dark theme option Použiť nastavenie systému Lable for the app theme option to use system setting Naspäť Screen reader prompt for the Back button in title bar to back to main page Stránka Nastavenia Announcement used when Settings page is opened Otvoriť kontextovú ponuku pre dostupné akcie Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Túto snímku sa nepodarilo obnoviť. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/sl-SI/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Neveljaven vnos Error message shown when the input makes a function fail, like log(-1) Rezultat je nedefiniran Error message shown when there's no possible value for a function. Ni dovolj prostora za shranjevanje Error message shown when we run out of memory during a calculation. Prekoračitev obsega Error message shown when there's an overflow during the calculation. Rezultat ni definiran Same as 101 Rezultat ni definiran Same 101 Prekoračitev obsega Same as 107 Prekoračitev obsega Same 107 Deljenje z ničlo ni dovoljeno Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/sl-SI/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kalkulator Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Kalkulator Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiraj Copy context menu string Prilepi Paste context menu string Je približno enako The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, vrednost %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip najmanj pomemben bit Used to describe the first bit of a binary number. Used in bit flip Odpri pojavni meni shranjevanja This is the automation name and label for the memory button when the memory flyout is closed. Zapri pojavni meni shranjevanja This is the automation name and label for the memory button when the memory flyout is open. Obdrži na vrhu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Nazaj na celozaslonski pogled This is the tool tip automation name for the always-on-top button when in always-on-top mode. Shranjevanje This is the tool tip automation name for the memory button. Zgodovina (Ctrl + H) This is the tool tip automation name for the history button. Številčnica za preklapljanje bitov This is the tool tip automation name for the bitFlip button. Cela številčnica This is the tool tip automation name for the numberPad button. Počisti celoten prostor za shranjevanje (Ctrl + L) This is the tool tip automation name for the Clear Memory (MC) button. Shranjevanje The text that shows as the header for the memory list Shranjevanje The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Zgodovina The text that shows as the header for the history list Zgodovina The automation name for the History pivot item that is shown when Calculator is in wide layout. Pretvorniški Label for a control that activates the unit converter mode. Znanstveni Label for a control that activates scientific mode calculator layout Standardni Label for a control that activates standard mode calculator layout. Pretvorniški način Screen reader prompt for a control that activates the unit converter mode. Znanstveni način Screen reader prompt for a control that activates scientific mode calculator layout Standardni način Screen reader prompt for a control that activates standard mode calculator layout. Počisti vso zgodovino "ClearHistory" used on the calculator history pane that stores the calculation history. Počisti vso zgodovino This is the tool tip automation name for the Clear History button. Skrij "HideHistory" used on the calculator history pane that stores the calculation history. Standardni The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Znanstveni The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programerski The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Pretvornik The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Pretvornik The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Pretvorniki Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatorji Pluralized version of the calculator group text, used for the screen reader prompt. Prikaz je %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Izraz je %1, trenutni vnos je %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Prikaz je %1 cela {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Izraz je %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Vrednost prikaza kopirana v odložišče Screen reader prompt for the Calculator display copy button, when the button is invoked. Zgodovina Screen reader prompt for the history flyout Shranjevanje Screen reader prompt for the memory flyout Šestnajstiško %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimalno %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Osmiško %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Dvojiško %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Počisti vso zgodovino Screen reader prompt for the Calculator History Clear button Zgodovina izbrisana Screen reader prompt for the Calculator History Clear button, when the button is invoked. Skrij zgodovino Screen reader prompt for the Calculator History Hide button Odpri pojavni meni zgodovine Screen reader prompt for the Calculator History button, when the flyout is closed. Zapri pojavni meni zgodovine Screen reader prompt for the Calculator History button, when the flyout is open. Prostor za shranjevanje Screen reader prompt for the Calculator Memory button Prostor za shranjevanje (Ctrl + M) This is the tool tip automation name for the Memory Store (MS) button. Počisti celoten prostor za shranjevanje Screen reader prompt for the Calculator Clear Memory button Shranjevanje je počiščeno Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Priklic shranjevanja Screen reader prompt for the Calculator Memory Recall button Priklic shranjevanja (Ctrl + R) This is the tool tip automation name for the Memory Recall (MR) button. Seštevanje s shranjevanjem Screen reader prompt for the Calculator Memory Add button Seštevanje s shranjevanjem (Ctrl + P) This is the tool tip automation name for the Memory Add (M+) button. Odštevanje s shranjevanjem Screen reader prompt for the Calculator Memory Subtract button Odštevanje s shranjevanjem (Ctrl + Q) This is the tool tip automation name for the Memory Subtract (M-) button. Počisti element shranjevanja Screen reader prompt for the Calculator Clear Memory button Počisti element shranjevanja This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Prištej k elementu shranjevanja Screen reader prompt for the Calculator Memory Add button in the Memory list Prištej k elementu shranjevanja This is the tool tip automation name for the Calculator Memory Add button in the Memory list Odštej od elementa shranjevanja Screen reader prompt for the Calculator Memory Subtract button in the Memory list Odštej od elementa shranjevanja This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Počisti element shranjevanja Screen reader prompt for the Calculator Clear Memory button Počisti element shranjevanja Text string for the Calculator Clear Memory option in the Memory list context menu Prištej k elementu shranjevanja Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Prištej k elementu shranjevanja Text string for the Calculator Memory Add option in the Memory list context menu Odštej od elementa shranjevanja Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Odštej od elementa shranjevanja Text string for the Calculator Memory Subtract option in the Memory list context menu Izbriši Text string for the Calculator Delete swipe button in the History list Kopiraj Text string for the Calculator Copy option in the History list context menu Izbriši Text string for the Calculator Delete option in the History list context menu Izbrišite element zgodovine Screen reader prompt for the Calculator Delete swipe button in the History list Izbrišite element zgodovine Screen reader prompt for the Calculator Delete option in the History list context menu Vračalka Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nič Screen reader prompt for the Calculator number "0" button Ena Screen reader prompt for the Calculator number "1" button Dva Screen reader prompt for the Calculator number "2" button Tri Screen reader prompt for the Calculator number "3" button Štiri Screen reader prompt for the Calculator number "4" button Pet Screen reader prompt for the Calculator number "5" button Šest Screen reader prompt for the Calculator number "6" button Sedem Screen reader prompt for the Calculator number "7" button Osem Screen reader prompt for the Calculator number "8" button Devet Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button In Screen reader prompt for the Calculator And button Ali Screen reader prompt for the Calculator Or button Ne Screen reader prompt for the Calculator Not button Zavrti na levi Screen reader prompt for the Calculator ROL button Zavrti na desni Screen reader prompt for the Calculator ROR button Pomik levo Screen reader prompt for the Calculator LSH button Pomik desno Screen reader prompt for the Calculator RSH button Izključno ali Screen reader prompt for the Calculator XOR button Preklopni gumb za četverne besede Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Preklopni gumb za dvojne besede Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Preklopni gumb za besede Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Preklopni gumb za bajte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Številčnica za preklapljanje bitov Screen reader prompt for the Calculator bitFlip button Cela številčnica Screen reader prompt for the Calculator numberPad button Decimalno ločilo Screen reader prompt for the "." button Počisti vnos Screen reader prompt for the "CE" button Počisti Screen reader prompt for the "C" button Deli z Screen reader prompt for the divide button on the number pad Pomnoži z Screen reader prompt for the multiply button on the number pad Je enako Screen reader prompt for the equals button on the scientific operator keypad Inverzna funkcija Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Kvadratni koren Screen reader prompt for the square root button on the scientific operator keypad Odstotek Screen reader prompt for the percent button on the scientific operator keypad Pozitivno, negativno Screen reader prompt for the negate button on the scientific operator keypad Pozitivno, negativno Screen reader prompt for the negate button on the converter operator keypad Obratna vrednost Screen reader prompt for the invert button on the scientific operator keypad Levi oklepaj Screen reader prompt for the Calculator "(" button on the scientific operator keypad Levi oklepaj, število oklepajev %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Desni oklepaj Screen reader prompt for the Calculator ")" button on the scientific operator keypad Število začetnih oklepajev: %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Ni začetnih oklepajev, ki bi potrebovali končnega. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Znanstveni zapis Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolična funkcija Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolični sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolični kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolični tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kocka Screen reader prompt for the x cubed on the scientific operator keypad. Arkus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkus kosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolični arkus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolični arkus kosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperbolični arkus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. »X« na potenco Screen reader prompt for x power y button on the scientific operator keypad. Deset na potenco Screen reader prompt for the 10 power x button on the scientific operator keypad. »e« na potenco Screen reader for the e power x on the scientific operator keypad. Koren »y« od »x« Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritem Screen reader for the log base 10 on the scientific operator keypad Naravni logaritem Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Eksponentno Screen reader for the exp button on the scientific operator keypad Stopinja minuta sekunda Screen reader for the exp button on the scientific operator keypad Stopinje Screen reader for the exp button on the scientific operator keypad Celoštevilski del Screen reader for the int button on the scientific operator keypad Ulomek Screen reader for the frac button on the scientific operator keypad Fakulteta Screen reader for the factorial button on the basic operator keypad Preklopni gumb za stopinje This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Preklopni gumb za grade This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Preklopni gumb za radiane This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Spustno polje »Način« Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Spustno polje »Kategorije« Screen reader prompt for the Categories dropdown field. Obdrži na vrhu Screen reader prompt for the Always-on-Top button when in normal mode. Nazaj na celozaslonski pogled Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Ohrani na vrhu (Alt + puščica gor) This is the tool tip automation name for the Always-on-Top button when in normal mode. Nazaj na celozaslonski prikaz (Alt + puščica dol) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Pretvori iz %1%2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Pretvori iz %1cela %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Pretvori v %1%2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1%2 je %3%4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Vhodna enota Screen reader prompt for the Unit Converter Units1 i.e. top units field. Izhodna enota Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Površina Unit conversion category name called Area (eg. area of a sports field in square meters) Podatki Unit conversion category name called Data Energija Unit conversion category name called Energy. (eg. the energy in a battery or in food) Dolžina Unit conversion category name called Length Moč Unit conversion category name called Power (eg. the power of an engine or a light bulb) Hitrost Unit conversion category name called Speed Čas Unit conversion category name called Time Količina Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Teža in masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tlak Unit conversion category name called Pressure Kot Unit conversion category name called Angle Valuta Unit conversion category name called Currency Tekočinske unče (ZK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tekočinska unča (ZK) An abbreviation for a measurement unit of volume Tekočinske unče (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tekočinska unča (ZDA) An abbreviation for a measurement unit of volume Galone (ZK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galona (ZK) An abbreviation for a measurement unit of volume Galone (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) galona (ZDA) An abbreviation for a measurement unit of volume Litri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pinte (ZK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pinta (ZK) An abbreviation for a measurement unit of volume Pinte (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pinta (ZDA) An abbreviation for a measurement unit of volume Jedilne žlice (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jedilna žlica (ZDA) An abbreviation for a measurement unit of volume Čajne žličke (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) čajna žlička (ZDA) An abbreviation for a measurement unit of volume Jedilne žlice (ZK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jedilna žlica (ZK) An abbreviation for a measurement unit of volume Čajne žličke (ZK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) čajna žlička (ZK) An abbreviation for a measurement unit of volume Kvarti (ZK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvart (ZK) An abbreviation for a measurement unit of volume Kvarti (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kvart (ZDA) An abbreviation for a measurement unit of volume Skodelice (ZDA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skodelica (ZDA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed J An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area KM(ZDA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power vozel An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mi/h An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length NM An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data J/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power t An abbreviation for a measurement unit of time jard An abbreviation for a measurement unit of length lt An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data polbajt An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Biti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britanske termalne enote A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/min A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorije A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetri na sekundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubični centimetri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubični čevlji A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubični palci A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubični metri A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubični jardi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dnevi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celzij An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronvolti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čevlji A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čevlji na sekundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čevelj-funti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čevelj-funti/minuto A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektarji A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Konjska moč (ZDA) A measurement unit for power Ure A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Palci A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Džuli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatne ure A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) KB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilokalorije A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodžuli A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometri na uro A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovati A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vozli A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mah A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) MB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metri na sekundo A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikroni A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje na uro A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minute A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Polbajt A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometri A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstremi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Navtične milje A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekunde A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni centimetri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni čevlji A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni palci A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni kilometri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni metri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratne milje A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni milimetri A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratni jardi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vati A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tedni A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Leta A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight st. An abbreviation for a measurement unit of Angle rad. An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure bar An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure lb/in² An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight t (ZK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight t (ZDA) An abbreviation for a measurement unit of weight stone (6,35 kg) An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karati A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopinja A measurement unit for Angle. Radian A measurement unit for Angle. Grad A measurement unit for Angle. Atmosfera A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopaskal A measurement unit for Pressure. Milimeter živega srebra A measurement unit for Pressure. Paskal A measurement unit for Pressure. Funt na kvadratni palec A measurement unit for Pressure. Centigrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrami A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dolge tone (ZK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligrami A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unče A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Funti A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kratke tone (ZDA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone (6,35 kg) A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tone A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ji A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ji A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometna igrišča A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometna igrišča A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) diskete A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ji A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ji A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterije AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterije AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sponke A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sponke A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) velika potniška letala A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) velika potniška letala A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žarnice A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) žarnice A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konji A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konji A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kopalne kadi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kopalne kadi A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snežinke A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snežinke A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sloni An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sloni An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) želve A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) želve A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktivna letala A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) reaktivna letala A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kiti A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kiti A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skodelice za kavo A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) skodelice za kavo A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plavalni bazeni An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) plavalni bazeni An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) roke A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) roke A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listi papirja A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listi papirja A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gradovi A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gradovi A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rezine torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) rezine torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotive A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotive A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometne žoge A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) nogometne žoge A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Element shranjevanja Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Nazaj Screen reader prompt for the About panel back button Nazaj Content of tooltip being displayed on AboutControlBackButton Licenčni pogoji za Microsoftovo programsko opremo Displayed on a link to the Microsoft Software License Terms on the About panel Predogled Label displayed next to upcoming features Microsoftova izjavao zasebnosti Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Vse pravice pridržane. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Če želite izvedeti, kako lahko prispeva v Windows računalo, si oglejte projekt v %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Vizitka Subtitle of about message on Settings page Pošlji povratne informacije The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Zgodovine še ni. The text that shows as the header for the history list Ničesar ni v prostoru za shranjevanje. The text that shows as the header for the memory list Shranjevanje Screen reader prompt for the negate button on the converter operator keypad Tega izraza ni mogoče prilepiti The paste operation cannot be performed, if the expression is invalid. Gib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) KiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) MiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) EB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbi bajti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ZB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ZiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jottabiti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabajti A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) YiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Izračun datuma Način izračuna Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Dodaj Add toggle button text Dodaj ali odvzemi dneve Add or Subtract days option Datum Date result label Razlika med datumi Date difference option Dnevi Add/Subtract Days label Razlika Difference result label Od From Date Header for Difference Date Picker Meseci Add/Subtract Months label Odvzemi Subtract toggle button text Do To Date Header for Difference Date Picker Leta Add/Subtract Years label Datum izven časovnega okvirja Out of bound message shown as result when the date calculation exceeds the bounds dan dnevi mesec meseci Enaki datumi teden tedni leto leta Razlika %1 Automation name for reading out the date difference. %1 = Date difference Nastali datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Način kalkulatorja %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Način pretvornika %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Način za izračun datuma Automation name for when the mode header is focused and the current mode is Date calculation. Seznama zgodovine in shranjevanja Automation name for the group of controls for history and memory lists. Kontrolniki shranjevanja Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardne funkcije Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kontrolniki prikaza Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardni operatorji Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Številska tipkovnica Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Kotni operatorji Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Znanstvene funkcije Automation name for the group of Scientific functions. Izbira osnove Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programerski operatorji Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Izbira načina vnosa Automation name for the group of input mode toggling buttons. Številčnica za preklapljanje bitov Automation name for the group of bit toggling buttons. Premakni izraz v levo Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Premakni izraz v desno Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Doseženo je največje dovoljeno število števk. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Vrednost %1 je shranjena {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Mesto shranjevanja %1 je %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Mesto shranjevanja %1 je izbrisano {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". deljeno s/z Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. krat Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. na potenco Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. kvadratni koren Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. pomik levo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. pomik desno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ali Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ali Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. in Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Posodobljeno %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Posodobi menjalne tečaje The text displayed for a hyperlink button that refreshes currency converter ratios. Nastanejo lahko stroški prenosa podatkov. The text displayed when users are on a metered connection and using currency converter. Novih menjalnih tečajev ni bilo mogoče pridobiti. Poskusite znova pozneje. The text displayed when currency ratio data fails to load. Brez povezave. Preverite %HL%nastavitve omrežja%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Posodabljanje menjalnih tečajev This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Menjalni tečaji posodobljeni This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Menjalnih tečajev ni bilo mogoče posodobiti This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Počisti celoten prostor za shranjevanje (Ctrl + L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Počisti celoten prostor za shranjevanje Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus v stopinjah Name for the sine function in degrees mode. Used by screen readers. sinus v radianih Name for the sine function in radians mode. Used by screen readers. sinus v gradianih Name for the sine function in gradians mode. Used by screen readers. inverzni sinus v stopinjah Name for the inverse sine function in degrees mode. Used by screen readers. inverzni sinus v radianih Name for the inverse sine function in radians mode. Used by screen readers. inverzni sinus v gradianih Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolični sinus Name for the hyperbolic sine function. Used by screen readers. inverzni hiperbolični sinus Name for the inverse hyperbolic sine function. Used by screen readers. kosinus v stopinjah Name for the cosine function in degrees mode. Used by screen readers. kosinus v radianih Name for the cosine function in radians mode. Used by screen readers. kosinus v gradianih Name for the cosine function in gradians mode. Used by screen readers. inverzni kosinus v stopinjah Name for the inverse cosine function in degrees mode. Used by screen readers. inverzni kosinus v radianih Name for the inverse cosine function in radians mode. Used by screen readers. inverzni kosinus v gradianih Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolični kosinus Name for the hyperbolic cosine function. Used by screen readers. inverzni hiperbolični kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens v stopinjah Name for the tangent function in degrees mode. Used by screen readers. tangens v radianih Name for the tangent function in radians mode. Used by screen readers. tangens v gradianih Name for the tangent function in gradians mode. Used by screen readers. inverzni tangens v stopinjah Name for the inverse tangent function in degrees mode. Used by screen readers. inverzni tangens v radianih Name for the inverse tangent function in radians mode. Used by screen readers. inverzni tangens v gradianih Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolični tangens Name for the hyperbolic tangent function. Used by screen readers. inverzni hiperbolični tangens Name for the inverse hyperbolic tangent function. Used by screen readers. stopinje kotne funkcije sekans Name for the secant function in degrees mode. Used by screen readers. radiani kotne funkcije sekans Name for the secant function in radians mode. Used by screen readers. gradi kotne funkcije sekans Name for the secant function in gradians mode. Used by screen readers. stopinje inverzne kotne funkcije sekans Name for the inverse secant function in degrees mode. Used by screen readers. radiani inverzne kotne funkcije sekans Name for the inverse secant function in radians mode. Used by screen readers. gradi inverzne kotne funkcije sekans Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolični sekans Name for the hyperbolic secant function. Used by screen readers. inverzni hiperbolični sekans Name for the inverse hyperbolic secant function. Used by screen readers. stopinje kotne funkcije kosekans Name for the cosecant function in degrees mode. Used by screen readers. radiani kotne funkcije kosekans Name for the cosecant function in radians mode. Used by screen readers. gradi kotne funkcije kosekans Name for the cosecant function in gradians mode. Used by screen readers. stopinje inverzne kotne funkcije kosekans Name for the inverse cosecant function in degrees mode. Used by screen readers. radiani inverzne kotne funkcije kosekans Name for the inverse cosecant function in radians mode. Used by screen readers. gradi inverzne kotne funkcije kosekans Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolični kosekans Name for the hyperbolic cosecant function. Used by screen readers. inverzni hiperbolični kosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. stopinje kotne funkcije kotangens Name for the cotangent function in degrees mode. Used by screen readers. Radiani kotne funkcije kotangens Name for the cotangent function in radians mode. Used by screen readers. gradi kotne funkcije kotangens Name for the cotangent function in gradians mode. Used by screen readers. stopinje inverzne kotne funkcije kotangens Name for the inverse cotangent function in degrees mode. Used by screen readers. radiani inverzne kotne funkcije kotangens Name for the inverse cotangent function in radians mode. Used by screen readers. gradi inverzne kotne funkcije kotangens Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolični kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverzni hiperbolični kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubični koren Name for the cube root function. Used by screen readers. Osnovni logaritem Name for the logbasey function. Used by screen readers. Absolutna vrednost Name for the absolute value function. Used by screen readers. pomik levo Name for the programmer function that shifts bits to the left. Used by screen readers. pomik desno Name for the programmer function that shifts bits to the right. Used by screen readers. fakulteta Name for the factorial function. Used by screen readers. stopinja minuta sekunda Name for the degree minute second (dms) function. Used by screen readers. naravni logaritem Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. kvadratni koren Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorija %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Pogodba o Microsoftovih storitvah Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Od From Date Header for AddSubtract Date Picker Pomik rezultata izračuna v levo Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Pomik rezultata izračuna v desno Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Izračun ni uspel Text displayed when the application is not able to do a calculation Osnovni logaritem Y Screen reader prompt for the logBaseY button Trigonometrija Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcija Displayed on the button that contains a flyout for the general functions in scientific mode. Neenakosti Displayed on the button that contains a flyout for the inequality functions. Neenakosti Screen reader prompt for the Inequalities button Bitna vrednost Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Pomik bita Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Inverzna funkcija Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolična funkcija Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolični sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Inverz sekansa Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolični inverz sekansa Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolični kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Inverz kosekansa Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolični inverz kosekansa Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolični kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Inverz kotangensa Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolični inverz kotangensa Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Zaokroževanje navzdol Screen reader prompt for the Calculator button floor in the scientific flyout keypad Zaokroževanje navzgor Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Naključno Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolutna vrednost Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulerjevo število Screen reader prompt for the Calculator button e in the scientific flyout keypad Dve na potenco Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad NE-IN Screen reader prompt for the Calculator button nand in the scientific flyout keypad NE-IN Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. NE-ALI Screen reader prompt for the Calculator button nor in the scientific flyout keypad NE-ALI Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Pomik za eno mesto v levo s prenosom Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Pomik za eno mesto v desno s prenosom Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Pomik levo Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Pomik levo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Pomik desno Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Pomik desno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetični pomik Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logični pomik Label for a radio button that toggles logical shift behavior for the shift operations. Krožni pomik Label for a radio button that toggles rotate circular behavior for the shift operations. Krožni pomik s prenosom Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubični koren Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrija Screen reader prompt for the square root button on the scientific operator keypad Funkcije Screen reader prompt for the square root button on the scientific operator keypad Bitna vrednost Screen reader prompt for the square root button on the scientific operator keypad Pomik bita Screen reader prompt for the square root button on the scientific operator keypad Plošče znanstvenih operatorjev Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Plošče programskih operatorjev Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad najbolj pomemben bit Used to describe the last bit of a binary number. Used in bit flip Risanje grafikonov Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Nariši Screen reader prompt for the plot button on the graphing calculator operator keypad Samodejno osveži pogled (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Grafični prikaz Screen reader prompt for the graph view button. Samodejna najboljša prilagoditev Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ročna prilagoditev Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Pogled grafa je bil ponastavljen Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Povečaj (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Povečaj Screen reader prompt for the zoom in button. Pomanjšaj (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Pomanjšaj Screen reader prompt for the zoom out button. Dodaj enačbo Placeholder text for the equation input button Trenutno ni mogoče deliti z drugimi. If there is an error in the sharing action will display a dialog with this text. V redu Used on the dismiss button of the share action error dialog. Oglejte si graf, ustvarjen s Kalkulatorjem Windows Sent as part of the shared content. The title for the share. Enačbe Header that appears over the equations section when sharing Spremenljivke Header that appears over the variables section when sharing Slika grafa z enačbami Alt text for the graph image when output via Share Spremenljivke Header text for variables area Korak Label text for the step text box Najmanj Label text for the min text box Največ Label text for the max text box Barva Label for the Line Color section of the style picker Izračun sloga Label for the Line Style section of the style picker Analiza funkcije Title for KeyGraphFeatures Control Funkcija nima nobenih vodoravnih asimptot. Message displayed when the graph does not have any horizontal asymptotes Funkcija nima nobenih prevojnih točk. Message displayed when the graph does not have any inflection points Funkcija nima nobenih maksimalnih vrednosti. Message displayed when the graph does not have any maxima Funkcija nima nobenih minimalnih vrednosti. Message displayed when the graph does not have any minima Konstanta String describing constant monotonicity of a function Padanje String describing decreasing monotonicity of a function Monotonosti funkcije ni mogoče določiti. Error displayed when monotonicity cannot be determined Naraščanje String describing increasing monotonicity of a function Monotonost funkcije ni znana. Error displayed when monotonicity is unknown Funkcija nima nobenih poševnih asimptot. Message displayed when the graph does not have any oblique asymptotes Paritete funkcije ni mogoče določiti. Error displayed when parity is cannot be determined Funkcija je soda. Message displayed with the function parity is even Funkcija ni niti soda niti liha. Message displayed with the function parity is neither even nor odd Funkcija je liha. Message displayed with the function parity is odd Pariteta funkcije ni znana. Error displayed when parity is unknown Periodičnost za to funkcijo ni podprta. Error displayed when periodicity is not supported Funkcija ni periodična. Message displayed with the function periodicity is not periodic Periodičnost funkcije ni znana. Message displayed with the function periodicity is unknown Te lastnosti so preveč zapletene, da bi jih Kalkulator lahko izračunal: Error displayed when analysis features cannot be calculated Funkcija nima nobenih navpičnih asimptot. Message displayed when the graph does not have any vertical asymptotes Funkcija nima nobenih presečišč z osjo x. Message displayed when the graph does not have any x-intercepts Funkcija nima nobenih presečišč z osjo y. Message displayed when the graph does not have any y-intercepts Domena Title for KeyGraphFeatures Domain Property Horizontalne asimptote Title for KeyGraphFeatures Horizontal aysmptotes Property Prevojne točke Title for KeyGraphFeatures Inflection points Property Analiza ni podprta za to funkcijo. Error displayed when graph analysis is not supported or had an error. Analiza je podprta le za funkcije v obliki f(x). Primer: y = x Error displayed when graph analysis detects the function format is not f(x). Najvišje vrednosti Title for KeyGraphFeatures Maxima Property Najnižje vrednosti Title for KeyGraphFeatures Minima Property Monotonost Title for KeyGraphFeatures Monotonicity Property Poševne asimptome Title for KeyGraphFeatures Oblique asymptotes Property Pariteta Title for KeyGraphFeatures Parity Property Perioda Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Obseg Title for KeyGraphFeatures Range Property Navpične asimptome Title for KeyGraphFeatures Vertical asymptotes Property Presečišče z osjo X Title for KeyGraphFeatures XIntercept Property Presečišče z osjo Y Title for KeyGraphFeatures YIntercept Property Za funkcijo ni bilo mogoče izvesti analize. Domene za to funkcijo ni mogoče izračunati. Error displayed when Domain is not returned from the analyzer. Obsega za to funkcijo ni mogoče izračunati. Error displayed when Range is not returned from the analyzer. Presežek (število je preveliko) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Za upodobitev te enačbe na grafu je potreben način Radiani. Error that occurs during graphing when radians is required. Ta funkcija je preveč kompleksna, da bi jo bilo mogoče upodobiti na grafu Error that occurs during graphing when the equation is too complex. Za upodobitev te enačbe na grafu je potreben način Stopinje. Error that occurs during graphing when degrees is required V faktorski funkciji je neveljaven argument Error that occurs during graphing when a factorial function has an invalid argument. V faktorski funkciji je argument, ki je prevelik, da bi ga bilo mogoče upodobiti na grafu Error that occurs during graphing when a factorial has a large n Modul je mogoče uporabiti le s celimi števili Error that occurs during graphing when modulo is used with a float. Enačba nima rešitve Error that occurs during graphing when the equation has no solution. Ni mogoče deliti z nič Error that occurs during graphing when a divison by zero occurs. V enačbi so logični pogoji, ki so vzajemno izključujoči Error that occurs during graphing when mutually exclusive conditions are used. Enačba je zunaj domene Error that occurs during graphing when the equation is out of domain. Risanje grafikonov za to enačbo ni podprto Error that occurs during graphing when the equation is not supported. V enačbi manjka okrogli oklepaj Error that occurs during graphing when the equation is missing a ( V enačbi manjka okrogli zaklepaj Error that occurs during graphing when the equation is missing a ) V številu je preveč decimalnih vejic Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 V decimalnem mestu manjkajo števke Error that occurs during graphing with a decimal point without digits Nepričakovan konec izraza Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* V izrazu so nepričakovani znaki Error that occurs during graphing when there is an unexpected token. Neveljavni znaki v izrazu Error that occurs during graphing when there is an invalid token. Preveč je enačajev Error that occurs during graphing when there are too many equals. V funkciji mora biti najmanj ena spremenljivka »x« ali »y« Error that occurs during graphing when the equation is missing x or y. Neveljaven izraz Error that occurs during graphing when an invalid syntax is used. Izraz je prazen Error that occurs during graphing when the expression is empty Enačaj je bil uporabljen brez enačbe Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Za imenom funkcije manjka oklepaj Error that occurs during graphing when parenthesis are missing after a function. V matematični operaciji je nepravilno število parametrov Error that occurs during graphing when a function has the wrong number of parameters Ime spremenljivke ni veljavno Error that occurs during graphing when a variable name is invalid. V enačbi manjka oglati oklepaj Error that occurs during graphing when a { is missing V enačbi manjka oglati zaklepaj Error that occurs during graphing when a } is missing. Znaka »i« in »I« ne morete uporabiti kot imena spremenljivk Error that occurs during graphing when i or I is used. Enačbe ni mogoče upodobiti na grafu General error that occurs during graphing. Za dano osnovo ni bilo mogoče razrešiti števk Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Osnova mora biti večji od 2 in manjše od 36 Error that occurs during graphing when the base is out of range. Matematični postopek zahteva, da je eden od njenih parametrov spremenljivka Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. V enačbi je mešanica logičnih in skalarnih operandov Error that occurs during graphing when operands are mixed. Such as true and 1. V zgornjih ali spodnjih omejitvah ni mogoče uporabiti »x« ali »y« Error that occurs during graphing when x or y is used in integral upper limits. V točki omejitve ni mogoče uporabiti »x« ali »y« Error that occurs during graphing when x or y is used in the limit point. Kompleksne neskončnosti ni mogoče uporabiti Error that occurs during graphing when complex infinity is used CV neenakosti ni mogoče uporabiti kompleksnih števil Error that occurs during graphing when complex numbers are used in inequalities. Nazaj na seznam funkcij This is the tooltip for the back button in the equation analysis page in the graphing calculator Nazaj na seznam funkcij This is the automation name for the back button in the equation analysis page in the graphing calculator Analiziraj funkcijo This is the tooltip for the analyze function button Analiziraj funkcijo This is the automation name for the analyze function button Analiziraj funkcijo This is the text for the for the analyze function context menu command Odstrani enačbo This is the tooltip for the graphing calculator remove equation buttons Odstrani enačbo This is the automation name for the graphing calculator remove equation buttons Odstrani enačbo This is the text for the for the remove equation context menu command Deli z drugimi This is the automation name for the graphing calculator share button. Deli z drugimi This is the tooltip for the graphing calculator share button. Spremeni slog enačbe This is the tooltip for the graphing calculator equation style button Spremeni slog enačbe This is the automation name for the graphing calculator equation style button Spremeni slog enačbe This is the text for the for the equation style context menu command Pokaži enačbo This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Skrij enačbo This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Pokaži enačbo %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Skrij enačbo %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Ustavi sledenje This is the tooltip/automation name for the graphing calculator stop tracing button Začni sledenje This is the tooltip/automation name for the graphing calculator start tracing button Okno za ogled grafa, bounded osi x po %1 in %2, bounded osi y %3 in %4, prikazujejo %5 enačbe {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguriraj drsnik This is the tooltip text for the slider options button in Graphing Calculator Konfiguriraj drsnik This is the automation name text for the slider options button in Graphing Calculator Preklopi v način enačbe Used in Graphing Calculator to switch the view to the equation mode Preklopi v način grafa Used in Graphing Calculator to switch the view to the graph mode Preklopi v način enačbe Used in Graphing Calculator to switch the view to the equation mode Trenutni način je način enačbe Announcement used in Graphing Calculator when switching to the equation mode Trenutni način je način grafa Announcement used in Graphing Calculator when switching to the graph mode Okno Heading for window extents on the settings Stopinje Degrees mode on settings page Gradi Gradian mode on settings page Radiani Radians mode on settings page Enote Heading for Unit's on the settings Ponastavi pogled Hyperlink button to reset the view of the graph X – najvišja vrednost X maximum value header X – najnižja vrednost X minimum value header Y – najvišja vrednost Y Maximum value header Y – najnižja vrednost Y minimum value header Možnosti grafa This is the tooltip text for the graph options button in Graphing Calculator Možnosti grafa This is the automation name text for the graph options button in Graphing Calculator Možnosti grafa Heading for the Graph options flyout in Graphing mode. Možnosti spremenljivke Screen reader prompt for the variable settings toggle button Preklop možnosti spremenljivke Tool tip for the variable settings toggle button Debelina črte Heading for the Graph options flyout in Graphing mode. Možnosti črte Heading for the equation style flyout in Graphing mode. Majhna širina črte Automation name for line width setting Srednja širina črte Automation name for line width setting Velika širina črte Automation name for line width setting Zelo velika širina črte Automation name for line width setting Vnesite izraz this is the placeholder text used by the textbox to enter an equation Kopiraj Copy menu item for the graph context menu Izreži Cut menu item from the Equation TextBox Kopiraj Copy menu item from the Equation TextBox Prilepi Paste menu item from the Equation TextBox Razveljavi Undo menu item from the Equation TextBox Izberi vse Select all menu item from the Equation TextBox Vnos funkcije The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Vnos funkcije The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Podokno vhodnih funkcij The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Spremenljivo podokno The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Spremenljiv seznam The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Spremenljiv element seznama %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Besedilno polje s spremenljivo vrednostjo The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Drsnik s spremenljivo vrednostjo The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Besedilno polje s spremenljivo najnižjo vrednostjo The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Besedilno polje s spremenljivo vrednostjo koraka The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Besedilno polje s spremenljivo najvišjo vrednostjo The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Poln slog črte Name of the solid line style for a graphed equation Pikčast slog črte Name of the dotted line style for a graphed equation Črtkan slog črte Name of the dashed line style for a graphed equation Mornarsko modra Name of color in the color picker Odtenek morske pene Name of color in the color picker Vijolična Name of color in the color picker Zelena Name of color in the color picker Metino zelena Name of color in the color picker Temno zelena Name of color in the color picker Oglje Name of color in the color picker Rdeča Name of color in the color picker Svetlo slivova Name of color in the color picker Magenta Name of color in the color picker Zlatorumena Name of color in the color picker Svetlooranžna Name of color in the color picker Rjava Name of color in the color picker Črna Name of color in the color picker Bela Name of color in the color picker Barva 1 Name of color in the color picker Barva 2 Name of color in the color picker Barva 3 Name of color in the color picker Barva 4 Name of color in the color picker Tema »grafikon« Graph settings heading for the theme options Vedno svetlo Graph settings option to set graph to light theme Ujemanje teme programa Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Vedno svetlo This is the automation name text for the Graph settings option to set graph to light theme Ujemanje teme programa This is the automation name text for the Graph settings option to set graph to match the app theme Funkcija je odstranjena Announcement used in Graphing Calculator when a function is removed from the function list Polje enačbe za analizo funkcij This is the automation name text for the equation box in the function analysis panel Je enako Screen reader prompt for the equal button on the graphing calculator operator keypad Manj kot Screen reader prompt for the Less than button Manjši ali enak kot Screen reader prompt for the Less than or equal button Enako Screen reader prompt for the Equal button Večji ali enak kot Screen reader prompt for the Greater than or equal button Večje od Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Pošlji Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza funkcije Screen reader prompt for the function analysis grid Možnosti grafa Screen reader prompt for the graph options panel Seznama zgodovine in shranjevanja Automation name for the group of controls for history and memory lists. Seznam shranjevanja Automation name for the group of controls for memory list. Reža zgodovine %1 je počiščena {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator vedno na vrhu Announcement to indicate calculator window is always shown on top. Kalkulator nazaj v polni pogled Announcement to indicate calculator window is now back to full view. Izbrana je možnost aritmetičnega pomika Label for a radio button that toggles arithmetic shift behavior for the shift operations. Izbrana je možnost logičnega pomika Label for a radio button that toggles logical shift behavior for the shift operations. Izbrana je možnost krožnega pomika Label for a radio button that toggles rotate circular behavior for the shift operations. Izbrana je možnost krožnega pomika s prenosom Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Nastavitve Header text of Settings page Videz Subtitle of appearance setting on Settings page Tema aplikacije Title of App theme expander Izberite temo aplikacije za prikaz Description of App theme expander Svetlo Lable for light theme option Temno Lable for dark theme option Uporabi sistemsko nastavitev Lable for the app theme option to use system setting Nazaj Screen reader prompt for the Back button in title bar to back to main page Stran z nastavitvami Announcement used when Settings page is opened Odpri priročni meni za dejanja, ki so na voljo Screen reader prompt for the context menu of the expression box V redu The text of OK button to dismiss an error dialog. Tega posnetka ni bilo mogoče obnoviti. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/sq-AL/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Hyrje e pavlefshme Error message shown when the input makes a function fail, like log(-1) Rezultati është i papërcaktuar Error message shown when there's no possible value for a function. Memoria e pamjaftueshme Error message shown when we run out of memory during a calculation. Tejkalimi Error message shown when there's an overflow during the calculation. Rezultati i papërcaktuar Same as 101 Rezultati i papërcaktuar Same 101 Tejkalimi Same as 107 Tejkalimi Same 107 Pjesëtimi me zero i pamundur Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/sq-AL/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Makina llogaritëse {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Makina llogaritëse [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Makina llogaritëse e Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Makina llogaritëse e Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Makina llogaritëse {@Appx_Description@} This description is used for the official application when published through Windows Store. Makina llogaritëse [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopjo Copy context menu string Ngjit Paste context menu string Afërsisht baras me The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, vlera %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) biti i %1 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63-të Sub-string used in automation name for 63 bit in bit flip 62-të Sub-string used in automation name for 62 bit in bit flip 61-të Sub-string used in automation name for 61 bit in bit flip 60-të Sub-string used in automation name for 60 bit in bit flip 59-të Sub-string used in automation name for 59 bit in bit flip 58-të Sub-string used in automation name for 58 bit in bit flip 57-të Sub-string used in automation name for 57 bit in bit flip 56-të Sub-string used in automation name for 56 bit in bit flip 55-të Sub-string used in automation name for 55 bit in bit flip 54-t Sub-string used in automation name for 54 bit in bit flip 53-të Sub-string used in automation name for 53 bit in bit flip 52-të Sub-string used in automation name for 52 bit in bit flip 51-të Sub-string used in automation name for 51 bit in bit flip 50-të Sub-string used in automation name for 50 bit in bit flip 49-të Sub-string used in automation name for 49 bit in bit flip 48-të Sub-string used in automation name for 48 bit in bit flip 47-të Sub-string used in automation name for 47 bit in bit flip 46-të Sub-string used in automation name for 46 bit in bit flip 45-të Sub-string used in automation name for 45 bit in bit flip 44-t Sub-string used in automation name for 44 bit in bit flip 43-të Sub-string used in automation name for 43 bit in bit flip 42-të Sub-string used in automation name for 42 bit in bit flip 41-të Sub-string used in automation name for 41 bit in bit flip 40-të Sub-string used in automation name for 40 bit in bit flip 39-të Sub-string used in automation name for 39 bit in bit flip 38-të Sub-string used in automation name for 38 bit in bit flip 37-të Sub-string used in automation name for 37 bit in bit flip 36-të Sub-string used in automation name for 36 bit in bit flip 35-të Sub-string used in automation name for 35 bit in bit flip 34-t Sub-string used in automation name for 34 bit in bit flip 33-të Sub-string used in automation name for 33 bit in bit flip 32-të Sub-string used in automation name for 32 bit in bit flip 31-të Sub-string used in automation name for 31 bit in bit flip 30-të Sub-string used in automation name for 30 bit in bit flip 29-të Sub-string used in automation name for 29 bit in bit flip 28-të Sub-string used in automation name for 28 bit in bit flip 27-të Sub-string used in automation name for 27 bit in bit flip 26-të Sub-string used in automation name for 26 bit in bit flip 25-të Sub-string used in automation name for 25 bit in bit flip 24-t Sub-string used in automation name for 24 bit in bit flip 23-të Sub-string used in automation name for 23 bit in bit flip 22-të Sub-string used in automation name for 22 bit in bit flip 21-të Sub-string used in automation name for 21 bit in bit flip 20-të Sub-string used in automation name for 20 bit in bit flip 19-të Sub-string used in automation name for 19 bit in bit flip 18-të Sub-string used in automation name for 18 bit in bit flip 17-të Sub-string used in automation name for 17 bit in bit flip 16-të Sub-string used in automation name for 16 bit in bit flip 15-të Sub-string used in automation name for 15 bit in bit flip 14-të Sub-string used in automation name for 14 bit in bit flip 13-të Sub-string used in automation name for 13 bit in bit flip 12-të Sub-string used in automation name for 12 bit in bit flip 11-të Sub-string used in automation name for 11 bit in bit flip 10-të Sub-string used in automation name for 10 bit in bit flip 9-të Sub-string used in automation name for 9 bit in bit flip 8-të Sub-string used in automation name for 8 bit in bit flip 7-të Sub-string used in automation name for 7 bit in bit flip 6-të Sub-string used in automation name for 6 bit in bit flip 5-të Sub-string used in automation name for 5 bit in bit flip 4-t Sub-string used in automation name for 4 bit in bit flip 3-të Sub-string used in automation name for 3 bit in bit flip 2-të Sub-string used in automation name for 2 bit in bit flip 1-rë Sub-string used in automation name for 1 bit in bit flip biti më pak i rëndësishëm Used to describe the first bit of a binary number. Used in bit flip Hap shfaqjen e memories This is the automation name and label for the memory button when the memory flyout is closed. Mbyll shfaqjen e memories This is the automation name and label for the memory button when the memory flyout is open. Mbaj në krye This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Kthehu në pamjen e plotë This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memoria This is the tool tip automation name for the memory button. Historia (Ctrl + H) This is the tool tip automation name for the history button. Blloku i tasteve i ndryshimit të gjendjes së bitëve This is the tool tip automation name for the bitFlip button. Blloku i plotë i tasteve This is the tool tip automation name for the numberPad button. Pastro të gjithë memorien (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memoria The text that shows as the header for the memory list Memoria The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historia The text that shows as the header for the history list Historia The automation name for the History pivot item that is shown when Calculator is in wide layout. Konvertuesi Label for a control that activates the unit converter mode. Shkencor Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Regjimi i konvertuesit Screen reader prompt for a control that activates the unit converter mode. Regjimi shkencor Screen reader prompt for a control that activates scientific mode calculator layout Regjimi standard Screen reader prompt for a control that activates standard mode calculator layout. Pastro të gjithë historinë "ClearHistory" used on the calculator history pane that stores the calculation history. Pastro të gjithë historinë This is the tool tip automation name for the Clear History button. Fshih "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Shkencor The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programues The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konvertuesi The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Makina llogaritëse The text that shows in the dropdown navigation control for the calculator group. Konvertuesi The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Makina llogaritëse The text that shows in the dropdown navigation control for the calculator group in upper case. Konvertuesit Pluralized version of the converter group text, used for the screen reader prompt. Makinat llogaritëse Pluralized version of the calculator group text, used for the screen reader prompt. Afishimi është %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Shprehja është %1, hyrja aktuale është %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Afishimi është %1 pikë {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Shprehja është %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Vlera e afishuar u kopjua në kujtesën e fragmenteve Screen reader prompt for the Calculator display copy button, when the button is invoked. Historia Screen reader prompt for the history flyout Memoria Screen reader prompt for the memory flyout Vlera heksadecimale %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Vlera dhjetore %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Vlera oktale %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Vlera binare %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Pastro të gjithë historinë Screen reader prompt for the Calculator History Clear button Historia u pastrua Screen reader prompt for the Calculator History Clear button, when the button is invoked. Fshih historinë Screen reader prompt for the Calculator History Hide button Hap shfaqjen e historisë Screen reader prompt for the Calculator History button, when the flyout is closed. Mbyll shfaqjen e historisë Screen reader prompt for the Calculator History button, when the flyout is open. Ruaj në memorie Screen reader prompt for the Calculator Memory button Magazino në memorie (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Pastro të gjithë memorien Screen reader prompt for the Calculator Clear Memory button Memoria u pastrua Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Tërhiq nga me Screen reader prompt for the Calculator Memory Recall button Rithirr memorien (Ctrl + R) This is the tool tip automation name for the Memory Recall (MR) button. Shto në memorie Screen reader prompt for the Calculator Memory Add button Shto në memorie (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Zbrit nga vlera e ruajtur në memorie Screen reader prompt for the Calculator Memory Subtract button Hiq nga memoria (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Pastro njësinë e memories Screen reader prompt for the Calculator Clear Memory button Pastro njësinë e memories This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Shto te njësia e memories Screen reader prompt for the Calculator Memory Add button in the Memory list Shto te njësia e memories This is the tool tip automation name for the Calculator Memory Add button in the Memory list Hiq nga njësia e memories Screen reader prompt for the Calculator Memory Subtract button in the Memory list Hiq nga njësia e memories This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Pastro njësinë e memories Screen reader prompt for the Calculator Clear Memory button Pastro njësinë e memories Text string for the Calculator Clear Memory option in the Memory list context menu Shto te njësia e memories Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Shto te njësia e memories Text string for the Calculator Memory Add option in the Memory list context menu Hiq nga njësia e memories Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Hiq nga njësia e memories Text string for the Calculator Memory Subtract option in the Memory list context menu Fshi Text string for the Calculator Delete swipe button in the History list Kopjo Text string for the Calculator Copy option in the History list context menu Fshi Text string for the Calculator Delete option in the History list context menu Fshi artikullin e historikut Screen reader prompt for the Calculator Delete swipe button in the History list Fshi artikullin e historikut Screen reader prompt for the Calculator Delete option in the History list context menu Kthim prapa Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Zero Screen reader prompt for the Calculator number "0" button Një Screen reader prompt for the Calculator number "1" button Dy Screen reader prompt for the Calculator number "2" button Tre Screen reader prompt for the Calculator number "3" button Katër Screen reader prompt for the Calculator number "4" button Pesë Screen reader prompt for the Calculator number "5" button Gjashtë Screen reader prompt for the Calculator number "6" button Shtatë Screen reader prompt for the Calculator number "7" button Tetë Screen reader prompt for the Calculator number "8" button Nëntë Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Dhe Screen reader prompt for the Calculator And button Ose Screen reader prompt for the Calculator Or button Jo Screen reader prompt for the Calculator Not button Rrotullo majtas Screen reader prompt for the Calculator ROL button Rrotullo djathtas Screen reader prompt for the Calculator ROR button Shift i majtë Screen reader prompt for the Calculator LSH button Shift i djathtë Screen reader prompt for the Calculator RSH button Ose përjashtuese Screen reader prompt for the Calculator XOR button Kalo në fjalë katërshe Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Kalo në fjalë dyshe Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Kalo te fjalët Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Kalo te bajtët Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Blloku i tasteve i ndryshimit të gjendjes së bitëve Screen reader prompt for the Calculator bitFlip button Blloku i plotë i tasteve Screen reader prompt for the Calculator numberPad button Ndarësi dhjetor Screen reader prompt for the "." button Pastro zërin Screen reader prompt for the "CE" button Pastro Screen reader prompt for the "C" button Pjesëto me Screen reader prompt for the divide button on the number pad Shumëzo me Screen reader prompt for the multiply button on the number pad Baras Screen reader prompt for the equals button on the scientific operator keypad Funksioni i anasjelltë Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Rrënjë katrore Screen reader prompt for the square root button on the scientific operator keypad Për qind Screen reader prompt for the percent button on the scientific operator keypad Pozitiv negativ Screen reader prompt for the negate button on the scientific operator keypad Pozitiv negativ Screen reader prompt for the negate button on the converter operator keypad I anasjellë Screen reader prompt for the invert button on the scientific operator keypad Kllapa e majtë Screen reader prompt for the Calculator "(" button on the scientific operator keypad Kllapa e majtë, numri i kllapave hapëse %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Kllapa e djathtë Screen reader prompt for the Calculator ")" button on the scientific operator keypad Numri i kllapave të hapura %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nuk ka kllapa hapëse për të mbyllur. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Simbolet shkencore Screen reader prompt for the Calculator F-E the scientific operator keypad Funksioni hiperbolik Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangjente Screen reader prompt for the Calculator tan button on the scientific operator keypad Sinus hiperbolik Screen reader prompt for the Calculator sinh button on the scientific operator keypad Kosinus hiperbolik Screen reader prompt for the Calculator cosh button on the scientific operator keypad Tangjente hiperbolike Screen reader prompt for the Calculator tanh button on the scientific operator keypad Katror Screen reader prompt for the x squared on the scientific operator keypad. Kub Screen reader prompt for the x cubed on the scientific operator keypad. Arksinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arktangjente Screen reader prompt for the inverted tan on the scientific operator keypad. Arksinus hiperbolik Screen reader prompt for the inverted sinh on the scientific operator keypad. Arkosinus hiperbolik Screen reader prompt for the inverted cosh on the scientific operator keypad. Arktangjente hiperbolike Screen reader prompt for the inverted tanh on the scientific operator keypad. "X" në fuqi të Screen reader prompt for x power y button on the scientific operator keypad. Dhjetë në fuqi të Screen reader prompt for the 10 power x button on the scientific operator keypad. "e" në fuqi të Screen reader for the e power x on the scientific operator keypad. rrënja "y" e "x" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritëm Screen reader for the log base 10 on the scientific operator keypad Logaritëm natyror Screen reader for the log base e on the scientific operator keypad Moduli Screen reader for the mod button on the scientific operator keypad Eksponencial Screen reader for the exp button on the scientific operator keypad Gradë minutë sekondë Screen reader for the exp button on the scientific operator keypad Gradë Screen reader for the exp button on the scientific operator keypad Pjesa e numrit të plotë Screen reader for the int button on the scientific operator keypad Pjesa e thyesës Screen reader for the frac button on the scientific operator keypad Faktor Screen reader for the factorial button on the basic operator keypad Kalo në gradë This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Kalo në gradianë This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Kalo në radianë This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Lista zbritëse e regjimeve Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Lista zbritëse e kategorive Screen reader prompt for the Categories dropdown field. Mbaj në krye Screen reader prompt for the Always-on-Top button when in normal mode. Kthehu në pamjen e plotë Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Mbaj në krye (Alt+Shigjeta lart) This is the tool tip automation name for the Always-on-Top button when in normal mode. Kthehu në pamjen e plotë (Alt+Shigjeta poshtë) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konverto nga %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konverto nga %1 pikë %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konvertohet në %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 është %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Njësia e hyrjes Screen reader prompt for the Unit Converter Units1 i.e. top units field. Njësia e daljes Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Sipërfaqja Unit conversion category name called Area (eg. area of a sports field in square meters) Të dhënat Unit conversion category name called Data Energjia Unit conversion category name called Energy. (eg. the energy in a battery or in food) Gjatësia Unit conversion category name called Length Ndezja/Fikja Unit conversion category name called Power (eg. the power of an engine or a light bulb) Shpejtësia Unit conversion category name called Speed Koha Unit conversion category name called Time Vëllimi Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Pesha dhe masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Trysnia Unit conversion category name called Pressure Këndi Unit conversion category name called Angle Monedha Unit conversion category name called Currency Onsë të lëngjeve (MB) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (MB) An abbreviation for a measurement unit of volume Onsë të lëngjeve (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (SHBA) An abbreviation for a measurement unit of volume Gallonë (MB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (MB) An abbreviation for a measurement unit of volume Gallonë (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (SHBA) An abbreviation for a measurement unit of volume Litra A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitra A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pintë (MB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (MB) An abbreviation for a measurement unit of volume Pintë (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (SHBA) An abbreviation for a measurement unit of volume Lugë gjelle (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (SHBA) An abbreviation for a measurement unit of volume Lugë çaji (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (SHBA) An abbreviation for a measurement unit of volume Lugë gjelle (MB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tbsp. (MB) An abbreviation for a measurement unit of volume Lugë çaji (MB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsp. (MB) An abbreviation for a measurement unit of volume Çereke (MB) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (MB) An abbreviation for a measurement unit of volume Çereke (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (SHBA) An abbreviation for a measurement unit of volume Filxhanë (SHBA) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filxhan (SHBA) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area kf (SHBA) An abbreviation for a measurement unit of power h An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) kb An abbreviation for a measurement unit of data kB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power j An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length v An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Ji An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Akra A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Njësi termike britanike A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/minutë A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori termike A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetra A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetra në sekondë A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetra kub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë kub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) inç kub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metra kub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardë kub A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ditë A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Farenhajt An option in the unit converter to select degrees Fahrenheit Elektronvoltë A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë në sekondë A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë-paunde A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë-paunde/minutë A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektarë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kuaj-fuqi (SHBA) A measurement unit for power Orë A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inç A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Xhaulë A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovat për orë A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalori ushqimore A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kiloxhaulë A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometra A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometra në orë A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovatë A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nyja A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mak A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metra A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metra në sekondë A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikronë A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekonda A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje në orë A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetra A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekonda A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuta A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) çukis A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometra A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstromë A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje detare A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekonda A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetra katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Këmbë katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inç katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometra katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metra katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milje katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetra katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardë katrorë A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vatë A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Javë A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardë A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vite A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight gradë An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (MB) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (SHBA) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karatë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gradë A measurement unit for Angle. Radianë A measurement unit for Angle. Gradianë A measurement unit for Angle. Atmosfera A measurement unit for Pressure. Barë A measurement unit for Pressure. Kilopaskalë A measurement unit for Pressure. Milimetra kolonë zhivë A measurement unit for Pressure. Paskalë A measurement unit for Pressure. Paundë për inç katror A measurement unit for Pressure. Centigramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagramë A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonë (MB) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligramë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Onsë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Paundë A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonë (SHBA) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stounë A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tonelata A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fusha futbolli A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fusha futbolli A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateri AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bateri AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kapëse letrash A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kapëse letrash A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeroplanë reaktivë të mëdhenj A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeroplanë reaktivë të mëdhenj A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) llamba A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) llamba A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuaj A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kuaj A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaska A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) vaska A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flokë bore A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) flokë bore A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantë An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefantë An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) breshka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) breshka A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeroplanë reaktivë A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aeroplanë reaktivë A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balena A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) balena A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filxhanë kafeje A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) filxhanë kafeje A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pishina An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pishina An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pëllëmbë A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pëllëmbë A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fletë letre A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fletë letre A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kështjella A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kështjella A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banane A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copa torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) copa torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) topa futbolli A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) topa futbolli A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Element në memorie Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Prapa Screen reader prompt for the About panel back button Prapa Content of tooltip being displayed on AboutControlBackButton Kushtet e licencës së softuerit të Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Paraafishim Label displayed next to upcoming features Deklarata e privatësisë e Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Të gjitha të drejtat të rezervuara. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Për të mësuar se si mund të kontribuosh në Makinën llogaritëse të Windows, shiko projektin në %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Rreth Subtitle of about message on Settings page Dërgo komente The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Nuk ka ende asnjë histori. The text that shows as the header for the history list Nuk ka asgjë të ruajtur në memorie. The text that shows as the header for the memory list Memoria Screen reader prompt for the negate button on the converter operator keypad Kjo shprehje s'mund të ngjitet The paste operation cannot be performed, if the expression is invalid. Gibibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibitë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibajtë A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Llogaritja e datës Regjimi i llogaritjes Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Shto Add toggle button text Shto ose zbrit ditët Add or Subtract days option Data Date result label Ndryshimi midis datave Date difference option Ditë Add/Subtract Days label Ndryshimi Difference result label Nga From Date Header for Difference Date Picker Muaj Add/Subtract Months label Hiq Subtract toggle button text Deri në To Date Header for Difference Date Picker Vite Add/Subtract Years label Data jashtë kufirit Out of bound message shown as result when the date calculation exceeds the bounds ditë ditë muaj muaj Të njëjtat data javë javë vit vite Diferenca %1 Automation name for reading out the date difference. %1 = Date difference Data që rezulton %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Regjimi i llogaritësit të %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Regjimi i konvertuesit të %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Regjimi i llogaritjes së datës Automation name for when the mode header is focused and the current mode is Date calculation. Listat e historisë dhe të memories Automation name for the group of controls for history and memory lists. Kontrollet e memories Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Funksionet standarde Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kontrollet e afishimit Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Operatorët standardë Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Blloku i numrave Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operatorët e këndeve Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Funksionet shkencore Automation name for the group of Scientific functions. Përzgjedhja e bazës Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Operatorët programues Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Regjimi i zgjedhur i hyrjes Automation name for the group of input mode toggling buttons. Blloku i tasteve i ndryshimit të gjendjes së bitëve Automation name for the group of bit toggling buttons. Lëviz shprehjen majtas Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Lëviz shprehjen djathtas Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. U arritën shifrat maksimale. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 u ruajt te memoria {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Foleja e memories %1 është %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Foleja e memories %1 u pastrua {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". pjesëtuar me Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. herë Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. në fuqi të Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. rrënja e y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. moduli Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. zhvendosje majtas Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. zhvendosje djathtas Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ose Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x ose Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. dhe Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Përditësuar më %1 në %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Përditëso kurset e këmbimit The text displayed for a hyperlink button that refreshes currency converter ratios. Mund të zbatohen tarifa për të dhënat. The text displayed when users are on a metered connection and using currency converter. Kurset e reja të këmbimit nuk mund të merreshin. Provo përsëri më vonë. The text displayed when currency ratio data fails to load. Jashtë linje. Kontrollo%HL%Parametrat e rrjetit%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Normat e këmbimit valutor po përditësohen This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Normat e këmbimit valutor u përditësuan This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Normat nuk mund të përditësoheshin This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Pastro të gjithë memorien (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Pastro të gjithë memorien Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} gradë sinusi Name for the sine function in degrees mode. Used by screen readers. radianë sinusi Name for the sine function in radians mode. Used by screen readers. gradianë sinusi Name for the sine function in gradians mode. Used by screen readers. gradë arksinusi Name for the inverse sine function in degrees mode. Used by screen readers. radianë arksinusi Name for the inverse sine function in radians mode. Used by screen readers. gradianë arksinusi Name for the inverse sine function in gradians mode. Used by screen readers. sinus hiperbolik Name for the hyperbolic sine function. Used by screen readers. arksinus hiperbolik Name for the inverse hyperbolic sine function. Used by screen readers. gradë kosinusi Name for the cosine function in degrees mode. Used by screen readers. radianë kosinusi Name for the cosine function in radians mode. Used by screen readers. gradianë kosinusi Name for the cosine function in gradians mode. Used by screen readers. gradë arkkosinusi Name for the inverse cosine function in degrees mode. Used by screen readers. radianë arkkosinusi Name for the inverse cosine function in radians mode. Used by screen readers. gradianë arkkosinusi Name for the inverse cosine function in gradians mode. Used by screen readers. kosinus hiperbolik Name for the hyperbolic cosine function. Used by screen readers. arkkosinus hiperbolik Name for the inverse hyperbolic cosine function. Used by screen readers. gradë tangjente Name for the tangent function in degrees mode. Used by screen readers. radianë tangjente Name for the tangent function in radians mode. Used by screen readers. gradianë tangjente Name for the tangent function in gradians mode. Used by screen readers. gradë arktangjente Name for the inverse tangent function in degrees mode. Used by screen readers. radianë arktangjente Name for the inverse tangent function in radians mode. Used by screen readers. gradianë arktangjente Name for the inverse tangent function in gradians mode. Used by screen readers. tangjente hiperbolike Name for the hyperbolic tangent function. Used by screen readers. arktangjente hiperbolike Name for the inverse hyperbolic tangent function. Used by screen readers. gradë sekante Name for the secant function in degrees mode. Used by screen readers. radiane sekante Name for the secant function in radians mode. Used by screen readers. gradiane sekante Name for the secant function in gradians mode. Used by screen readers. gradë të anasjella sekante Name for the inverse secant function in degrees mode. Used by screen readers. radiane të anasjella sekante Name for the inverse secant function in radians mode. Used by screen readers. gradiane të anasjella sekante Name for the inverse secant function in gradians mode. Used by screen readers. sekanti hiperbolik Name for the hyperbolic secant function. Used by screen readers. sekanti i anasjellë hiperbolik Name for the inverse hyperbolic secant function. Used by screen readers. gradë kosekante Name for the cosecant function in degrees mode. Used by screen readers. radiane kosekante Name for the cosecant function in radians mode. Used by screen readers. gradiane kosekante Name for the cosecant function in gradians mode. Used by screen readers. gradë të anasjella kosekante Name for the inverse cosecant function in degrees mode. Used by screen readers. radiane të anasjella kosekante Name for the inverse cosecant function in radians mode. Used by screen readers. gradiane të anasjella kosekante Name for the inverse cosecant function in gradians mode. Used by screen readers. kosekante hiperbolike Name for the hyperbolic cosecant function. Used by screen readers. kosekanti i anasjellë hiperbolik Name for the inverse hyperbolic cosecant function. Used by screen readers. gradë kotangjente Name for the cotangent function in degrees mode. Used by screen readers. Radiane kotangjente Name for the cotangent function in radians mode. Used by screen readers. gradiane kotangjente Name for the cotangent function in gradians mode. Used by screen readers. gradë të anasjella kotangjente Name for the inverse cotangent function in degrees mode. Used by screen readers. radiane të anasjella kotangjente Name for the inverse cotangent function in radians mode. Used by screen readers. gradiane të anasjella kotangjente Name for the inverse cotangent function in gradians mode. Used by screen readers. kotangjenti hiperbolik Name for the hyperbolic cotangent function. Used by screen readers. kotangjenti i anasjellë hiperbolik Name for the inverse hyperbolic cotangent function. Used by screen readers. Rrënja kubike Name for the cube root function. Used by screen readers. Baza e regjistrimeve Name for the logbasey function. Used by screen readers. Vlera absolute Name for the absolute value function. Used by screen readers. zhvendosje majtas Name for the programmer function that shifts bits to the left. Used by screen readers. zhvendosje djathtas Name for the programmer function that shifts bits to the right. Used by screen readers. faktoriali Name for the factorial function. Used by screen readers. gradë minutë sekondë Name for the degree minute second (dms) function. Used by screen readers. logaritëm natyror Name for the natural log (ln) function. Used by screen readers. katror Name for the square function. Used by screen readers. rrënja e y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategoria e %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Marrëveshja e shërbimeve të Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Nga From Date Header for AddSubtract Date Picker Lëviz majtas në rezultatin e llogaritjes Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Lëviz djathtas në rezultatin e llogaritjes Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Llogaritja nuk u krye Text displayed when the application is not able to do a calculation Evidenca e bazës Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Funksioni Displayed on the button that contains a flyout for the general functions in scientific mode. Mosbarazimet Displayed on the button that contains a flyout for the inequality functions. Mosbarazimet Screen reader prompt for the Inequalities button Në nivel bitesh Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Zhvendosje e biteve Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Funksioni i anasjelltë Screen reader prompt for the shift button in the trig flyout in scientific mode. Funksioni hiperbolik Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekante Screen reader prompt for the Calculator button sec in the scientific flyout keypad Sekant hiperbolik Screen reader prompt for the Calculator button sech in the scientific flyout keypad Sekanti i harkut Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Sekanti hiperbolik i harkut Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekante Screen reader prompt for the Calculator button csc in the scientific flyout keypad Kosekanti hiperbolik Screen reader prompt for the Calculator button csch in the scientific flyout keypad Kosekanti i harkut Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kosekanti hiperbolik i harkut Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangjent Screen reader prompt for the Calculator button cot in the scientific flyout keypad Kotangjenti hiperbolik Screen reader prompt for the Calculator button coth in the scientific flyout keypad Kotangjenti i harkut Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Kotangjenti hiperbolik i harkut Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Vlera minimale Screen reader prompt for the Calculator button floor in the scientific flyout keypad Vlera maksimale Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad E rastësishme Screen reader prompt for the Calculator button random in the scientific flyout keypad Vlera absolute Screen reader prompt for the Calculator button abs in the scientific flyout keypad Numri i e Eulerit Screen reader prompt for the Calculator button e in the scientific flyout keypad Dy në fuqi të Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rrotullo me kalim nga e majta Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rrotullo me kalim nga e djathta Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Zhvendosje majtas Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Zhvendosje majtas Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Zhvendosje djathtas Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Zhvendosje djathtas Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Zhvendosje aritmetike Label for a radio button that toggles arithmetic shift behavior for the shift operations. Zhvendosje logjike Label for a radio button that toggles logical shift behavior for the shift operations. Rrotullo zhvendosjen rrethore Label for a radio button that toggles rotate circular behavior for the shift operations. Rrotullo nëpërmjet bartjes së zhvendosjes rrethore Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Rrënja në kub Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Funksionet Screen reader prompt for the square root button on the scientific operator keypad Në nivel bitesh Screen reader prompt for the square root button on the scientific operator keypad Zhvendosja e biteve Screen reader prompt for the square root button on the scientific operator keypad Panelet shkencore të operatorit Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Panelet e operatorit programues Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad biti më i rëndësishëm Used to describe the last bit of a binary number. Used in bit flip Paraqitje grafike Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Skico Screen reader prompt for the plot button on the graphing calculator operator keypad Fresko automatikisht pamjen (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Pamja në formë grafiku Screen reader prompt for the graph view button. Përshtatja më e mirë automatike Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Përshtatje manuale Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Paraqitja e grafikut është rivendosur Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zmadho (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Zmadho Screen reader prompt for the zoom in button. Zvogëlo (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Zvogëlo Screen reader prompt for the zoom out button. Shto ekuacionin Placeholder text for the equation input button Nuk mund të bashkëndahet për momentin. If there is an error in the sharing action will display a dialog with this text. Në rregull Used on the dismiss button of the share action error dialog. Shiko se çfarë kam paraqitur në grafik me "Makinën llogaritëse të Windows" Sent as part of the shared content. The title for the share. Ekuacionet Header that appears over the equations section when sharing Ndryshoret Header that appears over the variables section when sharing Imazh të një grafiku me ekuacionet Alt text for the graph image when output via Share Ndryshoret Header text for variables area Hapi Label text for the step text box Min. Label text for the min text box Maks. Label text for the max text box Ngjyra Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Analiza e funksionit Title for KeyGraphFeatures Control Funksioni nuk ka asnjë asimptotë horizontale. Message displayed when the graph does not have any horizontal asymptotes Funksioni nuk ka asnjë pikë infleksioni. Message displayed when the graph does not have any inflection points Funksioni nuk ka asnjë pikë maksimale. Message displayed when the graph does not have any maxima Funksioni nuk ka asnjë pikë minimale. Message displayed when the graph does not have any minima Konstantja String describing constant monotonicity of a function Zbritës String describing decreasing monotonicity of a function Monotonia e funksionit nuk mund të përcaktohet. Error displayed when monotonicity cannot be determined Rritës String describing increasing monotonicity of a function Monotonia e funksionit është e panjohur. Error displayed when monotonicity is unknown Funksioni nuk ka asnjë asimptotë të pjerrët. Message displayed when the graph does not have any oblique asymptotes Pariteti i funksionit nuk mund të përcaktohet. Error displayed when parity is cannot be determined Funksioni është i barabartë. Message displayed with the function parity is even Funksioni nuk është as çift as tek. Message displayed with the function parity is neither even nor odd Funksioni nuk është tek. Message displayed with the function parity is odd Pariteti i funksionit është i panjohur. Error displayed when parity is unknown Periodiciteti nuk mbështetet për këtë funksion. Error displayed when periodicity is not supported Funksioni nuk është periodik. Message displayed with the function periodicity is not periodic Periodiciteti i funksionit është i panjohur. Message displayed with the function periodicity is unknown Këto tipare janë shumë të ndërlikuara për t'i llogaritur "Makina llogaritëse": Error displayed when analysis features cannot be calculated Funksioni nuk ka asnjë asimptotë vertikale. Message displayed when the graph does not have any vertical asymptotes Funksioni nuk ka asnjë prerje me boshtin X. Message displayed when the graph does not have any x-intercepts Funksioni nuk ka asnjë prerje me boshtin Y. Message displayed when the graph does not have any y-intercepts Domeni Title for KeyGraphFeatures Domain Property Asimptotat horizontale Title for KeyGraphFeatures Horizontal aysmptotes Property Pikat e infleksionit Title for KeyGraphFeatures Inflection points Property Analiza nuk mbështetet për këtë funksion. Error displayed when graph analysis is not supported or had an error. Analiza mbështetet vetëm për funksionet në formatin f(x). Shembull: y=x Error displayed when graph analysis detects the function format is not f(x). Maksimalet Title for KeyGraphFeatures Maxima Property Minimalet Title for KeyGraphFeatures Minima Property Monotonia Title for KeyGraphFeatures Monotonicity Property Asimptotat e pjerrëta Title for KeyGraphFeatures Oblique asymptotes Property Pariteti Title for KeyGraphFeatures Parity Property Perioda Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Rrezja Title for KeyGraphFeatures Range Property Asimptotat vertikale Title for KeyGraphFeatures Vertical asymptotes Property Prerjet me boshtin X Title for KeyGraphFeatures XIntercept Property Prerjet me boshtin Y Title for KeyGraphFeatures YIntercept Property Analiza nuk mund të kryhet për funksionin. Llogaritja e domenit është e pamundur për këtë funksion. Error displayed when Domain is not returned from the analyzer. Rrezja e këtij funksion nuk mund të llogaritet. Error displayed when Range is not returned from the analyzer. Tejkalim (numri është shumë i madh) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Për të paraqitur grafikisht këtë ekuacion nevojitet regjimi në radianë. Error that occurs during graphing when radians is required. Ky funksion është shumë kompleks për tu paraqitur grafikisht Error that occurs during graphing when the equation is too complex. Për të paraqitur grafikisht këtë funksion nevojitet regjimi gradë Error that occurs during graphing when degrees is required Funksioni faktorial ka një argument të pavlefshëm Error that occurs during graphing when a factorial function has an invalid argument. Funksioni faktorial ka një argument i cili është shumë i madh për tu paraqitur grafikisht Error that occurs during graphing when a factorial has a large n Pjesëtimi me mbetje mund të përdoret vetëm me numrat e plotë Error that occurs during graphing when modulo is used with a float. Ekuacioni nuk ka zgjidhje Error that occurs during graphing when the equation has no solution. Pjesëtimi me zero i pamundur Error that occurs during graphing when a divison by zero occurs. Ekuacioni përmban kushte logjike që janë reciprokisht përjashtuese Error that occurs during graphing when mutually exclusive conditions are used. Ekuacioni është jashtë domenit Error that occurs during graphing when the equation is out of domain. Paraqitja grafike e këtij ekuacioni nuk mbështetet Error that occurs during graphing when the equation is not supported. Ekuacionit i mungon një kllapë hapëse Error that occurs during graphing when the equation is missing a ( Ekuacionit i mungon një kllapë mbyllëse Error that occurs during graphing when the equation is missing a ) Ka shumë pika dhjetore në një numër Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Një pike dhjetore i mungojnë shifrat Error that occurs during graphing with a decimal point without digits Përfundim i papritur i shprehjes Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Karaktere të papritura në shprehje Error that occurs during graphing when there is an unexpected token. Karaktere të pavlefshme në shprehje Error that occurs during graphing when there is an invalid token. Ka shumë shenja barazimi Error that occurs during graphing when there are too many equals. Funksioni duhet të përmbajë të paktën një ndryshore x ose y Error that occurs during graphing when the equation is missing x or y. Shprehje e pavlefshme Error that occurs during graphing when an invalid syntax is used. Shprehja është bosh Error that occurs during graphing when the expression is empty Barazimi është përdorur pa një ekuacion Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Mungojnë kllapat pas emrit të funksionit Error that occurs during graphing when parenthesis are missing after a function. Një veprim matematikor ka numrin e gabuar të parametrave Error that occurs during graphing when a function has the wrong number of parameters Një emër ndryshoreje është i pavlefshëm Error that occurs during graphing when a variable name is invalid. Ekuacionit i mungon një kllapë katrore hapëse Error that occurs during graphing when a { is missing Ekuacionit i mungon një kllapë katrore mbyllëse Error that occurs during graphing when a } is missing. "i" dhe "I" nuk mund të përdoren si emra ndryshoresh Error that occurs during graphing when i or I is used. Ekuacioni nuk mund të paraqitet grafikisht General error that occurs during graphing. Kjo shifër nuk mund të zgjidhet për bazën e dhënë Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Baza duhet të jetë më e madhe se 2 dhe më e vogël se 36 Error that occurs during graphing when the base is out of range. Një veprimi matematik kërkon që një nga parametrat e tij të jetë një ndryshore Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ekuacioni përmban operande logjike dhe skalare Error that occurs during graphing when operands are mixed. Such as true and 1. x ose y nuk mund të përdoret në kufizat e sipërme ose të poshtme Error that occurs during graphing when x or y is used in integral upper limits. x ose y nuk mund të përdoret në pikën e limitit Error that occurs during graphing when x or y is used in the limit point. Numri infinit kompleks nuk mund të përdoret Error that occurs during graphing when complex infinity is used Nuk mund të përdoren numra kompleks në inekuacione Error that occurs during graphing when complex numbers are used in inequalities. Prapa te lista e funksioneve This is the tooltip for the back button in the equation analysis page in the graphing calculator Prapa te lista e funksioneve This is the automation name for the back button in the equation analysis page in the graphing calculator Analizo funksionin This is the tooltip for the analyze function button Analizo funksionin This is the automation name for the analyze function button Analizo funksionin This is the text for the for the analyze function context menu command Hiq ekuacionin This is the tooltip for the graphing calculator remove equation buttons Hiq ekuacionin This is the automation name for the graphing calculator remove equation buttons Hiq ekuacionin This is the text for the for the remove equation context menu command Bashkëndaj This is the automation name for the graphing calculator share button. Bashkëndaj This is the tooltip for the graphing calculator share button. Ndrysho stilin e ekuacionit This is the tooltip for the graphing calculator equation style button Ndrysho stilin e ekuacionit This is the automation name for the graphing calculator equation style button Ndrysho stilin e ekuacionit This is the text for the for the equation style context menu command Shfaq ekuacionin This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Fshih ekuacionin This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Shfaq ekuacionin %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Fshih ekuacionin %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Ndalo gjurmimin This is the tooltip/automation name for the graphing calculator stop tracing button Nis gjurmimin This is the tooltip/automation name for the graphing calculator start tracing button Dritarja e paraqitjes së grafikut, boshti x i kufizuar nga %1 dhe %2, boshti y i kufizuar nga %3 dhe %4, paraqiten %5 ekuacione {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguro rrëshqitësin This is the tooltip text for the slider options button in Graphing Calculator Konfiguro rrëshqitësin This is the automation name text for the slider options button in Graphing Calculator Kalo në regjimin e ekuacioneve Used in Graphing Calculator to switch the view to the equation mode Kalo në regjimin e grafikëve Used in Graphing Calculator to switch the view to the graph mode Kalo në regjimin e ekuacioneve Used in Graphing Calculator to switch the view to the equation mode Regjimi aktual është në regjimin e ekuacioneve Announcement used in Graphing Calculator when switching to the equation mode Regjimi aktual është në regjimin e grafikëve Announcement used in Graphing Calculator when switching to the graph mode Dritarja Heading for window extents on the settings Gradë Degrees mode on settings page Gradianët Gradian mode on settings page Radianët Radians mode on settings page Njësitë Heading for Unit's on the settings Rivendos pamjen Hyperlink button to reset the view of the graph X-Maksimale X maximum value header X-Minimale X minimum value header Y-Maksimale Y Maximum value header Y-Minimale Y minimum value header Opsionet e grafikut This is the tooltip text for the graph options button in Graphing Calculator Opsionet e grafikut This is the automation name text for the graph options button in Graphing Calculator Opsionet e grafikut Heading for the Graph options flyout in Graphing mode. Opsionet e ndryshueshëm Screen reader prompt for the variable settings toggle button Ndrysho opsionet e ndryshores Tool tip for the variable settings toggle button Trashësia e vijës Heading for the Graph options flyout in Graphing mode. Opsionet e vijës Heading for the equation style flyout in Graphing mode. Gjerësia e vogël e vijës Automation name for line width setting Gjerësi mesatare e vijës Automation name for line width setting Gjerësi e madhe e vijës Automation name for line width setting Gjerësi shumë e madhe e vijës Automation name for line width setting Fut një shprehje this is the placeholder text used by the textbox to enter an equation Kopjo Copy menu item for the graph context menu Prit Cut menu item from the Equation TextBox Kopjo Copy menu item from the Equation TextBox Ngjit Paste menu item from the Equation TextBox Zhbëj Undo menu item from the Equation TextBox Zgjidhi të gjitha Select all menu item from the Equation TextBox Futja e funksioneve The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Futja e funksioneve The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Paneli i futjes së funksioneve The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Paneli i ndryshoreve The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista e ndryshoreve The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Ndryshorja %1 si element liste The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Kuti teksti e vlerës së ndryshoreve The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Kursori i vlerës së ndryshoreve The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Kuti teksti e vlerës minimale të ndryshoreve The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Kuti teksti e ndryshimit të vlerës së ndryshoreve The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Kuti teksti e vlerës maksimale të ndryshoreve The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Stili i vijës së pandërprerë Name of the solid line style for a graphed equation Stili i vijës me pika Name of the dotted line style for a graphed equation Stili i vijës me vijëza Name of the dashed line style for a graphed equation Blu deti Name of color in the color picker Turkeze Name of color in the color picker Vjollcë Name of color in the color picker E gjelbër Name of color in the color picker Jeshile mente Name of color in the color picker E gjelbër e errët Name of color in the color picker Ngjyrë qymyri Name of color in the color picker E kuqe Name of color in the color picker Ngjyrë kumbulle e çelur Name of color in the color picker E purpurt e errët Name of color in the color picker E verdhë flori Name of color in the color picker Portokalli e ndritshme Name of color in the color picker Kafe Name of color in the color picker E zezë Name of color in the color picker E bardhë Name of color in the color picker Ngjyra 1 Name of color in the color picker Ngjyra 2 Name of color in the color picker Ngjyra 3 Name of color in the color picker Ngjyra 4 Name of color in the color picker Tema e grafikut Graph settings heading for the theme options Gjithmonë e çelur Graph settings option to set graph to light theme Përputh me temën e aplikacionit Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Gjithmonë e çelur This is the automation name text for the Graph settings option to set graph to light theme Përputh me temën e aplikacionit This is the automation name text for the Graph settings option to set graph to match the app theme Funksioni u hoq Announcement used in Graphing Calculator when a function is removed from the function list Kutia e ekuacionit të analizës së funksionit This is the automation name text for the equation box in the function analysis panel Baras Screen reader prompt for the equal button on the graphing calculator operator keypad Më i vogël se Screen reader prompt for the Less than button Më i vogël ose i barabartë Screen reader prompt for the Less than or equal button I barabartë Screen reader prompt for the Equal button Më i madh ose i barabartë Screen reader prompt for the Greater than or equal button Më i madh se Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Parashtro Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza e funksionit Screen reader prompt for the function analysis grid Opsionet e grafikut Screen reader prompt for the graph options panel Listat e historisë dhe të memories Automation name for the group of controls for history and memory lists. Lista e memories Automation name for the group of controls for memory list. Vendi i historisë %1 u hoq {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Makina llogaritëse gjithmonë në krye Announcement to indicate calculator window is always shown on top. Makina llogaritëse kthyer në pamjen e plotë Announcement to indicate calculator window is now back to full view. Është zgjedhur zhvendosja aritmetike Label for a radio button that toggles arithmetic shift behavior for the shift operations. Është zgjedhur zhvendosja logjike Label for a radio button that toggles logical shift behavior for the shift operations. Është zgjedhur rrotullimi i zhvendosjes rrethore Label for a radio button that toggles rotate circular behavior for the shift operations. Është zgjedhur rrotullimi nëpërmjet bartjes së zhvendosjes rrethore Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Parametrat Header text of Settings page Pamja Subtitle of appearance setting on Settings page Tema e aplikacionit Title of App theme expander Zgjidh temën e aplikacionit për t'u shfaqur Description of App theme expander E çelur Lable for light theme option E errët Lable for dark theme option Përdor konfigurimet e sistemit Lable for the app theme option to use system setting Prapa Screen reader prompt for the Back button in title bar to back to main page Faqja e konfigurimeve Announcement used when Settings page is opened Hap menynë e kontekstit për veprimet në dispozicion Screen reader prompt for the context menu of the expression box Në rregull The text of OK button to dismiss an error dialog. Nuk mund të rikthejmë këtë fotografi. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/sr-Latn-RS/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Nevažeći unos Error message shown when the input makes a function fail, like log(-1) Rezultat je nedefinisan Error message shown when there's no possible value for a function. Nedovoljno memorije Error message shown when we run out of memory during a calculation. Prekoračenje Error message shown when there's an overflow during the calculation. Rezultat nije definisan Same as 101 Rezultat nije definisan Same 101 Prekoračenje Same as 107 Prekoračenje Same 107 Ne može se deliti nulom Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/sr-Latn-RS/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkulator {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkulator [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows kalkulator {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows kalkulator [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkulator {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkulator [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiraj Copy context menu string Nalepi Paste context menu string Približno jednako sa The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, vrednost %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 bit {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63. Sub-string used in automation name for 63 bit in bit flip 62. Sub-string used in automation name for 62 bit in bit flip 61. Sub-string used in automation name for 61 bit in bit flip 60. Sub-string used in automation name for 60 bit in bit flip 59. Sub-string used in automation name for 59 bit in bit flip 58. Sub-string used in automation name for 58 bit in bit flip 57. Sub-string used in automation name for 57 bit in bit flip 56. Sub-string used in automation name for 56 bit in bit flip 55. Sub-string used in automation name for 55 bit in bit flip 54. Sub-string used in automation name for 54 bit in bit flip 53. Sub-string used in automation name for 53 bit in bit flip 52. Sub-string used in automation name for 52 bit in bit flip 51. Sub-string used in automation name for 51 bit in bit flip 50. Sub-string used in automation name for 50 bit in bit flip 49. Sub-string used in automation name for 49 bit in bit flip 48. Sub-string used in automation name for 48 bit in bit flip 47. Sub-string used in automation name for 47 bit in bit flip 46. Sub-string used in automation name for 46 bit in bit flip 45. Sub-string used in automation name for 45 bit in bit flip 44. Sub-string used in automation name for 44 bit in bit flip 43. Sub-string used in automation name for 43 bit in bit flip 42. Sub-string used in automation name for 42 bit in bit flip 41. Sub-string used in automation name for 41 bit in bit flip 40. Sub-string used in automation name for 40 bit in bit flip 39. Sub-string used in automation name for 39 bit in bit flip 38. Sub-string used in automation name for 38 bit in bit flip 37. Sub-string used in automation name for 37 bit in bit flip 36. Sub-string used in automation name for 36 bit in bit flip 35. Sub-string used in automation name for 35 bit in bit flip 34. Sub-string used in automation name for 34 bit in bit flip 33. Sub-string used in automation name for 33 bit in bit flip 32. Sub-string used in automation name for 32 bit in bit flip 31. Sub-string used in automation name for 31 bit in bit flip 30. Sub-string used in automation name for 30 bit in bit flip 29. Sub-string used in automation name for 29 bit in bit flip 28. Sub-string used in automation name for 28 bit in bit flip 27. Sub-string used in automation name for 27 bit in bit flip 26. Sub-string used in automation name for 26 bit in bit flip 25. Sub-string used in automation name for 25 bit in bit flip 24. Sub-string used in automation name for 24 bit in bit flip 23. Sub-string used in automation name for 23 bit in bit flip 22. Sub-string used in automation name for 22 bit in bit flip 21. Sub-string used in automation name for 21 bit in bit flip 20. Sub-string used in automation name for 20 bit in bit flip 19. Sub-string used in automation name for 19 bit in bit flip 18. Sub-string used in automation name for 18 bit in bit flip 17. Sub-string used in automation name for 17 bit in bit flip 16. Sub-string used in automation name for 16 bit in bit flip 15. Sub-string used in automation name for 15 bit in bit flip 14. Sub-string used in automation name for 14 bit in bit flip 13. Sub-string used in automation name for 13 bit in bit flip 12. Sub-string used in automation name for 12 bit in bit flip 11. Sub-string used in automation name for 11 bit in bit flip 10. Sub-string used in automation name for 10 bit in bit flip 9. Sub-string used in automation name for 9 bit in bit flip 8. Sub-string used in automation name for 8 bit in bit flip 7. Sub-string used in automation name for 7 bit in bit flip 6. Sub-string used in automation name for 6 bit in bit flip 5. Sub-string used in automation name for 5 bit in bit flip 4. Sub-string used in automation name for 4 bit in bit flip 3. Sub-string used in automation name for 3 bit in bit flip 2. Sub-string used in automation name for 2 bit in bit flip 1. Sub-string used in automation name for 1 bit in bit flip najmanje značajan deo Used to describe the first bit of a binary number. Used in bit flip Otvori potpaletu memorije This is the automation name and label for the memory button when the memory flyout is closed. Zatvori potpaletu memorije This is the automation name and label for the memory button when the memory flyout is open. Zadrži na vrhu This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Nazad na puni prikaz This is the tool tip automation name for the always-on-top button when in always-on-top mode. Memorija This is the tool tip automation name for the memory button. Istorija (Ctrl+H) This is the tool tip automation name for the history button. Tastatura sa promenom bita This is the tool tip automation name for the bitFlip button. Cela tastatura This is the tool tip automation name for the numberPad button. Obriši svu memoriju (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Memorija The text that shows as the header for the memory list Memorija The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Istorija The text that shows as the header for the history list Istorija The automation name for the History pivot item that is shown when Calculator is in wide layout. Konvertor Label for a control that activates the unit converter mode. Naučni Label for a control that activates scientific mode calculator layout Standardni Label for a control that activates standard mode calculator layout. Režim konvertora Screen reader prompt for a control that activates the unit converter mode. Naučni režim Screen reader prompt for a control that activates scientific mode calculator layout Standardni režim Screen reader prompt for a control that activates standard mode calculator layout. Obriši svu istoriju "ClearHistory" used on the calculator history pane that stores the calculation history. Obriši svu istoriju This is the tool tip automation name for the Clear History button. Sakrij "HideHistory" used on the calculator history pane that stores the calculation history. Standardni The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Naučni The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programer The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konvertor The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group. Konvertor The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkulator The text that shows in the dropdown navigation control for the calculator group in upper case. Konverteri Pluralized version of the converter group text, used for the screen reader prompt. Kalkulatori Pluralized version of the calculator group text, used for the screen reader prompt. Prikaz je %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Izraz je %1, trenutni unos je %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Prikazano je %1 zarez {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Izraz je %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Prikaži vrednost kopiranu u međuspremnik Screen reader prompt for the Calculator display copy button, when the button is invoked. Istorija Screen reader prompt for the history flyout Memorija Screen reader prompt for the memory flyout Heksadecimalna %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimalna %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktalna %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binarna %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Obriši svu istoriju Screen reader prompt for the Calculator History Clear button Istorija je obrisana Screen reader prompt for the Calculator History Clear button, when the button is invoked. Sakrij istoriju Screen reader prompt for the Calculator History Hide button Otvori potpaletu istorije Screen reader prompt for the Calculator History button, when the flyout is closed. Zatvori potpaletu istorije Screen reader prompt for the Calculator History button, when the flyout is open. Skladište memorije Screen reader prompt for the Calculator Memory button Skladište memorije (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Obriši svu memoriju Screen reader prompt for the Calculator Clear Memory button Memorija je obrisana Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Opoziv memorije Screen reader prompt for the Calculator Memory Recall button Opoziv memorije (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Dodavanje memorije Screen reader prompt for the Calculator Memory Add button Dodavanje memorije (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Oduzimanje memorije Screen reader prompt for the Calculator Memory Subtract button Oduzimanje memorije (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Obriši stavku memorije Screen reader prompt for the Calculator Clear Memory button Obriši stavku memorije This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Dodaj u stavku memorije Screen reader prompt for the Calculator Memory Add button in the Memory list Dodaj u stavku memorije This is the tool tip automation name for the Calculator Memory Add button in the Memory list Oduzmi iz stavke memorije Screen reader prompt for the Calculator Memory Subtract button in the Memory list Oduzmi iz stavke memorije This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Obriši stavku memorije Screen reader prompt for the Calculator Clear Memory button Obriši stavku memorije Text string for the Calculator Clear Memory option in the Memory list context menu Dodaj u stavku memorije Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Dodaj u stavku memorije Text string for the Calculator Memory Add option in the Memory list context menu Oduzmi iz stavke memorije Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Oduzmi iz stavke memorije Text string for the Calculator Memory Subtract option in the Memory list context menu Izbriši Text string for the Calculator Delete swipe button in the History list Tekst Text string for the Calculator Copy option in the History list context menu Izbriši Text string for the Calculator Delete option in the History list context menu Izbriši stavku istorije Screen reader prompt for the Calculator Delete swipe button in the History list Izbriši stavku istorije Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Nula Screen reader prompt for the Calculator number "0" button Jedan Screen reader prompt for the Calculator number "1" button Dva Screen reader prompt for the Calculator number "2" button Tri Screen reader prompt for the Calculator number "3" button Četiri Screen reader prompt for the Calculator number "4" button Pet Screen reader prompt for the Calculator number "5" button Šest Screen reader prompt for the Calculator number "6" button Sedam Screen reader prompt for the Calculator number "7" button Osam Screen reader prompt for the Calculator number "8" button Devet Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button I Screen reader prompt for the Calculator And button Ili Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Rotiraj nalevo Screen reader prompt for the Calculator ROL button Rotiraj nadesno Screen reader prompt for the Calculator ROR button Pomeri levo Screen reader prompt for the Calculator LSH button Pomeri desno Screen reader prompt for the Calculator RSH button Isključivo ili Screen reader prompt for the Calculator XOR button Prikaži/sakrij četvorostruku reč Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Prikaži/sakrij dvostruku reč Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Prikaži/sakrij reč Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Prikaži/sakrij bajt Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Tastatura sa promenom bita Screen reader prompt for the Calculator bitFlip button Cela tastatura Screen reader prompt for the Calculator numberPad button Decimalni razdelnik Screen reader prompt for the "." button Obriši stavku Screen reader prompt for the "CE" button Obriši Screen reader prompt for the "C" button Deli Screen reader prompt for the divide button on the number pad Množenje Screen reader prompt for the multiply button on the number pad Jednako Screen reader prompt for the equals button on the scientific operator keypad Recipročna funkcija Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Kvadratni koren Screen reader prompt for the square root button on the scientific operator keypad Procenat Screen reader prompt for the percent button on the scientific operator keypad Pozitivno negativno Screen reader prompt for the negate button on the scientific operator keypad Pozitivno negativno Screen reader prompt for the negate button on the converter operator keypad Recipročna vrednost Screen reader prompt for the invert button on the scientific operator keypad Leva zagrada Screen reader prompt for the Calculator "(" button on the scientific operator keypad Otvorena zagrada, broj otvorenih zagrada %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Desna zagrada Screen reader prompt for the Calculator ")" button on the scientific operator keypad Broj otvorenih zagrada %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Nema otvorenih zagrada koje se mogu zatvoriti. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Naučni način zapisivanja Screen reader prompt for the Calculator F-E the scientific operator keypad Hiperbolična funkcija Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Kosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hiperbolični sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hiperbolični kosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hiperbolični tangens Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kub Screen reader prompt for the x cubed on the scientific operator keypad. Arkus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arkus kosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arkus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hiperbolični arkus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hiperbolični arkus kosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hiperbolični arkus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. „X“ na stepen Screen reader prompt for x power y button on the scientific operator keypad. Deset na stepen Screen reader prompt for the 10 power x button on the scientific operator keypad. „e“ na stepen Screen reader for the e power x on the scientific operator keypad. „y“ koren od „x“ Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Evidencija Screen reader for the log base 10 on the scientific operator keypad Prirodni logaritam Screen reader for the log base e on the scientific operator keypad Modul Screen reader for the mod button on the scientific operator keypad Eksponencijalno Screen reader for the exp button on the scientific operator keypad Stepen minut sekunda Screen reader for the exp button on the scientific operator keypad Stepeni Screen reader for the exp button on the scientific operator keypad Deo celog broja Screen reader for the int button on the scientific operator keypad Deo razlomka Screen reader for the frac button on the scientific operator keypad Faktorijel Screen reader for the factorial button on the basic operator keypad Prikaži/sakrij stepene This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Prikaži/sakrij gradijane This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Prikaži/sakrij radijane This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Padajuća lista sa režimima Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Padajuća lista sa kategorijama Screen reader prompt for the Categories dropdown field. Zadrži na vrhu Screen reader prompt for the Always-on-Top button when in normal mode. Nazad na puni prikaz Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Zadrži na vrhu (Alt + strelica nagore) This is the tool tip automation name for the Always-on-Top button when in normal mode. Nazad na puni prikaz (Alt + strelica nadole) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konvertuj iz %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konvertuj iz %1 zarez %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konvertuj u %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 je %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Jedinica unosa Screen reader prompt for the Unit Converter Units1 i.e. top units field. Jedinica izlaza Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Površina Unit conversion category name called Area (eg. area of a sports field in square meters) Podaci Unit conversion category name called Data Energija Unit conversion category name called Energy. (eg. the energy in a battery or in food) Dužina Unit conversion category name called Length Napajanje Unit conversion category name called Power (eg. the power of an engine or a light bulb) Brzina Unit conversion category name called Speed Vreme Unit conversion category name called Time Zapremina Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatura Unit conversion category name called Temperature Težina i masa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Pritisak Unit conversion category name called Pressure Ugao Unit conversion category name called Angle Valuta Unit conversion category name called Currency Tečnih unci (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Tečnih unci (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (SAD) An abbreviation for a measurement unit of volume Galona (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Galona (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (SAD) An abbreviation for a measurement unit of volume Litara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Mililitara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume Pinta (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pinta (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (SAD) An abbreviation for a measurement unit of volume Kašika (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kašika (SAD) An abbreviation for a measurement unit of volume Kašičica (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kašičica (SAD) An abbreviation for a measurement unit of volume Kašika (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kašika (UK) An abbreviation for a measurement unit of volume Kašičica (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kašičica (VB) An abbreviation for a measurement unit of volume Kvartova (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Kvartova (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (SAD) An abbreviation for a measurement unit of volume Šolja (SAD) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šolja (SAD) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length AC An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume Btu/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy GB An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area ks (SAD) An abbreviation for a measurement unit of power č An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data Kb An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kN An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) MB An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length PB An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area TB An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power sed An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length god An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Ari A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Britanska termalna jedinica A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU-ovi/minut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Termalnih kalorija A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimetara u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubnih centimetara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubnih stopa A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubnih inča A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubnih metara A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubnih jardi A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dana A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celzijus An option in the unit converter to select degrees Celsius Farenhajt An option in the unit converter to select degrees Fahrenheit Elektronvolti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa-funti A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stopa-funti/minut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Konjskih snaga (SAD) A measurement unit for power Sati A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Inča A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Džula A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovat-sati A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorija hrane A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilodžula A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometara na čas A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilovata A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Čvorova A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mah A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metara u sekundi A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrona A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekundi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milja A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milja na čas A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milimetara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milisekundi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuta A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibl A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometara A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Angstroms A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautičkih milja A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekundi A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih centimetara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih stopa A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih inči A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih kilometara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih metara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih milja A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih milimetara A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratnih jardi A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Vata A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sedmica A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jardi A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Godine A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight step. An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kpa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight tona (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight tona (SAD) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karata A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stepeni A measurement unit for Angle. Radijani A measurement unit for Angle. Gradijani A measurement unit for Angle. Atmosfere A measurement unit for Pressure. Bari A measurement unit for Pressure. Kilopaskali A measurement unit for Pressure. Millimetri žive A measurement unit for Pressure. Paskali A measurement unit for Pressure. Funti po kvadratnom inču A measurement unit for Pressure. Centigrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagrama A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektograma A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilograma A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Engleskih tona (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miligrama A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Unci A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Funta A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Američkih tona (SAD) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kamen A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Metričkih tona A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ova A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-ova A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fudbalskih terena A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fudbalskih terena A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketa A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ova A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-ova A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterija AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) baterija AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spajalica A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) spajalica A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) džambo džetova A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) džambo džetova A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sijalica A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sijalica A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konja A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) konja A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kada A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kada A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pahuljica A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pahuljica A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonova An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slonova An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kornjača A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kornjača A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviona A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) aviona A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kitova A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kitova A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šoljica A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šoljica A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazena An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bazena An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šaka A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) šaka A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listova papira A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) listova papira A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dvoraca A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) dvoraca A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) banana A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) parčadi torte A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) parčad torti A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lokomotiva A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fudbalskih lopti A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fudbalskih lopti A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stavka memorije Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Nazad Screen reader prompt for the About panel back button Nazad Content of tooltip being displayed on AboutControlBackButton Uslovi licenciranja za Microsoft softver Displayed on a link to the Microsoft Software License Terms on the About panel Pregled Label displayed next to upcoming features Microsoft izjava o privatnosti Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Sva prava zadržana. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Da biste saznali kako možete da date doprinos za Windows kalkulator, pogledajte projekat na %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Osnovni podaci Subtitle of about message on Settings page Pošalji povratne informacije The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Još uvek nema istorije. The text that shows as the header for the history list Ništa nije sačuvano u memoriji. The text that shows as the header for the memory list Memorija Screen reader prompt for the negate button on the converter operator keypad Nije moguće nalepiti ovaj izraz The paste operation cannot be performed, if the expression is invalid. Gibibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eksbibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jotabajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibitovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Jobibajtovi A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Izračunavanje datuma Režim izračunavanja Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Dodaj Add toggle button text Dodaj ili oduzmi dane Add or Subtract days option Datum Date result label Razlika između datuma Date difference option Dana Add/Subtract Days label Razlika Difference result label Od From Date Header for Difference Date Picker Meseci Add/Subtract Months label Oduzmi Subtract toggle button text Za To Date Header for Difference Date Picker Godine Add/Subtract Years label Datum izvan ograničenja Out of bound message shown as result when the date calculation exceeds the bounds dan dan/dana mesec mesec/meseca/meseci Isti datumi sedmica sedmica/sedmice godina godina/godine Razlika %1 Automation name for reading out the date difference. %1 = Date difference Dobijeni datum%1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Režim kalkulatora – %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Režim konvertera – %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Režim izračunavanja datuma Automation name for when the mode header is focused and the current mode is Date calculation. Liste istorije i memorije Automation name for the group of controls for history and memory lists. Kontrole za memoriju Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardne devijacije Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Kontrole prikaza Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardni operatori Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerička tastatura Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Operateri ugla Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Naučne funkcije Automation name for the group of Scientific functions. Izbor opcije radiks Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programerski operateri Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Izbor režima unosa Automation name for the group of input mode toggling buttons. Tastatura sa promenom bita Automation name for the group of bit toggling buttons. Pomeri izraz nalevo Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Pomeri izraz nadesno Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Dostigli ste ograničenje broja cifara. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". Broj %1 je sačuvan u memoriji {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Memorijski slot %1 ima vrednost %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Memorijski slot %1 je obrisan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". podeljeno sa Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. puta Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. na stepen Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. ipsilon koren Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. se pomera ulevo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. se pomera udesno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. ili Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. iksor Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. i Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Ažurirano %1 u %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Ažuriraj kurs The text displayed for a hyperlink button that refreshes currency converter ratios. Možda se primenjuju troškovi za prenos podataka. The text displayed when users are on a metered connection and using currency converter. Nismo uspeli da preuzmemo nove cene. Pokušajte ponovo kasnije. The text displayed when currency ratio data fails to load. Van mreže ste. Proverite svoje%HL%mrežne postavke%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Ažuriranje cena valuta This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Cene valuta ažurirane This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Nije moguće ažurirati cene This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} UG AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the area converter navbar item. {StringCategory="Accelerator"} O AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} P AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} N AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} BR AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} VR AccessKey for the time converter navbar item. {StringCategory="Accelerator"} Z AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} O Access key for the Clear history button.{StringCategory="Accelerator"} O Access key for the Clear memory button. {StringCategory="Accelerator"} Obriši svu memoriju (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Obriši svu memoriju Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} stepeni sinusa Name for the sine function in degrees mode. Used by screen readers. radijani sinusa Name for the sine function in radians mode. Used by screen readers. gradijani sinusa Name for the sine function in gradians mode. Used by screen readers. stepeni inverznog sinusa Name for the inverse sine function in degrees mode. Used by screen readers. radijani inverznog sinusa Name for the inverse sine function in radians mode. Used by screen readers. gradijani inverznog sinusa Name for the inverse sine function in gradians mode. Used by screen readers. hiperbolični sinus Name for the hyperbolic sine function. Used by screen readers. inverzni hiperbolični sinus Name for the inverse hyperbolic sine function. Used by screen readers. stepeni kosinusa Name for the cosine function in degrees mode. Used by screen readers. radijani kosinusa Name for the cosine function in radians mode. Used by screen readers. gradijani kosinusa Name for the cosine function in gradians mode. Used by screen readers. stepeni inverznog kosinusa Name for the inverse cosine function in degrees mode. Used by screen readers. radijani inverznog kosinusa Name for the inverse cosine function in radians mode. Used by screen readers. gradijani inverznog kosinusa Name for the inverse cosine function in gradians mode. Used by screen readers. hiperbolični kosinus Name for the hyperbolic cosine function. Used by screen readers. inverzni hiperbolični kosinus Name for the inverse hyperbolic cosine function. Used by screen readers. stepeni tangensa Name for the tangent function in degrees mode. Used by screen readers. radijani tangensa Name for the tangent function in radians mode. Used by screen readers. gradijani tangensa Name for the tangent function in gradians mode. Used by screen readers. stepeni inverznog tangensa Name for the inverse tangent function in degrees mode. Used by screen readers. radijani inverznog tangensa Name for the inverse tangent function in radians mode. Used by screen readers. gradijani inverznog tangensa Name for the inverse tangent function in gradians mode. Used by screen readers. hiperbolični tangens Name for the hyperbolic tangent function. Used by screen readers. inverzni hiperbolični tangens Name for the inverse hyperbolic tangent function. Used by screen readers. stepeni sekansa Name for the secant function in degrees mode. Used by screen readers. radijani sekansa Name for the secant function in radians mode. Used by screen readers. gradijani sekansa Name for the secant function in gradians mode. Used by screen readers. stepeni inverznog sekansa Name for the inverse secant function in degrees mode. Used by screen readers. radijani inverznog sekansa Name for the inverse secant function in radians mode. Used by screen readers. gradijani inverznog sekansa Name for the inverse secant function in gradians mode. Used by screen readers. hiperbolični sekans Name for the hyperbolic secant function. Used by screen readers. inverzni hiperbolični sekans Name for the inverse hyperbolic secant function. Used by screen readers. stepeni kosekansa Name for the cosecant function in degrees mode. Used by screen readers. radijani kosekansa Name for the cosecant function in radians mode. Used by screen readers. gradijani kosekansa Name for the cosecant function in gradians mode. Used by screen readers. stepeni inverznog kosekansa Name for the inverse cosecant function in degrees mode. Used by screen readers. radijani inverznog kosekansa Name for the inverse cosecant function in radians mode. Used by screen readers. gradijani inverznog kosekansa Name for the inverse cosecant function in gradians mode. Used by screen readers. hiperbolični kosekans Name for the hyperbolic cosecant function. Used by screen readers. inverzni hiperbolični kosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. stepeni kotangensa Name for the cotangent function in degrees mode. Used by screen readers. Radijani kotangensa Name for the cotangent function in radians mode. Used by screen readers. gradijani kotangensa Name for the cotangent function in gradians mode. Used by screen readers. stepeni inverznog kotangensa Name for the inverse cotangent function in degrees mode. Used by screen readers. radijani inverznog kotangensa Name for the inverse cotangent function in radians mode. Used by screen readers. gradijani inverznog kotangensa Name for the inverse cotangent function in gradians mode. Used by screen readers. hiperbolični kotangens Name for the hyperbolic cotangent function. Used by screen readers. inverzni hiperbolični kotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubni koren Name for the cube root function. Used by screen readers. Logaritamska osnova Name for the logbasey function. Used by screen readers. Apsolutna vrednost Name for the absolute value function. Used by screen readers. pomeranje nalevo Name for the programmer function that shifts bits to the left. Used by screen readers. pomeranje nadesno Name for the programmer function that shifts bits to the right. Used by screen readers. faktorijel Name for the factorial function. Used by screen readers. stepen minut sekunda Name for the degree minute second (dms) function. Used by screen readers. prirodna evidencija Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. ipsilon koren Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorija %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft ugovor o pružanju usluga Displayed on a link to the Microsoft Services Agreement in the about this app information Pjeong An abbreviation for a measurement unit of area. Pjeong A measurement unit for area. Od From Date Header for AddSubtract Date Picker Pomerite rezultat izračunavanja nalevo Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Pomerite rezultat izračunavanja nadesno Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Izračunavanje nije uspelo Text displayed when the application is not able to do a calculation Logaritamska osnova Y Screen reader prompt for the logBaseY button Trigonometrija Displayed on the button that contains a flyout for the trig functions in scientific mode. Funkcija Displayed on the button that contains a flyout for the general functions in scientific mode. Nejednakosti Displayed on the button that contains a flyout for the inequality functions. Nejednakosti Screen reader prompt for the Inequalities button Nad bitovima Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Pomeranje bitova Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Recipročna funkcija Screen reader prompt for the shift button in the trig flyout in scientific mode. Hiperbolična funkcija Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hiperbolični sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arkus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hiperbolični arkus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Kosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hiperbolični kosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arkus kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hiperbolični arkus kosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Kotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hiperbolični kotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arkus kotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hiperbolični arkus kotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Minimalna vrednost Screen reader prompt for the Calculator button floor in the scientific flyout keypad Maksimalna vrednost Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Nasumično izabrani Screen reader prompt for the Calculator button random in the scientific flyout keypad Apsolutna vrednost Screen reader prompt for the Calculator button abs in the scientific flyout keypad Ojlerov broj Screen reader prompt for the Calculator button e in the scientific flyout keypad Dva u eksponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Logičko NI Screen reader prompt for the Calculator button nand in the scientific flyout keypad Logičko NI Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Logičko NILI Screen reader prompt for the Calculator button nor in the scientific flyout keypad Logičko NILI Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotiraj nalevo uz prenos Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotiraj nadesno uz prenos Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Pomeri levo Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Pomeranje levo Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Pomeri desno Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Pomeranje desno Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetičko pomeranje Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logičko pomeranje Label for a radio button that toggles logical shift behavior for the shift operations. Rotiranje cirkularnog pomeranja Label for a radio button that toggles rotate circular behavior for the shift operations. Rotiraj kroz izvođenje cirkularnog pomeranja Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubni koren Screen reader prompt for the cube root button on the scientific operator keypad Trigonometrija Screen reader prompt for the square root button on the scientific operator keypad Funkcije Screen reader prompt for the square root button on the scientific operator keypad Nad bitovima Screen reader prompt for the square root button on the scientific operator keypad Pomeranje bitova Screen reader prompt for the square root button on the scientific operator keypad Paneli naučnih operatora Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Paneli za programerske operatore Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad najznačajniji deo Used to describe the last bit of a binary number. Used in bit flip Grafičko predstavljanje Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Grafikon Screen reader prompt for the plot button on the graphing calculator operator keypad Automatsko osvežavanje prikaza (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Prikaz grafika Screen reader prompt for the graph view button. Automatsko najbolje uklapanje Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Ručno podešavanje Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Prikaz grafikona je uspostavljen na početnu vrednost Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Uvećaj (Ctrl + plus) This is the tool tip automation name for the Calculator zoom in button. Uvećaj Screen reader prompt for the zoom in button. Umanji (Ctrl + minus) This is the tool tip automation name for the Calculator zoom out button. Umanji Screen reader prompt for the zoom out button. Dodaj jednačinu Placeholder text for the equation input button Deljenje trenutno nije moguće. If there is an error in the sharing action will display a dialog with this text. U redu Used on the dismiss button of the share action error dialog. Evo šta je grafički predstavljeno pomoću Windows kalkulatora Sent as part of the shared content. The title for the share. Jednačine Header that appears over the equations section when sharing Promenljive Header that appears over the variables section when sharing Slika grafikona sa jednačinama Alt text for the graph image when output via Share Promenljive Header text for variables area Korak Label text for the step text box Minimum Label text for the min text box Maksimum Label text for the max text box Boja Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Analiza funkcije Title for KeyGraphFeatures Control Funkcija nema nijednu horizontalnu asimptotu. Message displayed when the graph does not have any horizontal asymptotes Funkcija nema nijednu tačku infleksije. Message displayed when the graph does not have any inflection points Funkcija nema nijednu maksimalnu tačku. Message displayed when the graph does not have any maxima Funkcija nema nijednu minimalnu tačku. Message displayed when the graph does not have any minima Stalno String describing constant monotonicity of a function Opadajuće String describing decreasing monotonicity of a function Nije moguće utvrditi monotonost funkcije. Error displayed when monotonicity cannot be determined Rastuće String describing increasing monotonicity of a function Monotonost funkcije je nepoznata. Error displayed when monotonicity is unknown Funkcija nema nijednu zakošenu asimptotu. Message displayed when the graph does not have any oblique asymptotes Nije moguće utvrditi parnost funkcije. Error displayed when parity is cannot be determined Funkcija je parna. Message displayed with the function parity is even Funkcija nije ni parna ni neparna. Message displayed with the function parity is neither even nor odd Funkcija je neparna. Message displayed with the function parity is odd Parnost funkcije je nepoznata. Error displayed when parity is unknown Periodičnost nije podržana za ovu funkciju. Error displayed when periodicity is not supported Funkcija nije periodična. Message displayed with the function periodicity is not periodic Periodičnost funkcije je nepoznata. Message displayed with the function periodicity is unknown Ove funkcije su previše složene za izračunavanje pomoću kalkulatora: Error displayed when analysis features cannot be calculated Funkcija nema nijednu vertikalnu asimptotu. Message displayed when the graph does not have any vertical asymptotes Funkcija nema nijedan x-odsečak. Message displayed when the graph does not have any x-intercepts Funkcija nema nijedan y-odsečak. Message displayed when the graph does not have any y-intercepts Domen Title for KeyGraphFeatures Domain Property Horizontalne asimptote Title for KeyGraphFeatures Horizontal aysmptotes Property Tačke infleksije Title for KeyGraphFeatures Inflection points Property Analiza nije podržana za ovu funkciju. Error displayed when graph analysis is not supported or had an error. Analiza je podržana samo za funkcije u obliku f(x). Na primer: y=x Error displayed when graph analysis detects the function format is not f(x). Maksima Title for KeyGraphFeatures Maxima Property Minima Title for KeyGraphFeatures Minima Property Monotonost Title for KeyGraphFeatures Monotonicity Property Zakošene asimptote Title for KeyGraphFeatures Oblique asymptotes Property Parnost Title for KeyGraphFeatures Parity Property Ciklus Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Opseg Title for KeyGraphFeatures Range Property Vertikalne asimptote Title for KeyGraphFeatures Vertical asymptotes Property X-odsečak Title for KeyGraphFeatures XIntercept Property Y-odsečak Title for KeyGraphFeatures YIntercept Property Nije moguće izvršiti analizu za funkciju. Nije moguće izračunati domen za ovu funkciju. Error displayed when Domain is not returned from the analyzer. Nije moguće izračunati opseg za ovu funkciju. Error displayed when Range is not returned from the analyzer. Višak (broj je prevelik) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Režim radijana je obavezan da bi se grafički predstavila ova jednačina. Error that occurs during graphing when radians is required. Ova funkcija je previše složena za grafičko predstavljanje Error that occurs during graphing when the equation is too complex. Režim stepena je obavezan da bi se grafički predstavila ova funkcija Error that occurs during graphing when degrees is required Funkcija faktorijela ima nevažeći argument Error that occurs during graphing when a factorial function has an invalid argument. Funkcija faktorijela ima argument koji je prevelik za grafičko predstavljanje Error that occurs during graphing when a factorial has a large n Modul može da se koristi samo sa celim brojevima Error that occurs during graphing when modulo is used with a float. Jednačina nema rešenje Error that occurs during graphing when the equation has no solution. Ne može se deliti nulom Error that occurs during graphing when a divison by zero occurs. Jednačina sadrži logičke uslove koji se međusobno isključuju Error that occurs during graphing when mutually exclusive conditions are used. Jednačina je van domena Error that occurs during graphing when the equation is out of domain. Grafičko predstavljanje ove jednačine nije podržano Error that occurs during graphing when the equation is not supported. Jednačini nedostaje otvorena zagrada Error that occurs during graphing when the equation is missing a ( Jednačini nedostaje zatvorena zagrada Error that occurs during graphing when the equation is missing a ) Postoji previše decimalnih mesta u broju Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Decimalnom mestu nedostaju cifre Error that occurs during graphing with a decimal point without digits Neočekivani kraj izraza Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Neočekivani znakovi u izrazu Error that occurs during graphing when there is an unexpected token. Nevažeći znakovi u izrazu Error that occurs during graphing when there is an invalid token. Ima previše znakova jednakosti Error that occurs during graphing when there are too many equals. Funkcija mora da sadrži najmanje jednu x ili y promenljivu Error that occurs during graphing when the equation is missing x or y. Nevažeći izraz Error that occurs during graphing when an invalid syntax is used. Izraz je prazan Error that occurs during graphing when the expression is empty Jednakost je korišćena bez jednačine Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Zagrada nedostaje nakon imena funkcije Error that occurs during graphing when parenthesis are missing after a function. Matematička operacija ima netačan broj parametara Error that occurs during graphing when a function has the wrong number of parameters Ime promenljive je nevažeće Error that occurs during graphing when a variable name is invalid. Jednačini nedostaje otvorena zagrada Error that occurs during graphing when a { is missing Jednačini nedostaje zatvorena zagrada Error that occurs during graphing when a } is missing. „i“ i „I“ ne mogu da se koriste kao imena promenljivih Error that occurs during graphing when i or I is used. Nije moguće grafički predstaviti jednačinu General error that occurs during graphing. Nije moguće razrešiti cifru za datu osnovicu Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Osnovica mora biti veća od 2 i manja od 36 Error that occurs during graphing when the base is out of range. Matematička operacija zahteva da jedan od parametara bude promenljiva Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Jednačina meša u logičke i skalarne operande Error that occurs during graphing when operands are mixed. Such as true and 1. x ili y ne mogu da se koriste u gornjim ili donjim ograničenjima Error that occurs during graphing when x or y is used in integral upper limits. x ili y ne mogu da se koriste u tački ograničenja Error that occurs during graphing when x or y is used in the limit point. Nije moguće koristiti složenu beskonačnost Error that occurs during graphing when complex infinity is used Nije moguće koristiti složene brojeve u nejednakostima Error that occurs during graphing when complex numbers are used in inequalities. Nazad na listu funkcija This is the tooltip for the back button in the equation analysis page in the graphing calculator Nazad na listu funkcija This is the automation name for the back button in the equation analysis page in the graphing calculator Analiziraj funkciju This is the tooltip for the analyze function button Analiziraj funkciju This is the automation name for the analyze function button Analiziraj funkciju This is the text for the for the analyze function context menu command Ukloni jednačinu This is the tooltip for the graphing calculator remove equation buttons Ukloni jednačinu This is the automation name for the graphing calculator remove equation buttons Ukloni jednačinu This is the text for the for the remove equation context menu command Deli This is the automation name for the graphing calculator share button. Deli This is the tooltip for the graphing calculator share button. Promeni stil jednačine This is the tooltip for the graphing calculator equation style button Promeni stil jednačine This is the automation name for the graphing calculator equation style button Promeni stil jednačine This is the text for the for the equation style context menu command Prikaži jednačinu This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Sakrij jednačinu This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Prikaži jednačinu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Sakrij jednačinu %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Zaustavi praćenje This is the tooltip/automation name for the graphing calculator stop tracing button Započni praćenje This is the tooltip/automation name for the graphing calculator start tracing button Prozor za prikazivanje grafikona, x-osa ograničena sa %1 i %2, y-osa ograničena sa %3 i %4, prikazuje ovoliko jednačina: %5 {Locked="%1","%2", "%3", "%4", "%5"}. Konfiguriši klizač This is the tooltip text for the slider options button in Graphing Calculator Konfiguriši klizač This is the automation name text for the slider options button in Graphing Calculator Prebaci se na režim jednačine Used in Graphing Calculator to switch the view to the equation mode Prebaci se na režim grafikona Used in Graphing Calculator to switch the view to the graph mode Prebaci se na režim jednačine Used in Graphing Calculator to switch the view to the equation mode Trenutni režim je režim jednačine Announcement used in Graphing Calculator when switching to the equation mode Trenutni režim je režim grafikona Announcement used in Graphing Calculator when switching to the graph mode Prozor Heading for window extents on the settings Stepeni Degrees mode on settings page Gradijani Gradian mode on settings page Radijani Radians mode on settings page Jedinice Heading for Unit's on the settings Uspostavljanje početne vrednosti prikaza Hyperlink button to reset the view of the graph X maksimalna vrednost X maximum value header X minimalna vrednost X minimum value header Y maksimalna vrednost Y Maximum value header Y minimalna vrednost Y minimum value header Opcije grafikona This is the tooltip text for the graph options button in Graphing Calculator Opcije grafikona This is the automation name text for the graph options button in Graphing Calculator Opcije grafikona Heading for the Graph options flyout in Graphing mode. Promenljive opcije Screen reader prompt for the variable settings toggle button Opcije uključivanja/isključivanja promenljivih Tool tip for the variable settings toggle button Debljina linija Heading for the Graph options flyout in Graphing mode. Opcije linija Heading for the equation style flyout in Graphing mode. Mala širina linije Automation name for line width setting Srednja širina linije Automation name for line width setting Velika širina linije Automation name for line width setting Izuzetno velika širina linije Automation name for line width setting Unesite izraz this is the placeholder text used by the textbox to enter an equation Kopiraj Copy menu item for the graph context menu Isecanje Cut menu item from the Equation TextBox Kopiranje Copy menu item from the Equation TextBox Nalepi Paste menu item from the Equation TextBox Opozivanje radnje Undo menu item from the Equation TextBox Izaberi sve Select all menu item from the Equation TextBox Unos funkcije The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Unos funkcije The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Tabla za unos funkcija The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Tabla sa promenljivim The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Lista promenljivih The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Stavka liste promenljive %1 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Okvir za tekst vrednosti promenljive The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Klizač vrednosti promenljive The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Okvir za tekst minimalne vrednosti promenljive The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Okvir za tekst vrednosti koraka promenljive The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Okvir za tekst sa maksimalnom vrednošću promenljive The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Stil solidne linije Name of the solid line style for a graphed equation Stil linije tačke Name of the dotted line style for a graphed equation Stil linije crte Name of the dashed line style for a graphed equation Mornarsko plavo Name of color in the color picker Morska pena Name of color in the color picker Ljubičasto Name of color in the color picker Zeleno Name of color in the color picker Menta zelena Name of color in the color picker Tamnozelena Name of color in the color picker Boja uglja Name of color in the color picker Crveno Name of color in the color picker Svetlo tamnoljubičasta Name of color in the color picker Magenta Name of color in the color picker Žuto zlato Name of color in the color picker Svetlo narandžasta Name of color in the color picker Braon Name of color in the color picker Crno Name of color in the color picker Bela Name of color in the color picker Boja 1 Name of color in the color picker Boja 2 Name of color in the color picker Boja 3 Name of color in the color picker Boja 4 Name of color in the color picker Tema grafikon Graph settings heading for the theme options Uvek svetlo Graph settings option to set graph to light theme Podudaranje teme aplikacije Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Uvek svetlo This is the automation name text for the Graph settings option to set graph to light theme Podudaranje teme aplikacije This is the automation name text for the Graph settings option to set graph to match the app theme Funkcija je uklonjena Announcement used in Graphing Calculator when a function is removed from the function list Okvir jednačine za analizu funkcija This is the automation name text for the equation box in the function analysis panel Jednako Screen reader prompt for the equal button on the graphing calculator operator keypad Manje od Screen reader prompt for the Less than button Manje je od ili je jednako Screen reader prompt for the Less than or equal button Jednako je Screen reader prompt for the Equal button Veće je od ili je jednako Screen reader prompt for the Greater than or equal button Veće je od Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Prosledi Screen reader prompt for the submit button on the graphing calculator operator keypad Analiza funkcija Screen reader prompt for the function analysis grid Opcije grafikona Screen reader prompt for the graph options panel Liste istorije i memorije Automation name for the group of controls for history and memory lists. Lista memorije Automation name for the group of controls for memory list. Slot za istoriju %1 obrisan {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkulator se uvek prikazuje na vrhu Announcement to indicate calculator window is always shown on top. Kalkulator je vraćen na prikaz preko celog ekrana Announcement to indicate calculator window is now back to full view. Izabrano je aritmetičko pomeranje Label for a radio button that toggles arithmetic shift behavior for the shift operations. Izabrana je Logičko pomeranje Label for a radio button that toggles logical shift behavior for the shift operations. Izabrano je rotiranje cirkularnog pomeranja Label for a radio button that toggles rotate circular behavior for the shift operations. Izabrano je rotiranje kroz izvođenje cirkularnog pomeranja Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Postavke Header text of Settings page Izgled Subtitle of appearance setting on Settings page Tema aplikacije Title of App theme expander Izaberite temu aplikacije koju želite da prikažete Description of App theme expander Svetlo Lable for light theme option Tamno Lable for dark theme option Koristi sistemsku postavku Lable for the app theme option to use system setting Nazad Screen reader prompt for the Back button in title bar to back to main page Stranica sa postavkama Announcement used when Settings page is opened Otvorite kontekstualni meni za dostupne radnje Screen reader prompt for the context menu of the expression box U redu The text of OK button to dismiss an error dialog. Nije moguće vratiti ovaj snimak u prethodno stanje. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/sv-SE/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Ogiltig inmatning Error message shown when the input makes a function fail, like log(-1) Odefinierat resultat Error message shown when there's no possible value for a function. Slut på minne Error message shown when we run out of memory during a calculation. Dataspill Error message shown when there's an overflow during the calculation. Odefinierat resultat Same as 101 Odefinierat resultat Same 101 Dataspill Same as 107 Dataspill Same 107 Det går inte att dela med noll Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/sv-SE/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Kalkylatorn med graffunktion {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. Kalkylatorn [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows Kalkylatorn {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows Kalkylatorn [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. Kalkylatorn {@Appx_Description@} This description is used for the official application when published through Windows Store. Kalkylatorn [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Kopiera Copy context menu string Klistra in Paste context menu string Ungefär lika med The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, värde %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 biten {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63:e Sub-string used in automation name for 63 bit in bit flip 62:a Sub-string used in automation name for 62 bit in bit flip 61:a Sub-string used in automation name for 61 bit in bit flip 60:e Sub-string used in automation name for 60 bit in bit flip 59:e Sub-string used in automation name for 59 bit in bit flip 58:e Sub-string used in automation name for 58 bit in bit flip 57:e Sub-string used in automation name for 57 bit in bit flip 56:e Sub-string used in automation name for 56 bit in bit flip 55:e Sub-string used in automation name for 55 bit in bit flip 54:e Sub-string used in automation name for 54 bit in bit flip 53:e Sub-string used in automation name for 53 bit in bit flip 52:a Sub-string used in automation name for 52 bit in bit flip 51:a Sub-string used in automation name for 51 bit in bit flip 50:e Sub-string used in automation name for 50 bit in bit flip 49:e Sub-string used in automation name for 49 bit in bit flip 48:e Sub-string used in automation name for 48 bit in bit flip 47:e Sub-string used in automation name for 47 bit in bit flip 46:e Sub-string used in automation name for 46 bit in bit flip 45:e Sub-string used in automation name for 45 bit in bit flip 44:e Sub-string used in automation name for 44 bit in bit flip 43:e Sub-string used in automation name for 43 bit in bit flip 42:a Sub-string used in automation name for 42 bit in bit flip 41:a Sub-string used in automation name for 41 bit in bit flip 40:e Sub-string used in automation name for 40 bit in bit flip 39:e Sub-string used in automation name for 39 bit in bit flip 38:e Sub-string used in automation name for 38 bit in bit flip 37:e Sub-string used in automation name for 37 bit in bit flip 36:e Sub-string used in automation name for 36 bit in bit flip 35:e Sub-string used in automation name for 35 bit in bit flip 34:e Sub-string used in automation name for 34 bit in bit flip 33:e Sub-string used in automation name for 33 bit in bit flip 32:a Sub-string used in automation name for 32 bit in bit flip 31:a Sub-string used in automation name for 31 bit in bit flip 30:e Sub-string used in automation name for 30 bit in bit flip 29:e Sub-string used in automation name for 29 bit in bit flip 28:e Sub-string used in automation name for 28 bit in bit flip 27:e Sub-string used in automation name for 27 bit in bit flip 26:e Sub-string used in automation name for 26 bit in bit flip 25:e Sub-string used in automation name for 25 bit in bit flip 24:e Sub-string used in automation name for 24 bit in bit flip 23:e Sub-string used in automation name for 23 bit in bit flip 22:a Sub-string used in automation name for 22 bit in bit flip 21:a Sub-string used in automation name for 21 bit in bit flip 20:e Sub-string used in automation name for 20 bit in bit flip 19:e Sub-string used in automation name for 19 bit in bit flip 18:e Sub-string used in automation name for 18 bit in bit flip 17:e Sub-string used in automation name for 17 bit in bit flip 16:e Sub-string used in automation name for 16 bit in bit flip 15:e Sub-string used in automation name for 15 bit in bit flip 14:e Sub-string used in automation name for 14 bit in bit flip 13:e Sub-string used in automation name for 13 bit in bit flip 12:e Sub-string used in automation name for 12 bit in bit flip 11:e Sub-string used in automation name for 11 bit in bit flip 10:e Sub-string used in automation name for 10 bit in bit flip 9:e Sub-string used in automation name for 9 bit in bit flip 8:e Sub-string used in automation name for 8 bit in bit flip 7:e Sub-string used in automation name for 7 bit in bit flip 6:e Sub-string used in automation name for 6 bit in bit flip 5:e Sub-string used in automation name for 5 bit in bit flip 4:e Sub-string used in automation name for 4 bit in bit flip 3:e Sub-string used in automation name for 3 bit in bit flip 2:a Sub-string used in automation name for 2 bit in bit flip 1:a Sub-string used in automation name for 1 bit in bit flip minst signifikanta bit Used to describe the first bit of a binary number. Used in bit flip Öppna utfällbar meny för minne This is the automation name and label for the memory button when the memory flyout is closed. Stäng utfällbar meny för minne This is the automation name and label for the memory button when the memory flyout is open. Behåll överst This is the tool tip automation name for the always-on-top button when out of always-on-top mode. Tillbaka till full vy This is the tool tip automation name for the always-on-top button when in always-on-top mode. Minne This is the tool tip automation name for the memory button. Historik (Ctrl+H) This is the tool tip automation name for the history button. Knappsats för bitväxling This is the tool tip automation name for the bitFlip button. Fullständig knappsats This is the tool tip automation name for the numberPad button. Rensa allt minne (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. Minne The text that shows as the header for the memory list Minne The automation name for the Memory pivot item that is shown when Calculator is in wide layout. Historik The text that shows as the header for the history list Historik The automation name for the History pivot item that is shown when Calculator is in wide layout. Konverterare Label for a control that activates the unit converter mode. Vetenskaplig Label for a control that activates scientific mode calculator layout Standard Label for a control that activates standard mode calculator layout. Konverterarläge Screen reader prompt for a control that activates the unit converter mode. Avancerat läge Screen reader prompt for a control that activates scientific mode calculator layout Standardläge Screen reader prompt for a control that activates standard mode calculator layout. Rensa all historik "ClearHistory" used on the calculator history pane that stores the calculation history. Rensa all historik This is the tool tip automation name for the Clear History button. Dölj "HideHistory" used on the calculator history pane that stores the calculation history. Standard The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. Vetenskaplig The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. Programmerare The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. Konverterare The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". Kalkylatorn The text that shows in the dropdown navigation control for the calculator group. Konverterare The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". Kalkylatorn The text that shows in the dropdown navigation control for the calculator group in upper case. Konverterare Pluralized version of the converter group text, used for the screen reader prompt. Kalkylatorer Pluralized version of the calculator group text, used for the screen reader prompt. Resultatet är %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". Uttrycket är %1, aktuella indata är %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". Visa är %1 punkt {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. Uttrycket är %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". Visat värde har kopierats till Urklipp Screen reader prompt for the Calculator display copy button, when the button is invoked. Historik Screen reader prompt for the history flyout Minne Screen reader prompt for the memory flyout Hexadecimalt värde %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". Decimalvärde %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". Oktalvärde %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". Binärvärde %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". Rensa all historik Screen reader prompt for the Calculator History Clear button Historik rensad Screen reader prompt for the Calculator History Clear button, when the button is invoked. Dölj historik Screen reader prompt for the Calculator History Hide button Öppna utfällbar meny för historik Screen reader prompt for the Calculator History button, when the flyout is closed. Stäng utfällbar meny för historik Screen reader prompt for the Calculator History button, when the flyout is open. Lagra i minnet Screen reader prompt for the Calculator Memory button Lagra i minne (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. Rensa allt minne Screen reader prompt for the Calculator Clear Memory button Minne rensat Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. Hämta minne Screen reader prompt for the Calculator Memory Recall button Hämta minne (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. Addera till minne Screen reader prompt for the Calculator Memory Add button Addera till minne (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. Subtrahera från minne Screen reader prompt for the Calculator Memory Subtract button Subtrahera från minne (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. Radera minnesobjekt Screen reader prompt for the Calculator Clear Memory button Radera minnesobjekt This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. Addera till minnesobjekt Screen reader prompt for the Calculator Memory Add button in the Memory list Addera till minnesobjekt This is the tool tip automation name for the Calculator Memory Add button in the Memory list Subtrahera från minnesobjekt Screen reader prompt for the Calculator Memory Subtract button in the Memory list Subtrahera från minnesobjekt This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list Radera minnesobjekt Screen reader prompt for the Calculator Clear Memory button Radera minnesobjekt Text string for the Calculator Clear Memory option in the Memory list context menu Addera till minnesobjekt Screen reader prompt for the Calculator Memory Add swipe button in the Memory list Addera till minnesobjekt Text string for the Calculator Memory Add option in the Memory list context menu Subtrahera från minnesobjekt Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list Subtrahera från minnesobjekt Text string for the Calculator Memory Subtract option in the Memory list context menu Ta bort Text string for the Calculator Delete swipe button in the History list Kopiera Text string for the Calculator Copy option in the History list context menu Ta bort Text string for the Calculator Delete option in the History list context menu Ta bort historikobjekt Screen reader prompt for the Calculator Delete swipe button in the History list Ta bort historikobjekt Screen reader prompt for the Calculator Delete option in the History list context menu Backsteg Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Noll Screen reader prompt for the Calculator number "0" button Ett Screen reader prompt for the Calculator number "1" button Två Screen reader prompt for the Calculator number "2" button Tre Screen reader prompt for the Calculator number "3" button Fyra Screen reader prompt for the Calculator number "4" button Fem Screen reader prompt for the Calculator number "5" button Sex Screen reader prompt for the Calculator number "6" button Sju Screen reader prompt for the Calculator number "7" button Åtta Screen reader prompt for the Calculator number "8" button Nio Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button And Screen reader prompt for the Calculator And button Or Screen reader prompt for the Calculator Or button Not Screen reader prompt for the Calculator Not button Rotera åt vänster Screen reader prompt for the Calculator ROL button Rotera åt höger Screen reader prompt for the Calculator ROR button Vänsterskift Screen reader prompt for the Calculator LSH button Högerskift Screen reader prompt for the Calculator RSH button Uteslutande Eller Screen reader prompt for the Calculator XOR button Växla till QWord Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". Växla till DWord Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Växla till Word Screen reader prompt for the Calculator word button. Should read as "Word toggle button". Växla till Byte Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". Knappsats för bitväxling Screen reader prompt for the Calculator bitFlip button Fullständig knappsats Screen reader prompt for the Calculator numberPad button Decimaltecken Screen reader prompt for the "." button Rensa post Screen reader prompt for the "CE" button Rensa Screen reader prompt for the "C" button Dividera med Screen reader prompt for the divide button on the number pad Multiplicera med Screen reader prompt for the multiply button on the number pad Lika med Screen reader prompt for the equals button on the scientific operator keypad Invertera funktion Screen reader prompt for the shift button on the number pad in scientific mode. Minus Screen reader prompt for the minus button on the number pad Minus We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Plus Screen reader prompt for the plus button on the number pad Kvadratrot Screen reader prompt for the square root button on the scientific operator keypad Procent Screen reader prompt for the percent button on the scientific operator keypad Positivt negativt Screen reader prompt for the negate button on the scientific operator keypad Positivt negativt Screen reader prompt for the negate button on the converter operator keypad Reciprok Screen reader prompt for the invert button on the scientific operator keypad Vänster parentes Screen reader prompt for the Calculator "(" button on the scientific operator keypad Vänster parentes, antal inledande parenteser är %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Höger parentes Screen reader prompt for the Calculator ")" button on the scientific operator keypad Antal inledande parenteser %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". Det finns inga inledande parenteser att avsluta. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". Matematisk notation Screen reader prompt for the Calculator F-E the scientific operator keypad Hyperbolisk funktion Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad Sinus Screen reader prompt for the Calculator sin button on the scientific operator keypad Cosinus Screen reader prompt for the Calculator cos button on the scientific operator keypad Tangens Screen reader prompt for the Calculator tan button on the scientific operator keypad Hyperbolisk sinus Screen reader prompt for the Calculator sinh button on the scientific operator keypad Hyperbolisk cosinus Screen reader prompt for the Calculator cosh button on the scientific operator keypad Hyperbolisk tangent Screen reader prompt for the Calculator tanh button on the scientific operator keypad Kvadrat Screen reader prompt for the x squared on the scientific operator keypad. Kub Screen reader prompt for the x cubed on the scientific operator keypad. Arcus sinus Screen reader prompt for the inverted sin on the scientific operator keypad. Arcus cosinus Screen reader prompt for the inverted cos on the scientific operator keypad. Arcus tangens Screen reader prompt for the inverted tan on the scientific operator keypad. Hyperbolisk arcus sinus Screen reader prompt for the inverted sinh on the scientific operator keypad. Hyperbolisk arcus cosinus Screen reader prompt for the inverted cosh on the scientific operator keypad. Hyperbolisk arcus tangens Screen reader prompt for the inverted tanh on the scientific operator keypad. Exponenten X Screen reader prompt for x power y button on the scientific operator keypad. Exponenten tio Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e' till exponenten Screen reader for the e power x on the scientific operator keypad. y-roten av x Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. Logaritm Screen reader for the log base 10 on the scientific operator keypad Naturlig logaritm Screen reader for the log base e on the scientific operator keypad Modulo Screen reader for the mod button on the scientific operator keypad Exponentiell Screen reader for the exp button on the scientific operator keypad Grad minuter sekunder Screen reader for the exp button on the scientific operator keypad Grader Screen reader for the exp button on the scientific operator keypad Heltalsdel Screen reader for the int button on the scientific operator keypad Decimaldel Screen reader for the frac button on the scientific operator keypad Fakultet Screen reader for the factorial button on the basic operator keypad Växla till Grader This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". Växla till Gon This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". Växla till Radianer This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". Listrutan Läge Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. Listrutan Kategorier Screen reader prompt for the Categories dropdown field. Behåll överst Screen reader prompt for the Always-on-Top button when in normal mode. Tillbaka till full vy Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. Behåll överst (Alt + Uppåtpil) This is the tool tip automation name for the Always-on-Top button when in normal mode. Tillbaka till full vy (Alt + Nedåtpil) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. Konvertera från %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. Konvertera från %1 punkt %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. Konvertera till %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 är %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. Indataenhet Screen reader prompt for the Unit Converter Units1 i.e. top units field. Utdataenhet Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. Yta Unit conversion category name called Area (eg. area of a sports field in square meters) Data Unit conversion category name called Data Energi Unit conversion category name called Energy. (eg. the energy in a battery or in food) Längd Unit conversion category name called Length Ström Unit conversion category name called Power (eg. the power of an engine or a light bulb) Hastighet Unit conversion category name called Speed Tid Unit conversion category name called Time Volym Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) Temperatur Unit conversion category name called Temperature Vikt och massa Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. Tryck Unit conversion category name called Pressure Vinkel Unit conversion category name called Angle Valuta Unit conversion category name called Currency Fluid ounce (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume Fluid ounce (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (US) An abbreviation for a measurement unit of volume Gallon (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume Gallon (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (US) An abbreviation for a measurement unit of volume Liter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume Milliliter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ml An abbreviation for a measurement unit of volume Pint (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume Pint (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (US) An abbreviation for a measurement unit of volume Matskedar (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) msk (US) An abbreviation for a measurement unit of volume Teskedar (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk (US) An abbreviation for a measurement unit of volume Matskedar (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) msk (UK) An abbreviation for a measurement unit of volume Teskedar (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tsk (UK) An abbreviation for a measurement unit of volume Quart (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume Quart (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume Kopp (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kopp (US) An abbreviation for a measurement unit of volume E An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume bit An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data cal An abbreviation for a measurement unit of energy cm An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ft An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gbit An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power hr An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy km An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mbit An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time min An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power vk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length år An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data Tunnland A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Bitar A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU (British Thermal Unit) A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU per minut A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Byte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kalorier A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Centimeter per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikcentimeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikfot A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubiktum A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikmeter A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kubikyard A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dagar A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Celsius An option in the unit converter to select degrees Celsius Fahrenheit An option in the unit converter to select degrees Fahrenheit Elektronvolt A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fot A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Fot per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pundfot A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pundfot per minut A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gigabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektar A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hästkrafter (US) A measurement unit for power Timmar A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tum A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Joule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt-timmar A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kelvin An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kilobit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilobyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilokalorier A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilojoule A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilometer per timme A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilowatt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Knop A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mach A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Megabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Megabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Meter per sekund A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikroner A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mikrosekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Miles per timme A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millimeter A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Millisekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minuter A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nibble A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nanometer A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ångström A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Nautiska mil A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Petabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Sekunder A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratcentimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratfot A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadrattum A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratkilometer A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmile A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratmillimeter A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kvadratyard A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Terabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Watt A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Veckor A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yard A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) År A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight grad An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gon An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight ton (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight ton (US) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight Karat A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Grader A measurement unit for Angle. Radianer A measurement unit for Angle. Gon A measurement unit for Angle. Atmosfär A measurement unit for Pressure. Bar A measurement unit for Pressure. Kilopascal A measurement unit for Pressure. Millimeter kvicksilver A measurement unit for Pressure. Pascal A measurement unit for Pressure. Pund per kvadrattum A measurement unit for Pressure. Centigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Dekagram A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Decigram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Hektogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kilogram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Long ton (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Milligram A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ounce A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pund A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Short ton (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Stone A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Ton (metriskt) A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-skivor A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD-skivor A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbollsplaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbollsplaner A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) disketter A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-skivor A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD-skivor A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) batterier AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gem A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gem A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jumbojets A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) glödlampor A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) glödlampor A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hästar A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) hästar A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badkar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) badkar A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snöflingor A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) snöflingor A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) elefanter An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sköldpaddor A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) sköldpaddor A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jetplan A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) jetplan A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valar A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) valar A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekoppar A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) kaffekoppar A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) simbassänger An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) simbassänger An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) händer A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) händer A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pappersark A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pappersark A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slott A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) slott A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) bananer A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tårtbitar A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) tårtbitar A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lok A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) lok A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbollar A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fotbollar A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Minnesobjekt Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) Tillbaka Screen reader prompt for the About panel back button Tillbaka Content of tooltip being displayed on AboutControlBackButton Licensvillkor för programvara från Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel Förhandsversion Label displayed next to upcoming features Microsofts sekretesspolicy Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. Med ensamrätt. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) Om du vill veta hur du kan bidra till Windows-kalkylatorn kan du checka ut projektet på %HL%GitHub%HL%. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel Om Subtitle of about message on Settings page Skicka feedback The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app Det finns ingen historik än. The text that shows as the header for the history list Det finns inget sparat i minnet. The text that shows as the header for the memory list Minne Screen reader prompt for the negate button on the converter operator keypad Uttrycket kan inte klistras in The paste operation cannot be performed, if the expression is invalid. Gibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kibibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Exbibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zetabyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zebibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibit A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yobibyte A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Datumberäkning Beräkningsläge Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". Lägg till Add toggle button text Lägg till eller dra ifrån dagar Add or Subtract days option Datum Date result label Skillnad mellan datum Date difference option Dagar Add/Subtract Days label Skillnad Difference result label Från From Date Header for Difference Date Picker Månader Add/Subtract Months label Subtract Subtract toggle button text Till To Date Header for Difference Date Picker År Add/Subtract Years label Datum utanför giltigt intervall Out of bound message shown as result when the date calculation exceeds the bounds dag dagar månad månader Samma datum vecka veckor år år Skillnad %1 Automation name for reading out the date difference. %1 = Date difference Resulterande datum %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date Kalkylatorläge %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. Konverterarläge för %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. Datumberäkningsläge Automation name for when the mode header is focused and the current mode is Date calculation. Historik- och minneslistor Automation name for the group of controls for history and memory lists. Minneskontroller Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) Standardfunktioner Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) Visningskontroller Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) Standardoperatorer Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) Numerisk knappsats Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) Vinkeloperatorer Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) Avancerade funktioner Automation name for the group of Scientific functions. Val av talbas Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix Programmeringsoperatorer Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). Val av inmatningsläge Automation name for the group of input mode toggling buttons. Bitväxlingstangenter Automation name for the group of bit toggling buttons. Skrolla åt vänster i uttrycket Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. Skrolla åt höger i uttrycket Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. Max. antal siffror har nåtts. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 har sparats i minnet {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". Minnesplats %1 är %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". Minnesplats %1 rensad {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". delat med Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. gånger Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. minus Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. plus Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. upphöjt i Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y rot Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. vänster skift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. högerskift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. or Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x or Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. and Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. Uppdaterades %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" Uppdatera valutakurser The text displayed for a hyperlink button that refreshes currency converter ratios. Dataavgifter kan tillkomma. The text displayed when users are on a metered connection and using currency converter. Kunde inte hämta nya valutakurser. Försök igen senare. The text displayed when currency ratio data fails to load. Offline. Kontrollera dina%HL%nätverksinställningar%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} Uppdaterar valutakurser This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. Valutakurser har uppdaterats This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. Det gick inte att uppdatera valutakurser This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} Rensa allt minne (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. Rensa allt minne Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} sinus grader Name for the sine function in degrees mode. Used by screen readers. sinus radianer Name for the sine function in radians mode. Used by screen readers. sinus gon Name for the sine function in gradians mode. Used by screen readers. inverterad sinus grader Name for the inverse sine function in degrees mode. Used by screen readers. inverterad sinus radianer Name for the inverse sine function in radians mode. Used by screen readers. inverterad sinus gon Name for the inverse sine function in gradians mode. Used by screen readers. hyperbolisk sinus Name for the hyperbolic sine function. Used by screen readers. inverterad hyperbolisk sinus Name for the inverse hyperbolic sine function. Used by screen readers. cosinus grader Name for the cosine function in degrees mode. Used by screen readers. cosinus radianer Name for the cosine function in radians mode. Used by screen readers. cosinus gradians Name for the cosine function in gradians mode. Used by screen readers. inverterad cosinus grader Name for the inverse cosine function in degrees mode. Used by screen readers. inverterad cosinus radianer Name for the inverse cosine function in radians mode. Used by screen readers. inverterad cosinus gon Name for the inverse cosine function in gradians mode. Used by screen readers. hyperbolisk cosinus Name for the hyperbolic cosine function. Used by screen readers. inverterad hyperbolisk cosinus Name for the inverse hyperbolic cosine function. Used by screen readers. tangens grader Name for the tangent function in degrees mode. Used by screen readers. tangens radianer Name for the tangent function in radians mode. Used by screen readers. tangens gon Name for the tangent function in gradians mode. Used by screen readers. inverterad tangens grader Name for the inverse tangent function in degrees mode. Used by screen readers. inverterad tangens radianer Name for the inverse tangent function in radians mode. Used by screen readers. inverterad tangens gon Name for the inverse tangent function in gradians mode. Used by screen readers. hyperbolisk tangens Name for the hyperbolic tangent function. Used by screen readers. inverterad hyperbolisk tangens Name for the inverse hyperbolic tangent function. Used by screen readers. sekans grader Name for the secant function in degrees mode. Used by screen readers. sekans radianer Name for the secant function in radians mode. Used by screen readers. sekans gon Name for the secant function in gradians mode. Used by screen readers. inverterad sekans grader Name for the inverse secant function in degrees mode. Used by screen readers. inverterad sekans radianer Name for the inverse secant function in radians mode. Used by screen readers. inverterad sekans gon Name for the inverse secant function in gradians mode. Used by screen readers. hyperbolisk sekans Name for the hyperbolic secant function. Used by screen readers. inverterad hyperbolisk sekans Name for the inverse hyperbolic secant function. Used by screen readers. cosekans grader Name for the cosecant function in degrees mode. Used by screen readers. cosekans radianer Name for the cosecant function in radians mode. Used by screen readers. cosekans gon Name for the cosecant function in gradians mode. Used by screen readers. inverterad cosekans grader Name for the inverse cosecant function in degrees mode. Used by screen readers. inverterad cosekans radianer Name for the inverse cosecant function in radians mode. Used by screen readers. inverterad cosekans gon Name for the inverse cosecant function in gradians mode. Used by screen readers. hyperbolisk cosekans Name for the hyperbolic cosecant function. Used by screen readers. inverterad hyperbolisk cosekans Name for the inverse hyperbolic cosecant function. Used by screen readers. cotangens grader Name for the cotangent function in degrees mode. Used by screen readers. Cotangens radianer Name for the cotangent function in radians mode. Used by screen readers. cotangens gon Name for the cotangent function in gradians mode. Used by screen readers. inverterad cotangens grader Name for the inverse cotangent function in degrees mode. Used by screen readers. inverterad cotangens radianer Name for the inverse cotangent function in radians mode. Used by screen readers. inverterad cotangens gon Name for the inverse cotangent function in gradians mode. Used by screen readers. hyperbolisk cotangens Name for the hyperbolic cotangent function. Used by screen readers. inverterad hyperbolisk cotangens Name for the inverse hyperbolic cotangent function. Used by screen readers. Kubikrot Name for the cube root function. Used by screen readers. Bas logaritmisk Name for the logbasey function. Used by screen readers. Absolut värde Name for the absolute value function. Used by screen readers. vänsterskift Name for the programmer function that shifts bits to the left. Used by screen readers. högerskift Name for the programmer function that shifts bits to the right. Used by screen readers. fakultet Name for the factorial function. Used by screen readers. grad minut sekund Name for the degree minute second (dms) function. Used by screen readers. naturlig logaritm Name for the natural log (ln) function. Used by screen readers. kvadrat Name for the square function. Used by screen readers. y-rot Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". Kategorin %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Villkor för Microsoft-tjänster Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. Från From Date Header for AddSubtract Date Picker Skrolla kalkylatorresultatet åt vänster Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. Skrolla kalkylatorresultatet åt höger Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. Beräkning misslyckades Text displayed when the application is not able to do a calculation Bas logaritmisk Y Screen reader prompt for the logBaseY button Trigonometri Displayed on the button that contains a flyout for the trig functions in scientific mode. Funktion Displayed on the button that contains a flyout for the general functions in scientific mode. Olikheter Displayed on the button that contains a flyout for the inequality functions. Olikheter Screen reader prompt for the Inequalities button Bitvis Displayed on the button that contains a flyout for the bitwise functions in programmer mode. Bitskifte Displayed on the button that contains a flyout for the bit shift functions in programmer mode. Invertera funktion Screen reader prompt for the shift button in the trig flyout in scientific mode. Hyperbolisk funktion Screen reader prompt for the Calculator button HYP in the scientific flyout keypad Sekans Screen reader prompt for the Calculator button sec in the scientific flyout keypad Hyperbolisk sekans Screen reader prompt for the Calculator button sech in the scientific flyout keypad Arcus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Hyperbolisk arcus sekans Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad Cosekans Screen reader prompt for the Calculator button csc in the scientific flyout keypad Hyperbolisk cosekans Screen reader prompt for the Calculator button csch in the scientific flyout keypad Arcus cosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Hyperbolisk arcus cosekans Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad Cotangens Screen reader prompt for the Calculator button cot in the scientific flyout keypad Hyperbolisk cotangens Screen reader prompt for the Calculator button coth in the scientific flyout keypad Arcus cotangens Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad Hyperbolisk arcus cotangens Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad Golv Screen reader prompt for the Calculator button floor in the scientific flyout keypad Tak Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad Slumpmässigt Screen reader prompt for the Calculator button random in the scientific flyout keypad Absolut värde Screen reader prompt for the Calculator button abs in the scientific flyout keypad Eulers tal Screen reader prompt for the Calculator button e in the scientific flyout keypad Två upphöjt med exponent Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. Rotera åt vänster med carry Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad Rotera åt höger med carry Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Vänsterskift Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad Vänsterskift Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Högerskift Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad Högerskift Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. Aritmetisk skift Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logiskt skift Label for a radio button that toggles logical shift behavior for the shift operations. Rotera cirkulärt för skift Label for a radio button that toggles rotate circular behavior for the shift operations. Rotera cirkulärt med carry för skift Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Kubikrot Screen reader prompt for the cube root button on the scientific operator keypad Trigonometri Screen reader prompt for the square root button on the scientific operator keypad Funktioner Screen reader prompt for the square root button on the scientific operator keypad Bitvis Screen reader prompt for the square root button on the scientific operator keypad Bitskifte Screen reader prompt for the square root button on the scientific operator keypad Paneler för avancerade operatorer Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad Paneler för programmeringsoperatorer Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad mest signifikanta bit Used to describe the last bit of a binary number. Used in bit flip Grafer Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. Plotta Screen reader prompt for the plot button on the graphing calculator operator keypad Uppdatera vyn automatiskt (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. Linjediagram Screen reader prompt for the graph view button. Automatisk anpassning Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set Manuell justering Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set Grafvyn har återställts Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph Zooma in (Ctrl + plus (+)) This is the tool tip automation name for the Calculator zoom in button. Zooma in Screen reader prompt for the zoom in button. Zooma ut (Ctrl + minus (-)) This is the tool tip automation name for the Calculator zoom out button. Zooma ut Screen reader prompt for the zoom out button. Lägg till ekvation Placeholder text for the equation input button Det går inte att dela just nu. If there is an error in the sharing action will display a dialog with this text. OK Used on the dismiss button of the share action error dialog. Se vad jag har ritat med Windows Kalkylatorn Sent as part of the shared content. The title for the share. Ekvationer Header that appears over the equations section when sharing Variabler Header that appears over the variables section when sharing Bild av en graf med ekvationer Alt text for the graph image when output via Share Variabler Header text for variables area Steg Label text for the step text box Min Label text for the min text box Max Label text for the max text box Färg Label for the Line Color section of the style picker Stil Label for the Line Style section of the style picker Funktionsanalys Title for KeyGraphFeatures Control Funktionen har inga vågräta asymptoter. Message displayed when the graph does not have any horizontal asymptotes Funktionen har inga inflexionspunkter. Message displayed when the graph does not have any inflection points Funktionen har inga högsta punkter. Message displayed when the graph does not have any maxima Funktionen har inga lägsta punkter. Message displayed when the graph does not have any minima Konstant String describing constant monotonicity of a function Minska String describing decreasing monotonicity of a function Kan inte fastställa monotonicitet för funktionen. Error displayed when monotonicity cannot be determined Ökar String describing increasing monotonicity of a function Monotoniciteten för funktionen är okänd. Error displayed when monotonicity is unknown Funktionen har inga sneda asymptoter. Message displayed when the graph does not have any oblique asymptotes Kan inte fastställa paritet för funktionen. Error displayed when parity is cannot be determined Funktionen är jämn. Message displayed with the function parity is even Funktionen är varken jämn eller udda. Message displayed with the function parity is neither even nor odd Funktionen är udda. Message displayed with the function parity is odd Funktionspariteten är okänd. Error displayed when parity is unknown Periodicitet stöds inte för den här funktionen. Error displayed when periodicity is not supported Funktionen är inte periodisk. Message displayed with the function periodicity is not periodic Funktionens periodicitet är okänd. Message displayed with the function periodicity is unknown De här funktionerna är för komplexa för att Kalkylatorn ska kunna beräkna dem: Error displayed when analysis features cannot be calculated Funktionen har inga lodräta asymptoter. Message displayed when the graph does not have any vertical asymptotes Funktionen har inga x-skärningspunkter. Message displayed when the graph does not have any x-intercepts Funktionen har inga y-skärningspunkter. Message displayed when the graph does not have any y-intercepts Domän Title for KeyGraphFeatures Domain Property Vågrät asymptot Title for KeyGraphFeatures Horizontal aysmptotes Property Inflexionspunkt Title for KeyGraphFeatures Inflection points Property Analys stöds inte för den här funktionen. Error displayed when graph analysis is not supported or had an error. Analys stöds endast för funktioner i formatet f(x). Exempel: y = x Error displayed when graph analysis detects the function format is not f(x). Största Title for KeyGraphFeatures Maxima Property Minsta Title for KeyGraphFeatures Minima Property Monotonicitet Title for KeyGraphFeatures Monotonicity Property Sned asymptot Title for KeyGraphFeatures Oblique asymptotes Property Paritet Title for KeyGraphFeatures Parity Property Period Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. Intervall Title for KeyGraphFeatures Range Property Lodrät asymptot Title for KeyGraphFeatures Vertical asymptotes Property X-skärning Title for KeyGraphFeatures XIntercept Property Y-skärning Title for KeyGraphFeatures YIntercept Property Det gick inte att göra en analys för funktionen. Kan inte beräkna domänen för den här funktionen. Error displayed when Domain is not returned from the analyzer. Kan inte beräkna intervallet för den här funktionen. Error displayed when Range is not returned from the analyzer. Överflöde (talet är för stort) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. Radianerläge krävs för att rita en kurva till ekvationen. Error that occurs during graphing when radians is required. Den här funktionen är för komplex att göra en graf av Error that occurs during graphing when the equation is too complex. Graderläge krävs för att rita en kurva till funktionen Error that occurs during graphing when degrees is required Faktorfunktionen har ett ogiltigt argument Error that occurs during graphing when a factorial function has an invalid argument. Faktorfunktionen har ett argument som är för stort för att föra en graf av Error that occurs during graphing when a factorial has a large n Modulo kan endast användas med heltal Error that occurs during graphing when modulo is used with a float. Ekvationen har ingen lösning Error that occurs during graphing when the equation has no solution. Det går inte att dela med noll Error that occurs during graphing when a divison by zero occurs. Ekvationen innehåller logiska villkor som är ömsesidigt uteslutande Error that occurs during graphing when mutually exclusive conditions are used. Ekvationen ligger utanför domänen Error that occurs during graphing when the equation is out of domain. Att skapa grafer av denna ekvation stöds inte Error that occurs during graphing when the equation is not supported. Ekvationen saknar en öppnande parentes Error that occurs during graphing when the equation is missing a ( Ekvationen saknar en avslutande parentes Error that occurs during graphing when the equation is missing a ) Det finns för många decimaler i ett tal Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 Ett decimalkomma saknar siffror Error that occurs during graphing with a decimal point without digits Oväntat slut i uttryck Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* Oväntade tecken i uttrycket Error that occurs during graphing when there is an unexpected token. Ogiltiga tecken i uttrycket Error that occurs during graphing when there is an invalid token. Det finns för många lika med-tecken Error that occurs during graphing when there are too many equals. Funktionen måste innehålla minst en x- eller y-variabel Error that occurs during graphing when the equation is missing x or y. Ogiltigt uttryck Error that occurs during graphing when an invalid syntax is used. Uttrycket är tomt Error that occurs during graphing when the expression is empty Lika med användes utan en ekvation Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) Parentes saknas efter funktionsnamnet Error that occurs during graphing when parenthesis are missing after a function. Ett matematiskt uttryck har fel antal parametrar Error that occurs during graphing when a function has the wrong number of parameters Ett variabelnamn är ogiltigt Error that occurs during graphing when a variable name is invalid. Ekvationen saknar en inledande hakparentes Error that occurs during graphing when a { is missing Ekvationen saknar en avslutande hakparentes Error that occurs during graphing when a } is missing. "i" och "I" går inte att använda som variabelnamn Error that occurs during graphing when i or I is used. Formeln kunde inte göras till en graf General error that occurs during graphing. Siffran kunde inte lösas för den givna basen Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). Basen måste vara större än 2 och mindre än 36 Error that occurs during graphing when the base is out of range. En matematisk operation kräver att en av dess parametrar är en variabel Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. Ekvationen blandar logiska och skalärfunktioner Error that occurs during graphing when operands are mixed. Such as true and 1. x och y kan inte användas i de övre eller nedre begränsningarna Error that occurs during graphing when x or y is used in integral upper limits. x och y kan inte användas efter gränspunkten Error that occurs during graphing when x or y is used in the limit point. Det går inte att använda komplex oändlighet Error that occurs during graphing when complex infinity is used Kan inte använda komplexa tal i ojämlikheter Error that occurs during graphing when complex numbers are used in inequalities. Tillbaka till funktionslistan This is the tooltip for the back button in the equation analysis page in the graphing calculator Tillbaka till funktionslistan This is the automation name for the back button in the equation analysis page in the graphing calculator Analysera funktion This is the tooltip for the analyze function button Analysera funktion This is the automation name for the analyze function button Analysera funktion This is the text for the for the analyze function context menu command Ta bort ekvation This is the tooltip for the graphing calculator remove equation buttons Ta bort ekvation This is the automation name for the graphing calculator remove equation buttons Ta bort ekvation This is the text for the for the remove equation context menu command Dela This is the automation name for the graphing calculator share button. Dela This is the tooltip for the graphing calculator share button. Ändra ekvationsstil This is the tooltip for the graphing calculator equation style button Ändra ekvationsstil This is the automation name for the graphing calculator equation style button Ändra ekvationsstil This is the text for the for the equation style context menu command Visa ekvationen This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. Dölj ekvationen This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. Visa ekvation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. Dölj ekvation %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. Stoppa spårning This is the tooltip/automation name for the graphing calculator stop tracing button Starta spårning This is the tooltip/automation name for the graphing calculator start tracing button Diagram visnings fönster, x-axeln som avgränsas av %1 och %2, y-axeln som är bunden av %3 och %4. Visa %5 ekvationer {Locked="%1","%2", "%3", "%4", "%5"}. Konfigurera skjutreglage This is the tooltip text for the slider options button in Graphing Calculator Konfigurera skjutreglage This is the automation name text for the slider options button in Graphing Calculator Växla till ekvationsläge Used in Graphing Calculator to switch the view to the equation mode Växla till grafläge Used in Graphing Calculator to switch the view to the graph mode Växla till ekvationsläge Used in Graphing Calculator to switch the view to the equation mode Aktuellt läge är ekvationsläge Announcement used in Graphing Calculator when switching to the equation mode Aktuellt läge är grafläge Announcement used in Graphing Calculator when switching to the graph mode Fönster Heading for window extents on the settings Grader Degrees mode on settings page Gon Gradian mode on settings page Radianer Radians mode on settings page Enheter Heading for Unit's on the settings Återställ vy Hyperlink button to reset the view of the graph X-max X maximum value header X-min X minimum value header Y-max Y Maximum value header Y-min Y minimum value header Alternativ för grafer This is the tooltip text for the graph options button in Graphing Calculator Alternativ för grafer This is the automation name text for the graph options button in Graphing Calculator Alternativ för grafer Heading for the Graph options flyout in Graphing mode. Alternativ för variabel Screen reader prompt for the variable settings toggle button Växla variabelalternativ Tool tip for the variable settings toggle button Linjetjocklek Heading for the Graph options flyout in Graphing mode. Linjealternativ Heading for the equation style flyout in Graphing mode. Liten linjebredd Automation name for line width setting Medelstor linjebredd Automation name for line width setting Stor linjebredd Automation name for line width setting Extra stor linjebredd Automation name for line width setting Ange ett uttryck this is the placeholder text used by the textbox to enter an equation Kopiera Copy menu item for the graph context menu Klipp ut Cut menu item from the Equation TextBox Kopiera Copy menu item from the Equation TextBox Klistra in Paste menu item from the Equation TextBox Ångra Undo menu item from the Equation TextBox Markera alla Select all menu item from the Equation TextBox Funktionsindata The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. Funktionsindata The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. Indatapanel för funktion The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. Variabelpanelen The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. Variabellista The automation name for the Variable ListView that is shown when Calculator is in graphing mode. Variabel %1 listobjekt The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. Textruta för variabelvärde The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. Skjutreglaget variabelvärde The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. Textruta för variabel minsta värde The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. Textruta för variabelsteg värde The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. Textruta för variabelns största värde The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. Heldraget linjeformat Name of the solid line style for a graphed equation Prickat linjeformat Name of the dotted line style for a graphed equation Streckat linjeformat Name of the dashed line style for a graphed equation Marinblå Name of color in the color picker Havsskum Name of color in the color picker Violett Name of color in the color picker Grön Name of color in the color picker Mintgrön Name of color in the color picker Mörkgrön Name of color in the color picker Träkol Name of color in the color picker Röd Name of color in the color picker Ljuslila Name of color in the color picker Magenta Name of color in the color picker Guldgul Name of color in the color picker Ljusorange Name of color in the color picker Brun Name of color in the color picker Svart Name of color in the color picker Vit Name of color in the color picker Färg 1 Name of color in the color picker Färg 2 Name of color in the color picker Färg 3 Name of color in the color picker Färg 4 Name of color in the color picker Diagramtema Graph settings heading for the theme options Alltid ljus Graph settings option to set graph to light theme Matcha tema för app Graph settings option to set graph to match the app theme Tema This is the automation name text for the Graph settings heading for the theme options Alltid ljus This is the automation name text for the Graph settings option to set graph to light theme Matcha tema för app This is the automation name text for the Graph settings option to set graph to match the app theme Funktionen borttagen Announcement used in Graphing Calculator when a function is removed from the function list Ekvationsrutan funktionsanalys This is the automation name text for the equation box in the function analysis panel Lika med Screen reader prompt for the equal button on the graphing calculator operator keypad Mindre än Screen reader prompt for the Less than button Mindre än eller lika Screen reader prompt for the Less than or equal button Lika med Screen reader prompt for the Equal button Större än eller lika Screen reader prompt for the Greater than or equal button Större än Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad Skicka Screen reader prompt for the submit button on the graphing calculator operator keypad Funktionsanalys Screen reader prompt for the function analysis grid Alternativ för grafer Screen reader prompt for the graph options panel Historik- och minneslistor Automation name for the group of controls for history and memory lists. Minneslista Automation name for the group of controls for memory list. Historikplatsen %1 har rensats {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". Kalkylatorn är alltid på toppen Announcement to indicate calculator window is always shown on top. Kalkylatorn tillbaka till fullständig vy Announcement to indicate calculator window is now back to full view. Aritmetiska skift vald Label for a radio button that toggles arithmetic shift behavior for the shift operations. Logisk skift vald Label for a radio button that toggles logical shift behavior for the shift operations. Rotera cirkulära skift vald Label for a radio button that toggles rotate circular behavior for the shift operations. Rotera genom att låta cirkulära Skift vald Label for a radio button that toggles rotate circular with carry behavior for the shift operations. Inställningar Header text of Settings page Utseende Subtitle of appearance setting on Settings page Apptema Title of App theme expander Välj vilket apptema som ska visas Description of App theme expander Ljus Lable for light theme option Mörk Lable for dark theme option Använd systeminställningen Lable for the app theme option to use system setting Tillbaka Screen reader prompt for the Back button in title bar to back to main page Sidan Inställningar Announcement used when Settings page is opened Öppna snabbmenyn för tillgängliga åtgärder Screen reader prompt for the context menu of the expression box OK The text of OK button to dismiss an error dialog. Det gick inte att återställa den här ögonblicksbilden. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/ta-IN/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 செல்லுபடியாகாத உள்ளீடு Error message shown when the input makes a function fail, like log(-1) முடிவு வரையறுக்கப்படவில்லை Error message shown when there's no possible value for a function. போதுமான நினைவகம் இல்லை Error message shown when we run out of memory during a calculation. நிரம்பிவழிதல் Error message shown when there's an overflow during the calculation. முடிவு வரையறுக்கப்படவில்லை Same as 101 முடிவு வரையறுக்கப்படவில்லை Same 101 நிரம்பிவழிதல் Same as 107 நிரம்பிவழிதல் Same 107 பூஜ்ஜியத்தால் வகுக்க முடியாது Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/ta-IN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 கால்குலேட்டர் {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. கால்குலேட்டர் [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows கால்குலேட்டர் {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows கால்குலேட்டர் [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. கால்குலேட்டர் {@Appx_Description@} This description is used for the official application when published through Windows Store. கால்குலேட்டர் [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. நகலெடு Copy context menu string ஒட்டு Paste context menu string ஏறத்தாழ சமம் The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, மதிப்பு %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 பிட் {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63வது Sub-string used in automation name for 63 bit in bit flip 62வது Sub-string used in automation name for 62 bit in bit flip 61வது Sub-string used in automation name for 61 bit in bit flip 60வது Sub-string used in automation name for 60 bit in bit flip 59வது Sub-string used in automation name for 59 bit in bit flip 58வது Sub-string used in automation name for 58 bit in bit flip 57வது Sub-string used in automation name for 57 bit in bit flip 56வது Sub-string used in automation name for 56 bit in bit flip 55வது Sub-string used in automation name for 55 bit in bit flip 54வது Sub-string used in automation name for 54 bit in bit flip 53வது Sub-string used in automation name for 53 bit in bit flip 52வது Sub-string used in automation name for 52 bit in bit flip 51வது Sub-string used in automation name for 51 bit in bit flip 50வது Sub-string used in automation name for 50 bit in bit flip 49வது Sub-string used in automation name for 49 bit in bit flip 48வது Sub-string used in automation name for 48 bit in bit flip 47வது Sub-string used in automation name for 47 bit in bit flip 46வது Sub-string used in automation name for 46 bit in bit flip 45வது Sub-string used in automation name for 45 bit in bit flip 44வது Sub-string used in automation name for 44 bit in bit flip 43வது Sub-string used in automation name for 43 bit in bit flip 42வது Sub-string used in automation name for 42 bit in bit flip 41வது Sub-string used in automation name for 41 bit in bit flip 40வது Sub-string used in automation name for 40 bit in bit flip 39வது Sub-string used in automation name for 39 bit in bit flip 38வது Sub-string used in automation name for 38 bit in bit flip 37வது Sub-string used in automation name for 37 bit in bit flip 36வது Sub-string used in automation name for 36 bit in bit flip 35வது Sub-string used in automation name for 35 bit in bit flip 34வது Sub-string used in automation name for 34 bit in bit flip 33வது Sub-string used in automation name for 33 bit in bit flip 32வது Sub-string used in automation name for 32 bit in bit flip 31வது Sub-string used in automation name for 31 bit in bit flip 30வது Sub-string used in automation name for 30 bit in bit flip 29வது Sub-string used in automation name for 29 bit in bit flip 28வது Sub-string used in automation name for 28 bit in bit flip 27வது Sub-string used in automation name for 27 bit in bit flip 26வது Sub-string used in automation name for 26 bit in bit flip 25வது Sub-string used in automation name for 25 bit in bit flip 24வது Sub-string used in automation name for 24 bit in bit flip 23வது Sub-string used in automation name for 23 bit in bit flip 22வது Sub-string used in automation name for 22 bit in bit flip 21வது Sub-string used in automation name for 21 bit in bit flip 20வது Sub-string used in automation name for 20 bit in bit flip 19வது Sub-string used in automation name for 19 bit in bit flip 18வது Sub-string used in automation name for 18 bit in bit flip 17வது Sub-string used in automation name for 17 bit in bit flip 16வது Sub-string used in automation name for 16 bit in bit flip 15வது Sub-string used in automation name for 15 bit in bit flip 14வது Sub-string used in automation name for 14 bit in bit flip 13வது Sub-string used in automation name for 13 bit in bit flip 12வது Sub-string used in automation name for 12 bit in bit flip 11வது Sub-string used in automation name for 11 bit in bit flip 10வது Sub-string used in automation name for 10 bit in bit flip 9வது Sub-string used in automation name for 9 bit in bit flip 8வது Sub-string used in automation name for 8 bit in bit flip 7வது Sub-string used in automation name for 7 bit in bit flip 6வது Sub-string used in automation name for 6 bit in bit flip 5வது Sub-string used in automation name for 5 bit in bit flip 4வது Sub-string used in automation name for 4 bit in bit flip 3வது Sub-string used in automation name for 3 bit in bit flip 2வது Sub-string used in automation name for 2 bit in bit flip 1வது Sub-string used in automation name for 1 bit in bit flip குறைந்த குறிப்பிடத்தக்க பிட் Used to describe the first bit of a binary number. Used in bit flip நினைவக ஃப்ளைஅவுட்டைத் திற This is the automation name and label for the memory button when the memory flyout is closed. நினைவக ஃப்ளைஅவுட்டை மூடு This is the automation name and label for the memory button when the memory flyout is open. மேலே வை This is the tool tip automation name for the always-on-top button when out of always-on-top mode. முழுக் காட்சிக்குத் திரும்பு This is the tool tip automation name for the always-on-top button when in always-on-top mode. நினைவகம் This is the tool tip automation name for the memory button. வரலாறு (Ctrl+H) This is the tool tip automation name for the history button. பிட் நிலைமாறும் விசைத்தளம் This is the tool tip automation name for the bitFlip button. முழு விசைத்தளம் This is the tool tip automation name for the numberPad button. எல்லா நினைவகத்தையும் அழி (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. நினைவகம் The text that shows as the header for the memory list நினைவகம் The automation name for the Memory pivot item that is shown when Calculator is in wide layout. வரலாறு The text that shows as the header for the history list வரலாறு The automation name for the History pivot item that is shown when Calculator is in wide layout. மாற்றி Label for a control that activates the unit converter mode. அறிவியல் Label for a control that activates scientific mode calculator layout நிலையான Label for a control that activates standard mode calculator layout. மாற்றிப் பயன்முறை Screen reader prompt for a control that activates the unit converter mode. அறிவியல் பயன்முறை Screen reader prompt for a control that activates scientific mode calculator layout நிலையான பயன்முறை Screen reader prompt for a control that activates standard mode calculator layout. எல்லா வரலாற்றையும் அழி "ClearHistory" used on the calculator history pane that stores the calculation history. எல்லா வரலாற்றையும் அழி This is the tool tip automation name for the Clear History button. மறை "HideHistory" used on the calculator history pane that stores the calculation history. நிலையான The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. அறிவியல் The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. நிரலாக்குநர் The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. மாற்றி The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". கால்குலேட்டர் The text that shows in the dropdown navigation control for the calculator group. மாற்றி The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". கால்குலேட்டர் The text that shows in the dropdown navigation control for the calculator group in upper case. மாற்றிகள் Pluralized version of the converter group text, used for the screen reader prompt. கால்குலேட்டர்கள் Pluralized version of the calculator group text, used for the screen reader prompt. காட்சி %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". கோவை %1, நடப்பு உள்ளீடு %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". காட்சி %1 புள்ளி {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. %1 என்பது கோவை {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". காட்சி மதிப்பு நகலகத்திற்கு நகலெடுக்கப்பட்டது Screen reader prompt for the Calculator display copy button, when the button is invoked. வரலாறு Screen reader prompt for the history flyout நினைவகம் Screen reader prompt for the memory flyout ஹெக்சாடெசிமல் %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". தசமம் %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ஆக்டல் %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". பைனரி %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". எல்லா வரலாற்றையும் அழி Screen reader prompt for the Calculator History Clear button வரலாறு அழிக்கப்பட்டது Screen reader prompt for the Calculator History Clear button, when the button is invoked. வரலாற்றை மறை Screen reader prompt for the Calculator History Hide button வரலாறு ஃப்ளைஅவுட்டைத் திற Screen reader prompt for the Calculator History button, when the flyout is closed. வரலாறை மூடு Screen reader prompt for the Calculator History button, when the flyout is open. நினைவகத்தில் ஸ்டோர் Screen reader prompt for the Calculator Memory button நினைவகச் சேமிப்பு (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. எல்லா நினைவகத்தையும் அழி Screen reader prompt for the Calculator Clear Memory button நினைவகம் அழிக்கப்பட்டது Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. நினைவகத்திலிருந்து மீட்டெடு Screen reader prompt for the Calculator Memory Recall button நினைவக மீட்டமைப்பு (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. நினைவகத்தைச் சேர் Screen reader prompt for the Calculator Memory Add button நினைவகச் சேர்ப்பு (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. நினைவகத்தில் கழித்திடு Screen reader prompt for the Calculator Memory Subtract button நினைவகப் பிரிப்பு (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. நினைவக உருப்படியை அழி Screen reader prompt for the Calculator Clear Memory button நினைவக உருப்படியை அழி This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. நினைவகத்தில் சேர் Screen reader prompt for the Calculator Memory Add button in the Memory list நினைவகத்தில் சேர் This is the tool tip automation name for the Calculator Memory Add button in the Memory list நினைவக உருப்படியிலிருந்து கழி Screen reader prompt for the Calculator Memory Subtract button in the Memory list நினைவக உருப்படியிலிருந்து கழி This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list நினைவக உருப்படியை அழி Screen reader prompt for the Calculator Clear Memory button நினைவக உருப்படியை அழி Text string for the Calculator Clear Memory option in the Memory list context menu நினைவகத்தில் சேர் Screen reader prompt for the Calculator Memory Add swipe button in the Memory list நினைவகத்தில் சேர் Text string for the Calculator Memory Add option in the Memory list context menu நினைவக உருப்படியிலிருந்து கழி Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list நினைவக உருப்படியிலிருந்து கழி Text string for the Calculator Memory Subtract option in the Memory list context menu நீக்கு Text string for the Calculator Delete swipe button in the History list நகலெடு Text string for the Calculator Copy option in the History list context menu நீக்கு Text string for the Calculator Delete option in the History list context menu வரலாற்று உருப்படியை நீக்கு Screen reader prompt for the Calculator Delete swipe button in the History list வரலாற்று உருப்படியை நீக்கு Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button பூஜ்யம் Screen reader prompt for the Calculator number "0" button ஒன்று Screen reader prompt for the Calculator number "1" button இரண்டு Screen reader prompt for the Calculator number "2" button மூன்று Screen reader prompt for the Calculator number "3" button நான்கு Screen reader prompt for the Calculator number "4" button ஐந்து Screen reader prompt for the Calculator number "5" button ஆறு Screen reader prompt for the Calculator number "6" button ஏழு Screen reader prompt for the Calculator number "7" button எட்டு Screen reader prompt for the Calculator number "8" button ஒன்பது Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button மற்றும் Screen reader prompt for the Calculator And button அல்லது Screen reader prompt for the Calculator Or button இல்லை Screen reader prompt for the Calculator Not button இடதுபுறம் சுழற்று Screen reader prompt for the Calculator ROL button வலதுபுறம் சுழற்று Screen reader prompt for the Calculator ROR button இடது மாற்றம் Screen reader prompt for the Calculator LSH button வலது மாற்றம் Screen reader prompt for the Calculator RSH button பிரத்தியேகமான அல்லது Screen reader prompt for the Calculator XOR button சொல் எழுத்து நிலை மாற்றம் Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". இரட்டை சொல் நிலைமாற்று Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". சொல் நிலைமாற்று Screen reader prompt for the Calculator word button. Should read as "Word toggle button". பைட் நிலைமாற்று Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". பிட் நிலைமாறும் விசைத்தளம் Screen reader prompt for the Calculator bitFlip button முழு விசைத்தளம் Screen reader prompt for the Calculator numberPad button தசமப் பிரிப்பான் Screen reader prompt for the "." button உள்ளிட்டதை அழி Screen reader prompt for the "CE" button அழி Screen reader prompt for the "C" button வகுத்தல் Screen reader prompt for the divide button on the number pad பெருக்கல் Screen reader prompt for the multiply button on the number pad சமங்கள் Screen reader prompt for the equals button on the scientific operator keypad நேர்மாற்றுச் சார்பு Screen reader prompt for the shift button on the number pad in scientific mode. கழித்தல் Screen reader prompt for the minus button on the number pad கழித்தல் We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 கூட்டல் Screen reader prompt for the plus button on the number pad இருமடி மூலம் Screen reader prompt for the square root button on the scientific operator keypad சதவீதம் Screen reader prompt for the percent button on the scientific operator keypad நேர்மறை எதிர்மறை Screen reader prompt for the negate button on the scientific operator keypad நேர்மறை எதிர்மறை Screen reader prompt for the negate button on the converter operator keypad தலைகீழ் Screen reader prompt for the invert button on the scientific operator keypad இடது அடைப்புக்குறி Screen reader prompt for the Calculator "(" button on the scientific operator keypad இடது அடைப்புக்குறி, திறப்பு அடைப்புக்குறி எண்ணிக்கைு %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". வலது அடைப்புக்குறி Screen reader prompt for the Calculator ")" button on the scientific operator keypad திறப்பு அடைப்புக்குறி கணக்கு %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". மூடுவதற்கு திறந்திருக்கும் அடைப்புக்குறிகள் எதுவும் இல்லை. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". விஞ்ஞானக் குறியீடு Screen reader prompt for the Calculator F-E the scientific operator keypad அதிபரவளைய சார்பு Screen reader prompt for the Calculator button HYP in the scientific operator keypad பை Screen reader prompt for the Calculator pi button on the scientific operator keypad சைன் Screen reader prompt for the Calculator sin button on the scientific operator keypad கொசைன் Screen reader prompt for the Calculator cos button on the scientific operator keypad டேன்ஜென்ட் Screen reader prompt for the Calculator tan button on the scientific operator keypad ஹைப்பர்போலிக் சைன் Screen reader prompt for the Calculator sinh button on the scientific operator keypad ஹைப்பர்போலிக் கொசைன் Screen reader prompt for the Calculator cosh button on the scientific operator keypad ஹைப்பர்போலிக் டேஞ்சன்ட் Screen reader prompt for the Calculator tanh button on the scientific operator keypad சதுரம் Screen reader prompt for the x squared on the scientific operator keypad. கனசதுரம் Screen reader prompt for the x cubed on the scientific operator keypad. Arc சைன் Screen reader prompt for the inverted sin on the scientific operator keypad. Arc கோசைன் Screen reader prompt for the inverted cos on the scientific operator keypad. Arc டேஞ்சன்ட் Screen reader prompt for the inverted tan on the scientific operator keypad. ஹைப்பர்போலிக் ஆர்க் சைன் Screen reader prompt for the inverted sinh on the scientific operator keypad. ஹைப்பர்போலிக் ஆர்க் கோசைன் Screen reader prompt for the inverted cosh on the scientific operator keypad. ஹைப்பர்போலிக் ஆர்க் டேஞ்சன்ட் Screen reader prompt for the inverted tanh on the scientific operator keypad. ‘X'-இன் அடுக்கு Screen reader prompt for x power y button on the scientific operator keypad. அடுக்கு மதிப்புக்கு பத்து Screen reader prompt for the 10 power x button on the scientific operator keypad. அடுக்கு மதிப்புக்கு 'e' Screen reader for the e power x on the scientific operator keypad. ‘x'-இன் 'y' வர்க்கமூலம் Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. பதிவு Screen reader for the log base 10 on the scientific operator keypad Natural லாக் Screen reader for the log base e on the scientific operator keypad மட்டு Screen reader for the mod button on the scientific operator keypad அடுக்குக்குறி Screen reader for the exp button on the scientific operator keypad டிகிரி நிமிடம் வினாடி Screen reader for the exp button on the scientific operator keypad டிகிரிகள் Screen reader for the exp button on the scientific operator keypad முழுஎண் பகுதி Screen reader for the int button on the scientific operator keypad பின்னப் பகுதி Screen reader for the frac button on the scientific operator keypad காரணியம் Screen reader for the factorial button on the basic operator keypad டிகிரிகள் நிலைமாற்று This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". கிரேடியன்கள் நிலைமாற்று This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". ரேடியன்ஸ் நிலைமாற்றம் This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". பயன்முறை கீழ்தோன்றல் Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. வகைகள் கீழ்தோன்றல் Screen reader prompt for the Categories dropdown field. மேலே வை Screen reader prompt for the Always-on-Top button when in normal mode. முழுக் காட்சிக்குத் திரும்பு Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. மேலே வை (Alt+மேல் அம்புக்குறி) This is the tool tip automation name for the Always-on-Top button when in normal mode. முழுக் காட்சிக்குத் திரும்பு (Alt+கீழ் அம்புக்குறி) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2-இலிருந்து மாற்று Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 புள்ளி %2-இலிருந்து மாற்று {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2 ஆக மாற்றும் Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2, %3 %4 ஆகும் Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. அலகு உள்ளிடு Screen reader prompt for the Unit Converter Units1 i.e. top units field. வெளியீட்டின் அலகு Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. பரப்பு Unit conversion category name called Area (eg. area of a sports field in square meters) தரவு Unit conversion category name called Data ஆற்றல் Unit conversion category name called Energy. (eg. the energy in a battery or in food) நீளம் Unit conversion category name called Length மின்சக்தி Unit conversion category name called Power (eg. the power of an engine or a light bulb) வேகம் Unit conversion category name called Speed நேரம் Unit conversion category name called Time கனஅளவு Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) வெப்பநிலை Unit conversion category name called Temperature பொருளின் எடை மற்றும் நிறை Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. அழுத்தம் Unit conversion category name called Pressure கோணம் Unit conversion category name called Angle நாணயம் Unit conversion category name called Currency திரவ அவுன்ஸ் (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நீர்ம அவுன்ஸ் (UK) An abbreviation for a measurement unit of volume திரவ அவுன்ஸ் (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நீர்ம அவுன்ஸ் (US) An abbreviation for a measurement unit of volume கேலன்கள் (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கேலண் (UK) An abbreviation for a measurement unit of volume கேலன்கள் (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கேலண் (US) An abbreviation for a measurement unit of volume லிட்டர்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume மில்லிலிட்டர்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மி.லி An abbreviation for a measurement unit of volume பின்டுகள் (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பிண்ட் (UK) An abbreviation for a measurement unit of volume பைண்ட்கள் (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பிண்ட் (US) An abbreviation for a measurement unit of volume மேசைக்கரண்டி (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மே.க. (US) An abbreviation for a measurement unit of volume தேக்கரண்டி (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) தே.க. (US) An abbreviation for a measurement unit of volume மேசைக்கரண்டி (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மே.க. (UK) An abbreviation for a measurement unit of volume தேக்கரண்டி (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) தே.க. (UK) An abbreviation for a measurement unit of volume குவார்ட்ஸ் (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குவார்ட் (UK) An abbreviation for a measurement unit of volume குவார்ட்ஸ் (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குவார்ட் (US) An abbreviation for a measurement unit of volume கோப்பைகள் (அமெரிக்கா) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கோப்பை (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ஏக் An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/நிமி An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data CAL An abbreviation for a measurement unit of energy செ.மீ An abbreviation for a measurement unit of length செ.மீ/வி An abbreviation for a measurement unit of speed செ.மீ³ An abbreviation for a measurement unit of volume அடி³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume மீ³ An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy அடி An abbreviation for a measurement unit of length அடி/வி An abbreviation for a measurement unit of speed அடி•பவு An abbreviation for a measurement unit of energy GB An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ஹெக் An abbreviation for a measurement unit of area ஹெச்.பி (US) An abbreviation for a measurement unit of power மணி An abbreviation for a measurement unit of time அங் An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) கி.பி An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data கி.கலோ An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy கி.மீ An abbreviation for a measurement unit of length கி.மீ/மணி An abbreviation for a measurement unit of speed கி.வா An abbreviation for a measurement unit of power நாட் An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) மெ.பி An abbreviation for a measurement unit of data மெ.பை An abbreviation for a measurement unit of data மீ An abbreviation for a measurement unit of length மீ/வி An abbreviation for a measurement unit of speed மை.மீ An abbreviation for a measurement unit of length மை.வி An abbreviation for a measurement unit of time மைல் An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed மி.மீ An abbreviation for a measurement unit of length மி.வி An abbreviation for a measurement unit of time நிமி An abbreviation for a measurement unit of time நா.மீ An abbreviation for a measurement unit of length நா.மை An abbreviation for a measurement unit of length பெ.பி An abbreviation for a measurement unit of data பெ.பை An abbreviation for a measurement unit of data அடி•பவு/நிமி An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time செ.மீ² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area அங்² An abbreviation for a measurement unit of area கி.மீ² An abbreviation for a measurement unit of area மீ² An abbreviation for a measurement unit of area மைல்² An abbreviation for a measurement unit of area மீ.மீ² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area டெ.பி An abbreviation for a measurement unit of data டெ.பை An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power வார An abbreviation for a measurement unit of time யா An abbreviation for a measurement unit of length வரு An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data மைல் An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data ஏக்கர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பிட்ஸ் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பிரிட்டிஷ் வெப்ப அலகுகள் A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUகள்/நிமிடம் A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வெப்ப கலோரிகள் A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சென்டி மீட்டர்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) விநாடி/சென்டி மீட்டர்கள் A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கன சென்டி மீட்டர்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கன அடி A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கன அங்குலங்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கன மீட்டர்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கன யார்ட்கள் A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நாட்கள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) செல்சியஸ் An option in the unit converter to select degrees Celsius ஃபாரன்ஹீட் An option in the unit converter to select degrees Fahrenheit எலக்ட்ரான் வோல்ட்கள் A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) அடி A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஒரு விநாடியில் அடி A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) அடி-பவுண்ட்கள் A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) அடி-பவுண்ட்/நிமிடம் A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிகாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜிகாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஹெக்டேர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குதிரைத்திறன் (US) A measurement unit for power மணிநேரங்கள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) அங்குலங்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜூல்கள் A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோவாட்-மணிநேரங்கள் A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கெல்வின் An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". கிலோபைட்டுகள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) உணவு கலோரிகள் A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோ ஜூல்கள் A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோமீட்டர்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோமீட்டர்/மணிநேரம் A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோ வாட்கள் A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நாட்ஸ் A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மேக் A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) மெகாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மெகாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மீட்டர்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வினாடிக்கு மீட்டர்கள் A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மைக்ரான்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மைக்ரோவிநாடிகள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மைல்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மைல்/மணிநேரம் A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மில்லிமீட்டர்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மில்லிநொடிகள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நிமிடங்கள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நிபில் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நானோமீட்டர்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஆங்ஸ்ட்ரோம்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கடல் மைல்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பெடாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பேடாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) விநாடிகள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர சென்டிமீட்டர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர அடிகள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர அங்குலங்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர கிலோமீட்டர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர மீட்டர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர மைல்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர மில்லிமீட்டர்கள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) சதுர யார்டுகள் A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெராபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெராபைட்டுகள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வாட்கள் A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வாரங்கள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யார்ட்கள் A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வருடங்கள் A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight டிகி An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle gr An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure பா An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure மெர்க்குரி மில்லிமீட்டர் An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure செ.கி An abbreviation for a measurement unit of weight DAG An abbreviation for a measurement unit of weight டெ.கி An abbreviation for a measurement unit of weight கி An abbreviation for a measurement unit of weight ஹெ.கி An abbreviation for a measurement unit of weight கி.கி An abbreviation for a measurement unit of weight டன் (UK) An abbreviation for a measurement unit of weight மி.கி An abbreviation for a measurement unit of weight அவு An abbreviation for a measurement unit of weight பவு An abbreviation for a measurement unit of weight டன் (US) An abbreviation for a measurement unit of weight கல் An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight கேரட்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டிகிரிகள் A measurement unit for Angle. ரேடியன்கள் A measurement unit for Angle. கிரேடியன்கள் A measurement unit for Angle. வளிமண்டலங்கள் A measurement unit for Pressure. பார் A measurement unit for Pressure. கிலோபஸ்கால்கள் A measurement unit for Pressure. மில்லிமீட்டர் இரசம் A measurement unit for Pressure. பஸ்கால்கள் A measurement unit for Pressure. சதுர அங்குலம் ஒன்றுக்கான பவுண்டுகள் A measurement unit for Pressure. சென்டி கிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெகா கிராம்கள் A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெசி கிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஹெக்டோ கிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிலோ கிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நீண்ட டன்கள் (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மில்லிகிராம்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) அவுன்ஸ்கள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பவுண்டுகள் A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குறுகிய டன்கள் (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கல் A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மெட்ரிக் டன்கள் A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDகள் A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDகள் A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கால்பந்து களங்கள் A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கால்பந்து களங்கள் A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நெகிழ் வட்டுகள் A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நெகிழ் வட்டுகள் A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDகள் A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDகள் A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மின்கலங்கள் AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மின்கலங்கள் AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காகிதக் கிளிப்புகள் A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காகித கிளிப்புகள் A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பெரிய ஜெட்கள் A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பெரிய ஜெட்கள் A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஒளி விளக்குகள் A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஒளி விளக்குகள் A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குதிரைகள் A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குதிரைகள் A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குளியல்தொட்டிகள் A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) குளியல்தொட்டிகள் A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பனிப்பரப்புகள் A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பனிப்பரப்புகள் A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யானைகள் An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யானைகள் An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டர்ட்டில்கள் A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டர்ட்டில்கள் A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெட்கள் A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெட்ஸ் A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) திமிங்கிலங்கள் A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) திமிங்கிலங்கள் A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காஃபி கோப்பைகள் A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காஃபி கோப்பைகள் A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நீச்சல் குளங்கள் An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நீச்சல் குளங்கள் An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கைகள் A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கைகள் A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காகித தாள்கள் A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) காகித தாள்கள் A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கோட்டைகள் A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கோட்டைகள் A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வாழைப்பழங்கள் A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) வாழைப்பழங்கள் A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கேக் துண்டுகள் A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கேக் துண்டுகள் A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ரயில் இயந்திரங்கள் A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ரயில் இயந்திரங்கள் A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கால்பந்தாட்ட பந்துகள் A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கால்பந்தாட்ட பந்துகள் A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நினைவக உருப்படி Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) பின்செல் Screen reader prompt for the About panel back button பின்செல் Content of tooltip being displayed on AboutControlBackButton Microsoft மென்பொருள் உரிம விதிமுறைகள் Displayed on a link to the Microsoft Software License Terms on the About panel முன்னோட்டம் Label displayed next to upcoming features Microsoft தனியுரிமை அறிக்கை Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. அனைத்து உரிமைகளும் பாதுகாக்கப்பட்டவை. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) எவ்வாறு Windows கால்குலேட்டருக்கு நீங்கள் பங்களிக்க முடியும் என்பதை அறிய, %HL%GitHub%HL%-இல் திட்டப்பணியை பார்க்கவும். {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel இது பற்றி Subtitle of about message on Settings page பின்னூட்டம் அனுப்பு The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app இங்கு இதுவரை வரலாறு ஏதுமில்லை. The text that shows as the header for the history list நினைவகத்தில் எதுவும் சேமிக்கப்படவில்லை. The text that shows as the header for the memory list நினைவகம் Screen reader prompt for the negate button on the converter operator keypad இந்தக் கோவையை ஒட்ட முடியாது The paste operation cannot be performed, if the expression is invalid. ஜிபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜிபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) கிபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மெபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) மெபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பெபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) பெபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) டெபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) எக்ஸாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) எக்ஸாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) எக்ஸ்பிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) எக்ஸ்பிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெட்டாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெட்டாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ஜெபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யோட்டாபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யோட்டாபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யோபிபிட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) யோபிபைட்கள் A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) நாள் கணக்கீடு கணக்கீட்டுப் பயன்முறை Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". சேர் Add toggle button text நாட்களைச் சேர் அல்லது கழி Add or Subtract days option தேதி Date result label நாட்களுக்கு இடையிலான வேறுபாடு Date difference option நாட்கள் Add/Subtract Days label வேறுபாடு Difference result label தொடக்கம் From Date Header for Difference Date Picker மாதங்கள் Add/Subtract Months label கழி Subtract toggle button text முடிவு To Date Header for Difference Date Picker வருடங்கள் Add/Subtract Years label தேதி எல்லையைக் கடந்துவிட்டது Out of bound message shown as result when the date calculation exceeds the bounds நாள் நாட்கள் மாதம் மாதங்கள் அதே தேதிகள் வாரம் வாரங்கள் வருடம் வருடங்கள் வேறுபாடு %1 Automation name for reading out the date difference. %1 = Date difference முடிவு தேதி %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 கால்குலேட்டர் பயன்முறை {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 மாற்றி முறைமை {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. நாள் கணக்கீட்டுப் பயன்முறை Automation name for when the mode header is focused and the current mode is Date calculation. வரலாறு மற்றும் நினைவகப் பட்டியல்கள் Automation name for the group of controls for history and memory lists. நினைவகக் கட்டுப்பாடுகள் Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) நிலையான செயல்பாடுகள் Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) தோற்றக் கட்டுப்பாடுகள் Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) நிலையான ஆப்பரேட்டர்கள் Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) எண் பேட் Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) கோணம் ஆப்பரேட்டர்கள் Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) அறிவியல் சார்ந்த செயல்பாடுகள் Automation name for the group of Scientific functions. ராடிக்ஸ் தேர்வு Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix நிரலாக்க ஆப்பரேட்டர்கள் Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). உள்ளீட்டு முறைத் தேர்வு Automation name for the group of input mode toggling buttons. பிட் நிலைமாற்றும் விசைத்தளம் Automation name for the group of bit toggling buttons. இடப்பக்கம் செயலை நகர்த்த Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. வலப்பக்கம் செயலை நகர்த்த Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. அதிகபட்ச இலக்கங்களை அடைந்து விட்டது. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 நினைவகத்தில் சேமிக்கப்பட்டது {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". நினைவக ஸ்லாட் %1 ஆனது %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". நினைவக ஸ்லாட் %1 அழிக்கப்பட்டது {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". வகுத்தல் Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. காலமும் Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. கழித்தல் Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. கூட்டல் Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. பவர் Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y வேர் Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. மோட் Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. இடது மாற்றம் Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. வலது மாற்றம் Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. அல்லது Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x அல்லது Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. மற்றும் Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. புதுப்பித்தது %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" கட்டணங்களைப் புதுப்பி The text displayed for a hyperlink button that refreshes currency converter ratios. தரவுக் கட்டணங்கள் பொருந்தலாம். The text displayed when users are on a metered connection and using currency converter. புதிய கட்டணங்களைப் பெற முடியவில்லை. பின்னர் மீண்டும் முயற்சிக்கவும். The text displayed when currency ratio data fails to load. ஆஃப்லைன். தயவுசெய்து, உங்கள்%HL%நெட்வொர்க் அமைப்புகளைச்%HL% சரிபார்க்கவும் Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} நாணய விகிதங்களைப் புதுப்பிக்கிறது This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. நாணய விகிதங்கள் புதுப்பிக்கப்பட்டன This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. விகிதங்களைப் புதுப்பிக்க முடியவில்லை This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} எல்லா நினைவகத்தையும் அழி (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. எல்லா நினைவகத்தையும் அழி Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} சைன் டிகிரிகள் Name for the sine function in degrees mode. Used by screen readers. சைன் ரேடியன்கள் Name for the sine function in radians mode. Used by screen readers. சைன் கிரேடியன்கள் Name for the sine function in gradians mode. Used by screen readers. தலைகீழான சைன் டிகிரிகள் Name for the inverse sine function in degrees mode. Used by screen readers. தலைகீழான சைன் ரேடியன்கள் Name for the inverse sine function in radians mode. Used by screen readers. தலைகீழான சைன் கிரேடியன் Name for the inverse sine function in gradians mode. Used by screen readers. ஹைப்பர்போலிக் சைன் Name for the hyperbolic sine function. Used by screen readers. தலைகீழான ஹைப்பர்போலிக் சைன் Name for the inverse hyperbolic sine function. Used by screen readers. கொசைன் டிகிரிகள் Name for the cosine function in degrees mode. Used by screen readers. கொசைன் ரேடியன்கள் Name for the cosine function in radians mode. Used by screen readers. கொசைன் கிரேடியன்கள் Name for the cosine function in gradians mode. Used by screen readers. தலைகீழான கொசைன் டிகிரிகள் Name for the inverse cosine function in degrees mode. Used by screen readers. தலைகீழான கொசைன் ரேடியன்கள் Name for the inverse cosine function in radians mode. Used by screen readers. தலைகீழான கொசைன் கிரேடியன் Name for the inverse cosine function in gradians mode. Used by screen readers. ஹைப்பர்போலிக் கொசைன் Name for the hyperbolic cosine function. Used by screen readers. தலைகீழான ஹைப்பர்போலிக் கொசைன் Name for the inverse hyperbolic cosine function. Used by screen readers. டேஞ்சன்ட் டிகிரிகள் Name for the tangent function in degrees mode. Used by screen readers. டேஞ்சன்ட் ரேடியன்ஸ் Name for the tangent function in radians mode. Used by screen readers. டேஞ்சன்ட் கிரேடியன்கள் Name for the tangent function in gradians mode. Used by screen readers. தலைகீழான டேஞ்சன்ட் டிகிரிஸ் Name for the inverse tangent function in degrees mode. Used by screen readers. தலைகீழான டேஞ்சன்ட் ரேடியன்கள் Name for the inverse tangent function in radians mode. Used by screen readers. தலைகீழான டேஞ்சன்ட் கிரேடியன்கள் Name for the inverse tangent function in gradians mode. Used by screen readers. ஹைப்பர்போலிக் டேஞ்சன்ட் Name for the hyperbolic tangent function. Used by screen readers. தலைகீழான ஹைப்பர்போலிக் டேஞ்சன்ட் Name for the inverse hyperbolic tangent function. Used by screen readers. சிகன்ட் டிகிரி Name for the secant function in degrees mode. Used by screen readers. சிகன்ட் ரேடியன் Name for the secant function in radians mode. Used by screen readers. சிகன்ட் கிரேடியன் Name for the secant function in gradians mode. Used by screen readers. தலைகீழ் சிகன்ட் டிகிரி Name for the inverse secant function in degrees mode. Used by screen readers. தலைகீழ் சிகன்ட் ரேடியன் Name for the inverse secant function in radians mode. Used by screen readers. தலைகீழ் சிகன்ட் கிரேடியன் Name for the inverse secant function in gradians mode. Used by screen readers. ஹைபர்போலிக் சிகன்ட் Name for the hyperbolic secant function. Used by screen readers. தலைகீழ் ஹைபர்போலிக் சிகன்ட் Name for the inverse hyperbolic secant function. Used by screen readers. கோசிகன்ட் டிகிரி Name for the cosecant function in degrees mode. Used by screen readers. கோசிகன்ட் ரேடியன் Name for the cosecant function in radians mode. Used by screen readers. கோசிகன்ட் கிரேடியன் Name for the cosecant function in gradians mode. Used by screen readers. தலைகீழ் கோசிகன்ட் டிகிரி Name for the inverse cosecant function in degrees mode. Used by screen readers. தலைகீழ் கோசிகன்ட் ரேடியன் Name for the inverse cosecant function in radians mode. Used by screen readers. தலைகீழ் கோசிகன்ட் கிரேடியன் Name for the inverse cosecant function in gradians mode. Used by screen readers. ஹைபர்போலிக் கோசிகன்ட் Name for the hyperbolic cosecant function. Used by screen readers. தலைகீழ் ஹைபர்போலிக் கோசிகன்ட் Name for the inverse hyperbolic cosecant function. Used by screen readers. கோடேன்ஜென்ட் டிகிரி Name for the cotangent function in degrees mode. Used by screen readers. கோடேன்ஜென்ட் ரேடியன் Name for the cotangent function in radians mode. Used by screen readers. கோடேன்ஜென்ட் கிரேடியன் Name for the cotangent function in gradians mode. Used by screen readers. தலைகீழ் கோடேன்ஜென்ட் டிகிரி Name for the inverse cotangent function in degrees mode. Used by screen readers. தலைகீழ் கோடேன்ஜென்ட் ரேடியன் Name for the inverse cotangent function in radians mode. Used by screen readers. தலைகீழ் கோடேன்ஜென்ட் கிரேடியன் Name for the inverse cotangent function in gradians mode. Used by screen readers. ஹைபர்போலிக் கோடேன்ஜென்ட் Name for the hyperbolic cotangent function. Used by screen readers. தலைகீழ் ஹைபர்போலிக் கோடேன்ஜென்ட் Name for the inverse hyperbolic cotangent function. Used by screen readers. கன மூலம் Name for the cube root function. Used by screen readers. அடிப்படை பதிவு Name for the logbasey function. Used by screen readers. முழுமையான மதிப்பு Name for the absolute value function. Used by screen readers. இடது மாற்றம் Name for the programmer function that shifts bits to the left. Used by screen readers. வலது மாற்றம் Name for the programmer function that shifts bits to the right. Used by screen readers. இயல் எண் தொடர்பெருக்கம் Name for the factorial function. Used by screen readers. டிகிரி நிமிடம் வினாடி Name for the degree minute second (dms) function. Used by screen readers. இயல் மடக்கை Name for the natural log (ln) function. Used by screen readers. சதுரம் Name for the square function. Used by screen readers. y வேர் Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 வகை {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft சேவைகள் ஒப்பந்தம் Displayed on a link to the Microsoft Services Agreement in the about this app information ப்யியாங் An abbreviation for a measurement unit of area. ப்யியாங் A measurement unit for area. தொடக்கம் From Date Header for AddSubtract Date Picker இடதுபக்க கணக்கீட்டு முடிவு உருட்டு Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. வலதுபக்க கணக்கீட்டு முடிவு உருட்டு Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. கணக்கிடுதல் தோல்வியடைந்தது Text displayed when the application is not able to do a calculation அடிப்படை மடக்கை Y Screen reader prompt for the logBaseY button திரிகோணமிதி Displayed on the button that contains a flyout for the trig functions in scientific mode. செயல்பாடு Displayed on the button that contains a flyout for the general functions in scientific mode. அசமம் Displayed on the button that contains a flyout for the inequality functions. அசமம் Screen reader prompt for the Inequalities button பிட்வைஸ் Displayed on the button that contains a flyout for the bitwise functions in programmer mode. பிட் ஷிஃப்ட் Displayed on the button that contains a flyout for the bit shift functions in programmer mode. நேர்மாற்றுச் சார்பு Screen reader prompt for the shift button in the trig flyout in scientific mode. ஹைபர்போலிக் சார்பு Screen reader prompt for the Calculator button HYP in the scientific flyout keypad சீகன்ட் Screen reader prompt for the Calculator button sec in the scientific flyout keypad ஹைபர்போலிக் சிகன்ட் Screen reader prompt for the Calculator button sech in the scientific flyout keypad ஆர்க் சிகன்ட் Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ஹைபர்போலிக் ஆர்க் சிகன்ட் Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad கோசிகன்ட் Screen reader prompt for the Calculator button csc in the scientific flyout keypad ஹைபர்போலிக் கோசிகன்ட் Screen reader prompt for the Calculator button csch in the scientific flyout keypad ஆர்க் கோசிகன்ட் Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ஹைபர்போலிக் ஆர்க் கோசிகன்ட் Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad கோடேன்ஜென்ட் Screen reader prompt for the Calculator button cot in the scientific flyout keypad ஹைபர்போலிக் கோடேன்ஜென்ட் Screen reader prompt for the Calculator button coth in the scientific flyout keypad ஆர்க் கோடேன்ஜென்ட் Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ஹைபர்போலிக் ஆர்க் கோடேன்ஜென்ட் Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad தளம் Screen reader prompt for the Calculator button floor in the scientific flyout keypad சீலிங் Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad ரேண்டம் Screen reader prompt for the Calculator button random in the scientific flyout keypad முழுமையான மதிப்பு Screen reader prompt for the Calculator button abs in the scientific flyout keypad ஆய்லரின் எண் Screen reader prompt for the Calculator button e in the scientific flyout keypad இரண்டு அடுக்கு மதிப்பு Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad Nand Screen reader prompt for the Calculator button nand in the scientific flyout keypad Nand Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. Nor Screen reader prompt for the Calculator button nor in the scientific flyout keypad Nor Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. கேரியுடன் இடதுபுறமாகச் சுழற்று Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad கேரியுடன் வலதுபுறமாகச் சுழற்று Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad இடது மாற்றம் Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad இடது மாற்றம் Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. வலது ஷிஃப்ட் Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad வலது மாற்றம் Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. கணிப்பியல் ஷிஃப்ட் Label for a radio button that toggles arithmetic shift behavior for the shift operations. தருக்கமுறையான ஷிஃப்ட் Label for a radio button that toggles logical shift behavior for the shift operations. சுழற்சியான ஷிஃப்ட்டைச் சுழற்று Label for a radio button that toggles rotate circular behavior for the shift operations. கேரி சுழற்சியான ஷிஃப்ட்டின் வழியே சுழற்று Label for a radio button that toggles rotate circular with carry behavior for the shift operations. கன மூலம் Screen reader prompt for the cube root button on the scientific operator keypad திரிகோணமிதி Screen reader prompt for the square root button on the scientific operator keypad சார்புகள் Screen reader prompt for the square root button on the scientific operator keypad பிட்வைஸ் Screen reader prompt for the square root button on the scientific operator keypad பிட்மாற்றம் Screen reader prompt for the square root button on the scientific operator keypad அறிவியல் ஆபரேட்டர் பேனல்கள் Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad புரோகிராமர் ஆபரேட்டர் பேனல்கள் Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad அதிகமான குறிப்பிடத்தக்க பிட் Used to describe the last bit of a binary number. Used in bit flip வரைபடம் Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. வரைவி Screen reader prompt for the plot button on the graphing calculator operator keypad காட்சியை தானாகவே புதுப்பி (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. வரைபடப் பார்வை Screen reader prompt for the graph view button. தானியங்கு சிறந்த பொருத்தம் Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set கையேடு சரிப்படுத்திக்கொள்ளுதல் Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set விளக்கப்படக் காட்சி மீட்டமைக்கப்பட்டுள்ளது Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph பெரிதாக்கு (CTRL விசை + கூட்டல் குறி) This is the tool tip automation name for the Calculator zoom in button. பெரிதாக்கு Screen reader prompt for the zoom in button. சிறிதாக்கு (CTRL விசை + கழித்தல் குறி) This is the tool tip automation name for the Calculator zoom out button. சிறிதாக்கு Screen reader prompt for the zoom out button. சமன்பாட்டைச் சேர் Placeholder text for the equation input button தற்போது இதைப் பகிர முடியவில்லை. If there is an error in the sharing action will display a dialog with this text. சரி Used on the dismiss button of the share action error dialog. Windows கால்குலேட்டர் மூலம் நான் வரைந்த வரைபடத்தைப் பார்க்கவும் Sent as part of the shared content. The title for the share. சமன்பாடுகள் Header that appears over the equations section when sharing மாறிகள் Header that appears over the variables section when sharing கேள்விகளைக் கொண்ட வரைபடத்தின் படிமம் Alt text for the graph image when output via Share மாறிகள் Header text for variables area படி Label text for the step text box குறைந்தபட்சம் Label text for the min text box அதிகபட்சம் Label text for the max text box வண்ணம் Label for the Line Color section of the style picker நடை Label for the Line Style section of the style picker செயல்பட்டுப் பகுப்பாய்வு Title for KeyGraphFeatures Control செயல்பாட்டில் கிடைமட்ட அணுகுகோடுகள் ஏதுமில்லை. Message displayed when the graph does not have any horizontal asymptotes செயல்பாட்டில் கோணப் புள்ளிகள் ஏதுமில்லை. Message displayed when the graph does not have any inflection points செயல்பாட்டில் மீப்பெரு மதிப்பு ஏதுமில்லை. Message displayed when the graph does not have any maxima செயல்பாட்டில் மீச்சிறு மதிப்பு ஏதுமில்லை. Message displayed when the graph does not have any minima மாறிலி String describing constant monotonicity of a function குறைதல் String describing decreasing monotonicity of a function செயல்பாட்டின் ஓரியல்புச் சார்பைக் கண்டறிய முடியவில்லை. Error displayed when monotonicity cannot be determined அதிகரித்தல் String describing increasing monotonicity of a function செயல்பாட்டின் ஓரியல்புச் சார்பு அறியப்படாதது. Error displayed when monotonicity is unknown செயல்பாட்டில் சாய்ந்த அணுகுகோடுகள் ஏதுமில்லை. Message displayed when the graph does not have any oblique asymptotes செயல்பாட்டின் சமநிலைச் சார்பைக் கண்டறிய முடியவில்லை. Error displayed when parity is cannot be determined செயல்பாடு இரட்டைப்படை. Message displayed with the function parity is even செயல்பாடு இரட்டைப்படையாகவோ அல்லது ஒற்றைப்படையாகவோ இல்லை. Message displayed with the function parity is neither even nor odd செயல்பாடு ஒற்றைப்படை. Message displayed with the function parity is odd செயல்பாட்டின் சமநிலைச் சார்பு அறியப்படாதது. Error displayed when parity is unknown இந்தச் செயல்பாட்டுக்காகக் காலமுறைமை ஆதரிக்கப்படவில்லை. Error displayed when periodicity is not supported செயல்பாடு காலமுறை சார்ந்ததல்ல. Message displayed with the function periodicity is not periodic செயல்பாட்டின் காலமுறைமை அறியப்படாதது. Message displayed with the function periodicity is unknown இந்த அம்சங்கள் மிகவும் சிக்கலாக உள்ளதால் கால்குலேட்டரால் கணக்கிட முடியவில்லை: Error displayed when analysis features cannot be calculated செயல்பாட்டில் செங்குத்து அணுகுகோடுகள் ஏதுமில்லை. Message displayed when the graph does not have any vertical asymptotes செயல்பாட்டில் x குறுக்குவெட்டுகள் ஏதுமில்லை. Message displayed when the graph does not have any x-intercepts செயல்பாட்டில் y குறுக்குவெட்டுகள் ஏதுமில்லை. Message displayed when the graph does not have any y-intercepts களம் Title for KeyGraphFeatures Domain Property கிடைமட்ட அணுகுகோடுகள் Title for KeyGraphFeatures Horizontal aysmptotes Property விலக்கல் புள்ளிகள் Title for KeyGraphFeatures Inflection points Property இந்தச் செயல்பாட்டுக்காகப் பகுப்பாய்வு ஆதரிக்கப்படவில்லை. Error displayed when graph analysis is not supported or had an error. f(x) வடிவத்தில் உள்ள சார்புகளுக்கு மட்டுமே பகுப்பாய்வு துணைபுரிகிறது. உதாரணம்: y=x Error displayed when graph analysis detects the function format is not f(x). பெருமம் Title for KeyGraphFeatures Maxima Property சிறுமம் Title for KeyGraphFeatures Minima Property ஓரியல்பு Title for KeyGraphFeatures Monotonicity Property சாய்ந்த அணுகுகோடுகள் Title for KeyGraphFeatures Oblique asymptotes Property சமநிலை Title for KeyGraphFeatures Parity Property காலஅளவு Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. வரம்பு Title for KeyGraphFeatures Range Property செங்குத்து அணுகுகோடுகள் Title for KeyGraphFeatures Vertical asymptotes Property X குறுக்குவெட்டு Title for KeyGraphFeatures XIntercept Property Y குறுக்குவெட்டு Title for KeyGraphFeatures YIntercept Property செயல்பாட்டுக்கான பகுப்பாய்வைச் செய்ய முடியவில்லை. இந்தச் செயல்பாட்டுக்காகக் களத்தைக் கணக்கிட முடியவில்லை. Error displayed when Domain is not returned from the analyzer. இந்தச் செயல்பாட்டுக்காக வரம்பைக் கணக்கிட முடியவில்லை. Error displayed when Range is not returned from the analyzer. மேலதிகம் (மிகப் பெரிய எண்) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. இந்தச் சமன்பாட்டை விளக்கப்படமாக்க ரேடியன்ஸ் பயன்முறை தேவைப்படுகிறது. Error that occurs during graphing when radians is required. இந்தச் சார்பை விளக்கப்படமாக்குவது மிகவும் சிக்கலானது Error that occurs during graphing when the equation is too complex. இந்தச் சமன்பாட்டை விளக்கப்படமாக்க டிகிரிஸ் பயன்முறை தேவைப்படுகிறது. Error that occurs during graphing when degrees is required காரணிச் சார்பில் செல்லுபடியாகாத மதிப்புரு உள்ளது. Error that occurs during graphing when a factorial function has an invalid argument. விளக்கப்படமாக்க முடியாத அளவு மிகப்பெரிய மதிப்புருவை காரணிச் சார்பு கொண்டுள்ளது Error that occurs during graphing when a factorial has a large n மாடுலோ சார்பு முழு எண்களுடன் மட்டுமே பயன்படுத்தப்பட முடியும் Error that occurs during graphing when modulo is used with a float. இந்தச் சமன்பாட்டில் தீர்வு இல்லை Error that occurs during graphing when the equation has no solution. பூஜ்ஜியத்தால் வகுக்க முடியாது Error that occurs during graphing when a divison by zero occurs. இந்தச் சமன்பாட்டில் ஒன்றுக்கொன்று தொடர்பில்லாத தருக்க நிபந்தனைகள் உள்ளன Error that occurs during graphing when mutually exclusive conditions are used. சமன்பாடு களத்திலிருந்து வெளியே உள்ளது Error that occurs during graphing when the equation is out of domain. இந்தச் சமன்பாட்டை வரைபடமாக்குவது ஆதரிக்கப்படவில்லை Error that occurs during graphing when the equation is not supported. சமன்பாட்டில் ஒரு துவக்க பிறை அடைப்பு விடுபட்டுள்ளது Error that occurs during graphing when the equation is missing a ( சமன்பாட்டில் ஒரு முடிவு பிறை அடைப்பு விடுபட்டுள்ளது Error that occurs during graphing when the equation is missing a ) ஒரு எண்ணில் மிக அதிகமான தசமப் புள்ளிகள் உள்ளன Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 தசமப் புள்ளியில் இலக்கங்கள் விடுபட்டுள்ளன Error that occurs during graphing with a decimal point without digits எதிர்பாராத கோவையின் முடிவு Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* கோவையில் எதிர்பார்க்காத எழுத்துக்குறிகள் உள்ளன Error that occurs during graphing when there is an unexpected token. கோவையில் செல்லுபடியாகாத எழுத்துக்குறிகள் உள்ளன Error that occurs during graphing when there is an invalid token. ஏராளமான சமக் குறிகள் உள்ளன Error that occurs during graphing when there are too many equals. சார்பில் குறைந்தது ஒரு x அல்லது y மாறி இருக்க வேண்டும் Error that occurs during graphing when the equation is missing x or y. செல்லுபடியாகாத கோவை Error that occurs during graphing when an invalid syntax is used. கோவை காலியாக உள்ளது Error that occurs during graphing when the expression is empty சமன்பாடு இல்லாமல் சமக்குறி பயன்படுத்தப்பட்டது Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) சார்பின் பெயருக்குப் பிறகு பிறை அடைப்பு விடுபட்டுள்ளது Error that occurs during graphing when parenthesis are missing after a function. ஒரு கணிதச் செயல்பாடு தவறான அளவுருக்களின் எண்ணிக்கையைக் கொண்டுள்ளது Error that occurs during graphing when a function has the wrong number of parameters மாறியின் பெயர் செல்லுபடியாகாதது Error that occurs during graphing when a variable name is invalid. சமன்பாட்டில் ஒரு துவக்க அடைப்புக்குறி விடுபட்டுள்ளது Error that occurs during graphing when a { is missing சமன்பாட்டில் ஒரு முடிவு அடைப்புக்குறி விடுபட்டுள்ளது Error that occurs during graphing when a } is missing. "i" மற்றும் "I" ஆகியவற்றை மாறியின் பெயர்களாகப் பயன்படுத்த முடியாது Error that occurs during graphing when i or I is used. இந்தச் சமன்பாட்டை விளக்கப்படமாக்க முடியாது General error that occurs during graphing. கொடுக்கப்பட்ட அடிமானத்திற்கு இலக்கத்தால் தீர்வு காண முடியாது Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). அடிமானம் 2-ஐ விடப் பெரியதாகவும் 36-ஐ விடச் சிறியதாகவும் இருக்க வேண்டும் Error that occurs during graphing when the base is out of range. ஒரு கணிதச் செயல்பாட்டிற்கு அதன் அளவுருக்களில் ஒன்று மாறியாக இருக்க வேண்டும் Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. சமன்பாட்டில் தருக்க, ஸ்கேலார் இயக்கமாறிகள் உள்ளன Error that occurs during graphing when operands are mixed. Such as true and 1. மேல் அல்லது கீழ் வரம்புகளுக்குள் x அல்லது y பயன்படுத்த முடியாது Error that occurs during graphing when x or y is used in integral upper limits. வரம்புப் புள்ளியில் x அல்லது y பயன்படுத்த முடியாது Error that occurs during graphing when x or y is used in the limit point. சிக்கலான முடிவிலியைப் பயன்படுத்த முடியாது Error that occurs during graphing when complex infinity is used சமமற்றவையில் சிக்கல் எண்களைப் பயன்படுத்த முடியாது Error that occurs during graphing when complex numbers are used in inequalities. செயல்பாட்டுப் பட்டியலுக்காகப் பின்செல் This is the tooltip for the back button in the equation analysis page in the graphing calculator செயல்பாட்டுப் பட்டியலுக்காகப் பின்செல் This is the automation name for the back button in the equation analysis page in the graphing calculator செயல்பாட்டைப் பகுப்பாய்வு செய் This is the tooltip for the analyze function button செயல்பாட்டைப் பகுப்பாய்வு செய் This is the automation name for the analyze function button செயல்பாட்டைப் பகுப்பாய்வு செய் This is the text for the for the analyze function context menu command சமன்பாட்டை அகற்று This is the tooltip for the graphing calculator remove equation buttons சமன்பாட்டை அகற்று This is the automation name for the graphing calculator remove equation buttons சமன்பாட்டை அகற்று This is the text for the for the remove equation context menu command பகிர் This is the automation name for the graphing calculator share button. பகிர் This is the tooltip for the graphing calculator share button. சமன்பாட்டு நடையை மாற்று This is the tooltip for the graphing calculator equation style button சமன்பாட்டு நடையை மாற்று This is the automation name for the graphing calculator equation style button சமன்பாட்டு நடையை மாற்று This is the text for the for the equation style context menu command சமன்பாட்டைக் காட்டவும் This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. சமன்பாட்டை மறைக்கவும் This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. சமன்பாடு %1-ஐக் காட்டவும் {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. சமன்பாடு %1-ஐ மறைக்கவும் {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. வரைவதை நிறுத்து This is the tooltip/automation name for the graphing calculator stop tracing button வரைவதைத் தொடங்கு This is the tooltip/automation name for the graphing calculator start tracing button கிராஃப் பார்த்தல் சாளரம், %1 மற்றும் %2-இல் x அச்சு பிணைக்கப்பட்டது, %3 மற்றும் %4-இல் y அச்சு பிணைக்கப்பட்டது, %5 சமன்பாடுகளைக் காட்டுகிறது {Locked="%1","%2", "%3", "%4", "%5"}. ஸ்லைடரை உள்ளமை This is the tooltip text for the slider options button in Graphing Calculator ஸ்லைடரை உள்ளமை This is the automation name text for the slider options button in Graphing Calculator சமன்பாட்டு முறைக்கு மாற்று Used in Graphing Calculator to switch the view to the equation mode வரைபட முறைக்கு மாற்று Used in Graphing Calculator to switch the view to the graph mode சமன்பாட்டு முறைக்கு மாற்று Used in Graphing Calculator to switch the view to the equation mode நடப்பு முறை சமன்பாட்டு முறையாகும் Announcement used in Graphing Calculator when switching to the equation mode நடப்பு முறை வரைபட முறையாகும் Announcement used in Graphing Calculator when switching to the graph mode சாளரம் Heading for window extents on the settings டிகிரிகள் Degrees mode on settings page கிரேடியன்கள் Gradian mode on settings page ரேடியன்கள் Radians mode on settings page அலகுகள் Heading for Unit's on the settings காட்சியை மீட்டமை Hyperlink button to reset the view of the graph X அதிகபட்சம் X maximum value header X குறைந்தபட்சம் X minimum value header Y அதிகபட்சம் Y Maximum value header Y குறைந்தபட்சம் Y minimum value header விளக்கப்பட விருப்பங்கள் This is the tooltip text for the graph options button in Graphing Calculator விளக்கப்பட விருப்பங்கள் This is the automation name text for the graph options button in Graphing Calculator விளக்கப்பட விருப்பங்கள் Heading for the Graph options flyout in Graphing mode. மாறக்கூடிய விருப்பங்கள் Screen reader prompt for the variable settings toggle button மாறக்கூடிய விருப்பங்களை மாற்று Tool tip for the variable settings toggle button கோட்டின் தடிப்பு Heading for the Graph options flyout in Graphing mode. கோட்டின் விருப்பங்கள் Heading for the equation style flyout in Graphing mode. சிறிய கோட்டின் அகலம் Automation name for line width setting நடுத்தர கோட்டின் அகலம் Automation name for line width setting பெரிய கோட்டின் அகலம் Automation name for line width setting மிகப்பெரிய கோட்டின் அகலம் Automation name for line width setting கோவையை உள்ளிடவும் this is the placeholder text used by the textbox to enter an equation நகலெடு Copy menu item for the graph context menu வெட்டு Cut menu item from the Equation TextBox நகலெடு Copy menu item from the Equation TextBox ஒட்டு Paste menu item from the Equation TextBox செயல்தவிர் Undo menu item from the Equation TextBox அனைத்தையும் தேர்ந்தெடு Select all menu item from the Equation TextBox சார்பு உள்ளீடு The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. சார்பு உள்ளீடு The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. சார்பு உள்ளீட்டுப் பலகம் The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. மாறுபடுகிற பலகம் The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. மாறுபடுகிற பட்டியல் The automation name for the Variable ListView that is shown when Calculator is in graphing mode. மாறுபடுகிற %1 பட்டியல் உருப்படி The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. மாறுபடுகிற மதிப்பு உரைப்பெட்டி The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. மாறுபடுகிற மதிப்பு நகர்வுகோல் The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. மாறுபடுகிற குறைந்தபட்ச மதிப்பு உரைப்பெட்டி The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. மாறுபடுகிற படி மதிப்பு உரைப்பெட்டி The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. மாறுபடுகிற அதிகபட்ச மதிப்பு உரைப்பெட்டி The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. திடக் கோட்டு நடை Name of the solid line style for a graphed equation புள்ளி வரி நடை Name of the dotted line style for a graphed equation கோடிட்ட வரி நடை Name of the dashed line style for a graphed equation கடற்படை நீலம் Name of color in the color picker சீஃபாம் Name of color in the color picker வயலட் Name of color in the color picker பச்சை Name of color in the color picker மின்ட் க்ரீன் Name of color in the color picker அடர் பச்சை Name of color in the color picker மரக்கரி Name of color in the color picker சிவப்பு Name of color in the color picker பிளம் வெளிர் Name of color in the color picker மெஜந்தா Name of color in the color picker மஞ்சள் தங்கம் Name of color in the color picker பளிச் ஆரஞ்சு Name of color in the color picker பழுப்பு Name of color in the color picker கறுப்பு Name of color in the color picker வெள்ளை Name of color in the color picker வண்ணம் 1 Name of color in the color picker வண்ணம் 2 Name of color in the color picker வண்ணம் 3 Name of color in the color picker வண்ணம் 4 Name of color in the color picker விளக்கப்படத் தீம் Graph settings heading for the theme options எப்போதும் லைட் Graph settings option to set graph to light theme பயன்பாட்டுத் தீமுடன் பொருத்து Graph settings option to set graph to match the app theme தீம் This is the automation name text for the Graph settings heading for the theme options எப்போதும் லைட் This is the automation name text for the Graph settings option to set graph to light theme பயன்பாட்டுத் தீமுடன் பொருத்து This is the automation name text for the Graph settings option to set graph to match the app theme செயல்பாடு அகற்றப்பட்டது Announcement used in Graphing Calculator when a function is removed from the function list சார்புப் பகுப்பாய்வு சமன்பாட்டுப் பெட்டி This is the automation name text for the equation box in the function analysis panel சமம் Screen reader prompt for the equal button on the graphing calculator operator keypad இதைவிடக் குறைவு Screen reader prompt for the Less than button இதைவிடக் குறைவு அல்லது சமம் Screen reader prompt for the Less than or equal button சமம் Screen reader prompt for the Equal button இதைவிட அதிகம் அல்லது சமம் Screen reader prompt for the Greater than or equal button இதை விட அதிகமாக Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad சமர்ப்பி Screen reader prompt for the submit button on the graphing calculator operator keypad செயல்பட்டுப் பகுப்பாய்வு Screen reader prompt for the function analysis grid விளக்கப்பட விருப்பங்கள் Screen reader prompt for the graph options panel வரலாறு மற்றும் நினைவகப் பட்டியல்கள் Automation name for the group of controls for history and memory lists. நினைவகப் பட்டியல் Automation name for the group of controls for memory list. வரலாறு ஸ்லாட் %1 அழிக்கப்பட்டது {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". கால்குலேட்டர் எப்போதும் முன்னால் Announcement to indicate calculator window is always shown on top. மீண்டும் முழு காட்சிக்கு கால்குலேட்டர் Announcement to indicate calculator window is now back to full view. கணிப்பியல் ஷிஃப்ட் தேர்ந்தெடுக்கப்பட்டது Label for a radio button that toggles arithmetic shift behavior for the shift operations. தர்க்கரீதியாக ஷிஃப்ட் தேர்ந்தெடுக்கப்பட்டது Label for a radio button that toggles logical shift behavior for the shift operations. சுழற்சியான ஷிஃப்ட்டைச் சுழற்று தேர்ந்தெடுக்கப்பட்டது Label for a radio button that toggles rotate circular behavior for the shift operations. கேரி சுழற்சியான ஷிஃப்ட்டின் வழியாகச் சுழற்று தேர்ந்தெடுக்கப்பட்டது Label for a radio button that toggles rotate circular with carry behavior for the shift operations. அமைப்புகள் Header text of Settings page தோற்றம் Subtitle of appearance setting on Settings page பயன்பாட்டுக் கருப்பொருள் Title of App theme expander எந்தப் பயன்பாட்டு கருப்பொருளைக் காண்பிக்க வேண்டும் என்பதைத் தேர்ந்தெடுக்கவும் Description of App theme expander வெளிச்சம் Lable for light theme option இருள் Lable for dark theme option முறைமை அமைப்பைப் பயன்படுத்தவும் Lable for the app theme option to use system setting பின்செல் Screen reader prompt for the Back button in title bar to back to main page அமைப்புகள் பக்கம் Announcement used when Settings page is opened கிடைக்கக்கூடிய செயல்களுக்கு சூழல் மெனுவைத் திறக்கவும் Screen reader prompt for the context menu of the expression box சரி The text of OK button to dismiss an error dialog. இந்த நொடிப்புச்சேமிப்பை மீட்டெடுக்க முடியவில்லை. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/te-IN/CEngineStrings.resw ================================================ [File too large to display: 7.2 KB] ================================================ FILE: src/Calculator/Resources/te-IN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 కాలిక్యులేటర్ {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. కాలిక్యులేటర్ [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows కాలిక్యులేటర్ {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows కాలిక్యులేటర్ [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. కాలిక్యులేటర్ {@Appx_Description@} This description is used for the official application when published through Windows Store. కాలిక్యులేటర్ [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. కాపీ Copy context menu string అతికించు Paste context menu string సుమారు దీనికి సమానం The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, విలువ %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 బిట్ {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 63 వ Sub-string used in automation name for 63 bit in bit flip 62 వ Sub-string used in automation name for 62 bit in bit flip 61 వ Sub-string used in automation name for 61 bit in bit flip 60 వ Sub-string used in automation name for 60 bit in bit flip 59 వ Sub-string used in automation name for 59 bit in bit flip 58 వ Sub-string used in automation name for 58 bit in bit flip 57 వ Sub-string used in automation name for 57 bit in bit flip 56 వ Sub-string used in automation name for 56 bit in bit flip 55 వ Sub-string used in automation name for 55 bit in bit flip 54 వ Sub-string used in automation name for 54 bit in bit flip 53 వ Sub-string used in automation name for 53 bit in bit flip 52 వ Sub-string used in automation name for 52 bit in bit flip 51 వ Sub-string used in automation name for 51 bit in bit flip 50 వ Sub-string used in automation name for 50 bit in bit flip 49 వ Sub-string used in automation name for 49 bit in bit flip 48 వ Sub-string used in automation name for 48 bit in bit flip 47 వ Sub-string used in automation name for 47 bit in bit flip 46 వ Sub-string used in automation name for 46 bit in bit flip 45 వ Sub-string used in automation name for 45 bit in bit flip 44 వ Sub-string used in automation name for 44 bit in bit flip 43 వ Sub-string used in automation name for 43 bit in bit flip 42 వ Sub-string used in automation name for 42 bit in bit flip 41 వ Sub-string used in automation name for 41 bit in bit flip 40 వ Sub-string used in automation name for 40 bit in bit flip 39 వ Sub-string used in automation name for 39 bit in bit flip 38 వ Sub-string used in automation name for 38 bit in bit flip 37 వ Sub-string used in automation name for 37 bit in bit flip 36 వ Sub-string used in automation name for 36 bit in bit flip 35 వ Sub-string used in automation name for 35 bit in bit flip 34 వ Sub-string used in automation name for 34 bit in bit flip 33 వ Sub-string used in automation name for 33 bit in bit flip 32 వ Sub-string used in automation name for 32 bit in bit flip 31 వ Sub-string used in automation name for 31 bit in bit flip 30 వ Sub-string used in automation name for 30 bit in bit flip 29 వ Sub-string used in automation name for 29 bit in bit flip 28 వ Sub-string used in automation name for 28 bit in bit flip 27 వ Sub-string used in automation name for 27 bit in bit flip 26 వ Sub-string used in automation name for 26 bit in bit flip 25 వ Sub-string used in automation name for 25 bit in bit flip 24 వ Sub-string used in automation name for 24 bit in bit flip 23 వ Sub-string used in automation name for 23 bit in bit flip 22 వ Sub-string used in automation name for 22 bit in bit flip 21 వ Sub-string used in automation name for 21 bit in bit flip 20 వ Sub-string used in automation name for 20 bit in bit flip 19 వ Sub-string used in automation name for 19 bit in bit flip 18 వ Sub-string used in automation name for 18 bit in bit flip 17 వ Sub-string used in automation name for 17 bit in bit flip 16 వ Sub-string used in automation name for 16 bit in bit flip 15 వ Sub-string used in automation name for 15 bit in bit flip 14 వ Sub-string used in automation name for 14 bit in bit flip 13 వ Sub-string used in automation name for 13 bit in bit flip 12 వ Sub-string used in automation name for 12 bit in bit flip 11 వ Sub-string used in automation name for 11 bit in bit flip 10 వ Sub-string used in automation name for 10 bit in bit flip 9 వ Sub-string used in automation name for 9 bit in bit flip 8 వ Sub-string used in automation name for 8 bit in bit flip 7 వ Sub-string used in automation name for 7 bit in bit flip 6 వ Sub-string used in automation name for 6 bit in bit flip 5 వ Sub-string used in automation name for 5 bit in bit flip 4 వ Sub-string used in automation name for 4 bit in bit flip 3 వ Sub-string used in automation name for 3 bit in bit flip 2 వ Sub-string used in automation name for 2 bit in bit flip 1 వ Sub-string used in automation name for 1 bit in bit flip తక్కువ ప్రాముఖ్యత ఉన్న బిట్ Used to describe the first bit of a binary number. Used in bit flip మెమరీ ఫ్లైఅవుట్‌ని తెరువు This is the automation name and label for the memory button when the memory flyout is closed. మెమరీ ఫ్లైఅవుట్‌ని మూసివేయి This is the automation name and label for the memory button when the memory flyout is open. పైన ఉంచండి This is the tool tip automation name for the always-on-top button when out of always-on-top mode. పూర్తి వీక్షణకు తిరిగి వెళ్ళు This is the tool tip automation name for the always-on-top button when in always-on-top mode. మెమరీ This is the tool tip automation name for the memory button. చరిత్ర (Ctrl+H) This is the tool tip automation name for the history button. బిట్ మార్పు కీప్యాడ్ This is the tool tip automation name for the bitFlip button. పూర్తి కీప్యాడ్ This is the tool tip automation name for the numberPad button. మొత్తం మెమరీని క్లియర్ చేయి (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. మెమరీ The text that shows as the header for the memory list మెమరీ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. చరిత్ర The text that shows as the header for the history list చరిత్ర The automation name for the History pivot item that is shown when Calculator is in wide layout. మార్పిడి పరికరం Label for a control that activates the unit converter mode. శాస్త్రీయ Label for a control that activates scientific mode calculator layout ప్రామాణికం Label for a control that activates standard mode calculator layout. మార్పిడి మోడ్ Screen reader prompt for a control that activates the unit converter mode. శాస్త్రీయ మోడ్ Screen reader prompt for a control that activates scientific mode calculator layout ప్రాథమిక మోడ్ Screen reader prompt for a control that activates standard mode calculator layout. మొత్తం చరిత్రను క్లియర్ చేయి "ClearHistory" used on the calculator history pane that stores the calculation history. మొత్తం చరిత్రను క్లియర్ చేయి This is the tool tip automation name for the Clear History button. దాచు "HideHistory" used on the calculator history pane that stores the calculation history. ప్రామాణికం The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. శాస్త్రీయ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. ప్రోగ్రామర్ The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. మార్పిడి పరికరం The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". కాలిక్యులేటర్ The text that shows in the dropdown navigation control for the calculator group. మార్పిడి పరికరం The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". కాలిక్యులేటర్ The text that shows in the dropdown navigation control for the calculator group in upper case. మార్పిడి పరికరాలు Pluralized version of the converter group text, used for the screen reader prompt. కాలిక్యులేటర్‌లు Pluralized version of the calculator group text, used for the screen reader prompt. ప్రదర్శన అంటే %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". సూత్రీకరణ %1, ప్రస్తుత ఇన్‌పుట్ %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". ప్రదర్శన %1 పాయింట్ {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. సూత్రీకరణ అనేది %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". క్లిప్‌బోర్డ్‌కు కాపీ చేసిన విలువను ప్రదర్శించు Screen reader prompt for the Calculator display copy button, when the button is invoked. చరిత్ర Screen reader prompt for the history flyout మెమరీ Screen reader prompt for the memory flyout హెక్సాడెసిమల్ %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". డెసిమల్ %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ఓక్టల్ %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". బైనరీ %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". మొత్తం చరిత్రను క్లియర్ చేయి Screen reader prompt for the Calculator History Clear button చరిత్ర క్లియర్ చేయబడింది Screen reader prompt for the Calculator History Clear button, when the button is invoked. చరిత్రను దాచు Screen reader prompt for the Calculator History Hide button చరిత్ర ఫ్లైఅవుట్‌ని తెరువు Screen reader prompt for the Calculator History button, when the flyout is closed. చరిత్ర ఫ్లైఅవుట్‌ని మూసివేయి Screen reader prompt for the Calculator History button, when the flyout is open. మెమరీ స్టోర్ Screen reader prompt for the Calculator Memory button మెమరీ స్టోర్ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. మొత్తం మెమరీని క్లియర్ చేయి Screen reader prompt for the Calculator Clear Memory button మెమరీ క్లియర్ చేయబడింది Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. మెమరీ రీకాల్ Screen reader prompt for the Calculator Memory Recall button మెమరీ రీకాల్ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. మెమరీ జోడింపు Screen reader prompt for the Calculator Memory Add button మెమరీ జోడింపు (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. మెమరీ తీసివేత Screen reader prompt for the Calculator Memory Subtract button మెమరీ తీసివేత (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. మెమరీ అంశాన్ని క్లియర్ చేయి Screen reader prompt for the Calculator Clear Memory button మెమరీ అంశాన్ని క్లియర్ చేయి This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. మెమరీ అంశానికి జోడించు Screen reader prompt for the Calculator Memory Add button in the Memory list మెమరీ అంశానికి జోడించు This is the tool tip automation name for the Calculator Memory Add button in the Memory list మెమరీ అంశం నుండి తీసివేయి Screen reader prompt for the Calculator Memory Subtract button in the Memory list మెమరీ అంశం నుండి తీసివేయి This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list మెమరీ అంశాన్ని క్లియర్ చేయి Screen reader prompt for the Calculator Clear Memory button మెమరీ అంశాన్ని క్లియర్ చేయి Text string for the Calculator Clear Memory option in the Memory list context menu మెమరీ అంశానికి జోడించు Screen reader prompt for the Calculator Memory Add swipe button in the Memory list మెమరీ అంశానికి జోడించు Text string for the Calculator Memory Add option in the Memory list context menu మెమరీ అంశం నుండి తీసివేయి Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list మెమరీ అంశం నుండి తీసివేయి Text string for the Calculator Memory Subtract option in the Memory list context menu తొలగించు Text string for the Calculator Delete swipe button in the History list కాపీ చేయి Text string for the Calculator Copy option in the History list context menu తొలగించు Text string for the Calculator Delete option in the History list context menu చరిత్ర అంశాన్ని తొలగించు Screen reader prompt for the Calculator Delete swipe button in the History list చరిత్ర అంశాన్ని తొలగించు Screen reader prompt for the Calculator Delete option in the History list context menu బ్యాక్‌స్పేస్ Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button సున్నా Screen reader prompt for the Calculator number "0" button ఒకటి Screen reader prompt for the Calculator number "1" button రెండు Screen reader prompt for the Calculator number "2" button మూడు Screen reader prompt for the Calculator number "3" button నాలుగు Screen reader prompt for the Calculator number "4" button ఐదు Screen reader prompt for the Calculator number "5" button ఆరు Screen reader prompt for the Calculator number "6" button ఏడు Screen reader prompt for the Calculator number "7" button ఎనిమిది Screen reader prompt for the Calculator number "8" button తొమ్మిది Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button మరియు Screen reader prompt for the Calculator And button లేదా Screen reader prompt for the Calculator Or button కాదు Screen reader prompt for the Calculator Not button ఎడమవైపుకి తిప్పు Screen reader prompt for the Calculator ROL button కుడివైపుకి తిప్పు Screen reader prompt for the Calculator ROR button ఎడమ షిఫ్ట్ Screen reader prompt for the Calculator LSH button కుడి షిఫ్ట్ Screen reader prompt for the Calculator RSH button ఎక్స్‌క్లూజివ్ లేదా Screen reader prompt for the Calculator XOR button క్వాడ్రపుల్ Word టోగుల్ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". డబుల్ Word టోగుల్ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". Word టోగుల్ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". బైట్ టోగుల్ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". బిట్ మార్పు కీప్యాడ్ Screen reader prompt for the Calculator bitFlip button పూర్తి కీప్యాడ్ Screen reader prompt for the Calculator numberPad button దశాంశ విభాజకం Screen reader prompt for the "." button నమోదును క్లియర్ చేయండి Screen reader prompt for the "CE" button క్లియర్ చేయి Screen reader prompt for the "C" button భాగహారం Screen reader prompt for the divide button on the number pad గుణకారం Screen reader prompt for the multiply button on the number pad సమానం Screen reader prompt for the equals button on the scientific operator keypad విలోమ ఫంక్షన్ Screen reader prompt for the shift button on the number pad in scientific mode. తీసివేత Screen reader prompt for the minus button on the number pad తీసివేత We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 కూడిక Screen reader prompt for the plus button on the number pad వర్గమాలం Screen reader prompt for the square root button on the scientific operator keypad శాతం Screen reader prompt for the percent button on the scientific operator keypad ధనాత్మకం ఋణాత్మకం Screen reader prompt for the negate button on the scientific operator keypad ధనాత్మకం ఋణాత్మకం Screen reader prompt for the negate button on the converter operator keypad రెసిప్రోకెల్ Screen reader prompt for the invert button on the scientific operator keypad ఎడమ కుండలీకరణం Screen reader prompt for the Calculator "(" button on the scientific operator keypad ఎడమ కుండలీకరణం, కుండలీకరణ గణన %1ని తెరవు {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". కుడి కుండలీకరణం Screen reader prompt for the Calculator ")" button on the scientific operator keypad వృత్తార్ధము గణనను %1 తెరువు {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". మూసేయడానికి తెరచి ఉన్న ఏ వృత్తార్ధాలు లేవు. {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". సైంటిఫిక్ నొటేషన్ Screen reader prompt for the Calculator F-E the scientific operator keypad హైపర్బోలిక్ ఫంక్షన్ Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad సైన్ Screen reader prompt for the Calculator sin button on the scientific operator keypad కొసైన్ Screen reader prompt for the Calculator cos button on the scientific operator keypad టాన్జెంట్ Screen reader prompt for the Calculator tan button on the scientific operator keypad హైపర్బోలిక్ సైన్ Screen reader prompt for the Calculator sinh button on the scientific operator keypad హైపర్బోలిక్ కొసైన్ Screen reader prompt for the Calculator cosh button on the scientific operator keypad హైపర్బోలిక్ టాన్జెంట్ Screen reader prompt for the Calculator tanh button on the scientific operator keypad చతురస్రం Screen reader prompt for the x squared on the scientific operator keypad. క్యూబ్ Screen reader prompt for the x cubed on the scientific operator keypad. ఆర్క్ సైన్ Screen reader prompt for the inverted sin on the scientific operator keypad. ఆర్క్ కొసైన్ Screen reader prompt for the inverted cos on the scientific operator keypad. ఆర్క్ టాన్జెంట్ Screen reader prompt for the inverted tan on the scientific operator keypad. హైపర్బోలిక్ ఆర్క్ సైన్ Screen reader prompt for the inverted sinh on the scientific operator keypad. హైపర్బోలిక్ ఆర్క్ కోసీన్ Screen reader prompt for the inverted cosh on the scientific operator keypad. హైపర్బోలిక్ ఆర్క్ టాన్జెంట్ Screen reader prompt for the inverted tanh on the scientific operator keypad. 'X'కు ఘాతాంకం Screen reader prompt for x power y button on the scientific operator keypad. పదికి ఘాతాంకం Screen reader prompt for the 10 power x button on the scientific operator keypad. 'e'కు ఘాతాంకం Screen reader for the e power x on the scientific operator keypad. 'x' కు 'y' వర్గమాలం Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. లాగ్ Screen reader for the log base 10 on the scientific operator keypad సహజ లాగ్ Screen reader for the log base e on the scientific operator keypad మాడ్యూలో Screen reader for the mod button on the scientific operator keypad ఎక్స్‌పోనెన్షియల్ Screen reader for the exp button on the scientific operator keypad డిగ్రీ నిమిషం సెకను Screen reader for the exp button on the scientific operator keypad డిగ్రీలు Screen reader for the exp button on the scientific operator keypad పూర్ణాంక భాగం Screen reader for the int button on the scientific operator keypad భిన్న భాగం Screen reader for the frac button on the scientific operator keypad క్రమగుణకం Screen reader for the factorial button on the basic operator keypad డిగ్రీస్ టోగుల్ This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". గ్రేడియన్స్ టోగుల్ This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". రేడియన్స్ టోగుల్ This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". మోడ్ డ్రాప్‌డౌన్ Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. వర్గాల డ్రాప్‌డౌన్ Screen reader prompt for the Categories dropdown field. పైన ఉంచండి Screen reader prompt for the Always-on-Top button when in normal mode. పూర్తి వీక్షణకు తిరిగి వెళ్ళు Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. పైన ఉంచండి (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. పూర్తి వీక్షణకు తిరిగి వెళ్ళు (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. %1 %2 నుండి మార్చండి Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. %1 పాయింట్ %2 నుండి మార్చండి {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. %1 %2గా మారుతుంది Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 ఉంది %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. ఇన్‌పుట్ యూనిట్ Screen reader prompt for the Unit Converter Units1 i.e. top units field. అవుట్‌పుట్ యునిట్ Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. వైశాల్యం Unit conversion category name called Area (eg. area of a sports field in square meters) డేటా Unit conversion category name called Data శక్తి Unit conversion category name called Energy. (eg. the energy in a battery or in food) పొడవు Unit conversion category name called Length పవర్ Unit conversion category name called Power (eg. the power of an engine or a light bulb) వేగం Unit conversion category name called Speed సమయం Unit conversion category name called Time వాల్యూమ్ Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) ఉష్ణోగ్రత Unit conversion category name called Temperature బరువు మరియు ద్రవ్యరాశి Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ఒత్తిడి Unit conversion category name called Pressure కోణం Unit conversion category name called Angle కరెన్సీ Unit conversion category name called Currency ఫ్లూయిడ్ ఔన్స్‌లు (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫ్లూయిడ్ ఔన్స్ (UK) An abbreviation for a measurement unit of volume ఫ్లూయిడ్ ఔన్స్‌లు (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫ్లూయిడ్ ఔన్స్ (US) An abbreviation for a measurement unit of volume గాలెన్స్ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గ్యాలన్ (UK) An abbreviation for a measurement unit of volume గాలెన్స్ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గ్యాలన్ (US) An abbreviation for a measurement unit of volume లీటర్లు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume మిల్లీలీటర్లు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) mL An abbreviation for a measurement unit of volume పైంట్స్ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పింట్ (UK) An abbreviation for a measurement unit of volume పైంట్స్ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పింట్ (US) An abbreviation for a measurement unit of volume టేబుల్‌స్పూన్లు (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెద్ద చెంచా (US) An abbreviation for a measurement unit of volume టీస్పూన్లు (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చిన్న చెంచా (US) An abbreviation for a measurement unit of volume టేబుల్‌స్పూన్లు (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెద్ద చెంచా (UK) An abbreviation for a measurement unit of volume టీస్పూన్లు (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చిన్న చెంచా (UK) An abbreviation for a measurement unit of volume క్వార్ట్స్ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్వార్ట్ (UK) An abbreviation for a measurement unit of volume క్వార్ట్స్ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (US) An abbreviation for a measurement unit of volume కప్స్ (US) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కప్ (US) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/min An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data కెలోరీ An abbreviation for a measurement unit of energy సెం.మీ An abbreviation for a measurement unit of length cm/s An abbreviation for a measurement unit of speed cm³ An abbreviation for a measurement unit of volume ft³ An abbreviation for a measurement unit of volume in³ An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of volume yd³ An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy అడుగులు An abbreviation for a measurement unit of length ft/s An abbreviation for a measurement unit of speed ft•lb An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data హెక్టార్ An abbreviation for a measurement unit of area hp (US) An abbreviation for a measurement unit of power గంటలు An abbreviation for a measurement unit of time in An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data కిలోక్యాలరీ An abbreviation for a measurement unit of energy కిలోజౌల్ An abbreviation for a measurement unit of energy కిమీ An abbreviation for a measurement unit of length km/h An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power నాట్స్ An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data m An abbreviation for a measurement unit of length m/s An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time మైలు An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed mm An abbreviation for a measurement unit of length మిల్లీసెకన్ An abbreviation for a measurement unit of time నిమిషం An abbreviation for a measurement unit of time నానోమీటర్ An abbreviation for a measurement unit of length నానోమైల్ An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ft•lb/min An abbreviation for a measurement unit of power s An abbreviation for a measurement unit of time cm² An abbreviation for a measurement unit of area ft² An abbreviation for a measurement unit of area in² An abbreviation for a measurement unit of area km² An abbreviation for a measurement unit of area An abbreviation for a measurement unit of area mi² An abbreviation for a measurement unit of area mm² An abbreviation for a measurement unit of area yd² An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power wk An abbreviation for a measurement unit of time yd An abbreviation for a measurement unit of length సంవత్సరం An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data ఎకరాలు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) బిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) బ్రిటీష్ థర్మల్ యూనిట్‌లు A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTUs/minute A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) బైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) థర్మల్ కెలోరీలు A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెంటీమీటర్‌లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెకనుకు సెంటీమీటర్లు A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యూబిక్ సెంటీమీటర్లు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యూబిక్ ఫీట్ A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యూబిక్ అంగుళాలు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యూబిక్ మీటర్లు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యూబిక్ యార్డ్‌లు A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) రోజులు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెల్సియస్ An option in the unit converter to select degrees Celsius ఫారెన్‌హీట్ An option in the unit converter to select degrees Fahrenheit ఎలక్ట్రాన్ వోల్ట్స్ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) అడుగు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెకనుకు అడుగులు A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫూట్-పౌండ్స్ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫూట్-పౌండ్స్/నిమిషం A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గిగాబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గిగాబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హెక్టార్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హార్స్‌పవర్ (US) A measurement unit for power గంటలు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) అంగుళాలు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జౌల్స్ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోవాట్-గంటలు A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కెల్విన్ An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". కిలోబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఆహార కెలోరీలు A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోజౌల్స్ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోమీటర్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గంటకు కిలోమీటర్లు A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోవాట్స్ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) నాట్స్ A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మాక్ A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) మెగాబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మెగాబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మీటర్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెకనుకు మీటర్లు A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మైక్రాన్స్ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మైక్రోసెకన్లు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మైళ్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గంటకు మైళ్లు A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మిల్లీమీటర్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మిల్లీసెకన్లు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) నిమిషాలు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) నిబుల్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) నానోమీటర్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఆంగ్‌స్ట్రామ్స్ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) నాటికల్ మైళ్లు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెటాబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెటాబైట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సెకన్లు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు సెంటీమీటర్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు అడుగు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు అంగుళాలు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు కిలోమీటర్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు మీటర్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు మైళ్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు మిల్లీమీటర్లు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) చదరపు గజాలు A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టెరాబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టెరాబైట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) వాట్స్ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) వారాలు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గజాలు A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సంవత్సరాలు A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight deg An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure cg An abbreviation for a measurement unit of weight డాగ్ An abbreviation for a measurement unit of weight dg An abbreviation for a measurement unit of weight g An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight kg An abbreviation for a measurement unit of weight టన్ (UK) An abbreviation for a measurement unit of weight mg An abbreviation for a measurement unit of weight ఔన్స్ An abbreviation for a measurement unit of weight lb An abbreviation for a measurement unit of weight టన్ (US) An abbreviation for a measurement unit of weight స్టోన్ An abbreviation for a measurement unit of weight t An abbreviation for a measurement unit of weight క్యారెట్స్ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) డిగ్రీలు A measurement unit for Angle. రేడియన్‌లు A measurement unit for Angle. గ్రేడియన్‌లు A measurement unit for Angle. వాతావరణాలు A measurement unit for Pressure. బార్‌లు A measurement unit for Pressure. కిలోపాస్కల్‌లు A measurement unit for Pressure. పాదరసం మిల్లీమీటర్లు A measurement unit for Pressure. పాస్కల్‌లు A measurement unit for Pressure. ఒక్కో స్క్వేర్ అంగుళానికి పౌండ్‌లు A measurement unit for Pressure. సెంటీగ్రాములు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) డెకాగ్రామ్స్ A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) డెసీగ్రామ్‌లు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గ్రాములు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హెక్టాగ్రాములు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిలోగ్రాములు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) లాంగ్ టన్నులు (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మిల్లీగ్రాములు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఓన్సెస్ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పౌండ్లు A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) షార్ట్ టన్నులు (US) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) స్టోన్ A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మెట్రిక్ టన్నులు A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDలు A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CDలు A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సాకర్ ఫీల్డ్‌లు A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సాకర్ ఫీల్డ్‌లు A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫ్లాపీ డిస్క్‌లు A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఫ్లాపీ డిస్క్‌లు A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDలు A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVDలు A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) బ్యాటరీలు AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) బ్యాటరీలు AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పేపర్ క్లిప్‌లు A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పేపర్ క్లిప్‌లు A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జంబో జెట్స్ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జంబో జెట్స్ A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) లైట్ బల్బ్‌లు A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) లైట్ బల్బ్‌లు A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హార్సెస్ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హార్సెస్ A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) స్నాన తొట్టెలు A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) స్నాన తొట్టెలు A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మంచుతునకలు A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మంచుతునకలు A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎలిఫెంట్స్ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎలిఫెంట్స్ An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టర్టెల్స్ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టర్టెల్స్ A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జెట్‌లు A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జెట్‌లు A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) తిమింగలాలు A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) తిమింగలాలు A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కాఫీ కప్‌లు A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కాఫీ కప్‌లు A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) స్విమ్మింగ్ పూల్‌లు An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) స్విమ్మింగ్ పూల్‌లు An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హ్యాండ్స్ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) హ్యాండ్స్ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కాగితాలు A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కాగితాలు A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యాసిల్స్ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) క్యాసిల్స్ A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) అరటిపళ్లు A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) అరటిపళ్లు A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కేకు ముక్కలు A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కేకు ముక్కలు A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ట్రైన్ ఇంజిన్‌లు A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ట్రైన్ ఇంజిన్‌లు A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సాకర్ బాల్‌లు A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) సాకర్ బాల్‌లు A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మెమరీ అంశం Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) వెనుకకు Screen reader prompt for the About panel back button వెనుకకు Content of tooltip being displayed on AboutControlBackButton Microsoft సాఫ్ట్‌వేర్ లైసెన్స్ నిబంధనలు Displayed on a link to the Microsoft Software License Terms on the About panel పరిదృశ్యం Label displayed next to upcoming features Microsoft గోప్యతా ప్రకటన Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft. అన్ని హక్కులు ప్రత్యేకించినవి. {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) మీరు Windows కాలిక్యులేటర్‌కు ఎలా సహకరించగలరో తెలుసుకోవడానికి, %HL%GitHub%HL%‌లోని ప్రాజెక్ట్‌ను చూడండి. {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel గురించి Subtitle of about message on Settings page అభిప్రాయాన్ని పంపండి The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app ఇంకా చరిత్ర లేదు. The text that shows as the header for the history list మెమరీలో ఏదీ సేవ్ చేయబడలేదు. The text that shows as the header for the memory list మెమరీ Screen reader prompt for the negate button on the converter operator keypad ఈ ఎక్స్‌ప్రెషన్ అతికించబడదు The paste operation cannot be performed, if the expression is invalid. గిబీబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) గిబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిబీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) కిబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మెబీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) మెబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెబీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) పెబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టెబీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) టెబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎక్సాబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎక్సాబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎక్స్బీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ఎక్స్బీ‌బైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జిటాబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జిటాబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జెబీబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) జెబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) యోటాబిట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) యోటాబైట్స్ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) యొబీబిట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) యొబీబైట్‌లు A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) తేదీ గణన గణన మోడ్ Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". జోడించు Add toggle button text రోజులను జోడించండి లేదా తీసివేయండి Add or Subtract days option తేదీ Date result label తేదీల మధ్య తేడా Date difference option రోజులు Add/Subtract Days label తేడా Difference result label నుండి From Date Header for Difference Date Picker నెలలు Add/Subtract Months label తీసివేయి Subtract toggle button text వరకు To Date Header for Difference Date Picker సంవత్సరాలు Add/Subtract Years label తేదీ పరిధిలో లేదు Out of bound message shown as result when the date calculation exceeds the bounds రోజు రోజులు నెల నెలలు ఒకే తేదీలు వారం వారాలు సంవత్సరం సంవత్సరాలు వ్యత్యాసం %1 Automation name for reading out the date difference. %1 = Date difference ఫలితాల తేదీ %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 కాలిక్యులేటర్ మోడ్ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 మార్పిడి మోడ్ {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. తేదీ గణన మోడ్ Automation name for when the mode header is focused and the current mode is Date calculation. చరిత్ర మరియు జ్ఞాపకాల జాబితాలు Automation name for the group of controls for history and memory lists. మెమరీ నియంత్రణలు Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) ప్రామాణిక విధులు Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) ప్రదర్శన నియంత్రణలు Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) ప్రామాణిక ఆపరేటర్‌లు Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) నంబర్ ప్యాడ్ Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) కోణం ఆపరేటర్‌లు Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) శాస్త్ర సంబంధ విధులు Automation name for the group of Scientific functions. రాడిక్స్ ఎంపిక Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix ప్రోగ్రామర్ ఆపరేటర్‌లు Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). ఇన్‌పుట్ మోడ్ ఎంపిక Automation name for the group of input mode toggling buttons. బిట్ మార్పు కీప్యాడ్ Automation name for the group of bit toggling buttons. ఎడమవైపు స్క్రోల్ చేయి Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. కుడివైపు స్క్రోల్ చేయి Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. గరిష్ట అంకెలను చేరుకుంది. %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 మెమరీకి సేవ్ చేయబడింది {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". మెమరీ స్లాట్ %1 అనేది %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". మెమరీ స్లాట్ %1 క్లియర్ చేయబడింది {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". భాగహారం Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. సమయాలు Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. తీసివేత Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. కూడిక Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. పవర్ Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y రూట్ Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. మోడ్ Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. ఎడమ షిఫ్ట్ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. కుడి షిఫ్ట్ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. లేదా Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x లేదా Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. మరియు Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. %1 %2 అప్‌డేట్ చేయబడ్డాయి The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" రేట్లను అప్‌డేట్ చేయండి The text displayed for a hyperlink button that refreshes currency converter ratios. డేటా ఛార్జీలు వర్తించవచ్చు. The text displayed when users are on a metered connection and using currency converter. కొత్త రేట్లు పొందడం సాధ్యపడలేదు. తర్వాత మళ్లీ ప్రయత్నించండి. The text displayed when currency ratio data fails to load. ఆఫ్‌లైన్. దయచేసి మీ %HL%నెట్‌వర్క్ సెట్టింగ్‌లు%HL%ను తనిఖీ చేసుకోండి Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} కరెన్సీ రేట్లను అప్‌‌డేట్ చేస్తోంది This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. కరెన్సీ రేట్లు అప్‌డేట్ చేయబడ్డాయి This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. రేట్లు అప్‌డేట్ చేయబడలేదు This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} మొత్తం మెమరీని క్లియర్ చేయి (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. మొత్తం మెమరీని క్లియర్ చేయి Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} సైన్ డిగ్రీలు Name for the sine function in degrees mode. Used by screen readers. సైన్ రేడియన్‌లు Name for the sine function in radians mode. Used by screen readers. సైన్ గ్రేడియన్‌లు Name for the sine function in gradians mode. Used by screen readers. విలోమ సైన్ డిగ్రీలు Name for the inverse sine function in degrees mode. Used by screen readers. విలోమ సైన్ రేడియన్‌లు Name for the inverse sine function in radians mode. Used by screen readers. విలోమ సైన్ గ్రేడియన్‌లు Name for the inverse sine function in gradians mode. Used by screen readers. హైపర్బోలిక్ సైన్ Name for the hyperbolic sine function. Used by screen readers. విలోమ హైపర్బోలిక్ సైన్ Name for the inverse hyperbolic sine function. Used by screen readers. కొసైన్ డిగ్రీలు Name for the cosine function in degrees mode. Used by screen readers. కొసైన్ రేడియన్‌లు Name for the cosine function in radians mode. Used by screen readers. కొసైన్ గ్రేడియన్‌లు Name for the cosine function in gradians mode. Used by screen readers. విలోమ కొసైన్ డిగ్రీలు Name for the inverse cosine function in degrees mode. Used by screen readers. విలోమ కొసైన్ రేడియన్‌లు Name for the inverse cosine function in radians mode. Used by screen readers. విలోమ కొసైన్ గ్రేడియన్‌లు Name for the inverse cosine function in gradians mode. Used by screen readers. హైపర్బోలిక్ కొసైన్ Name for the hyperbolic cosine function. Used by screen readers. విలోమ హైపర్‌బోలిక్ కొసైన్ Name for the inverse hyperbolic cosine function. Used by screen readers. టాన్జెంట్ డిగ్రీలు Name for the tangent function in degrees mode. Used by screen readers. టాన్జెంట్ రేడియన్‌లు Name for the tangent function in radians mode. Used by screen readers. టాన్జెంట్ గ్రేడియన్‌లు Name for the tangent function in gradians mode. Used by screen readers. విలోమ టాన్జెంట్ డిగ్రీలు Name for the inverse tangent function in degrees mode. Used by screen readers. విలోమ టాన్జెంట్ రేడియన్‌లు Name for the inverse tangent function in radians mode. Used by screen readers. విలోమ టాన్జెంట్ గ్రేడియన్‌లు Name for the inverse tangent function in gradians mode. Used by screen readers. హైపర్బోలిక్ టాన్జెంట్ Name for the hyperbolic tangent function. Used by screen readers. విలోమ హైపర్బోలిక్ టాన్జెంట్ Name for the inverse hyperbolic tangent function. Used by screen readers. సీకెంట్ డిగ్రీలు Name for the secant function in degrees mode. Used by screen readers. సీకెంట్ రేడియన్స్ Name for the secant function in radians mode. Used by screen readers. సీకెంట్ గ్రేడియన్స్ Name for the secant function in gradians mode. Used by screen readers. విలోమ సీకెంట్ డిగ్రీలు Name for the inverse secant function in degrees mode. Used by screen readers. విలోమ సీకెంట్ రేడియన్లు Name for the inverse secant function in radians mode. Used by screen readers. విలోమ సీకెంట్ గ్రేడియన్లు Name for the inverse secant function in gradians mode. Used by screen readers. హైపర్బోలిక్ సీకెంట్ Name for the hyperbolic secant function. Used by screen readers. విలోమ హైపర్బోలిక్ సీకెంట్ Name for the inverse hyperbolic secant function. Used by screen readers. కోసీకెంట్ డిగ్రీలు Name for the cosecant function in degrees mode. Used by screen readers. కోసీకెంట్ రేడియన్లు Name for the cosecant function in radians mode. Used by screen readers. కోసీకెంట్ గ్రేడియన్లు Name for the cosecant function in gradians mode. Used by screen readers. విలోమ కోసీకెంట్ డిగ్రీలు Name for the inverse cosecant function in degrees mode. Used by screen readers. విలోమ కోసీకెంట్ రేడియన్లు Name for the inverse cosecant function in radians mode. Used by screen readers. విలోమ కోసీకెంట్ గ్రేడియన్లు Name for the inverse cosecant function in gradians mode. Used by screen readers. హైపర్బోలిక్ కోసీకెంట్ Name for the hyperbolic cosecant function. Used by screen readers. విలోమ హైపర్బోలిక్ కోసీకెంట్ Name for the inverse hyperbolic cosecant function. Used by screen readers. కోటాంజెంట్ డిగ్రీలు Name for the cotangent function in degrees mode. Used by screen readers. కోటాంజెంట్ రేడియన్లు Name for the cotangent function in radians mode. Used by screen readers. కోటాంజెంట్ గ్రేడియన్లు Name for the cotangent function in gradians mode. Used by screen readers. విలోమ కోటాంజెంట్ డిగ్రీలు Name for the inverse cotangent function in degrees mode. Used by screen readers. విలోమ కోటాంజెంట్ రేడియన్లు Name for the inverse cotangent function in radians mode. Used by screen readers. విలోమ కోటాంజెంట్ గ్రేడియన్లు Name for the inverse cotangent function in gradians mode. Used by screen readers. హైపర్బోలిక్ కోటాంజెంట్ Name for the hyperbolic cotangent function. Used by screen readers. విలోమ హైపర్బోలిక్ కోటాంజెంట్ Name for the inverse hyperbolic cotangent function. Used by screen readers. క్యూబ్ రూట్ Name for the cube root function. Used by screen readers. లాగ్ బేస్ Name for the logbasey function. Used by screen readers. ఖచ్చితమైన విలువ Name for the absolute value function. Used by screen readers. ఎడమ షిఫ్ట్ Name for the programmer function that shifts bits to the left. Used by screen readers. కుడి షిఫ్ట్ Name for the programmer function that shifts bits to the right. Used by screen readers. క్రమగుణకం Name for the factorial function. Used by screen readers. డిగ్రీ నిమిషం సెకను Name for the degree minute second (dms) function. Used by screen readers. సహజ లాగ్ Name for the natural log (ln) function. Used by screen readers. చతురస్రము Name for the square function. Used by screen readers. y రూట్ Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 వర్గం {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft సర్వీసెస్ అగ్రిమెంట్ Displayed on a link to the Microsoft Services Agreement in the about this app information Pyeong An abbreviation for a measurement unit of area. Pyeong A measurement unit for area. నుండి From Date Header for AddSubtract Date Picker ఎడమకు గణన ఫలితాన్ని స్క్రోల్ చేయండి Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. కుడికి గణన ఫలితాన్ని స్క్రోల్ చేయండి Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. గణన విఫలమైంది Text displayed when the application is not able to do a calculation లాగ్ బేస్ Y Screen reader prompt for the logBaseY button త్రికోణమితి Displayed on the button that contains a flyout for the trig functions in scientific mode. ఫంక్షన్ Displayed on the button that contains a flyout for the general functions in scientific mode. అసమానతలు Displayed on the button that contains a flyout for the inequality functions. అసమానతలు Screen reader prompt for the Inequalities button బిట్ పద్ధతి Displayed on the button that contains a flyout for the bitwise functions in programmer mode. బిట్ మార్పు Displayed on the button that contains a flyout for the bit shift functions in programmer mode. విలోమ ఫంక్షన్ Screen reader prompt for the shift button in the trig flyout in scientific mode. హైపర్‌బోలిక్ ఫంక్షన్ Screen reader prompt for the Calculator button HYP in the scientific flyout keypad సీకెంట్ Screen reader prompt for the Calculator button sec in the scientific flyout keypad హైపర్బోలిక్ సీకెంట్ Screen reader prompt for the Calculator button sech in the scientific flyout keypad ఆర్క్ సీకెంట్ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad హైపర్బోలిక్ ఆర్క్ సీకెంట్ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad కోసీకెంట్ Screen reader prompt for the Calculator button csc in the scientific flyout keypad హైపర్బోలిక్ కోసీకెంట్ Screen reader prompt for the Calculator button csch in the scientific flyout keypad ఆర్క్ కోసీకెంట్ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad హైపర్బోలిక్ ఆర్క్ కోసీకెంట్ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad కోటాంజెంట్ Screen reader prompt for the Calculator button cot in the scientific flyout keypad హైపర్బోలిక్ కోటాంజెంట్ Screen reader prompt for the Calculator button coth in the scientific flyout keypad ఆర్క్ కోటాంజెంట్ Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad హైపర్బోలిక్ ఆర్క్ కోటాంజెంట్ Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad ఫ్లోర్ Screen reader prompt for the Calculator button floor in the scientific flyout keypad సీలింగ్ Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad యాదృచ్ఛిక Screen reader prompt for the Calculator button random in the scientific flyout keypad ఖచ్చితమైన విలువ Screen reader prompt for the Calculator button abs in the scientific flyout keypad ఐలర్ సంఖ్య Screen reader prompt for the Calculator button e in the scientific flyout keypad పదికి ఘాతాంకం Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad నండ్ Screen reader prompt for the Calculator button nand in the scientific flyout keypad నండ్ Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. నార్ Screen reader prompt for the Calculator button nor in the scientific flyout keypad నార్ Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. క్యారీ చేసే దానితో ఎడమవైపు రొటేట్ చేయి Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad క్యారీ చేసే దానితో కుడివైపు రొటేట్ చేయి Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad ఎడమ షిఫ్ట్ Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad ఎడమ షిఫ్ట్ Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. కుడి షిఫ్ట్ Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad కుడి షిఫ్ట్ Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. అంకగణిత మార్పు Label for a radio button that toggles arithmetic shift behavior for the shift operations. లాజికల్ షిఫ్ట్ Label for a radio button that toggles logical shift behavior for the shift operations. వృత్తాకార షిఫ్ట్‌లో రొటేట్ చేయి Label for a radio button that toggles rotate circular behavior for the shift operations. క్యారీ చేసే దానితో వృత్తాకార షిఫ్ట్‌లో రొటేట్ చేయి Label for a radio button that toggles rotate circular with carry behavior for the shift operations. క్యూబ్ రూట్ Screen reader prompt for the cube root button on the scientific operator keypad త్రికోణమితి Screen reader prompt for the square root button on the scientific operator keypad విధులు Screen reader prompt for the square root button on the scientific operator keypad బిట్ పద్ధతి Screen reader prompt for the square root button on the scientific operator keypad బిట్ మార్పు Screen reader prompt for the square root button on the scientific operator keypad సైంటిఫిక్ ఆపరేటర్ ప్యానెళ్లు Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad ప్రోగ్రామర్ ఆపరేటర్ ప్యానెళ్లు Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad ఎక్కువ ప్రాముఖ్యత ఉన్న బిట్ Used to describe the last bit of a binary number. Used in bit flip గ్రాఫింగ్ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. ప్లాట్ Screen reader prompt for the plot button on the graphing calculator operator keypad వీక్షణని స్వయంచాలకంగా రీఫ్రెష్ చేయండి (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. గ్రాఫ్ వీక్షణ Screen reader prompt for the graph view button. స్వయంచాలకంగా ఉత్తమంగా సరిపోతుంది Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set మాన్యువల్ సర్దుబాటు Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set గ్రాఫ్ వీక్షణ రీసెట్ చేయబడింది Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph జూమ్ ఇన్ (Ctrl + ప్లస్) This is the tool tip automation name for the Calculator zoom in button. జూమ్ ఇన్ Screen reader prompt for the zoom in button. జూమ్ అవుట్ (Ctrl + మైనస్) This is the tool tip automation name for the Calculator zoom out button. జూమ్ అవుట్ Screen reader prompt for the zoom out button. సమీకరణను జోడించండి Placeholder text for the equation input button ఈ సమయంలో పంచుకోవడం కుదరడం లేదు. If there is an error in the sharing action will display a dialog with this text. సరే Used on the dismiss button of the share action error dialog. నేను Windows కాలిక్యులేటర్‌తో ఏమి గ్రాఫ్ చేసానో చూడండి Sent as part of the shared content. The title for the share. సమీకరణలు Header that appears over the equations section when sharing వెరియబుల్స్ Header that appears over the variables section when sharing సమీకరణలతో ఒక గ్రాఫ్ చిత్రం Alt text for the graph image when output via Share వెరియబుల్స్ Header text for variables area దశ Label text for the step text box కనిష్టం Label text for the min text box గరిష్టం Label text for the max text box రంగు Label for the Line Color section of the style picker శైలి Label for the Line Style section of the style picker ఫంక్షన్‌ విశ్లేషణ Title for KeyGraphFeatures Control ఈ ఫంక్షన్ కోసం ఎటువంటి క్షితిజ అసీమపథములు లేవు. Message displayed when the graph does not have any horizontal asymptotes ఈ ఫంక్షన్ కోసం ఎటువంటి పదనిష్పత్తి బిందువులు లేవు. Message displayed when the graph does not have any inflection points ఈ ఫంక్షన్ కోసం ఎటువంటి గరిష్ట బిందువులు లేవు. Message displayed when the graph does not have any maxima ఈ ఫంక్షన్ కోసం ఎటువంటి కనిష్ట బిందువులు లేవు. Message displayed when the graph does not have any minima స్థిరమైన String describing constant monotonicity of a function తగ్గుదల String describing decreasing monotonicity of a function ఈ ఫంక్షన్ యొక్క ఏకరీతిని నిర్ధారించలేకపోతున్నాము. Error displayed when monotonicity cannot be determined పెరుగుదల String describing increasing monotonicity of a function ఈ ఫంక్షన్ యొక్క ఏకరీతి అనామకం. Error displayed when monotonicity is unknown ఈ ఫంక్షన్‌కి ఎటువంటి తిర్యక అసీమపథములు లేవు. Message displayed when the graph does not have any oblique asymptotes ఈ ఫంక్షన్ యొక్క సమార్హత నిర్ధారించలేకపోతున్నాము. Error displayed when parity is cannot be determined ఈ ఫంక్షన్ సమానమైనది. Message displayed with the function parity is even ఈ ఫంక్షన్ సమానమైనది కాదు బేసి కాదు. Message displayed with the function parity is neither even nor odd ఈ ఫంక్షన్ బేసి. Message displayed with the function parity is odd ఈ ఫంక్షన్ యొక్క సమార్హత అనామకం. Error displayed when parity is unknown ఈ ఫంక్షన్ కోసం ఆవర్తనానికి మద్దతు లేదు. Error displayed when periodicity is not supported ఈ ఫంక్షన్ ఆవర్తనం కాదు. Message displayed with the function periodicity is not periodic ఈ ఫంక్షన్ ఆవర్తనం అనామకం. Message displayed with the function periodicity is unknown కాలిక్యులేటర్ లెక్కించడానికి ఈ ఫీచర్స్ చాలా క్లిష్ఠంగా ఉన్నాయి: Error displayed when analysis features cannot be calculated ఈ ఫంక్షన్ కోసం ఎటువంటి క్షితిజలంబ అసీమపథములు లేవు. Message displayed when the graph does not have any vertical asymptotes ఈ ఫంక్షన్ కోసం ఎటువంటి x-అంతర్వర్తినులు లేవు Message displayed when the graph does not have any x-intercepts ఈ ఫంక్షన్ కోసం ఎటువంటి y-అంతర్వర్తినులు లేవు Message displayed when the graph does not have any y-intercepts డొమేయిన్ Title for KeyGraphFeatures Domain Property క్షితిజ సమతల అనంత స్పర్శి Title for KeyGraphFeatures Horizontal aysmptotes Property విభక్తి స్థానాలు Title for KeyGraphFeatures Inflection points Property ఈ ఫంక్షన్ కోసం విశ్లేషణకు మద్దతు లేదు. Error displayed when graph analysis is not supported or had an error. విశ్లేషణ f(x) ఆకృతిలో ఉన్న ఫంక్షన్లకు మాత్రమే మద్దతు ఇస్తుంది. ఉదాహరణ: y = x Error displayed when graph analysis detects the function format is not f(x). గరిష్ట Title for KeyGraphFeatures Maxima Property కనిష్ట Title for KeyGraphFeatures Minima Property ఏకరీతి Title for KeyGraphFeatures Monotonicity Property తిర్యక అనంత స్పర్శి Title for KeyGraphFeatures Oblique asymptotes Property సమార్హత Title for KeyGraphFeatures Parity Property వ్యవధి Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. పరిథి Title for KeyGraphFeatures Range Property క్షితిజ లంబ అనంత స్పర్శి Title for KeyGraphFeatures Vertical asymptotes Property X-అంతర్వర్తిని Title for KeyGraphFeatures XIntercept Property Y-అంతర్వర్తిని Title for KeyGraphFeatures YIntercept Property ఫంక్షన్ కోసం విశ్లేషణ చేయలేము. ఈ ఫంక్షన్ కోసం డొమెయిన్‌ని లెక్కించలేము. Error displayed when Domain is not returned from the analyzer. ఈ ఫంక్షన్ కోసం పరిథిని లెక్కించలేము. Error displayed when Range is not returned from the analyzer. పొంగిపొర్లుతోంది (సంఖ్య చాలా పెద్దది) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. ఈ సమీకరణాన్ని గ్రాఫ్ చేయడానికి రేడియన్స్ మోడ్ అవసరం. Error that occurs during graphing when radians is required. ఈ ఫంక్షన్ గ్రాఫ్ చేయడానికి చాలా క్లిష్టంగా ఉంటుంది Error that occurs during graphing when the equation is too complex. ఈ సమీకరణాన్ని గ్రాఫ్ చేయడానికి డిగ్రీల మోడ్ అవసరం. Error that occurs during graphing when degrees is required కారకమైన సమీకరణం చెల్లని వాదనను కలిగి ఉంది Error that occurs during graphing when a factorial function has an invalid argument. కారకమైన ఫంక్షన్ గ్రాఫ్‌కు చాలా పెద్దదిగా ఉండే వాదనను కలిగి ఉంది Error that occurs during graphing when a factorial has a large n మాడ్యులో మొత్తం సంఖ్యలతో మాత్రమే ఉపయోగించబడుతుంది Error that occurs during graphing when modulo is used with a float. సమీకరణానికి పరిష్కారం లేదు Error that occurs during graphing when the equation has no solution. సున్నాచే భాగహారం చేయలేరు Error that occurs during graphing when a divison by zero occurs. సమీకరణంలో పరస్పరం ప్రత్యేకమైన తార్కిక పరిస్థితులు ఉన్నాయి Error that occurs during graphing when mutually exclusive conditions are used. సమీకరణం డొమైన్ వెలుపన వుంది. Error that occurs during graphing when the equation is out of domain. ఈ సమీకరణాన్ని గ్రాఫింగ్ చేయడానికి మద్దతు లేదు Error that occurs during graphing when the equation is not supported. సమీకరణానికి ప్రారంభ కుండలీకరణం లేదు Error that occurs during graphing when the equation is missing a ( సమీకరణం ముగింపు కుండలీకరణం లేదు Error that occurs during graphing when the equation is missing a ) ఒక సంఖ్యలో చాలా దశాంశ బిందువులు ఉన్నాయి Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 దశాంశ బిందువుకు అంకెల స్థానాలు లేవు Error that occurs during graphing with a decimal point without digits వ్యక్తీకరణ యొక్క వూహించని ముగింపు Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* వ్యక్తీకరణలో వూహించని అక్షరాలు Error that occurs during graphing when there is an unexpected token. వ్యక్తీకరణలో చెల్లని అక్షరాలు Error that occurs during graphing when there is an invalid token. సమాన సంకేతాలు చాలా ఉన్నాయి Error that occurs during graphing when there are too many equals. ఫంక్షన్‌లో కనీసం ఒక x లేదా y వేరియబుల్ ఉండాలి Error that occurs during graphing when the equation is missing x or y. చెల్లని వ్యక్తీకరణ Error that occurs during graphing when an invalid syntax is used. వ్యక్తీకరణ ఖాళీగా ఉంది Error that occurs during graphing when the expression is empty సమీకరణం లేకుండా సమానం ఉపయోగించబడింది Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ఫంక్షన్ పేరు తర్వాత కుండలీకరణాలు లేవు Error that occurs during graphing when parenthesis are missing after a function. ఒక గణిత చర్యలో పారామితుల సంఖ్య తప్పుగా ఉంది Error that occurs during graphing when a function has the wrong number of parameters వేరియబుల్ పేరు చెల్లదు Error that occurs during graphing when a variable name is invalid. సమీకరణం ప్రారాంభం బ్రాకెట్ లేదు Error that occurs during graphing when a { is missing సమీకరణం ముగింపు బ్రాకెట్ లేదు Error that occurs during graphing when a } is missing. "i" మరియు "I" ను వేరియబుల్ పేర్లుగా ఉపయోగించలేము Error that occurs during graphing when i or I is used. సమీకరణాన్ని గ్రాఫ్ చెయ్యలేము General error that occurs during graphing. ఇచ్చిన బేస్ కోసం అంకెను పరిష్కరించడం సాధ్యం కాలేదు Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). బేస్ 2 కంటే ఎక్కువ మరియు 36 కన్నా తక్కువగా ఉండాలి Error that occurs during graphing when the base is out of range. ఒక గణిత ఆపరేషన్‌కు దాని పారామీటర్‌లలో ఒకటి వేరియబుల్‌గా ఉండాలి Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. మీకరణం తార్కిక మరియు స్కేలార్ ఆపరేషన్లను మిళితం చేస్తుంది Error that occurs during graphing when operands are mixed. Such as true and 1. x లేదా y ఎగువ లేదా దిగువ పరిమితుల్లో ఉపయోగించబడదు Error that occurs during graphing when x or y is used in integral upper limits. x లేదా yను పరిమితి బిందువులో ఉపయోగించబడదు Error that occurs during graphing when x or y is used in the limit point. సంక్లిష్ట అనంతాన్ని ఉపయోగించలేరు Error that occurs during graphing when complex infinity is used అసమానతలలో సంక్లిష్ట సంఖ్యలను ఉపయోగించలేరు Error that occurs during graphing when complex numbers are used in inequalities. విధి జాబితాకు తిరిగి వెళ్లు This is the tooltip for the back button in the equation analysis page in the graphing calculator విధి జాబితాకు తిరిగి వెళ్లు This is the automation name for the back button in the equation analysis page in the graphing calculator ఫంక్షన్‌ను విశ్లేషించండి This is the tooltip for the analyze function button ఫంక్షన్‌ను విశ్లేషించండి This is the automation name for the analyze function button ఫంక్షన్‌ను విశ్లేషించండి This is the text for the for the analyze function context menu command సమికరణ తీసేయండి This is the tooltip for the graphing calculator remove equation buttons సమికరణ తీసేయండి This is the automation name for the graphing calculator remove equation buttons సమికరణ తీసేయండి This is the text for the for the remove equation context menu command భాగస్వామ్యం చేయి This is the automation name for the graphing calculator share button. భాగస్వామ్యం చేయి This is the tooltip for the graphing calculator share button. సమీకరణ శైలిని మార్చండి This is the tooltip for the graphing calculator equation style button సమీకరణ శైలిని మార్చండి This is the automation name for the graphing calculator equation style button సమీకరణ శైలిని మార్చండి This is the text for the for the equation style context menu command సమీకరణం చూపు This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. సమికరణ దాచు This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. సమీకరణం చూపు %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. సమీకరణం దాచు %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. ట్రెస్ చేయడం ఆపండి This is the tooltip/automation name for the graphing calculator stop tracing button ట్రెస్ ప్రారంభించండి This is the tooltip/automation name for the graphing calculator start tracing button గ్రాఫ్ వీక్షణ విండో, %1 మరియు %2 లు సరిహద్దులుగా x-అక్షం ఉంది, %3 మరియు %4 లు సరిహద్దులుగా y-అక్షం ఉంది, %5 సమీకరణాలను ప్రదర్శిస్తుంది {Locked="%1","%2", "%3", "%4", "%5"}. స్లైడర్‌ని కాంఫిగర్ చేయండి This is the tooltip text for the slider options button in Graphing Calculator స్లైడర్‌ని కాంఫిగర్ చేయండి This is the automation name text for the slider options button in Graphing Calculator సమీకరణం మోడ్‌కు మారండి Used in Graphing Calculator to switch the view to the equation mode గ్రాఫ్ మోడ్‌కు మారండి Used in Graphing Calculator to switch the view to the graph mode సమీకరణ మోడ్‌కు మారండి Used in Graphing Calculator to switch the view to the equation mode ప్రస్తుత మోడ్ సమీకరణ మోడ్ Announcement used in Graphing Calculator when switching to the equation mode ప్రస్తుత మోడ్ గ్రాఫ్ మోడ్ Announcement used in Graphing Calculator when switching to the graph mode విండో Heading for window extents on the settings డిగ్రీలు Degrees mode on settings page గ్రేడియన్‌లు Gradian mode on settings page రేడియన్‌లు Radians mode on settings page యూనిట్‌లు Heading for Unit's on the settings వీక్షణను రీసెట్ చేయి Hyperlink button to reset the view of the graph X-గరిష్ఠ X maximum value header X-కనిష్ఠ X minimum value header Y-గరిష్ఠ Y Maximum value header Y-కనిష్ఠ Y minimum value header గ్రాఫ్ ఐఛ్చికాలు This is the tooltip text for the graph options button in Graphing Calculator గ్రాఫ్ ఐఛ్చికాలు This is the automation name text for the graph options button in Graphing Calculator గ్రాఫ్ ఐఛ్చికాలు Heading for the Graph options flyout in Graphing mode. వేరియబుల్ ఎంపికలు Screen reader prompt for the variable settings toggle button టోగుల్ వేరియబుల్ ఎంపికలు Tool tip for the variable settings toggle button పంక్తి మందం Heading for the Graph options flyout in Graphing mode. పంక్తి ఎంపికలు Heading for the equation style flyout in Graphing mode. చిన్న పంక్తి వెడల్పు Automation name for line width setting మధ్యస్థ పంక్తి వెడల్పు Automation name for line width setting పెద్ద పంక్తి వెడల్పు Automation name for line width setting అదనపు పెద్ద పంక్తి వెడల్పు Automation name for line width setting సూత్రీకరణను నమోదు చేయండి this is the placeholder text used by the textbox to enter an equation కాపీ చేయి Copy menu item for the graph context menu కత్తిరించు Cut menu item from the Equation TextBox కాపీ చేయి Copy menu item from the Equation TextBox అతికించు Paste menu item from the Equation TextBox చర్య రద్దు చేయి Undo menu item from the Equation TextBox అన్నింటినీ ఎంచుకోండి Select all menu item from the Equation TextBox విధి ఇన్‌పుట్ The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. విధి ఇన్‌పుట్ The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. విధి ఇన్‌పుట్ ప్యానెల్ The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. వేరియబుల్ ప్యానెల్ The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. వేరియబుల్ జాబితా The automation name for the Variable ListView that is shown when Calculator is in graphing mode. వేరియబుల్ %1 జాబితా అంశం The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. వేరియబుల్ విలువ టెక్స్ట్‌బాక్స్ The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. వేరియబుల్ విలువ స్థితి నిర్థారణి The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. వేరియబుల్ కనీస విలువ టెక్స్ట్‌బాక్స్ The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. వేరియబుల్ దశ విలువ టెక్స్ట్‌బాక్స్ The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. వేరియబుల్ గరిష్ట విలువ టెక్స్ట్‌బాక్స్ The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. ఘన పంక్తి శైలి Name of the solid line style for a graphed equation డాట్ లైన్ శైలి Name of the dotted line style for a graphed equation డాష్ లైన్ శైలి Name of the dashed line style for a graphed equation నావికాదళం నీలం Name of color in the color picker సీఫోం Name of color in the color picker వైలెట్ Name of color in the color picker ఆకుపచ్చ Name of color in the color picker పుదీనా ఆకుపచ్చ Name of color in the color picker ముదురు ఆకుపచ్చ Name of color in the color picker బొగ్గు Name of color in the color picker ఎరుపు Name of color in the color picker లేత నేరేడు రంగు Name of color in the color picker మెజెంతా Name of color in the color picker పసుపుపచ్చ బంగారం Name of color in the color picker ప్రకాశవంతమైన నారింజ రంగు Name of color in the color picker గోధుమ Name of color in the color picker నలుపు Name of color in the color picker తెలుపు Name of color in the color picker వర్ణం 1 Name of color in the color picker వర్ణం 2 Name of color in the color picker రంగు 3 Name of color in the color picker రంగు 4 Name of color in the color picker గ్రాఫ్ నేపథ్యం Graph settings heading for the theme options ఎల్లప్పుడూ కాంతి Graph settings option to set graph to light theme యాప్ థీమ్‌ను సరిపోల్చండి Graph settings option to set graph to match the app theme థీమ్ This is the automation name text for the Graph settings heading for the theme options ఎల్లప్పుడూ కాంతి This is the automation name text for the Graph settings option to set graph to light theme యాప్ థీమ్‌ను సరిపోల్చండి This is the automation name text for the Graph settings option to set graph to match the app theme ఫంక్షన్ తీసివేయబడింది Announcement used in Graphing Calculator when a function is removed from the function list విధి విశ్లేషణ సమీకరణ బాక్స్ This is the automation name text for the equation box in the function analysis panel సమానం Screen reader prompt for the equal button on the graphing calculator operator keypad దీని కంటే తక్కువ Screen reader prompt for the Less than button దీని కంటే తక్కువ లేదా సమానం Screen reader prompt for the Less than or equal button సమానం Screen reader prompt for the Equal button దీని కంటే ఎక్కువ లేదా సమానం Screen reader prompt for the Greater than or equal button దీని కంటే ఎక్కువ Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad సమర్పించు Screen reader prompt for the submit button on the graphing calculator operator keypad ఫంక్షన్ విశ్లేషణ Screen reader prompt for the function analysis grid గ్రాఫ్ ఐఛ్చికాలు Screen reader prompt for the graph options panel చరిత్ర మరియు జ్ఞాపకాల జాబితాలు Automation name for the group of controls for history and memory lists. మెమరీ జాబితా Automation name for the group of controls for memory list. చరిత్ర స్లాట్ %1 క్లియర్ చేయబడింది {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". ఎల్లప్పుడూ కాలిక్యులేటర్ ఎగువ భాగంలో Announcement to indicate calculator window is always shown on top. కాలిక్యులేటర్ తిరిగి పూర్తి వీక్షణ కోసం Announcement to indicate calculator window is now back to full view. అంకగణిత షిఫ్ట్ ఎంచుకోబడింది Label for a radio button that toggles arithmetic shift behavior for the shift operations. లాజికల్ షిఫ్ట్ ఎంచుకోబడింది Label for a radio button that toggles logical shift behavior for the shift operations. వృత్తాకార షిఫ్ట్‌లో రొటేట్ చేయి ఎంచుకోబడింది Label for a radio button that toggles rotate circular behavior for the shift operations. క్యారీ చేసే దానితో వృత్తాకార షిఫ్ట్‌లో రొటేట్ చేయి ఎంచుకోబడింది Label for a radio button that toggles rotate circular with carry behavior for the shift operations. సెట్టింగ్‌లు Header text of Settings page కనిపించే తీరు Subtitle of appearance setting on Settings page అనువర్తనం థీమ్ Title of App theme expander ప్రదర్శించాలనుకునే అనువర్తనం థీమ్‌ను ఎంచుకోండి Description of App theme expander లైట్ Lable for light theme option డార్క్ Lable for dark theme option సిస్టమ్ సెట్టింగ్‌ని ఉపయోగించండి Lable for the app theme option to use system setting వెనుకకు Screen reader prompt for the Back button in title bar to back to main page సెట్టింగ్‌ల పేజీ Announcement used when Settings page is opened అందుబాటులో ఉన్న చర్యల కోసం సందర్భ మెనుని తెరవండి Screen reader prompt for the context menu of the expression box సరే The text of OK button to dismiss an error dialog. ఈ స్నాప్‌షాట్‌ని పునరుద్ధరించడం సాధ్యపడలేదు. The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/th-TH/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ข้อมูลที่ป้อนไม่ถูกต้อง Error message shown when the input makes a function fail, like log(-1) ไม่มีการกำหนดผลลัพธ์ Error message shown when there's no possible value for a function. ความจำไม่พอ Error message shown when we run out of memory during a calculation. ยาวเกิน Error message shown when there's an overflow during the calculation. ไม่มีการกำหนดผลลัพธ์ Same as 101 ไม่มีการกำหนดผลลัพธ์ Same 101 ยาวเกิน Same as 107 ยาวเกิน Same 107 ไม่สามารถหารด้วยศูนย์ได้ Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/th-TH/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 เครื่องคิดเลข {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. เครื่องคิดเลข [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. เครื่องคิดเลขของ Windows {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. เครื่องคิดเลขของ Windows [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. เครื่องคิดเลข {@Appx_Description@} This description is used for the official application when published through Windows Store. เครื่องคิดเลข [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. คัดลอก Copy context menu string วาง Paste context menu string เกี่ยวกับเท่ากับ The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1, ค่า %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) บิต%1 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) ที่ 63 Sub-string used in automation name for 63 bit in bit flip ที่ 62 Sub-string used in automation name for 62 bit in bit flip ที่ 61 Sub-string used in automation name for 61 bit in bit flip ที่ 60 Sub-string used in automation name for 60 bit in bit flip ที่ 59 Sub-string used in automation name for 59 bit in bit flip ที่ 58 Sub-string used in automation name for 58 bit in bit flip ที่ 57 Sub-string used in automation name for 57 bit in bit flip ที่ 56 Sub-string used in automation name for 56 bit in bit flip ที่ 55 Sub-string used in automation name for 55 bit in bit flip ที่ 54 Sub-string used in automation name for 54 bit in bit flip ที่ 53 Sub-string used in automation name for 53 bit in bit flip ที่ 52 Sub-string used in automation name for 52 bit in bit flip ที่ 51 Sub-string used in automation name for 51 bit in bit flip ที่ 50 Sub-string used in automation name for 50 bit in bit flip ที่ 49 Sub-string used in automation name for 49 bit in bit flip ที่ 48 Sub-string used in automation name for 48 bit in bit flip ที่ 47 Sub-string used in automation name for 47 bit in bit flip ที่ 46 Sub-string used in automation name for 46 bit in bit flip ที่ 45 Sub-string used in automation name for 45 bit in bit flip ที่ 44 Sub-string used in automation name for 44 bit in bit flip ที่ 43 Sub-string used in automation name for 43 bit in bit flip ที่ 42 Sub-string used in automation name for 42 bit in bit flip ที่ 41 Sub-string used in automation name for 41 bit in bit flip ที่ 40 Sub-string used in automation name for 40 bit in bit flip ที่ 39 Sub-string used in automation name for 39 bit in bit flip ที่ 38 Sub-string used in automation name for 38 bit in bit flip ที่ 37 Sub-string used in automation name for 37 bit in bit flip ที่ 36 Sub-string used in automation name for 36 bit in bit flip ที่ 35 Sub-string used in automation name for 35 bit in bit flip ที่ 34 Sub-string used in automation name for 34 bit in bit flip ที่ 33 Sub-string used in automation name for 33 bit in bit flip ที่ 32 Sub-string used in automation name for 32 bit in bit flip ที่ 31 Sub-string used in automation name for 31 bit in bit flip ที่ 30 Sub-string used in automation name for 30 bit in bit flip ที่ 29 Sub-string used in automation name for 29 bit in bit flip ที่ 28 Sub-string used in automation name for 28 bit in bit flip ที่ 27 Sub-string used in automation name for 27 bit in bit flip ที่ 26 Sub-string used in automation name for 26 bit in bit flip ที่ 25 Sub-string used in automation name for 25 bit in bit flip ที่ 24 Sub-string used in automation name for 24 bit in bit flip ที่ 23 Sub-string used in automation name for 23 bit in bit flip ที่ 22 Sub-string used in automation name for 22 bit in bit flip ที่ 21 Sub-string used in automation name for 21 bit in bit flip ที่ 20 Sub-string used in automation name for 20 bit in bit flip ที่ 19 Sub-string used in automation name for 19 bit in bit flip ที่ 18 Sub-string used in automation name for 18 bit in bit flip ที่ 17 Sub-string used in automation name for 17 bit in bit flip ที่ 16 Sub-string used in automation name for 16 bit in bit flip ที่ 15 Sub-string used in automation name for 15 bit in bit flip ที่ 14 Sub-string used in automation name for 14 bit in bit flip ที่ 13 Sub-string used in automation name for 13 bit in bit flip ที่ 12 Sub-string used in automation name for 12 bit in bit flip ที่ 11 Sub-string used in automation name for 11 bit in bit flip ที่ 10 Sub-string used in automation name for 10 bit in bit flip ที่ 9 Sub-string used in automation name for 9 bit in bit flip ที่ 8 Sub-string used in automation name for 8 bit in bit flip ที่ 7 Sub-string used in automation name for 7 bit in bit flip ที่ 6 Sub-string used in automation name for 6 bit in bit flip ที่ 5 Sub-string used in automation name for 5 bit in bit flip ที่ 4 Sub-string used in automation name for 4 bit in bit flip ที่ 3 Sub-string used in automation name for 3 bit in bit flip ที่ 2 Sub-string used in automation name for 2 bit in bit flip ที่ 1 Sub-string used in automation name for 1 bit in bit flip บิตที่สำคัญน้อยที่สุด Used to describe the first bit of a binary number. Used in bit flip เปิดแถบลอยความจำ This is the automation name and label for the memory button when the memory flyout is closed. ปิดแถบลอยความจำ This is the automation name and label for the memory button when the memory flyout is open. อยู่ด้านบนเสมอ This is the tool tip automation name for the always-on-top button when out of always-on-top mode. กลับไปยังมุมมองแบบเต็ม This is the tool tip automation name for the always-on-top button when in always-on-top mode. ความจำ This is the tool tip automation name for the memory button. ประวัติ (Ctrl+H) This is the tool tip automation name for the history button. สลับบิตแป้นคีย์ This is the tool tip automation name for the bitFlip button. แป้นคีย์แบบเต็ม This is the tool tip automation name for the numberPad button. ล้างความจำทั้งหมด (Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. ความจำ The text that shows as the header for the memory list ความจำ The automation name for the Memory pivot item that is shown when Calculator is in wide layout. ประวัติ The text that shows as the header for the history list ประวัติ The automation name for the History pivot item that is shown when Calculator is in wide layout. ตัวแปลง Label for a control that activates the unit converter mode. วิทยาศาสตร์ Label for a control that activates scientific mode calculator layout มาตรฐาน Label for a control that activates standard mode calculator layout. โหมดตัวแปลง Screen reader prompt for a control that activates the unit converter mode. โหมดวิทยาศาสตร์ Screen reader prompt for a control that activates scientific mode calculator layout โหมดมาตรฐาน Screen reader prompt for a control that activates standard mode calculator layout. ล้างประวัติทั้งหมด "ClearHistory" used on the calculator history pane that stores the calculation history. ล้างประวัติทั้งหมด This is the tool tip automation name for the Clear History button. ซ่อน "HideHistory" used on the calculator history pane that stores the calculation history. มาตรฐาน The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. วิทยาศาสตร์ The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. นักเขียนโปรแกรม The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. ตัวแปลง The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". เครื่องคิดเลข The text that shows in the dropdown navigation control for the calculator group. ตัวแปลง The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". เครื่องคิดเลข The text that shows in the dropdown navigation control for the calculator group in upper case. ตัวแปลง Pluralized version of the converter group text, used for the screen reader prompt. เครื่องคิดเลข Pluralized version of the calculator group text, used for the screen reader prompt. การแสดงผลเป็น %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". นิพจน์คือ %1 ข้อมูลป้อนเข้าปัจจุบันคือ %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". การแสดงผลเป็นจุด %1 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. นิพจน์เป็น %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". คัดลอกค่าที่แสดงไปยังคลิปบอร์ดแล้ว Screen reader prompt for the Calculator display copy button, when the button is invoked. ประวัติ Screen reader prompt for the history flyout ความจำ Screen reader prompt for the memory flyout ฐานสิบหก %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". ทศนิยม %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". ฐานแปด %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". ฐานสอง %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". ล้างประวัติทั้งหมด Screen reader prompt for the Calculator History Clear button ล้างประวัติ Screen reader prompt for the Calculator History Clear button, when the button is invoked. ซ่อนประวัติ Screen reader prompt for the Calculator History Hide button เปิดแถบลอยประวัติ Screen reader prompt for the Calculator History button, when the flyout is closed. ปิดแถบลอยประวัติ Screen reader prompt for the Calculator History button, when the flyout is open. เก็บเข้าความจำ Screen reader prompt for the Calculator Memory button เก็บเข้าความจำ (Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. ล้างความจำทั้งหมด Screen reader prompt for the Calculator Clear Memory button ล้างความจำแล้ว Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. เรียกคืนความจำ Screen reader prompt for the Calculator Memory Recall button เรียกคืนความจำ (Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. เพิ่มความจำ Screen reader prompt for the Calculator Memory Add button เพิ่มความจำ (Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. ลบความจำ Screen reader prompt for the Calculator Memory Subtract button ลบความจำ (Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. ล้างรายการความจำ Screen reader prompt for the Calculator Clear Memory button ล้างรายการความจำ This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. เพิ่มเข้ารายการความจำ Screen reader prompt for the Calculator Memory Add button in the Memory list เพิ่มเข้ารายการความจำ This is the tool tip automation name for the Calculator Memory Add button in the Memory list ลบจากรายการความจำ Screen reader prompt for the Calculator Memory Subtract button in the Memory list ลบจากรายการความจำ This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list ล้างรายการความจำ Screen reader prompt for the Calculator Clear Memory button ล้างรายการความจำ Text string for the Calculator Clear Memory option in the Memory list context menu เพิ่มเข้ารายการความจำ Screen reader prompt for the Calculator Memory Add swipe button in the Memory list เพิ่มเข้ารายการความจำ Text string for the Calculator Memory Add option in the Memory list context menu ลบจากรายการความจำ Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list ลบจากรายการความจำ Text string for the Calculator Memory Subtract option in the Memory list context menu ลบ Text string for the Calculator Delete swipe button in the History list คัดลอก Text string for the Calculator Copy option in the History list context menu ลบ Text string for the Calculator Delete option in the History list context menu ลบรายการประวัติ Screen reader prompt for the Calculator Delete swipe button in the History list ลบรายการประวัติ Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button ศูนย์ Screen reader prompt for the Calculator number "0" button หนึ่ง Screen reader prompt for the Calculator number "1" button สอง Screen reader prompt for the Calculator number "2" button สาม Screen reader prompt for the Calculator number "3" button สี่ Screen reader prompt for the Calculator number "4" button ห้า Screen reader prompt for the Calculator number "5" button หก Screen reader prompt for the Calculator number "6" button เจ็ด Screen reader prompt for the Calculator number "7" button แปด Screen reader prompt for the Calculator number "8" button เก้า Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button และ Screen reader prompt for the Calculator And button หรือ Screen reader prompt for the Calculator Or button ไม่ใช่ Screen reader prompt for the Calculator Not button หมุนไปทางซ้าย Screen reader prompt for the Calculator ROL button หมุนไปทางขวา Screen reader prompt for the Calculator ROR button Shift ซ้าย Screen reader prompt for the Calculator LSH button Shift ขวา Screen reader prompt for the Calculator RSH button เอกสิทธิ์เฉพาะบุคคล or Screen reader prompt for the Calculator XOR button สลับสี่คำ Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". สลับคำคู่ Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". สลับคำ Screen reader prompt for the Calculator word button. Should read as "Word toggle button". สลับไบต์ Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". สลับบิตแป้นคีย์ Screen reader prompt for the Calculator bitFlip button แป้นคีย์แบบเต็ม Screen reader prompt for the Calculator numberPad button ตัวคั่นทศนิยม Screen reader prompt for the "." button ล้างรายการ Screen reader prompt for the "CE" button ล้าง Screen reader prompt for the "C" button หารด้วย Screen reader prompt for the divide button on the number pad คูณด้วย Screen reader prompt for the multiply button on the number pad เท่ากับ Screen reader prompt for the equals button on the scientific operator keypad ฟังก์ชันผกผัน Screen reader prompt for the shift button on the number pad in scientific mode. ลบ Screen reader prompt for the minus button on the number pad ลบ We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 บวก Screen reader prompt for the plus button on the number pad รากที่สอง Screen reader prompt for the square root button on the scientific operator keypad เปอร์เซ็นต์ Screen reader prompt for the percent button on the scientific operator keypad บวก ลบ Screen reader prompt for the negate button on the scientific operator keypad บวก ลบ Screen reader prompt for the negate button on the converter operator keypad ส่วนกลับ Screen reader prompt for the invert button on the scientific operator keypad วงเล็บซ้าย Screen reader prompt for the Calculator "(" button on the scientific operator keypad วงเล็บซ้าย จำนวนวงเล็บเปิด %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". วงเล็บขวา Screen reader prompt for the Calculator ")" button on the scientific operator keypad จำนวนวงเล็บเปิด %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". ไม่มีวงเล็บเปิดที่จะปิด {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". สัญกรณ์วิทยาศาสตร์ Screen reader prompt for the Calculator F-E the scientific operator keypad ฟังก์ชันไฮเพอร์โบลิก Screen reader prompt for the Calculator button HYP in the scientific operator keypad Pi Screen reader prompt for the Calculator pi button on the scientific operator keypad ไซน์ Screen reader prompt for the Calculator sin button on the scientific operator keypad โคไซน์ Screen reader prompt for the Calculator cos button on the scientific operator keypad แทนเจนต์ Screen reader prompt for the Calculator tan button on the scientific operator keypad ไฮเพอร์โบลิกไซน์ Screen reader prompt for the Calculator sinh button on the scientific operator keypad ไฮเพอร์โบลิกโคไซน์ Screen reader prompt for the Calculator cosh button on the scientific operator keypad ไฮเพอร์โบลิกแทนเจนต์ Screen reader prompt for the Calculator tanh button on the scientific operator keypad สี่เหลี่ยมจัตุรัส Screen reader prompt for the x squared on the scientific operator keypad. ลูกบาศก์ Screen reader prompt for the x cubed on the scientific operator keypad. อาร์คไซน์ Screen reader prompt for the inverted sin on the scientific operator keypad. อาร์คโคไซน์ Screen reader prompt for the inverted cos on the scientific operator keypad. อาร์คแทนเจนต์ Screen reader prompt for the inverted tan on the scientific operator keypad. ไฮเพอร์โบลิกอาร์คไซน์ Screen reader prompt for the inverted sinh on the scientific operator keypad. ไฮเพอร์โบลิกอาร์คโคไซน์ Screen reader prompt for the inverted cosh on the scientific operator keypad. ไฮเพอร์โบลิกอาร์คแทนเจนต์ Screen reader prompt for the inverted tanh on the scientific operator keypad. ยกกำลัง "X" Screen reader prompt for x power y button on the scientific operator keypad. ยกกำลังสิบ Screen reader prompt for the 10 power x button on the scientific operator keypad. ยกกำลัง "e" Screen reader for the e power x on the scientific operator keypad. รากที่ "y" ของ "x" Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. ลอการิทึม Screen reader for the log base 10 on the scientific operator keypad ลอการิทึมธรรมชาติ Screen reader for the log base e on the scientific operator keypad มอดุโล Screen reader for the mod button on the scientific operator keypad เลขชี้กำลัง Screen reader for the exp button on the scientific operator keypad องศา นาที วินาที Screen reader for the exp button on the scientific operator keypad องศา Screen reader for the exp button on the scientific operator keypad จำนวนเต็ม Screen reader for the int button on the scientific operator keypad เครื่องหมายเศษส่วน Screen reader for the frac button on the scientific operator keypad แฟกทอเรียล Screen reader for the factorial button on the basic operator keypad สลับองศา This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". สลับเกรเดียน This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". สลับเรเดียน This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". ดรอปดาวน์โหมด Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. ดรอปดาวน์ประเภท Screen reader prompt for the Categories dropdown field. อยู่ด้านบนเสมอ Screen reader prompt for the Always-on-Top button when in normal mode. กลับไปยังมุมมองแบบเต็ม Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. อยู่ด้านบนเสมอ (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. กลับไปยังมุมมองแบบเต็ม (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. แปลงจาก %1 %2 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. แปลงจาก %1 จุด %2 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. แปลงเป็น %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 เท่ากับ %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. หน่วยป้อนเข้า Screen reader prompt for the Unit Converter Units1 i.e. top units field. หน่วยผลลัพธ์ Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. พื้นที่ Unit conversion category name called Area (eg. area of a sports field in square meters) ข้อมูล Unit conversion category name called Data พลังงาน Unit conversion category name called Energy. (eg. the energy in a battery or in food) ความยาว Unit conversion category name called Length แรง Unit conversion category name called Power (eg. the power of an engine or a light bulb) ความเร็ว Unit conversion category name called Speed เวลา Unit conversion category name called Time ปริมาตร Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) อุณหภูมิ Unit conversion category name called Temperature น้ำหนักและมวล Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. ความดัน Unit conversion category name called Pressure มุม Unit conversion category name called Angle สกุลเงิน Unit conversion category name called Currency ออนซ์ของเหลว (UK) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (UK) An abbreviation for a measurement unit of volume ออนซ์ของเหลว (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) fl oz (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume แกลลอน (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (UK) An abbreviation for a measurement unit of volume แกลลอน (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) gal (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume ลิตร A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) L An abbreviation for a measurement unit of volume มิลลิลิตร A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) มล. An abbreviation for a measurement unit of volume ไพนต์ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (UK) An abbreviation for a measurement unit of volume ไพนต์ (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) pt (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume ช้อนโต๊ะ (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ช.ต. (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume ช้อนชา (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ช.ช. (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume ช้อนโต๊ะ (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ช.ต. (UK) An abbreviation for a measurement unit of volume ช้อนชา (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ชช. (UK) An abbreviation for a measurement unit of volume ควอร์ต (UK) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (UK) An abbreviation for a measurement unit of volume ควอร์ต (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) qt (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume ถ้วย (สหรัฐอเมริกา) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ถ้วย (สหรัฐอเมริกา) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length ac An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data BTU An abbreviation for a measurement unit of volume BTU/นาที An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data แคล An abbreviation for a measurement unit of energy ซม. An abbreviation for a measurement unit of length ซม./วิ. An abbreviation for a measurement unit of speed ลบ.ซม. An abbreviation for a measurement unit of volume ลบ.ฟุค An abbreviation for a measurement unit of volume ลบ.นิ้ว An abbreviation for a measurement unit of volume ลบ.ม. An abbreviation for a measurement unit of volume ลบ.หลา An abbreviation for a measurement unit of volume d An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" eV An abbreviation for a measurement unit of energy ฟุต An abbreviation for a measurement unit of length ฟุต/วิ. An abbreviation for a measurement unit of speed ฟุต•ป. An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data ha An abbreviation for a measurement unit of area hp (สหรัฐอเมริกา) An abbreviation for a measurement unit of power ชม. An abbreviation for a measurement unit of time นิ้ว An abbreviation for a measurement unit of length J An abbreviation for a measurement unit of energy kWh An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data kcal An abbreviation for a measurement unit of energy kJ An abbreviation for a measurement unit of energy กม. An abbreviation for a measurement unit of length กม./ชม. An abbreviation for a measurement unit of speed kW An abbreviation for a measurement unit of power kn An abbreviation for a measurement unit of speed M An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data ม. An abbreviation for a measurement unit of length ม./วิ. An abbreviation for a measurement unit of speed µm An abbreviation for a measurement unit of length µs An abbreviation for a measurement unit of time mi An abbreviation for a measurement unit of length mph An abbreviation for a measurement unit of speed มม. An abbreviation for a measurement unit of length ms An abbreviation for a measurement unit of time นาที An abbreviation for a measurement unit of time nm An abbreviation for a measurement unit of length nmi An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data ฟุต•ป./นาที An abbreviation for a measurement unit of power วิ. An abbreviation for a measurement unit of time ตร.ซม. An abbreviation for a measurement unit of area ตร.ฟุต An abbreviation for a measurement unit of area ตร.น. An abbreviation for a measurement unit of area ตร.กม. An abbreviation for a measurement unit of area ตร.ม. An abbreviation for a measurement unit of area ตร.ไมล์ An abbreviation for a measurement unit of area ตร.มม. An abbreviation for a measurement unit of area ตร.หลา An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data W An abbreviation for a measurement unit of power สัปดาห์ An abbreviation for a measurement unit of time หลา An abbreviation for a measurement unit of length ปี An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data เอเคอร์ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) บิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) หน่วยความร้อนแบบอังกฤษ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/นาที A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แคลอรีความร้อน A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซนติเมตร A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซนติเมตรต่อวินาที A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกบาศก์เซนติเมตร A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกบาศก์ฟุต A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกบาศก์นิ้ว A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกบาศก์เมตร A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกบาศก์หลา A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) วัน A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซลเซียส An option in the unit converter to select degrees Celsius ฟาเรนไฮต์ An option in the unit converter to select degrees Fahrenheit โวลต์อิเล็กตรอน A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟุต A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟุตต่อวินาที A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟุต-ปอนด์ A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟุต-ปอนด์/นาที A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิกะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิกะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เฮกตาร์ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แรงม้า (สหรัฐอเมริกา) A measurement unit for power ชั่วโมง A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) นิ้ว A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) จูล A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลวัตต์-ชั่วโมง A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เคลวิน An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". กิโลบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แคลอรีอาหาร A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลจูล A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลเมตร A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลเมตรต่อชั่วโมง A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลวัตต์ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) น็อต A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) มัค A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) เมกะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมกะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมตร A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมตรต่อวินาที A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไมครอน A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไมโครวินาที A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไมล์ A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไมล์ต่อชั่วโมง A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) มิลลิเมตร A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) มิลลิวินาที A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) นาที A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สี่บิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) นาโนเมตร A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) อังสตรอม A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ไมล์ทะเล A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เพตะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เพตะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) วินาที A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางเซนติเมตร A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางฟุต A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางนิ้ว A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางกิโลเมตร A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางเมตร A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางไมล์ A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางมิลลิเมตร A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตารางหลา A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เทราบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เทราไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) วัตต์ A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สัปดาห์ A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) หลา A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ปี A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight องศา An abbreviation for a measurement unit of Angle rad An abbreviation for a measurement unit of Angle grad An abbreviation for a measurement unit of Angle atm An abbreviation for a measurement unit of Pressure ba An abbreviation for a measurement unit of Pressure kPa An abbreviation for a measurement unit of Pressure mmHg An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure psi An abbreviation for a measurement unit of Pressure ซก. An abbreviation for a measurement unit of weight dag An abbreviation for a measurement unit of weight ดก. An abbreviation for a measurement unit of weight ก. An abbreviation for a measurement unit of weight hg An abbreviation for a measurement unit of weight กก. An abbreviation for a measurement unit of weight ตัน (UK) An abbreviation for a measurement unit of weight มก. An abbreviation for a measurement unit of weight oz An abbreviation for a measurement unit of weight ป. An abbreviation for a measurement unit of weight ตัน (สหรัฐอเมริกา) An abbreviation for a measurement unit of weight st An abbreviation for a measurement unit of weight ต. An abbreviation for a measurement unit of weight กะรัต A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) องศา A measurement unit for Angle. เรเดียน A measurement unit for Angle. เกรเดียน A measurement unit for Angle. บรรยากาศ A measurement unit for Pressure. บาร์ A measurement unit for Pressure. กิโลปาสกาล A measurement unit for Pressure. มิลลิเมตรปรอท A measurement unit for Pressure. ปาสกาล A measurement unit for Pressure. ปอนด์ต่อตารางนิ้ว A measurement unit for Pressure. เซนติกรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เดคากรัม A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เดซิกรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เฮกโตกรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิโลกรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตัน (UK) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) มิลลิกรัม A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ออนซ์ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ปอนด์ A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ตัน (สหรัฐอเมริกา) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สโตน A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมตริกตัน A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ซีดี A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ซีดี A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สนามฟุตบอล A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สนามฟุตบอล A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟลอปปีดิสก์ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฟลอปปีดิสก์ A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ดีวีดี A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ดีวีดี A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แบตเตอรี่ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แบตเตอรี่ AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ที่หนีบกระดาษ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ที่หนีบกระดาษ A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) จัมโบ้เจ็ต A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) จัมโบ้เจ็ต A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) หลอดไฟ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) หลอดไฟ A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ม้า A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ม้า A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) อ่างอาบน้ำ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) อ่างอาบน้ำ A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เกล็ดหิมะ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เกล็ดหิมะ A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ช้าง An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ช้าง An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เต่า A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เต่า A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เจ็ต A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เจ็ต A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) วาฬ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) วาฬ A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ถ้วยกาแฟ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ถ้วยกาแฟ A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สระว่ายน้ำ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) สระว่ายน้ำ An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฝ่ามือ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ฝ่ามือ A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แผ่นกระดาษ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) แผ่นกระดาษ A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ปราสาท A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ปราสาท A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กล้วย A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กล้วย A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ชิ้นเค้ก A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ชิ้นเค้ก A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เครื่องยนต์รถไฟ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เครื่องยนต์รถไฟ A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกฟุตบอล A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ลูกฟุตบอล A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) รายการความจำ Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) ย้อนกลับ Screen reader prompt for the About panel back button ย้อนกลับ Content of tooltip being displayed on AboutControlBackButton เงื่อนไขการอนุญาตให้ใช้สิทธิสำหรับซอฟต์แวร์ของ Microsoft Displayed on a link to the Microsoft Software License Terms on the About panel ตัวอย่าง Label displayed next to upcoming features คำชี้แจงสิทธิ์ส่วนบุคคลของ Microsoft Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft สงวนลิขสิทธิ์ {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) เมื่อต้องการเรียนรู้วิธีที่คุณสามารถให้ความช่วยเหลือกับเครื่องคิดเลขของ Windows ได้ให้ตรวจสอบโครงการบน %HL%GitHub%HL% {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel เกี่ยวกับ Subtitle of about message on Settings page ส่งคำติชม The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app ยังไม่มีประวัติ The text that shows as the header for the history list ไม่มีสิ่งใดบันทึกอยู่ในความจำ The text that shows as the header for the memory list ความจำ Screen reader prompt for the negate button on the converter operator keypad ไม่สามารถวางนิพจน์นี้ได้ The paste operation cannot be performed, if the expression is invalid. กิบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) กิบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) คิบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) คิบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เมบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เพบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เพบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เทบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เทบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เอกซะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เอกซะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เอ็กซ์บิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เอกบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซตะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซตะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) เซบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ยอตตะบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ยอตตะไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ยอบิบิต A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ยอบิไบต์ A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) การคำนวณจากวัน โหมดการคำนวณ Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". เพิ่ม Add toggle button text เพิ่มหรือลบวัน Add or Subtract days option วันที่ Date result label ค่าความต่างระหว่างวัน Date difference option วัน Add/Subtract Days label ค่าความต่าง Difference result label ตั้งแต่ From Date Header for Difference Date Picker เดือน Add/Subtract Months label ลบ Subtract toggle button text ถึง To Date Header for Difference Date Picker ปี Add/Subtract Years label วันที่เลยกำหนด Out of bound message shown as result when the date calculation exceeds the bounds วัน วัน เดือน เดือน วันเดียวกัน สัปดาห์ สัปดาห์ ปี ปี ความแตกต่าง %1 Automation name for reading out the date difference. %1 = Date difference วันที่เป็นผล %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date โหมดเครื่องคิดเลข %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. โหมดตัวแปลง %1 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. โหมดการคำนวณจากวัน Automation name for when the mode header is focused and the current mode is Date calculation. ประวัติและรายการความจำ Automation name for the group of controls for history and memory lists. ตัวควบคุมความจำ Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) ฟังก์ชันมาตรฐาน Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) แสดงตัวควบคุม Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) ตัวดำเนินการมาตรฐาน Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) แป้นหมายเลข Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) ตัวดำเนินการมุม Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) ฟังก์ชันวิทยาศาสตร์ Automation name for the group of Scientific functions. การเลือกเลขฐาน Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix ตัวดำเนินการนักเขียนโปรแกรม Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). การเลือกโหมดป้อนข้อมูล Automation name for the group of input mode toggling buttons. แป้นพิมพ์การสลับบิต Automation name for the group of bit toggling buttons. เลื่อนนิพจน์ไปทางซ้าย Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. เลื่อนนิพจน์ไปทางขวา Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. ถึงจำนวนตัวเลขสูงสุดแล้ว %1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". บันทึก %1 เข้าความจำแล้ว {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". ช่องความจำ %1 คือ %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". ล้างช่องใส่ความจำ %1 แล้ว {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". หารด้วย Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. คูณ Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. ลบ Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. บวก Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. ยกกำลัง Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. รากที่ y Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. mod Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. Shift ซ้าย Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. Shift ขวา Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. หรือ Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x หรือ Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. และ Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. อัปเดตเมื่อ %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" อัปเดตอัตรา The text displayed for a hyperlink button that refreshes currency converter ratios. อาจมีค่าธรรมเนียมการใช้ข้อมูล The text displayed when users are on a metered connection and using currency converter. ไม่สามารถเรียกดูอัตราใหม่ได้ โปรดลองอีกครั้งในภายหลัง The text displayed when currency ratio data fails to load. ออฟไลน์อยู่ โปรดตรวจสอบ%HL%การตั้งค่าเครือข่าย%HL%ของคุณ Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} กำลังอัปเดตอัตราแลกเปลี่ยน This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. อัปเดตอัตราแลกเปลี่ยนแล้ว This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. ไม่สามารถอัปเดตอัตราได้ This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} W AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} ล้างความจำทั้งหมด (Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. ล้างความจำทั้งหมด Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} องศาไซน์ Name for the sine function in degrees mode. Used by screen readers. ไซน์เรเดียนส์ Name for the sine function in radians mode. Used by screen readers. การไล่ระดับสีไซน์ Name for the sine function in gradians mode. Used by screen readers. แปลงกลับองศาไซน์ Name for the inverse sine function in degrees mode. Used by screen readers. แปลงกลับไซน์เรเดียนส์ Name for the inverse sine function in radians mode. Used by screen readers. แปลงกลับการไล่ระดับสีไซน์ Name for the inverse sine function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกไซน์ Name for the hyperbolic sine function. Used by screen readers. แปลงกลับไฮเพอร์โบลิกไซน์ Name for the inverse hyperbolic sine function. Used by screen readers. องศาโคไซน์ Name for the cosine function in degrees mode. Used by screen readers. โคไซน์เรเดียนส์ Name for the cosine function in radians mode. Used by screen readers. การไล่ระดับสีโคไซน์ Name for the cosine function in gradians mode. Used by screen readers. แปลงกลับองศาโคไซน์ Name for the inverse cosine function in degrees mode. Used by screen readers. แปลงกลับโคไซน์เรเดียนส์ Name for the inverse cosine function in radians mode. Used by screen readers. แปลงกลับการไล่ระดับสีโคไซน์ Name for the inverse cosine function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกโคไซน์ Name for the hyperbolic cosine function. Used by screen readers. แปลงกลับไฮเพอร์โบลิกโคไซน์ Name for the inverse hyperbolic cosine function. Used by screen readers. องศาแทนเจนต์ Name for the tangent function in degrees mode. Used by screen readers. แทนเจนต์เรเดียนส์ Name for the tangent function in radians mode. Used by screen readers. การไล่ระดับสีแทนเจนต์ Name for the tangent function in gradians mode. Used by screen readers. แปลงกลับองศาแทนเจนต์ Name for the inverse tangent function in degrees mode. Used by screen readers. แปลงกลับแทนเจนต์เรเดียนส์ Name for the inverse tangent function in radians mode. Used by screen readers. แปลงกลับการไล่ระดับสีแทนเจนต์ Name for the inverse tangent function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกแทนเจนต์ Name for the hyperbolic tangent function. Used by screen readers. แปลงกลับไฮเพอร์โบลิกแทนเจนต์ Name for the inverse hyperbolic tangent function. Used by screen readers. องศาซีแคนต์ Name for the secant function in degrees mode. Used by screen readers. เรเดียนซีแคนต์ Name for the secant function in radians mode. Used by screen readers. เกรเดียนซีแคนต์ Name for the secant function in gradians mode. Used by screen readers. องศาซีแคนต์ผกผัน Name for the inverse secant function in degrees mode. Used by screen readers. เรเดียนซีแคนต์ผกผัน Name for the inverse secant function in radians mode. Used by screen readers. เกรเดียนซีแคนต์ผกผัน Name for the inverse secant function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกซีแคนต์ Name for the hyperbolic secant function. Used by screen readers. ไฮเพอร์โบลิกซีแคนต์ผกผัน Name for the inverse hyperbolic secant function. Used by screen readers. องศาโคซีแคนต์ Name for the cosecant function in degrees mode. Used by screen readers. เรเดียนโคซีแคนต์ Name for the cosecant function in radians mode. Used by screen readers. เกรเดียนโคซีแคนต์ Name for the cosecant function in gradians mode. Used by screen readers. องศาโคซีแคนต์ผกผัน Name for the inverse cosecant function in degrees mode. Used by screen readers. เรเดียนโคซีแคนต์ผกผัน Name for the inverse cosecant function in radians mode. Used by screen readers. เกรเดียนโคซีแคนต์ผกผัน Name for the inverse cosecant function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกโคซีแคนต์ Name for the hyperbolic cosecant function. Used by screen readers. ไฮเพอร์โบลิกโคซีแคนต์ผกผัน Name for the inverse hyperbolic cosecant function. Used by screen readers. องศาโคแทนเจนต์ Name for the cotangent function in degrees mode. Used by screen readers. เรเดียนโคแทนเจนต์ Name for the cotangent function in radians mode. Used by screen readers. เกรเดียนโคแทนเจนต์ Name for the cotangent function in gradians mode. Used by screen readers. องศาโคแทนเจนต์ผกผัน Name for the inverse cotangent function in degrees mode. Used by screen readers. เรเดียนโคแทนเจนต์ผกผัน Name for the inverse cotangent function in radians mode. Used by screen readers. เกรเดียนโคแทนเจนต์ผกผัน Name for the inverse cotangent function in gradians mode. Used by screen readers. ไฮเพอร์โบลิกโคแทนเจนต์ Name for the hyperbolic cotangent function. Used by screen readers. ไฮเพอร์โบลิกโคแทนเจนต์ผกผัน Name for the inverse hyperbolic cotangent function. Used by screen readers. รากที่สาม Name for the cube root function. Used by screen readers. ล็อกฐาน Name for the logbasey function. Used by screen readers. ค่าสัมบูรณ์ Name for the absolute value function. Used by screen readers. Shift ซ้าย Name for the programmer function that shifts bits to the left. Used by screen readers. Shift ขวา Name for the programmer function that shifts bits to the right. Used by screen readers. แฟกทอเรียล Name for the factorial function. Used by screen readers. องศา นาที วินาที Name for the degree minute second (dms) function. Used by screen readers. ลอการิทึมธรรมชาติ Name for the natural log (ln) function. Used by screen readers. สี่เหลี่ยมจัตุรัส Name for the square function. Used by screen readers. รากที่ y Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". หมวดหมู่ %1 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". ข้อตกลงการใช้บริการของ Microsoft Displayed on a link to the Microsoft Services Agreement in the about this app information พยอง An abbreviation for a measurement unit of area. พยอง A measurement unit for area. ตั้งแต่ From Date Header for AddSubtract Date Picker เลื่อนผลการคำนวณไปทางซ้าย Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. เลื่อนผลการคำนวณไปทางขวา Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. ไม่สามารถคำนวณได้ Text displayed when the application is not able to do a calculation ล็อกฐาน Y Screen reader prompt for the logBaseY button ตรีโกณมิติ Displayed on the button that contains a flyout for the trig functions in scientific mode. ฟังก์ชัน Displayed on the button that contains a flyout for the general functions in scientific mode. อสมการ Displayed on the button that contains a flyout for the inequality functions. อสมการ Screen reader prompt for the Inequalities button แบบบิต Displayed on the button that contains a flyout for the bitwise functions in programmer mode. การเลื่อนบิต Displayed on the button that contains a flyout for the bit shift functions in programmer mode. ฟังก์ชันผกผัน Screen reader prompt for the shift button in the trig flyout in scientific mode. ฟังก์ชันไฮเพอร์โบลิก Screen reader prompt for the Calculator button HYP in the scientific flyout keypad ซีแคนต์ Screen reader prompt for the Calculator button sec in the scientific flyout keypad ไฮเพอร์โบลิกซีแคนต์ Screen reader prompt for the Calculator button sech in the scientific flyout keypad อาร์กซีแคนต์ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad ไฮเพอร์โบลิกอาร์กซีแคนต์ Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad โคซีแคนต์ Screen reader prompt for the Calculator button csc in the scientific flyout keypad ไฮเพอร์โบลิกโคซีแคนต์ Screen reader prompt for the Calculator button csch in the scientific flyout keypad อาร์กโคซีแคนต์ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad ไฮเพอร์โบลิกอาร์กโคซีแคนต์ Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad โคแทนเจนต์ Screen reader prompt for the Calculator button cot in the scientific flyout keypad ไฮเพอร์โบลิกโคแทนเจนต์ Screen reader prompt for the Calculator button coth in the scientific flyout keypad อาร์กโคแทนเจนต์ Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad ไฮเพอร์โบลิกอาร์กโคแทนเจนต์ Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad พื้น Screen reader prompt for the Calculator button floor in the scientific flyout keypad เพดาน Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad แบบสุ่ม Screen reader prompt for the Calculator button random in the scientific flyout keypad ค่าสัมบูรณ์ Screen reader prompt for the Calculator button abs in the scientific flyout keypad จำนวนของออยเลอร์ Screen reader prompt for the Calculator button e in the scientific flyout keypad สองยกกำลัง Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad แนนด์ Screen reader prompt for the Calculator button nand in the scientific flyout keypad แนนด์ Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. นอร์ Screen reader prompt for the Calculator button nor in the scientific flyout keypad นอร์ Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. หมุนไปทางซ้ายแบบมีตัวทด Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad หมุนไปทางขวาแบบมีตัวทด Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad Shift ซ้าย Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad การเลื่อนไปทางซ้าย Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. Shift ขวา Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad การเลื่อนไปทางขวา Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. การเลื่อนเชิงคำนวณ Label for a radio button that toggles arithmetic shift behavior for the shift operations. การเลื่อนแบบตรรกะ Label for a radio button that toggles logical shift behavior for the shift operations. การเลื่อนวนแบบหมุน Label for a radio button that toggles rotate circular behavior for the shift operations. การเลื่อนวนแบบหมุนผ่านตัวทด Label for a radio button that toggles rotate circular with carry behavior for the shift operations. รากที่สาม Screen reader prompt for the cube root button on the scientific operator keypad ตรีโกณมิติ Screen reader prompt for the square root button on the scientific operator keypad ฟังก์ชัน Screen reader prompt for the square root button on the scientific operator keypad แบบบิต Screen reader prompt for the square root button on the scientific operator keypad การเลื่อนบิต Screen reader prompt for the square root button on the scientific operator keypad แผงตัวดำเนินการทางวิทยาศาสตร์ Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad แผงตัวดำเนินการของนักเขียนโปรแกรม Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad บิตที่สำคัญมากที่สุด Used to describe the last bit of a binary number. Used in bit flip การสร้างกราฟ Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. ลงจุด Screen reader prompt for the plot button on the graphing calculator operator keypad รีเฟรชมุมมองโดยอัตโนมัติ (Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. มุมมองกราฟ Screen reader prompt for the graph view button. ปรับให้พอดีโดยอัตโนมัติ Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set การปรับปรุงด้วยตนเอง Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set มุมมองกราฟถูกรีเซ็ต Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph ซูมเข้า (Ctrl + เครื่องหมายบวก) This is the tool tip automation name for the Calculator zoom in button. ขยาย Screen reader prompt for the zoom in button. ซูมออก (Ctrl + เครื่องหมายลบ) This is the tool tip automation name for the Calculator zoom out button. ย่อ Screen reader prompt for the zoom out button. เพิ่มสมการ Placeholder text for the equation input button ไม่สามารถแชร์ได้ในเวลานี้ If there is an error in the sharing action will display a dialog with this text. ตกลง Used on the dismiss button of the share action error dialog. ดูสิ่งที่ฉันได้เขียนกราฟโดยใช้ 'เครื่องคิดเลขของ Windows' Sent as part of the shared content. The title for the share. สมการ Header that appears over the equations section when sharing ตัวแปร Header that appears over the variables section when sharing รูปกราฟที่มีสมการ Alt text for the graph image when output via Share ตัวแปร Header text for variables area ขั้นตอน Label text for the step text box ต่ำสุด Label text for the min text box สูงสุด Label text for the max text box สี Label for the Line Color section of the style picker สไตล์ Label for the Line Style section of the style picker การวิเคราะห์ฟังก์ชัน Title for KeyGraphFeatures Control ฟังก์ชันไม่มีเส้นกำกับแนวนอน Message displayed when the graph does not have any horizontal asymptotes ฟังก์ชันไม่มีจุดเปลี่ยนเว้า Message displayed when the graph does not have any inflection points ฟังก์ชันไม่มีจุดสูงสุด Message displayed when the graph does not have any maxima ฟังก์ชันไม่มีจุดต่ำสุด Message displayed when the graph does not have any minima ค่าคงที่ String describing constant monotonicity of a function ลดลง String describing decreasing monotonicity of a function ไม่สามารถระบุภาวะทางเดียวของฟังก์ชันได้ Error displayed when monotonicity cannot be determined เพิ่มขึ้น String describing increasing monotonicity of a function ไม่รู้จักภาวะทางเดียวของฟังก์ชัน Error displayed when monotonicity is unknown ฟังก์ชันไม่มีเส้นกำกับแนวเฉียง Message displayed when the graph does not have any oblique asymptotes ไม่สามารถกำหนดพาริตี้ของฟังก์ชันได้ Error displayed when parity is cannot be determined ฟังก์ชันเป็นเลขคู่ Message displayed with the function parity is even ฟังก์ชันไม่ใช่เลขคู่และไม่ใช่เลขคี่ Message displayed with the function parity is neither even nor odd ฟังก์ชันเป็นเลขคี่ Message displayed with the function parity is odd ไม่รู้จักพาริตี้ของฟังก์ชัน Error displayed when parity is unknown ไม่รองรับภาวะเป็นคาบสำหรับฟังก์ชันนี้ Error displayed when periodicity is not supported ไม่ใช่ฟังก์ชันเป็นคาบ Message displayed with the function periodicity is not periodic ไม่รู้จักภาวะเป็นคาบของฟังก์ชัน Message displayed with the function periodicity is unknown คุณลักษณะเหล่านี้ซับซ้อนเกินกว่าที่ เครื่องคิดเลข จะคำนวณได้: Error displayed when analysis features cannot be calculated ฟังก์ชันไม่มีเส้นกำกับแนวตั้ง Message displayed when the graph does not have any vertical asymptotes ฟังก์ชันไม่มีระยะตัดแกน X Message displayed when the graph does not have any x-intercepts ฟังก์ชันไม่มีระยะตัดแกน Y Message displayed when the graph does not have any y-intercepts โดเมน Title for KeyGraphFeatures Domain Property เส้นกำกับแนวนอน Title for KeyGraphFeatures Horizontal aysmptotes Property จุดเปลี่ยนเว้า Title for KeyGraphFeatures Inflection points Property ไม่รองรับการวิเคราะห์สำหรับฟังก์ชันนี้ Error displayed when graph analysis is not supported or had an error. รองรับการวิเคราะห์สำหรับฟังก์ชันในรูปแบบ f(x) เท่านั้น ตัวอย่าง: y=x Error displayed when graph analysis detects the function format is not f(x). สูงสุด Title for KeyGraphFeatures Maxima Property ต่ำสุด Title for KeyGraphFeatures Minima Property ภาวะทางเดียว Title for KeyGraphFeatures Monotonicity Property เส้นกำกับแนวเฉียง Title for KeyGraphFeatures Oblique asymptotes Property พาริตี้ Title for KeyGraphFeatures Parity Property คาบ Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. พิสัย Title for KeyGraphFeatures Range Property เส้นกำกับแนวตั้ง Title for KeyGraphFeatures Vertical asymptotes Property ระยะตัดแกน X Title for KeyGraphFeatures XIntercept Property ระยะตัดแกน Y Title for KeyGraphFeatures YIntercept Property ไม่สามารถดำเนินการวิเคราะห์สำหรับฟังก์ชันได้ ไม่สามารถคำนวณโดเมนสำหรับฟังก์ชันนี้ได้ Error displayed when Domain is not returned from the analyzer. ไม่สามารถคำนวณพิสัยสำหรับฟังก์ชันนี้ได้ Error displayed when Range is not returned from the analyzer. ยาวเกิน (จำนวนใหญ่เกินไป) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. จำเป็นต้องใช้โหมดเรเดียนเพื่อเขียนกราฟสมการนี้ Error that occurs during graphing when radians is required. ฟังก์ชันนี้ซับซ้อนเกินกว่าจะเขียนกราฟได้ Error that occurs during graphing when the equation is too complex. จำเป็นต้องใช้โหมดองศาเพื่อเขียนกราฟฟังก์ชันนี้ Error that occurs during graphing when degrees is required ฟังก์ชันแฟกทอเรียลมีอาร์กิวเมนต์ที่ไม่ถูกต้อง Error that occurs during graphing when a factorial function has an invalid argument. ฟังก์ชันแฟกทอเรียลมีอาร์กิวเมนต์ที่ใหญ่เกินกว่าจะเขียนกราฟได้ Error that occurs during graphing when a factorial has a large n Modulo สามารถใช้ได้กับจำนวนเต็มเท่านั้น Error that occurs during graphing when modulo is used with a float. สมการไม่มีวิธีแก้ไข Error that occurs during graphing when the equation has no solution. ไม่สามารถหารด้วยศูนย์ได้ Error that occurs during graphing when a divison by zero occurs. สมการมีเงื่อนไขเชิงตรรกะที่ไม่สามารถใช้ร่วมกันได้ Error that occurs during graphing when mutually exclusive conditions are used. สมการไม่อยู่ในโดเมน Error that occurs during graphing when the equation is out of domain. การสร้างกราฟสมการนี้ไม่ได้รับการสนับสนุน Error that occurs during graphing when the equation is not supported. สมการไม่มีวงเล็บเปิด Error that occurs during graphing when the equation is missing a ( สมการไม่มีวงเล็บปิด Error that occurs during graphing when the equation is missing a ) มีจุดทศนิยมมากเกินไปในตัวเลข Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 จุดทศนิยมไม่มีตัวเลข Error that occurs during graphing with a decimal point without digits สิ้นสุดนิพจน์โดยไม่คาดคิด Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* มีอักขระที่ไม่คาดคิดในนิพจน์ Error that occurs during graphing when there is an unexpected token. มีอักขระที่ไม่ถูกต้องในนิพจน์ Error that occurs during graphing when there is an invalid token. มีเครื่องหมายเท่ากับมากเกินไป Error that occurs during graphing when there are too many equals. ฟังก์ชันต้องมีตัวแปร x หรือ y อย่างน้อยหนึ่งตัว Error that occurs during graphing when the equation is missing x or y. นิพจน์ไม่ถูกต้อง Error that occurs during graphing when an invalid syntax is used. นิพจน์ว่างเปล่า Error that occurs during graphing when the expression is empty ใช้เท่ากับโดยไม่มีสมการ Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) ไม่มีวงเล็บหลังจากชื่อฟังก์ชัน Error that occurs during graphing when parenthesis are missing after a function. การดำเนินการทางคณิตศาสตร์มีจำนวนพารามิเตอร์ที่ไม่ถูกต้อง Error that occurs during graphing when a function has the wrong number of parameters ชื่อตัวแปรไม่ถูกต้อง Error that occurs during graphing when a variable name is invalid. สมการไม่มีวงเล็บเหลี่ยมเปิด Error that occurs during graphing when a { is missing สมการไม่มีวงเล็บเหลี่ยมปิด Error that occurs during graphing when a } is missing. "i" และ "I" ไม่สามารถใช้เป็นชื่อตัวแปรได้ Error that occurs during graphing when i or I is used. ไม่สามารถเขียนกราฟสมการได้ General error that occurs during graphing. ไม่สามารถแก้ไขตัวเลขสำหรับฐานที่กำหนด Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). ฐานต้องมากกว่า 2 และน้อยกว่า 36 Error that occurs during graphing when the base is out of range. การดำเนินการทางคณิตศาสตร์ต้องใช้พารามิเตอร์ใดพารามิเตอร์หนึ่งเป็นตัวแปร Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. สมการคือการผสมตัวถูกดำเนินการเชิงตรรกะและสเกลา Error that occurs during graphing when operands are mixed. Such as true and 1. ไม่สามารถใช้ x หรือ y ในขีดจำกัดบนหรือขีดจำกัดล่าง Error that occurs during graphing when x or y is used in integral upper limits. ไม่สามารถใช้ x หรือ y ในจุดของขีดจำกัดได้ Error that occurs during graphing when x or y is used in the limit point. ไม่สามารถใช้ค่าอนันต์เชิงซ้อนได้ Error that occurs during graphing when complex infinity is used ไม่สามารถใช้จำนวนเชิงซ้อนในอสมการได้ Error that occurs during graphing when complex numbers are used in inequalities. กลับไปยังรายการฟังก์ชัน This is the tooltip for the back button in the equation analysis page in the graphing calculator กลับไปยังรายการฟังก์ชัน This is the automation name for the back button in the equation analysis page in the graphing calculator วิเคราะห์ฟังก์ชัน This is the tooltip for the analyze function button วิเคราะห์ฟังก์ชัน This is the automation name for the analyze function button วิเคราะห์ฟังก์ชัน This is the text for the for the analyze function context menu command ลบสมการออก This is the tooltip for the graphing calculator remove equation buttons ลบสมการออก This is the automation name for the graphing calculator remove equation buttons ลบสมการออก This is the text for the for the remove equation context menu command แชร์ This is the automation name for the graphing calculator share button. แชร์ This is the tooltip for the graphing calculator share button. เปลี่ยนรูปแบบสมการ This is the tooltip for the graphing calculator equation style button เปลี่ยนรูปแบบสมการ This is the automation name for the graphing calculator equation style button เปลี่ยนรูปแบบสมการ This is the text for the for the equation style context menu command แสดงสมการ This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. ซ่อนสมการ This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. แสดงสมการ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. ซ่อนสมการ %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. หยุดติดตาม This is the tooltip/automation name for the graphing calculator stop tracing button เริ่มติดตาม This is the tooltip/automation name for the graphing calculator start tracing button หน้าต่างการดูกราฟ, แกน x bounded โดย %1 และ %2, แกน y bounded ตาม %3 และ %4 การแสดงสมการ %5 {Locked="%1","%2", "%3", "%4", "%5"}. กำหนดค่าแถบเลื่อน This is the tooltip text for the slider options button in Graphing Calculator กำหนดค่าแถบเลื่อน This is the automation name text for the slider options button in Graphing Calculator สลับเป็นโหมดสมการ Used in Graphing Calculator to switch the view to the equation mode สลับเป็นโหมดกราฟ Used in Graphing Calculator to switch the view to the graph mode สลับเป็นโหมดสมการ Used in Graphing Calculator to switch the view to the equation mode โหมดปัจจุบันเป็นโหมดสมการ Announcement used in Graphing Calculator when switching to the equation mode โหมดปัจจุบันเป็นโหมดกราฟ Announcement used in Graphing Calculator when switching to the graph mode หน้าต่าง Heading for window extents on the settings องศา Degrees mode on settings page เกรเดียน Gradian mode on settings page เรเดียน Radians mode on settings page หน่วย Heading for Unit's on the settings รีเซ็ตมุมมอง Hyperlink button to reset the view of the graph ค่าสูงสุดของ X X maximum value header ค่าต่ำสุดของ X X minimum value header ค่าสูงสุดของ Y Y Maximum value header ค่าต่ำสุดของ Y Y minimum value header ตัวเลือกกราฟ This is the tooltip text for the graph options button in Graphing Calculator ตัวเลือกกราฟ This is the automation name text for the graph options button in Graphing Calculator ตัวเลือกกราฟ Heading for the Graph options flyout in Graphing mode. ตัวเลือกตัวแปร Screen reader prompt for the variable settings toggle button สลับตัวเลือกตัวแปร Tool tip for the variable settings toggle button ความหนาของเส้น Heading for the Graph options flyout in Graphing mode. ตัวเลือกเส้น Heading for the equation style flyout in Graphing mode. ความกว้างของเส้นขนาดเล็ก Automation name for line width setting ความกว้างของเส้นขนาดปานกลาง Automation name for line width setting ความกว้างของเส้นขนาดใหญ่ Automation name for line width setting ความกว้างของเส้นขนาดใหญ่พิเศษ Automation name for line width setting ใส่นิพจน์ this is the placeholder text used by the textbox to enter an equation คัดลอก Copy menu item for the graph context menu ตัด Cut menu item from the Equation TextBox คัดลอก Copy menu item from the Equation TextBox วาง Paste menu item from the Equation TextBox เลิกทำ Undo menu item from the Equation TextBox เลือกทั้งหมด Select all menu item from the Equation TextBox การป้อนข้อมูลฟังก์ชัน The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. การป้อนข้อมูลฟังก์ชัน The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. แผงป้อนข้อมูลฟังก์ชัน The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. แผงตัวแปร The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. รายการตัวแปร The automation name for the Variable ListView that is shown when Calculator is in graphing mode. ข้อมูลในรายการ %1 ของตัวแปร The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. กล่องข้อความค่าของตัวแปร The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. แถบเลื่อนค่าของตัวแปร The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. กล่องข้อความค่าต่ำสุดของตัวแปร The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. กล่องข้อความค่าขั้นตอนของตัวแปร The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. กล่องข้อความค่าสูงสุดของตัวแปร The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. สไตล์เส้นทึบ Name of the solid line style for a graphed equation สไตล์เส้นจุด Name of the dotted line style for a graphed equation สไตล์เส้นประ Name of the dashed line style for a graphed equation น้ำเงินกรมท่า Name of color in the color picker ฟองทะเล Name of color in the color picker ม่วง Name of color in the color picker เขียว Name of color in the color picker สีเขียวอ่อน Name of color in the color picker เขียวเข้ม Name of color in the color picker ดำถ่าน Name of color in the color picker แดง Name of color in the color picker ม่วงพลัมอ่อน Name of color in the color picker ม่วงอมชมพู Name of color in the color picker เหลืองทอง Name of color in the color picker ส้มอ่อน Name of color in the color picker น้ำตาล Name of color in the color picker สีดำ Name of color in the color picker สีขาว Name of color in the color picker สี 1 Name of color in the color picker สี 2 Name of color in the color picker สี 3 Name of color in the color picker สี 4 Name of color in the color picker ธีมกราฟ Graph settings heading for the theme options สว่างเสมอ Graph settings option to set graph to light theme ตรงกับธีมของแอป Graph settings option to set graph to match the app theme ธีม This is the automation name text for the Graph settings heading for the theme options สว่างเสมอ This is the automation name text for the Graph settings option to set graph to light theme ตรงกับธีมของแอป This is the automation name text for the Graph settings option to set graph to match the app theme นำฟังก์ชันออกแล้ว Announcement used in Graphing Calculator when a function is removed from the function list กล่องสมการการวิเคราะห์ฟังก์ชัน This is the automation name text for the equation box in the function analysis panel เท่ากับ Screen reader prompt for the equal button on the graphing calculator operator keypad น้อยกว่า Screen reader prompt for the Less than button น้อยกว่าหรือเท่ากับ Screen reader prompt for the Less than or equal button เท่ากับ Screen reader prompt for the Equal button มากกว่าหรือเท่ากับ Screen reader prompt for the Greater than or equal button มากกว่า Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad ส่ง Screen reader prompt for the submit button on the graphing calculator operator keypad การวิเคราะห์ฟังก์ชัน Screen reader prompt for the function analysis grid ตัวเลือกกราฟ Screen reader prompt for the graph options panel ประวัติและรายการความจำ Automation name for the group of controls for history and memory lists. รายการความจำ Automation name for the group of controls for memory list. ล้างช่วงเวลาประวัติ %1 แล้ว {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". เครื่องคิดเลขอยู่ด้านบนเสมอ Announcement to indicate calculator window is always shown on top. เครื่องคิดเลขกลับไปเป็นมุมมองแบบเต็ม Announcement to indicate calculator window is now back to full view. เลือก การเลื่อนเชิงคำนวณ แล้ว Label for a radio button that toggles arithmetic shift behavior for the shift operations. เลือก การเลื่อนเชิงตรรกะ แล้ว Label for a radio button that toggles logical shift behavior for the shift operations. เลือก หมุนการเลื่อนวน แล้ว Label for a radio button that toggles rotate circular behavior for the shift operations. เลือก หมุนผ่านการเลื่อนวน แล้ว Label for a radio button that toggles rotate circular with carry behavior for the shift operations. การตั้งค่า Header text of Settings page ลักษณะที่ปรากฏ Subtitle of appearance setting on Settings page ธีมแอป Title of App theme expander เลือกธีมแอปที่จะแสดง Description of App theme expander สว่าง Lable for light theme option มืด Lable for dark theme option ใช้การตั้งค่าระบบ Lable for the app theme option to use system setting ย้อนกลับ Screen reader prompt for the Back button in title bar to back to main page เพจการตั้งค่า Announcement used when Settings page is opened เปิดเมนูบริบทสําหรับการดําเนินการที่พร้อมใช้งาน Screen reader prompt for the context menu of the expression box ตกลง The text of OK button to dismiss an error dialog. ไม่สามารถคืนค่าสแนปช็อตนี้ได้ The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/tr-TR/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Geçersiz giriş Error message shown when the input makes a function fail, like log(-1) Sonuç tanımsız Error message shown when there's no possible value for a function. Bellek yetersiz Error message shown when we run out of memory during a calculation. Taşma Error message shown when there's an overflow during the calculation. Sonuç tanımlanmadı Same as 101 Sonuç tanımlanmadı Same 101 Taşma Same as 107 Taşma Same 107 Sıfıra bölünemez Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/tr-TR/Resources.resw ================================================ [File too large to display: 226.6 KB] ================================================ FILE: src/Calculator/Resources/uk-UA/CEngineStrings.resw ================================================ [File too large to display: 7.1 KB] ================================================ FILE: src/Calculator/Resources/uk-UA/Resources.resw ================================================ [File too large to display: 240.2 KB] ================================================ FILE: src/Calculator/Resources/vi-VN/CEngineStrings.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 Mục nhập không hợp lệ Error message shown when the input makes a function fail, like log(-1) Kết quả không xác định Error message shown when there's no possible value for a function. Không đủ bộ nhớ Error message shown when we run out of memory during a calculation. Tràn ra Error message shown when there's an overflow during the calculation. Kết quả không được xác định Same as 101 Kết quả không được xác định Same 101 Tràn ra Same as 107 Tràn ra Same 107 Không thể chia cho không Error string shown when a divide by zero condition happens during the calculation ================================================ FILE: src/Calculator/Resources/vi-VN/Resources.resw ================================================ [File too large to display: 229.8 KB] ================================================ FILE: src/Calculator/Resources/zh-CN/CEngineStrings.resw ================================================ [File too large to display: 6.9 KB] ================================================ FILE: src/Calculator/Resources/zh-CN/Resources.resw ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 计算器 {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the title of the official application when published through Windows Store. 计算器 [Dev] {@Appx_ShortDisplayName@}{StringCategory="Feature Title"} This is the name of the application when built by a user via GitHub. We use a different name to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. Windows 计算器 {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. Windows 计算器 [Dev] {@Appx_DisplayName@}{StringCategory="Feature Title"} Name that shows up in the app store. It contains "Windows" to distinguish it from 3rd party calculator apps. This is the the version of the name used when the app is built by a user via GitHub. 计算器 {@Appx_Description@} This description is used for the official application when published through Windows Store. 计算器 [Dev] {@Appx_Description@} This is the description of the application when built by a user via GitHub. We use a different description to make it easier for users to distinguish the apps when both this version and the Store version are installed on the same device. 复制 Copy context menu string 粘贴 Paste context menu string 约等于 The text that shows at the bottom of the converter to head the supplementary results. Indicates that the main result is approximately equal to the supplementary results. %1,值 %2 {Locked="%1","%2"}. String used in automation name for each bit in bit flip. %1 will be replaced by the position of the bit (1st bit, 3rd bit), %2 by a binary value (1 or 0) %1 位 {Locked="%1"}. Sub-string used to indicate the position of a bit (e.g. 1st bit, 2nd bit...) 第 63 Sub-string used in automation name for 63 bit in bit flip 第 62 Sub-string used in automation name for 62 bit in bit flip 第 61 Sub-string used in automation name for 61 bit in bit flip 第 60 Sub-string used in automation name for 60 bit in bit flip 第 59 Sub-string used in automation name for 59 bit in bit flip 第 58 Sub-string used in automation name for 58 bit in bit flip 第 57 Sub-string used in automation name for 57 bit in bit flip 第 56 Sub-string used in automation name for 56 bit in bit flip 第 55 Sub-string used in automation name for 55 bit in bit flip 第 54 Sub-string used in automation name for 54 bit in bit flip 第 53 Sub-string used in automation name for 53 bit in bit flip 第 52 Sub-string used in automation name for 52 bit in bit flip 第 51 Sub-string used in automation name for 51 bit in bit flip 第 50 Sub-string used in automation name for 50 bit in bit flip 第 49 Sub-string used in automation name for 49 bit in bit flip 第 48 Sub-string used in automation name for 48 bit in bit flip 第 47 Sub-string used in automation name for 47 bit in bit flip 第 46 Sub-string used in automation name for 46 bit in bit flip 第 45 Sub-string used in automation name for 45 bit in bit flip 第 44 Sub-string used in automation name for 44 bit in bit flip 第 43 Sub-string used in automation name for 43 bit in bit flip 第 42 Sub-string used in automation name for 42 bit in bit flip 第 41 Sub-string used in automation name for 41 bit in bit flip 第 40 Sub-string used in automation name for 40 bit in bit flip 第 39 Sub-string used in automation name for 39 bit in bit flip 第 38 Sub-string used in automation name for 38 bit in bit flip 第 37 Sub-string used in automation name for 37 bit in bit flip 第 36 Sub-string used in automation name for 36 bit in bit flip 第 35 Sub-string used in automation name for 35 bit in bit flip 第 34 Sub-string used in automation name for 34 bit in bit flip 第 33 Sub-string used in automation name for 33 bit in bit flip 第 32 Sub-string used in automation name for 32 bit in bit flip 第 31 Sub-string used in automation name for 31 bit in bit flip 第 30 Sub-string used in automation name for 30 bit in bit flip 第 29 Sub-string used in automation name for 29 bit in bit flip 第 28 Sub-string used in automation name for 28 bit in bit flip 第 27 Sub-string used in automation name for 27 bit in bit flip 第 26 Sub-string used in automation name for 26 bit in bit flip 第 25 Sub-string used in automation name for 25 bit in bit flip 第 24 Sub-string used in automation name for 24 bit in bit flip 第 23 Sub-string used in automation name for 23 bit in bit flip 第 22 Sub-string used in automation name for 22 bit in bit flip 第 21 Sub-string used in automation name for 21 bit in bit flip 第 20 Sub-string used in automation name for 20 bit in bit flip 第 19 Sub-string used in automation name for 19 bit in bit flip 第 18 Sub-string used in automation name for 18 bit in bit flip 第 17 Sub-string used in automation name for 17 bit in bit flip 第 16 Sub-string used in automation name for 16 bit in bit flip 第 15 Sub-string used in automation name for 15 bit in bit flip 第 14 Sub-string used in automation name for 14 bit in bit flip 第 13 Sub-string used in automation name for 13 bit in bit flip 第 12 Sub-string used in automation name for 12 bit in bit flip 第 11 Sub-string used in automation name for 11 bit in bit flip 第 10 Sub-string used in automation name for 10 bit in bit flip 第 9 Sub-string used in automation name for 9 bit in bit flip 第 8 Sub-string used in automation name for 8 bit in bit flip 第 7 Sub-string used in automation name for 7 bit in bit flip 第 6 Sub-string used in automation name for 6 bit in bit flip 第 5 Sub-string used in automation name for 5 bit in bit flip 第 4 Sub-string used in automation name for 4 bit in bit flip 第 3 Sub-string used in automation name for 3 bit in bit flip 第 2 Sub-string used in automation name for 2 bit in bit flip 第 1 Sub-string used in automation name for 1 bit in bit flip 最低有效位 Used to describe the first bit of a binary number. Used in bit flip 打开记忆浮出控件 This is the automation name and label for the memory button when the memory flyout is closed. 关闭记忆浮出控件 This is the automation name and label for the memory button when the memory flyout is open. 始终置顶 This is the tool tip automation name for the always-on-top button when out of always-on-top mode. 返回完整视图 This is the tool tip automation name for the always-on-top button when in always-on-top mode. 记忆 This is the tool tip automation name for the memory button. 历史记录(Ctrl+H) This is the tool tip automation name for the history button. 位切换键盘 This is the tool tip automation name for the bitFlip button. 全键盘 This is the tool tip automation name for the numberPad button. 清除所有记忆(Ctrl+L) This is the tool tip automation name for the Clear Memory (MC) button. 记忆 The text that shows as the header for the memory list 记忆 The automation name for the Memory pivot item that is shown when Calculator is in wide layout. 历史记录 The text that shows as the header for the history list 历史记录 The automation name for the History pivot item that is shown when Calculator is in wide layout. 转换器 Label for a control that activates the unit converter mode. 科学 Label for a control that activates scientific mode calculator layout 标准 Label for a control that activates standard mode calculator layout. 转换器模式 Screen reader prompt for a control that activates the unit converter mode. 科学模式 Screen reader prompt for a control that activates scientific mode calculator layout 标准模式 Screen reader prompt for a control that activates standard mode calculator layout. 清除所有历史记录 "ClearHistory" used on the calculator history pane that stores the calculation history. 清除所有历史记录 This is the tool tip automation name for the Clear History button. 隐藏 "HideHistory" used on the calculator history pane that stores the calculation history. 标准 The text that shows in the dropdown navigation control in snapped mode when standard calculator mode is selected. 科学 The text that shows in the dropdown navigation control in snapped mode when scientific calculator mode is selected. 程序员 The text that shows in the dropdown navigation control in snapped mode when programmer calculator mode is selected. 转换器 The text that shows in the dropdown navigation control for the converter group. The previous key for this was "ConverterMode.Text". 计算器 The text that shows in the dropdown navigation control for the calculator group. 转换器 The text that shows in the dropdown navigation control for the converter group in upper case. The previous key for this was "ConverterMode.Text". 计算器 The text that shows in the dropdown navigation control for the calculator group in upper case. 转换器 Pluralized version of the converter group text, used for the screen reader prompt. 计算器 Pluralized version of the calculator group text, used for the screen reader prompt. 显示为 %1 {Locked="%1"}. Screen reader prompt for the Calculator results text block. %1 = Localized display value, e.g. "50". 表达式为 %1,当前输入为 %2 {Locked="%1","%2"}. Screen reader prompt for the Calculator always-on-top expression. %1 = Expression, e.g. "50 + 2 - 60 +", %2 = Localized display value, e.g. "50". 显示为 %1 磅 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Display is 7 point". "point" should be localized to the locale's appropriate decimal separator. 表达式为 %1 {Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +". 显示复制到剪贴板的值 Screen reader prompt for the Calculator display copy button, when the button is invoked. 历史记录 Screen reader prompt for the history flyout 记忆 Screen reader prompt for the memory flyout 十六进制 %1 {Locked="%1"}. Screen reader prompt for the hexadecimal value in Programmer mode. %1 = the localized hexadecimal value, e.g. "21B4 8F73". 十进制 %1 {Locked="%1"}. Screen reader prompt for the decimal value in Programmer mode. %1 = the localized decimal value, e.g. "5,732". 八进制 %1 {Locked="%1"}. Screen reader prompt for the octal value in Programmer mode. %1 = the localized octal value, e.g. "155 174". 二进制 %1 {Locked="%1"}. Screen reader prompt for the binary value in Programmer mode. %1 = the localized binary value, e.g. "0010 1011". 清除所有历史记录 Screen reader prompt for the Calculator History Clear button 已清除历史记录 Screen reader prompt for the Calculator History Clear button, when the button is invoked. 隐藏历史记录 Screen reader prompt for the Calculator History Hide button 打开历史记录浮出控件 Screen reader prompt for the Calculator History button, when the flyout is closed. 关闭历史记录浮出控件 Screen reader prompt for the Calculator History button, when the flyout is open. 记忆存储 Screen reader prompt for the Calculator Memory button 记忆存储(Ctrl+M) This is the tool tip automation name for the Memory Store (MS) button. 清除所有记忆 Screen reader prompt for the Calculator Clear Memory button 记忆已清除 Screen reader prompt for the Calculator Clear Memory button, when the button is invoked. 记忆调用 Screen reader prompt for the Calculator Memory Recall button 记忆调用(Ctrl+R) This is the tool tip automation name for the Memory Recall (MR) button. 记忆加法 Screen reader prompt for the Calculator Memory Add button 记忆加法(Ctrl+P) This is the tool tip automation name for the Memory Add (M+) button. 记忆减法 Screen reader prompt for the Calculator Memory Subtract button 记忆减法(Ctrl+Q) This is the tool tip automation name for the Memory Subtract (M-) button. 清除记忆项 Screen reader prompt for the Calculator Clear Memory button 清除记忆项 This is the tool tip automation name for the Clear Memory Item (MC) button in the Memory list. 增加到记忆项 Screen reader prompt for the Calculator Memory Add button in the Memory list 增加到记忆项 This is the tool tip automation name for the Calculator Memory Add button in the Memory list 从记忆项中减去 Screen reader prompt for the Calculator Memory Subtract button in the Memory list 从记忆项中减去 This is the tool tip automation name for the Calculator Memory Subtract button in the Memory list 清除记忆项 Screen reader prompt for the Calculator Clear Memory button 清除记忆项 Text string for the Calculator Clear Memory option in the Memory list context menu 增加到记忆项 Screen reader prompt for the Calculator Memory Add swipe button in the Memory list 增加到记忆项 Text string for the Calculator Memory Add option in the Memory list context menu 从记忆项中减去 Screen reader prompt for the Calculator Memory Subtract swipe button in the Memory list 从记忆项中减去 Text string for the Calculator Memory Subtract option in the Memory list context menu 删除 Text string for the Calculator Delete swipe button in the History list 复制 Text string for the Calculator Copy option in the History list context menu 删除 Text string for the Calculator Delete option in the History list context menu 删除历史记录项 Screen reader prompt for the Calculator Delete swipe button in the History list 删除历史记录项 Screen reader prompt for the Calculator Delete option in the History list context menu Backspace Screen reader prompt for the Calculator Backspace button 0 Screen reader prompt for the Calculator number "0" button 1 Screen reader prompt for the Calculator number "1" button Screen reader prompt for the Calculator number "0" button Screen reader prompt for the Calculator number "1" button Screen reader prompt for the Calculator number "2" button Screen reader prompt for the Calculator number "3" button Screen reader prompt for the Calculator number "4" button Screen reader prompt for the Calculator number "5" button Screen reader prompt for the Calculator number "6" button Screen reader prompt for the Calculator number "7" button Screen reader prompt for the Calculator number "8" button Screen reader prompt for the Calculator number "9" button A Screen reader prompt for the Calculator number "A" button B Screen reader prompt for the Calculator number "B" button C Screen reader prompt for the Calculator number "C" button D Screen reader prompt for the Calculator number "D" button E Screen reader prompt for the Calculator number "E" button F Screen reader prompt for the Calculator number "F" button Screen reader prompt for the Calculator And button Screen reader prompt for the Calculator Or button Screen reader prompt for the Calculator Not button 左边旋转 Screen reader prompt for the Calculator ROL button 右边旋转 Screen reader prompt for the Calculator ROR button 向左移位 Screen reader prompt for the Calculator LSH button 向右移位 Screen reader prompt for the Calculator RSH button 异或 Screen reader prompt for the Calculator XOR button 四字切换 Screen reader prompt for the Calculator qword button. Should read as "Quadruple word toggle button". 双字切换 Screen reader prompt for the Calculator dword button. Should read as "Double word toggle button". 单字切换 Screen reader prompt for the Calculator word button. Should read as "Word toggle button". 字节切换 Screen reader prompt for the Calculator byte button. Should read as "Byte toggle button". 比特绷板键盘 Screen reader prompt for the Calculator bitFlip button 全键盘 Screen reader prompt for the Calculator numberPad button 十进制分隔符 Screen reader prompt for the "." button 清除条目 Screen reader prompt for the "CE" button 清除 Screen reader prompt for the "C" button 除以 Screen reader prompt for the divide button on the number pad 乘以 Screen reader prompt for the multiply button on the number pad 等于 Screen reader prompt for the equals button on the scientific operator keypad 反函数 Screen reader prompt for the shift button on the number pad in scientific mode. Screen reader prompt for the minus button on the number pad We use this resource to replace "-" sign for accessibility. So expression like, 1 - 3 = -2 becomes 1 minus 3 = minus 2 Screen reader prompt for the plus button on the number pad 平方根 Screen reader prompt for the square root button on the scientific operator keypad 百分比 Screen reader prompt for the percent button on the scientific operator keypad 正负 Screen reader prompt for the negate button on the scientific operator keypad 正负 Screen reader prompt for the negate button on the converter operator keypad 倒数 Screen reader prompt for the invert button on the scientific operator keypad 左括号 Screen reader prompt for the Calculator "(" button on the scientific operator keypad 左括号,左开式括号计数 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 右括号 Screen reader prompt for the Calculator ")" button on the scientific operator keypad 左圆括号计数 %1 {Locked="%1"} Screen reader prompt for the Calculator "(" button on the scientific and programmer operator keypad. %1 is the localized count of open parenthesis, e.g. "2". 缺少右圆括号,因此无法结束。 {Locked="%1"} Screen reader prompt for the Calculator when the ")" button on the scientific and programmer operator keypad cannot be added to the equation. e.g. "1+)". 科学记数法 Screen reader prompt for the Calculator F-E the scientific operator keypad 双曲线函数 Screen reader prompt for the Calculator button HYP in the scientific operator keypad π Screen reader prompt for the Calculator pi button on the scientific operator keypad 正弦 Screen reader prompt for the Calculator sin button on the scientific operator keypad 余弦 Screen reader prompt for the Calculator cos button on the scientific operator keypad 正切 Screen reader prompt for the Calculator tan button on the scientific operator keypad 双曲正弦 Screen reader prompt for the Calculator sinh button on the scientific operator keypad 双曲余弦 Screen reader prompt for the Calculator cosh button on the scientific operator keypad 双曲正切 Screen reader prompt for the Calculator tanh button on the scientific operator keypad 平方 Screen reader prompt for the x squared on the scientific operator keypad. 立方体 Screen reader prompt for the x cubed on the scientific operator keypad. 反正弦 Screen reader prompt for the inverted sin on the scientific operator keypad. 反余弦 Screen reader prompt for the inverted cos on the scientific operator keypad. 反正切 Screen reader prompt for the inverted tan on the scientific operator keypad. 双曲反正弦 Screen reader prompt for the inverted sinh on the scientific operator keypad. 双曲反余弦 Screen reader prompt for the inverted cosh on the scientific operator keypad. 双曲反正切 Screen reader prompt for the inverted tanh on the scientific operator keypad. “X”的指数 Screen reader prompt for x power y button on the scientific operator keypad. 十的指数 Screen reader prompt for the 10 power x button on the scientific operator keypad. “e”的指数 Screen reader for the e power x on the scientific operator keypad. “x”的“y”根 Screen reader for the yth root of x on the scientific operator keypad. Note: String is meant to read out whatever the "Yth root" mathematical operator sounds like. 对数 Screen reader for the log base 10 on the scientific operator keypad 自然对数 Screen reader for the log base e on the scientific operator keypad 模数 Screen reader for the mod button on the scientific operator keypad 指数 Screen reader for the exp button on the scientific operator keypad 度分秒 Screen reader for the exp button on the scientific operator keypad Screen reader for the exp button on the scientific operator keypad 整数部分 Screen reader for the int button on the scientific operator keypad 小数部分 Screen reader for the frac button on the scientific operator keypad 分数 Screen reader for the factorial button on the basic operator keypad 度数切换 This the Deg button's Degree mode automation nameon the scientific operator keypad. Should read as "Degrees toggle button". 梯度切换 This is the Deg button's Grad mode automation name on the scientific operator keypad. Should read as "Gradians toggle button". 弧度切换 This is the Deg button's Rad mode automation name on the scientific operator keypad. Should read as "Radians toggle button". 模式下拉列表 Screen reader prompt for the Mode dropdown field in Snapped and Portrait modes. 类别下拉列表 Screen reader prompt for the Categories dropdown field. 始终置顶 Screen reader prompt for the Always-on-Top button when in normal mode. 返回完整视图 Screen reader prompt for the Always-on-Top button when in Always-on-Top mode. 保持在顶部 (Alt+Up) This is the tool tip automation name for the Always-on-Top button when in normal mode. 返回全视图 (Alt+Down) This is the tool tip automation name for the Always-on-Top button when in Always-on-Top mode. 从 %1 %2 转换 Screen reader prompt for the Unit Converter Value1 i.e. top number field. %1 = DisplayValue, %2 = Unit field localized name. 从 %1 点 %2 转换 {Locked="%1"}. Automation label for the calculator display in the specific case where the user has just pressed the decimal separator button. For example, the user wants to input "7.5". When they have input "7." they will hear "Convert from 7 point _current_unit_". "point" should be localized to the locale's appropriate decimal separator. 转换成 %1 %2 Screen reader prompt for the Unit Converter Value2 i.e. bottom number field. %1 = DisplayValue, %2 = Unit field localized name. %1 %2 是 %3 %4 Screen reader prompt for a conversion result, ie "2 liters is 2,000 milliliters" . %1 = From unit display value, %2 = From unit, %3 = To unit display value, %4 = To unit. 输入单位 Screen reader prompt for the Unit Converter Units1 i.e. top units field. 输出单元 Screen reader prompt for the Unit Converter Units2 i.e. bottom units field. 面积 Unit conversion category name called Area (eg. area of a sports field in square meters) 数据 Unit conversion category name called Data 能量 Unit conversion category name called Energy. (eg. the energy in a battery or in food) 长度 Unit conversion category name called Length 功率 Unit conversion category name called Power (eg. the power of an engine or a light bulb) 速度 Unit conversion category name called Speed 时间 Unit conversion category name called Time 体积 Unit conversion category name called Volume (eg. cups, teaspoons, milliliters) 温度 Unit conversion category name called Temperature 重量 Unit conversion category name called Weight and mass. Note that this category includes units of both mass and weight. People use the word "weight" in everyday life for measuring things such as food and people. In case a language has same word for "weight" and "mass" please use one word only. 压强 Unit conversion category name called Pressure 角度 Unit conversion category name called Angle 货币 Unit conversion category name called Currency 液盎司(英制) A measurement unit for volume, in plural. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 液盎司(英制) An abbreviation for a measurement unit of volume 液盎司(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 液盎司(美制) An abbreviation for a measurement unit of volume 加仑(英制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 加仑(英制) An abbreviation for a measurement unit of volume 加仑(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 加仑(美制) An abbreviation for a measurement unit of volume A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) An abbreviation for a measurement unit of volume 毫升 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 毫升 An abbreviation for a measurement unit of volume 品脱(英制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 品脱(英制) An abbreviation for a measurement unit of volume 品脱(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 品脱(美制) An abbreviation for a measurement unit of volume 汤匙(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 汤匙(美制) An abbreviation for a measurement unit of volume 茶匙(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 茶匙(美制) An abbreviation for a measurement unit of volume 汤匙(英制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 汤匙(英制) An abbreviation for a measurement unit of volume 茶匙(英制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 茶匙(英制) An abbreviation for a measurement unit of volume 夸脱(英制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 夸脱(英制) An abbreviation for a measurement unit of volume 夸脱(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 夸脱(美制) An abbreviation for a measurement unit of volume 杯(美制) A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 杯(美制) An abbreviation for a measurement unit of volume A An abbreviation for a measurement unit of length 英亩 An abbreviation for a measurement unit of volume b An abbreviation for a measurement unit of data 英国热量单位 An abbreviation for a measurement unit of volume BTU/分钟 An abbreviation for a measurement unit of power B An abbreviation for a measurement unit of data 卡路里 An abbreviation for a measurement unit of energy 厘米 An abbreviation for a measurement unit of length 厘米/秒 An abbreviation for a measurement unit of speed 立方厘米 An abbreviation for a measurement unit of volume 立方英尺 An abbreviation for a measurement unit of volume 立方英寸 An abbreviation for a measurement unit of volume 立方米 An abbreviation for a measurement unit of volume 立方码 An abbreviation for a measurement unit of volume An abbreviation for a measurement unit of time °C An abbreviation for "degrees Celsius" °F An abbreviation for a "degrees Fahrenheit" 电子伏特 An abbreviation for a measurement unit of energy 英尺 An abbreviation for a measurement unit of length 英尺/秒 An abbreviation for a measurement unit of speed 磅英尺 An abbreviation for a measurement unit of energy Gb An abbreviation for a measurement unit of data GB An abbreviation for a measurement unit of data 公顷 An abbreviation for a measurement unit of area 马力(美制) An abbreviation for a measurement unit of power 小时 An abbreviation for a measurement unit of time 英寸 An abbreviation for a measurement unit of length 焦耳 An abbreviation for a measurement unit of energy 千瓦时 An abbreviation for a measurement unit of electricity consumption K An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin) Kb An abbreviation for a measurement unit of data KB An abbreviation for a measurement unit of data 千卡 An abbreviation for a measurement unit of energy 千焦 An abbreviation for a measurement unit of energy 公里 An abbreviation for a measurement unit of length 千米/小时 An abbreviation for a measurement unit of speed 千瓦 An abbreviation for a measurement unit of power An abbreviation for a measurement unit of speed 马赫 An abbreviation for a measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb An abbreviation for a measurement unit of data MB An abbreviation for a measurement unit of data An abbreviation for a measurement unit of length 米/秒 An abbreviation for a measurement unit of speed 微米 An abbreviation for a measurement unit of length 微秒 An abbreviation for a measurement unit of time 英里 An abbreviation for a measurement unit of length 英里/小时 An abbreviation for a measurement unit of speed 毫米 An abbreviation for a measurement unit of length 毫秒 An abbreviation for a measurement unit of time 分钟 An abbreviation for a measurement unit of time 纳米 An abbreviation for a measurement unit of length 海里 An abbreviation for a measurement unit of length Pb An abbreviation for a measurement unit of data PB An abbreviation for a measurement unit of data 磅英尺/分钟 An abbreviation for a measurement unit of power An abbreviation for a measurement unit of time 平方厘米 An abbreviation for a measurement unit of area 平方英尺 An abbreviation for a measurement unit of area 平方英寸 An abbreviation for a measurement unit of area 平方公里 An abbreviation for a measurement unit of area 平方米 An abbreviation for a measurement unit of area 平方英里 An abbreviation for a measurement unit of area 平方毫米 An abbreviation for a measurement unit of area 平方码 An abbreviation for a measurement unit of area Tb An abbreviation for a measurement unit of data TB An abbreviation for a measurement unit of data An abbreviation for a measurement unit of power An abbreviation for a measurement unit of time An abbreviation for a measurement unit of length An abbreviation for a measurement unit of time Gi An abbreviation for a measurement unit of data GiB An abbreviation for a measurement unit of data Ki An abbreviation for a measurement unit of data KiB An abbreviation for a measurement unit of data Mi An abbreviation for a measurement unit of data MiB An abbreviation for a measurement unit of data nybl An abbreviation for a measurement unit of data Pi An abbreviation for a measurement unit of data PiB An abbreviation for a measurement unit of data Ti An abbreviation for a measurement unit of data TiB An abbreviation for a measurement unit of data E An abbreviation for a measurement unit of data EB An abbreviation for a measurement unit of data Ei An abbreviation for a measurement unit of data EiB An abbreviation for a measurement unit of data Z An abbreviation for a measurement unit of data ZB An abbreviation for a measurement unit of data Zi An abbreviation for a measurement unit of data ZiB An abbreviation for a measurement unit of data Y An abbreviation for a measurement unit of data YB An abbreviation for a measurement unit of data Yi An abbreviation for a measurement unit of data YiB An abbreviation for a measurement unit of data 英亩 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英国热量单位 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) BTU/分钟 A measurement unit for power: British Thermal Units per minute. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) B A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 热卡路里 A measurement unit for energy. Please note that this is the "small calorie" used in science for measuring heat energy, not the "large calorie" commonly used for measuring food energy. If there is a simple term to distinguish this one from the large "Food calorie", please use that. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 厘米 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 厘米/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方厘米 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方英尺 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方英寸 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方米 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 立方码 A measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 摄氏度 An option in the unit converter to select degrees Celsius 华氏度 An option in the unit converter to select degrees Fahrenheit 电子伏特 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英尺 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英尺/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英尺磅 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英尺磅/分钟 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Gb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 公顷 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 马力(美制) A measurement unit for power 小时 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英寸 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 焦耳 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 千瓦时 A measurement unit for electricity consumption. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 开尔文 An option in the unit converter to select the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin). At least in English, Kelvin does not use "degrees". A measurement is just stated as "273 Kelvin". Kb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) KB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 食物卡路里 A measurement unit for energy. The scientific name is kilocalorie, but this is what is commonly referred to as a "calorie" or "large calorie" when talking about food. Please use the everyday-use word for food energy calories if there is one. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 千焦耳 A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 公里 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 公里/小时 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 千瓦 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A nautical/aerial measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 马赫 A measurement of speed (Mach is the speed of sound, Mach 2 is 2 times the speed of sound) Mb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) MB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 米/秒 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 微米 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 微秒 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英里 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英里/小时 A measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 毫米 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 毫秒 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 分钟 A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 半字节 A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 纳米 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 海里 A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方厘米 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方英尺 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方英寸 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方公里 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方米 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方英里 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方毫米 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 平方码 A measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 瓦特 A measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD An abbreviation for a measurement unit of weight An abbreviation for a measurement unit of Angle 弧度 An abbreviation for a measurement unit of Angle 梯度 An abbreviation for a measurement unit of Angle 大气压 An abbreviation for a measurement unit of Pressure An abbreviation for a measurement unit of Pressure 千帕 An abbreviation for a measurement unit of Pressure 毫米汞柱 An abbreviation for a measurement unit of Pressure Pa An abbreviation for a measurement unit of Pressure 磅每平方英寸 An abbreviation for a measurement unit of Pressure 厘克 An abbreviation for a measurement unit of weight 十克 An abbreviation for a measurement unit of weight 分克 An abbreviation for a measurement unit of weight An abbreviation for a measurement unit of weight 百克 An abbreviation for a measurement unit of weight 公斤 An abbreviation for a measurement unit of weight 吨(英制) An abbreviation for a measurement unit of weight 毫克 An abbreviation for a measurement unit of weight 盎司 An abbreviation for a measurement unit of weight An abbreviation for a measurement unit of weight 吨(美制) An abbreviation for a measurement unit of weight 英石 An abbreviation for a measurement unit of weight An abbreviation for a measurement unit of weight 克拉 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for Angle. 弧度 A measurement unit for Angle. 百分度 A measurement unit for Angle. 大气压 A measurement unit for Pressure. A measurement unit for Pressure. 千帕 A measurement unit for Pressure. 毫米汞柱 A measurement unit for Pressure. A measurement unit for Pressure. 磅每平方英寸 A measurement unit for Pressure. 厘克 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 十克 A measurement unit for weight. Note: Dekagram is spelled "decagram" everywhere except where US English is used. (EN-US dekagram, elsewhere decagram). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 分克 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 百克 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 千克 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 长吨(英制) A measurement unit for weight. This is the UK version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 毫克 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 盎司 A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 短吨(美制) A measurement unit for weight. This is the US version of ton. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 英石 A measurement unit for weight. Equal to 14 pounds. Note that this is the plural form of the word in English (eg. "This man weighs 11 stone."). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 公吨 A measurement unit for weight. This is the metric version of tonne. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) CD A compact disc, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 足球场 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 足球场 A professional-sized soccer field, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 软盘 A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 软盘 A 1.44 MB floppy disk, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) DVD A DVD, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 电池 AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 电池 AA-cell battery, used as a comparison measurement unit for data storage. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 曲别针 A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 曲别针 A standard paperclip, used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 大型喷气式客机 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 大型喷气式客机 A jumbo jet (eg. Boeing 747), used as a comparison measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 灯炮 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 灯炮 A light bulb, used as a comparison measurement unit for power (60 watts). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A horse, used as a comparison measurement unit for power (~1 horsepower) or speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 浴缸 A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 浴缸 A bathtub full of water, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 雪花 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 雪花 A snowflake, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 大象 An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 大象 An elephant, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 海龟 A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 海龟 A turtle, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 喷气式飞机 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 喷气式飞机 A jet plane, used as a comparison measurement unit for speed. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 鲸鱼 A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 鲸鱼 A blue whale, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 咖啡杯 A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 咖啡杯 A coffee cup, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 游泳池 An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 游泳池 An Olympic-sized swimming pool, used as a comparison measurement unit for volume. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) A human hand, used as a comparison measurement unit for length or area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 纸张 A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 纸张 A sheet of 8.5 x 11 inch paper, used as a comparison measurement unit for area. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 城堡 A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 城堡 A castle, used as a comparison measurement unit for area (floorspace). (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 香蕉 A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 香蕉 A banana, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 蛋糕片 A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 切块蛋糕 A slice of chocolate cake, used as a comparison measurement unit for food energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 火车引擎 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 火车引擎 A train engine, used as a comparison measurement unit for power. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 足球 A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 足球 A soccer ball, used as a comparison measurement unit for weight. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 记忆项 Help text used by accessibility tools to indicate that an item in the list of memory values is a memory item. %1 %2 This string is what is read by Narrator, and other screen readers, for the supplementary value at the bottom of the converter view, %1 = the value of the supplementary unit (i.e. 0.5), %2 = the unit itself (i.e. inches, meters, etc) 返回 Screen reader prompt for the About panel back button 返回 Content of tooltip being displayed on AboutControlBackButton Microsoft 软件许可条款 Displayed on a link to the Microsoft Software License Terms on the About panel 预览 Label displayed next to upcoming features Microsoft 隐私声明 Displayed on a link to the Microsoft Privacy Statement on the About panel © %1 Microsoft。保留所有权利。 {Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits) 若要了解如何参与 Windows 计算器,请在 %HL%GitHub%HL% 上查看该项目。 {Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel 关于 Subtitle of about message on Settings page 发送反馈 The text that shows in the dropdown navigation control to give the user the option to send feedback about the app and it launches Windows Feedback app 尚无历史记录。 The text that shows as the header for the history list 内存中未保存任何内容。 The text that shows as the header for the memory list 记忆 Screen reader prompt for the negate button on the converter operator keypad 不能粘贴此表达式 The paste operation cannot be performed, if the expression is invalid. Gib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) GiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Kib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) KiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Mib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) MiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Pib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) PiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Tib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) TiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) EB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Eib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) EiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zb A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ZB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Zib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) ZiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabits A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yottabytes A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) Yib A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) YiB A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999) 日期计算 计算模式 Automation label for the Date calculation Mode combobox. Users will hear "Calculation mode combobox". 添加 Add toggle button text 添加或减去天数 Add or Subtract days option 日期 Date result label 日期之间的相隔时间 Date difference option Add/Subtract Days label 差值 Difference result label 开始日期 From Date Header for Difference Date Picker Add/Subtract Months label 减去 Subtract toggle button text 结束日期 To Date Header for Difference Date Picker Add/Subtract Years label 超出日期 Out of bound message shown as result when the date calculation exceeds the bounds 相同日期 间隔天数 %1 Automation name for reading out the date difference. %1 = Date difference 所得日期 %1 Automation name for reading out the resulting date in Add/Subtract mode. %1 = Resulting date %1 计算器模式 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current calculator mode: Scientific, Standard, or Programmer. %1 转换器模式 {Locked='%1'} Automation name for when the mode header is focused. %1 = the current converter mode: "Weight and mass", "Energy", "Volume", etc. 日期计算模式 Automation name for when the mode header is focused and the current mode is Date calculation. 历史记录和记忆列表 Automation name for the group of controls for history and memory lists. 记忆控件 Automation name for the group of memory controls (Mem Clear, Mem Recall, Mem Add, Mem Subtract, Mem Store, Memory flyout toggle) 标准函数 Automation name for the group of standard function buttons (Percent, Square Root, Square, Cube, Reciprocal) 显示控件 Automation name for the group of display control buttons (Clear, Clear Entry, and Backspace) 标准运算符 Automation name for the group of standard operator buttons (Add, Subtract, Multiply, Divide, and Equals) 数字键盘 Automation name for the group of NumberPad buttons (0-9, A-F and Decimal button) 角度运算符 Automation name for the group of Scientific angle operators (Degree mode, Hyperbolic toggle, and Precision button) 科学函数 Automation name for the group of Scientific functions. 基数选择 Automation name for the group of radices (Hexadecimal, Decimal, Octal, Binary). https://en.wikipedia.org/wiki/Radix 编程运算符 Automation name for the group of programmer operators (RoL, RoR, Lsh, Rsh, OR, XOR, NOT, AND). 输入模式选择 Automation name for the group of input mode toggling buttons. 位切换数字键盘 Automation name for the group of bit toggling buttons. 向左滚动太多无法看到 Automation label for the "scroll left" button that appears when an expression is too large to fit in the window. 向右滚动太多无法看到 Automation label for the "scroll right" button that appears when an expression is too large to fit in the window. 达到最大位数。%1 {Locked='%1'} Formatting string for a Narrator announcement when user reaches max digits. The %1 is the automation name of the display. Users will hear "Max digits reached. Display is _current_value_". %1 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when user presses a button with auditory feedback. "%1" is the display value and "%2" is the button press feedback. Example, user presses "plus" and hears "Display is 7 plus". %1 已保存到记忆 {Locked='%1'} Formatting string for a Narrator announcement when the user stores a number to memory. The %1 is the automation name of the display. Users will hear "_current_value_ saved to memory". 记忆组 %1 是 %2 {Locked='%1','%2'} Formatting string for a Narrator announcement when the user changes a memory slot. The %1 is the index of the memory slot and %2 is the new value. For example, users might hear "Memory slot 2 is 37". 记忆组 %1 已清除 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a memory slot. The %1 is the index of the memory slot. For example, users might hear "Memory slot 2 cleared". 除以 Auditory feedback for screen reader users. Users will hear "Display is 7 divided by" when the button is pressed. 乘以 Auditory feedback for screen reader users. Users will hear "Display is 7 times" when the button is pressed. Auditory feedback for screen reader users. Users will hear "Display is 7 minus" when the button is pressed. Auditory feedback for screen reader users. Users will hear "Display is 7 plus" when the button is pressed. 次方 Auditory feedback for screen reader users. Users will hear "Display is 7 to the power of" when the button is pressed. y 根 Auditory feedback for screen reader users. Users will hear "Display is 7 y root" when the button is pressed. 取余 Auditory feedback for screen reader users. Users will hear "Display is 7 mod" when the button is pressed. 位元左移 Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. 位元右移 Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. Auditory feedback for screen reader users. Users will hear "Display is 7 or" when the button is pressed. OR is a mathematical operation on two binary values. x 或 Auditory feedback for screen reader users. Users will hear "Display is 7 x or" when the button is pressed. XOR is a mathematical operation on two binary values. Here the feedback is "x or" in order to get the correct pronunciation. Auditory feedback for screen reader users. Users will hear "Display is 7 and" when the button is pressed. AND is a mathematical operation on two binary values. %1 %2 = %3 %4 The exact ratio between converted currencies, e.g. "1 USD = 0.8885 EUR". %1 will always be '1'. %2 is the From currency code. %3 is the formatted conversion ratio. %4 is the To currency code. 已更新 %1 %2 The timestamp of currency conversion ratios fetched from an online service. %1 is the date. %2 is the time. Example: "Updated Sep 28, 2016 5:42 PM" 更新汇率 The text displayed for a hyperlink button that refreshes currency converter ratios. 可能会收取数据费用。 The text displayed when users are on a metered connection and using currency converter. 无法获取新费率。请稍后重试。 The text displayed when currency ratio data fails to load. 离线。请检查你的%HL%网络设置%HL% Status text displayed when currency converter is disconnected from the internet. The text "Notification Settings" should be surrounded by %HL% since they are used to indicate that that text should be the hyperlink text. {Locked="%HL%"} 正在更新货币汇率 This string is what is read by Narrator, and other screen readers, when the "Update rates" button in the Currency Converter is clicked. 货币汇率已更新 This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have successfully updated. 无法更新货币汇率 This string is what is read by Narrator, and other screen readers, when the currency rates in Currency converter have failed to update. I Access key for the History button. {StringCategory="Accelerator"} M Access key for the Memory button. {StringCategory="Accelerator"} H Access key for the Hamburger button. {StringCategory="Accelerator"} AN AccessKey for the angle converter navbar item. {StringCategory="Accelerator"} AR AccessKey for the area converter navbar item. {StringCategory="Accelerator"} C AccessKey for the currency converter navbar item. {StringCategory="Accelerator"} D AccessKey for the data converter navbar item. {StringCategory="Accelerator"} E AccessKey for the energy converter navbar item. {StringCategory="Accelerator"} L AccessKey for the length converter navbar item. {StringCategory="Accelerator"} PO AccessKey for the power converter navbar item. {StringCategory="Accelerator"} PR AccessKey for the pressure converter navbar item. {StringCategory="Accelerator"} S AccessKey for the speed converter navbar item. {StringCategory="Accelerator"} TI AccessKey for the time converter navbar item. {StringCategory="Accelerator"} V AccessKey for the volume converter navbar item. {StringCategory="Accelerator"} AccessKey for the weight converter navbar item. {StringCategory="Accelerator"} TE AccessKey for the temperature converter navbar item. {StringCategory="Accelerator"} C Access key for the Clear history button.{StringCategory="Accelerator"} C Access key for the Clear memory button. {StringCategory="Accelerator"} 清除所有记忆(Ctrl+L) This is the tool tip automation name for the Clear Memory button in the Memory Pane. 清除所有记忆 Screen reader prompt for the Calculator Clear Memory button in the Memory Pane I Access key for the History pivot item.{StringCategory="Accelerator"} M Access key for the Memory pivot item.{StringCategory="Accelerator"} 角度正弦 Name for the sine function in degrees mode. Used by screen readers. 弧度正弦 Name for the sine function in radians mode. Used by screen readers. 梯度正弦 Name for the sine function in gradians mode. Used by screen readers. 角度反正弦 Name for the inverse sine function in degrees mode. Used by screen readers. 弧度反正弦 Name for the inverse sine function in radians mode. Used by screen readers. 梯度反正弦 Name for the inverse sine function in gradians mode. Used by screen readers. 双曲正弦 Name for the hyperbolic sine function. Used by screen readers. 反双曲正弦 Name for the inverse hyperbolic sine function. Used by screen readers. 角度余弦 Name for the cosine function in degrees mode. Used by screen readers. 弧度余弦 Name for the cosine function in radians mode. Used by screen readers. 梯度余弦 Name for the cosine function in gradians mode. Used by screen readers. 角度反余弦 Name for the inverse cosine function in degrees mode. Used by screen readers. 弧度反余弦 Name for the inverse cosine function in radians mode. Used by screen readers. 梯度反余弦 Name for the inverse cosine function in gradians mode. Used by screen readers. 双曲余弦 Name for the hyperbolic cosine function. Used by screen readers. 反双曲余弦 Name for the inverse hyperbolic cosine function. Used by screen readers. 度数正切 Name for the tangent function in degrees mode. Used by screen readers. 弧度正切 Name for the tangent function in radians mode. Used by screen readers. 梯度正切 Name for the tangent function in gradians mode. Used by screen readers. 角度反正切 Name for the inverse tangent function in degrees mode. Used by screen readers. 弧度反正切 Name for the inverse tangent function in radians mode. Used by screen readers. 梯度反正切 Name for the inverse tangent function in gradians mode. Used by screen readers. 双曲正切 Name for the hyperbolic tangent function. Used by screen readers. 反双曲正切 Name for the inverse hyperbolic tangent function. Used by screen readers. 正割度数 Name for the secant function in degrees mode. Used by screen readers. 正割弧度 Name for the secant function in radians mode. Used by screen readers. 正割梯度 Name for the secant function in gradians mode. Used by screen readers. 反正割度数 Name for the inverse secant function in degrees mode. Used by screen readers. 反正割弧度 Name for the inverse secant function in radians mode. Used by screen readers. 反正割梯度 Name for the inverse secant function in gradians mode. Used by screen readers. 双曲正割 Name for the hyperbolic secant function. Used by screen readers. 反双曲正割 Name for the inverse hyperbolic secant function. Used by screen readers. 余割度数 Name for the cosecant function in degrees mode. Used by screen readers. 余割弧度 Name for the cosecant function in radians mode. Used by screen readers. 余割梯度 Name for the cosecant function in gradians mode. Used by screen readers. 反余割度数 Name for the inverse cosecant function in degrees mode. Used by screen readers. 反余割弧度 Name for the inverse cosecant function in radians mode. Used by screen readers. 反余割梯度 Name for the inverse cosecant function in gradians mode. Used by screen readers. 双曲余割 Name for the hyperbolic cosecant function. Used by screen readers. 反双曲余割 Name for the inverse hyperbolic cosecant function. Used by screen readers. 余切度数 Name for the cotangent function in degrees mode. Used by screen readers. 余切弧度 Name for the cotangent function in radians mode. Used by screen readers. 余切梯度 Name for the cotangent function in gradians mode. Used by screen readers. 反余切度数 Name for the inverse cotangent function in degrees mode. Used by screen readers. 反余切弧度 Name for the inverse cotangent function in radians mode. Used by screen readers. 反余切梯度 Name for the inverse cotangent function in gradians mode. Used by screen readers. 双曲余切 Name for the hyperbolic cotangent function. Used by screen readers. 反双曲余切 Name for the inverse hyperbolic cotangent function. Used by screen readers. 立方根 Name for the cube root function. Used by screen readers. 底数对数 Name for the logbasey function. Used by screen readers. 绝对值 Name for the absolute value function. Used by screen readers. 位元左移 Name for the programmer function that shifts bits to the left. Used by screen readers. 位元右移 Name for the programmer function that shifts bits to the right. Used by screen readers. 阶乘 Name for the factorial function. Used by screen readers. 度分秒 Name for the degree minute second (dms) function. Used by screen readers. 自然对数 Name for the natural log (ln) function. Used by screen readers. 平方 Name for the square function. Used by screen readers. y 根 Name for the y root function. Used by screen readers. %1 %2 {Locked='%1','%2'}. Format string for the accessible name of a Calculator menu item, used by screen readers. "%1" is the item name, e.g. Standard, Programmer, etc. %2 is the category name, e.g. Calculator, Converter. An example when formatted is "Standard Calculator" or "Currency Converter". %1 类别 {Locked='%1'} Format string for the accessible name of a Calculator menu category header, used by screen readers. "%1" is the pluralized category name, e.g. Calculators, Converters. An example when formatted is "Calculators category". Microsoft 服务协议 Displayed on a link to the Microsoft Services Agreement in the about this app information An abbreviation for a measurement unit of area. A measurement unit for area. 开始日期 From Date Header for AddSubtract Date Picker 向左滚动计算结果 Automation label for the "Scroll Left" button that appears when a calculation result is too large to fit in calculation result text box. 向右滚动计算结果 Automation label for the "Scroll Right" button that appears when a calculation result is too large to fit in calculation result text box. 计算失败 Text displayed when the application is not able to do a calculation 底数对数 Y Screen reader prompt for the logBaseY button 三角学 Displayed on the button that contains a flyout for the trig functions in scientific mode. 函数 Displayed on the button that contains a flyout for the general functions in scientific mode. 不等式 Displayed on the button that contains a flyout for the inequality functions. 不等式 Screen reader prompt for the Inequalities button 按位 Displayed on the button that contains a flyout for the bitwise functions in programmer mode. 位移位 Displayed on the button that contains a flyout for the bit shift functions in programmer mode. 反函数 Screen reader prompt for the shift button in the trig flyout in scientific mode. 双曲函数 Screen reader prompt for the Calculator button HYP in the scientific flyout keypad 正割 Screen reader prompt for the Calculator button sec in the scientific flyout keypad 双曲正割 Screen reader prompt for the Calculator button sech in the scientific flyout keypad 反正割 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 双曲反正割 Screen reader prompt for the Calculator button arc sec in the scientific flyout keypad 余割 Screen reader prompt for the Calculator button csc in the scientific flyout keypad 双曲余割 Screen reader prompt for the Calculator button csch in the scientific flyout keypad 反余割 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 双曲反余割 Screen reader prompt for the Calculator button arc csc in the scientific flyout keypad 余切 Screen reader prompt for the Calculator button cot in the scientific flyout keypad 双曲余切 Screen reader prompt for the Calculator button coth in the scientific flyout keypad 反余切 Screen reader prompt for the Calculator button arc cot in the scientific flyout keypad 双曲反余切 Screen reader prompt for the Calculator button arc coth in the scientific flyout keypad 下限 Screen reader prompt for the Calculator button floor in the scientific flyout keypad 上限 Screen reader prompt for the Calculator button ceiling in the scientific flyout keypad 随机 Screen reader prompt for the Calculator button random in the scientific flyout keypad 绝对值 Screen reader prompt for the Calculator button abs in the scientific flyout keypad Euler 数字 Screen reader prompt for the Calculator button e in the scientific flyout keypad 2 的指数次方 Screen reader prompt for the Calculator button 2^x in the scientific flyout keypad 与非 Screen reader prompt for the Calculator button nand in the scientific flyout keypad 与非 Auditory feedback for screen reader users. Users will hear "Display is 7 nand" when the button is pressed. NAND is a mathematical operation on two binary values. 或非 Screen reader prompt for the Calculator button nor in the scientific flyout keypad 或非 Auditory feedback for screen reader users. Users will hear "Display is 7 nor" when the button is pressed. NAND is a mathematical operation on two binary values. 带进位向左旋转 Screen reader prompt for the Calculator button rol with carry in the scientific flyout keypad 带进位向右旋转 Screen reader prompt for the Calculator button ror with carry in the scientific flyout keypad 向左移位 Screen reader prompt for the Calculator button lshLogical in the scientific flyout keypad 左移 Auditory feedback for screen reader users. Users will hear "Display is 7 left shift" when the button is pressed. NAND is a mathematical operation on two binary values. 向右移位 Screen reader prompt for the Calculator button rshLogical in the scientific flyout keypad 右移 Auditory feedback for screen reader users. Users will hear "Display is 7 right shift" when the button is pressed. NAND is a mathematical operation on two binary values. 算术移位 Label for a radio button that toggles arithmetic shift behavior for the shift operations. 逻辑移位 Label for a radio button that toggles logical shift behavior for the shift operations. 旋转循环移位 Label for a radio button that toggles rotate circular behavior for the shift operations. 带进位旋转循环移位 Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 立方根 Screen reader prompt for the cube root button on the scientific operator keypad 三角学 Screen reader prompt for the square root button on the scientific operator keypad 函数 Screen reader prompt for the square root button on the scientific operator keypad 按位 Screen reader prompt for the square root button on the scientific operator keypad 位移位 Screen reader prompt for the square root button on the scientific operator keypad 科学运算符面板 Screen reader prompt for the Scientific Operator Panels on the scientific operator keypad 程序员运算符面板 Screen reader prompt for the Programmer Operator Panels on the programmer operator keypad 最高有效位 Used to describe the last bit of a binary number. Used in bit flip 绘图 Name of the Graphing mode of the Calculator app. Displayed in the navigation menu. 绘图 Screen reader prompt for the plot button on the graphing calculator operator keypad 自动刷新视图(Ctrl + 0) This is the tool tip automation name for the Calculator graph view button. 图表视图 Screen reader prompt for the graph view button. 自动最佳适应 Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set 手动调整 Announcement used in Graphing Calculator when graph view button is clicked and manual adjustment is set 图形视图已重置 Announcement used in Graphing Calculator when graph view button is clicked and automatic best fit is set, resetting the graph 放大(Ctrl + 加号) This is the tool tip automation name for the Calculator zoom in button. 放大 Screen reader prompt for the zoom in button. 缩小(Ctrl + 减号) This is the tool tip automation name for the Calculator zoom out button. 缩小 Screen reader prompt for the zoom out button. 添加公式 Placeholder text for the equation input button 此时无法共享。 If there is an error in the sharing action will display a dialog with this text. 确定 Used on the dismiss button of the share action error dialog. 查看我使用 Windows 计算器绘出的图形 Sent as part of the shared content. The title for the share. 公式 Header that appears over the equations section when sharing 变量 Header that appears over the variables section when sharing 包含公式的图形的图像 Alt text for the graph image when output via Share 变量 Header text for variables area 步骤 Label text for the step text box 最小值 Label text for the min text box 最大值 Label text for the max text box 颜色 Label for the Line Color section of the style picker 样式 Label for the Line Style section of the style picker 函数分析 Title for KeyGraphFeatures Control 此函数没有任何水平渐近线。 Message displayed when the graph does not have any horizontal asymptotes 此函数没有任何转折点。 Message displayed when the graph does not have any inflection points 此函数没有任何极大值点。 Message displayed when the graph does not have any maxima 此函数没有任何极小值点。 Message displayed when the graph does not have any minima 恒定 String describing constant monotonicity of a function 下降 String describing decreasing monotonicity of a function 无法确定函数的单调性。 Error displayed when monotonicity cannot be determined 上升 String describing increasing monotonicity of a function 函数的单调性未知。 Error displayed when monotonicity is unknown 此函数没有任何倾斜渐近线。 Message displayed when the graph does not have any oblique asymptotes 无法确定函数的奇偶性。 Error displayed when parity is cannot be determined 此函数为偶函数。 Message displayed with the function parity is even 此函数既不是偶函数也不是奇函数。 Message displayed with the function parity is neither even nor odd 此函数为奇函数。 Message displayed with the function parity is odd 函数的奇偶性未知。 Error displayed when parity is unknown 此函数不支持周期性。 Error displayed when periodicity is not supported 此函数不是定期的。 Message displayed with the function periodicity is not periodic 函数的周期性未知。 Message displayed with the function periodicity is unknown 这些功能过于复杂,计算器无法计算: Error displayed when analysis features cannot be calculated 此函数没有任何垂直渐近线。 Message displayed when the graph does not have any vertical asymptotes 此函数没有任何 x 轴截距。 Message displayed when the graph does not have any x-intercepts 此函数没有任何 y 轴截距。 Message displayed when the graph does not have any y-intercepts 定义域 Title for KeyGraphFeatures Domain Property 水平渐近线 Title for KeyGraphFeatures Horizontal aysmptotes Property 拐点 Title for KeyGraphFeatures Inflection points Property 此函数不支持分析。 Error displayed when graph analysis is not supported or had an error. 仅 f(x) 格式的函数支持分析。示例: y=x Error displayed when graph analysis detects the function format is not f(x). 极大值 Title for KeyGraphFeatures Maxima Property 极小值 Title for KeyGraphFeatures Minima Property 单调性 Title for KeyGraphFeatures Monotonicity Property 斜渐近线 Title for KeyGraphFeatures Oblique asymptotes Property 奇偶性 Title for KeyGraphFeatures Parity Property 周期 Title for KeyGraphFeatures Periodicity Property. The period of a mathematical function is the smallest interval in its input values such that its output values repeat every such interval. 值域 Title for KeyGraphFeatures Range Property 垂直渐近线 Title for KeyGraphFeatures Vertical asymptotes Property X 轴截距 Title for KeyGraphFeatures XIntercept Property Y 轴截距 Title for KeyGraphFeatures YIntercept Property 无法对此函数执行分析。 无法计算此函数的定义域。 Error displayed when Domain is not returned from the analyzer. 无法计算此函数的值域。 Error displayed when Range is not returned from the analyzer. 溢出 (数字过大) Error that occurs during graphing when the number is too large. To see this error, assign a large number to variable a, then keep doing "a:=a*a" until it happens. 需要“弧度”模式才能将此公式绘入图表。 Error that occurs during graphing when radians is required. 此函数过于复杂,无法绘入图表 Error that occurs during graphing when the equation is too complex. 需要“度数”模式才能将此函数绘入图表 Error that occurs during graphing when degrees is required 阶乘函数有无效参数 Error that occurs during graphing when a factorial function has an invalid argument. 阶乘函数的参数太大,无法绘入图表 Error that occurs during graphing when a factorial has a large n 模除只能用于整数 Error that occurs during graphing when modulo is used with a float. 该等式无解 Error that occurs during graphing when the equation has no solution. 除数不能为零 Error that occurs during graphing when a divison by zero occurs. 公式包含互斥的逻辑条件 Error that occurs during graphing when mutually exclusive conditions are used. 方程超出定义域 Error that occurs during graphing when the equation is out of domain. 不支持将此公式绘入图表 Error that occurs during graphing when the equation is not supported. 公式缺少左圆括号 Error that occurs during graphing when the equation is missing a ( 公式缺少右圆括号 Error that occurs during graphing when the equation is missing a ) 数字中的小数位数太多 Error that occurs during graphing when a number has too many decimals. Ex: 1.2.3 数字缺少小数点 Error that occurs during graphing with a decimal point without digits 表达式意外结束 Error that occurs during graphing when the expression ends unexpectedly. Ex: 3-4* 表达式中包含异常字符 Error that occurs during graphing when there is an unexpected token. 表达式中包含无效字符 Error that occurs during graphing when there is an invalid token. 等号过多 Error that occurs during graphing when there are too many equals. 函数必须包含至少一个 x 或 y 变量 Error that occurs during graphing when the equation is missing x or y. 表达式无效 Error that occurs during graphing when an invalid syntax is used. 表达式为空 Error that occurs during graphing when the expression is empty 在不相等的情况下使用了等于号 Error that occurs during graphing when equal is used without an equation. Ex: sin(x=y) 函数名后缺少括号 Error that occurs during graphing when parenthesis are missing after a function. 数学运算的参数数目不正确 Error that occurs during graphing when a function has the wrong number of parameters 变量名无效 Error that occurs during graphing when a variable name is invalid. 公式缺少左方括号 Error that occurs during graphing when a { is missing 公式缺少右方括号 Error that occurs during graphing when a } is missing. “i”和“I”不能用作变量名称 Error that occurs during graphing when i or I is used. 无法将公式绘入图表 General error that occurs during graphing. 无法为给定底数解出该数字 Error that occurs during graphing when trying to use bases incorrect. Ex: base(2,1020). 底数必须大于 2 且小于等于 36 Error that occurs during graphing when the base is out of range. 数学运算要求其中一个参数为变量 Error that occurs during graphing when a function requires a variable in a particular position. Ex: 2nd argument of deriv. 公式混合了逻辑和标量操作数 Error that occurs during graphing when operands are mixed. Such as true and 1. x 或 y 不能用于上限或下限 Error that occurs during graphing when x or y is used in integral upper limits. 不能在限制点中使用 x 或 y Error that occurs during graphing when x or y is used in the limit point. 不能使用复数无穷大 Error that occurs during graphing when complex infinity is used 不能在不等式中使用复数 Error that occurs during graphing when complex numbers are used in inequalities. 返回至函数列表 This is the tooltip for the back button in the equation analysis page in the graphing calculator 返回至函数列表 This is the automation name for the back button in the equation analysis page in the graphing calculator 分析函数 This is the tooltip for the analyze function button 分析函数 This is the automation name for the analyze function button 分析函数 This is the text for the for the analyze function context menu command 删除公式 This is the tooltip for the graphing calculator remove equation buttons 删除公式 This is the automation name for the graphing calculator remove equation buttons 删除公式 This is the text for the for the remove equation context menu command 共享 This is the automation name for the graphing calculator share button. 共享 This is the tooltip for the graphing calculator share button. 更改公式样式 This is the tooltip for the graphing calculator equation style button 更改公式样式 This is the automation name for the graphing calculator equation style button 更改公式样式 This is the text for the for the equation style context menu command 显示公式 This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. 隐藏公式 This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. 显示公式 %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to hidden in the graphing calculator. %1 is the equation number. 隐藏公式 %1 {Locked="%1"}, This is the tooltip/automation name shown when visibility is set to visible in the graphing calculator. %1 is the equation number. 停止跟踪 This is the tooltip/automation name for the graphing calculator stop tracing button 开始跟踪 This is the tooltip/automation name for the graphing calculator start tracing button 图表查看窗口,x 轴由 %1 和 %2 包围,y 轴由 %3 和 %4 包围,显示 %5 公式 {Locked="%1","%2", "%3", "%4", "%5"}. 配置滑块 This is the tooltip text for the slider options button in Graphing Calculator 配置滑块 This is the automation name text for the slider options button in Graphing Calculator 切换到公式模式 Used in Graphing Calculator to switch the view to the equation mode 切换到图形模式 Used in Graphing Calculator to switch the view to the graph mode 切换到公式模式 Used in Graphing Calculator to switch the view to the equation mode 当前模式为公式模式 Announcement used in Graphing Calculator when switching to the equation mode 当前模式为图形模式 Announcement used in Graphing Calculator when switching to the graph mode 窗口 Heading for window extents on the settings Degrees mode on settings page 百分度 Gradian mode on settings page 弧度 Radians mode on settings page 单位 Heading for Unit's on the settings 重置视图 Hyperlink button to reset the view of the graph X-最大值 X maximum value header X-最小值 X minimum value header Y-最大值 Y Maximum value header Y-最小值 Y minimum value header 图形选项 This is the tooltip text for the graph options button in Graphing Calculator 图形选项 This is the automation name text for the graph options button in Graphing Calculator 图形选项 Heading for the Graph options flyout in Graphing mode. 变量选项 Screen reader prompt for the variable settings toggle button 变量选项 Tool tip for the variable settings toggle button 线条粗细 Heading for the Graph options flyout in Graphing mode. 线条选项 Heading for the equation style flyout in Graphing mode. 小线条宽度 Automation name for line width setting 中等线条宽度 Automation name for line width setting 大线条宽度 Automation name for line width setting 特大线条宽度 Automation name for line width setting 输入表达式 this is the placeholder text used by the textbox to enter an equation 复制 Copy menu item for the graph context menu 剪切 Cut menu item from the Equation TextBox 复制 Copy menu item from the Equation TextBox 粘贴 Paste menu item from the Equation TextBox 撤消 Undo menu item from the Equation TextBox 全选 Select all menu item from the Equation TextBox 函数输入 The automation name for the Equation Input ListView item that is shown when Calculator is in graphing mode. 函数输入 The automation name for the Equation Input ListView that is shown when Calculator is in graphing mode. 函数输入面板 The automation name for the Equation Input StackPanel that is shown when Calculator is in graphing mode. 变量面板 The automation name for the Variable StackPanel that is shown when Calculator is in graphing mode. 变量列表 The automation name for the Variable ListView that is shown when Calculator is in graphing mode. 变量 %1 列表项 The automation name for the Variable ListViewItem that is shown when Calculator is in graphing mode. 数值变量文本框 The automation name for the Variable Value Textbox that is shown when Calculator is in graphing mode. 变量值滑块 The automation name for the Variable Value Slider that is shown when Calculator is in graphing mode. 最小值变量文本框 The automation name for the Variable Min Value Textbox that is shown when Calculator is in graphing mode. 步长值变量文本框 The automation name for the Variable Step Textbox that is shown when Calculator is in graphing mode. 最大值变量文本框 The automation name for the Variable Max Value Textbox that is shown when Calculator is in graphing mode. 实线样式 Name of the solid line style for a graphed equation 虚线样式 Name of the dotted line style for a graphed equation 划线样式 Name of the dashed line style for a graphed equation 海军蓝色 Name of color in the color picker 海蓝色 Name of color in the color picker 紫色 Name of color in the color picker 绿色 Name of color in the color picker 薄荷绿 Name of color in the color picker 深绿色 Name of color in the color picker 字符型 Name of color in the color picker 红色 Name of color in the color picker 浅紫红色 Name of color in the color picker 洋红色 Name of color in the color picker 黄金色 Name of color in the color picker 亮橙色 Name of color in the color picker 棕色 Name of color in the color picker 黑色 Name of color in the color picker 白色 Name of color in the color picker 颜色 1 Name of color in the color picker 颜色 2 Name of color in the color picker 颜色 3 Name of color in the color picker 颜色 4 Name of color in the color picker 图形主题 Graph settings heading for the theme options 始终亮 Graph settings option to set graph to light theme 匹配应用主题 Graph settings option to set graph to match the app theme 主题 This is the automation name text for the Graph settings heading for the theme options 始终亮 This is the automation name text for the Graph settings option to set graph to light theme 匹配应用主题 This is the automation name text for the Graph settings option to set graph to match the app theme 功能已删除 Announcement used in Graphing Calculator when a function is removed from the function list 函数分析公式框 This is the automation name text for the equation box in the function analysis panel 等于 Screen reader prompt for the equal button on the graphing calculator operator keypad 少于 Screen reader prompt for the Less than button 小于等于 Screen reader prompt for the Less than or equal button 等于号 Screen reader prompt for the Equal button 大于等于 Screen reader prompt for the Greater than or equal button 大于 Screen reader prompt for the Greater than button X Screen reader prompt for the X button on the graphing calculator operator keypad Y Screen reader prompt for the Y button on the graphing calculator operator keypad 提交 Screen reader prompt for the submit button on the graphing calculator operator keypad 函数分析 Screen reader prompt for the function analysis grid 图形选项 Screen reader prompt for the graph options panel 历史记录和记忆列表 Automation name for the group of controls for history and memory lists. 记忆列表 Automation name for the group of controls for memory list. 已清除历史记录时段 %1 {Locked='%1'} Formatting string for a Narrator announcement when the user clears a history slot. The %1 is the index of the history slot. For example, users might hear "History slot 2 cleared". 计算器始终置顶 Announcement to indicate calculator window is always shown on top. 计算器返回完整视图 Announcement to indicate calculator window is now back to full view. 已选择算术移位 Label for a radio button that toggles arithmetic shift behavior for the shift operations. 已选择逻辑移位 Label for a radio button that toggles logical shift behavior for the shift operations. 已选择旋转循环移位 Label for a radio button that toggles rotate circular behavior for the shift operations. 已选择带进位旋转循环移位 Label for a radio button that toggles rotate circular with carry behavior for the shift operations. 设置 Header text of Settings page 外观 Subtitle of appearance setting on Settings page 应用程序主题 Title of App theme expander 选择要显示的应用主题 Description of App theme expander 浅色 Lable for light theme option 深色 Lable for dark theme option 使用系统设置 Lable for the app theme option to use system setting 返回 Screen reader prompt for the Back button in title bar to back to main page “设置”页面 Announcement used when Settings page is opened 打开可用操作的上下文菜单 Screen reader prompt for the context menu of the expression box 确定 The text of OK button to dismiss an error dialog. 无法还原此快照。 The error message to notify user that restoring from snapshot has failed. ================================================ FILE: src/Calculator/Resources/zh-TW/CEngineStrings.resw ================================================ [File too large to display: 6.9 KB] ================================================ FILE: src/Calculator/Resources/zh-TW/Resources.resw ================================================ [File too large to display: 224.8 KB] ================================================ FILE: src/Calculator/Selectors/KeyGraphFeaturesTemplateSelector.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel; using Windows.UI.Xaml; namespace CalculatorApp { namespace TemplateSelectors { public sealed class KeyGraphFeaturesTemplateSelector : Windows.UI.Xaml.Controls.DataTemplateSelector { public KeyGraphFeaturesTemplateSelector() { } public Windows.UI.Xaml.DataTemplate RichEditTemplate { get; set; } public Windows.UI.Xaml.DataTemplate GridTemplate { get; set; } public Windows.UI.Xaml.DataTemplate TextBlockTemplate { get; set; } protected override DataTemplate SelectTemplateCore(object item) { var kgfItem = (KeyGraphFeaturesItem)item; if (!kgfItem.IsText) { if (kgfItem.DisplayItems.Count != 0) { return RichEditTemplate; } else if (kgfItem.GridItems.Count != 0) { return GridTemplate; } } return TextBlockTemplate; } protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) { return SelectTemplateCore(item); } } } } ================================================ FILE: src/Calculator/Selectors/NavViewMenuItemTemplateSelector.cs ================================================ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using CalculatorApp.ViewModel.Common; using System; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace CalculatorApp.TemplateSelectors { internal sealed class NavViewMenuItemTemplateSelector : DataTemplateSelector { public DataTemplate CategoryItemTemplate { get; set; } public DataTemplate CategoryGroupItemTemplate { get; set; } protected override DataTemplate SelectTemplateCore(object item) { if (item is NavCategory) { return CategoryItemTemplate; } else if (item is NavCategoryGroup) { return CategoryGroupItemTemplate; } else { throw new NotSupportedException($"typeof(item) must be {nameof(NavCategory)} or {nameof(NavCategoryGroup)}."); } } protected override DataTemplate SelectTemplateCore(object item, DependencyObject container) { return SelectTemplateCore(item); } } } ================================================ FILE: src/Calculator/Utils/DeflateUtils.cs ================================================ [File too large to display: 1.1 KB] ================================================ FILE: src/Calculator/Utils/DelegateCommandUtils.cs ================================================ [File too large to display: 711 B] ================================================ FILE: src/Calculator/Utils/DispatcherTimerDelayer.cs ================================================ [File too large to display: 1011 B] ================================================ FILE: src/Calculator/Utils/JsonUtils.cs ================================================ [File too large to display: 10.9 KB] ================================================ FILE: src/Calculator/Utils/ResourceString.cs ================================================ [File too large to display: 524 B] ================================================ FILE: src/Calculator/Utils/ResourceVirtualKey.cs ================================================ [File too large to display: 631 B] ================================================ FILE: src/Calculator/Utils/ThemeHelper.cs ================================================ [File too large to display: 2.9 KB] ================================================ FILE: src/Calculator/Utils/VisualTree.cs ================================================ [File too large to display: 4.4 KB] ================================================ FILE: src/Calculator/Views/Calculator.xaml ================================================ [File too large to display: 99.9 KB] ================================================ FILE: src/Calculator/Views/Calculator.xaml.cs ================================================ [File too large to display: 33.5 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerBitFlipPanel.xaml ================================================ [File too large to display: 55.9 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerBitFlipPanel.xaml.cs ================================================ [File too large to display: 10.4 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerDisplayPanel.xaml ================================================ [File too large to display: 7.3 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerDisplayPanel.xaml.cs ================================================ [File too large to display: 3.3 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerOperators.xaml ================================================ [File too large to display: 17.3 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerOperators.xaml.cs ================================================ [File too large to display: 3.5 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerRadixOperators.xaml ================================================ [File too large to display: 59.2 KB] ================================================ FILE: src/Calculator/Views/CalculatorProgrammerRadixOperators.xaml.cs ================================================ [File too large to display: 8.7 KB] ================================================ FILE: src/Calculator/Views/CalculatorScientificAngleButtons.xaml ================================================ [File too large to display: 6.9 KB] ================================================ FILE: src/Calculator/Views/CalculatorScientificAngleButtons.xaml.cs ================================================ [File too large to display: 3.0 KB] ================================================ FILE: src/Calculator/Views/CalculatorScientificOperators.xaml ================================================ [File too large to display: 110.0 KB] ================================================ FILE: src/Calculator/Views/CalculatorScientificOperators.xaml.cs ================================================ [File too large to display: 5.2 KB] ================================================ FILE: src/Calculator/Views/CalculatorStandardOperators.xaml ================================================ [File too large to display: 25.9 KB] ================================================ FILE: src/Calculator/Views/CalculatorStandardOperators.xaml.cs ================================================ [File too large to display: 1.1 KB] ================================================ FILE: src/Calculator/Views/DateCalculator.xaml ================================================ [File too large to display: 103.2 KB] ================================================ FILE: src/Calculator/Views/DateCalculator.xaml.cs ================================================ [File too large to display: 9.9 KB] ================================================ FILE: src/Calculator/Views/DelighterUnitStyles.xaml ================================================ [File too large to display: 7.0 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/EquationInputArea.xaml ================================================ [File too large to display: 83.8 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/EquationInputArea.xaml.cs ================================================ [File too large to display: 23.1 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/EquationStylePanelControl.xaml ================================================ [File too large to display: 8.0 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/EquationStylePanelControl.xaml.cs ================================================ [File too large to display: 13.8 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml ================================================ [File too large to display: 59.5 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.cs ================================================ [File too large to display: 34.5 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingNumPad.xaml ================================================ [File too large to display: 124.5 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingNumPad.xaml.cs ================================================ [File too large to display: 12.8 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingSettings.xaml ================================================ [File too large to display: 16.8 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/GraphingSettings.xaml.cs ================================================ [File too large to display: 3.6 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/KeyGraphFeaturesPanel.xaml ================================================ [File too large to display: 19.3 KB] ================================================ FILE: src/Calculator/Views/GraphingCalculator/KeyGraphFeaturesPanel.xaml.cs ================================================ [File too large to display: 1.7 KB] ================================================ FILE: src/Calculator/Views/HistoryList.xaml ================================================ [File too large to display: 10.5 KB] ================================================ FILE: src/Calculator/Views/HistoryList.xaml.cs ================================================ [File too large to display: 3.0 KB] ================================================ FILE: src/Calculator/Views/MainPage.xaml ================================================ [File too large to display: 11.7 KB] ================================================ FILE: src/Calculator/Views/MainPage.xaml.cs ================================================ [File too large to display: 25.4 KB] ================================================ FILE: src/Calculator/Views/Memory.xaml ================================================ [File too large to display: 7.4 KB] ================================================ FILE: src/Calculator/Views/Memory.xaml.cs ================================================ [File too large to display: 3.1 KB] ================================================ FILE: src/Calculator/Views/MemoryListItem.xaml ================================================ [File too large to display: 5.9 KB] ================================================ FILE: src/Calculator/Views/MemoryListItem.xaml.cs ================================================ [File too large to display: 2.7 KB] ================================================ FILE: src/Calculator/Views/NumberPad.xaml ================================================ [File too large to display: 9.4 KB] ================================================ FILE: src/Calculator/Views/NumberPad.xaml.cs ================================================ [File too large to display: 4.4 KB] ================================================ FILE: src/Calculator/Views/OperatorsPanel.xaml ================================================ [File too large to display: 2.0 KB] ================================================ FILE: src/Calculator/Views/OperatorsPanel.xaml.cs ================================================ [File too large to display: 3.3 KB] ================================================ FILE: src/Calculator/Views/Settings.xaml ================================================ [File too large to display: 11.1 KB] ================================================ FILE: src/Calculator/Views/Settings.xaml.cs ================================================ [File too large to display: 6.3 KB] ================================================ FILE: src/Calculator/Views/StateTriggers/AspectRatioTrigger.cs ================================================ [File too large to display: 5.4 KB] ================================================ FILE: src/Calculator/Views/StateTriggers/ControlSizeTrigger.cs ================================================ [File too large to display: 3.3 KB] ================================================ FILE: src/Calculator/Views/SupplementaryResults.xaml ================================================ [File too large to display: 5.7 KB] ================================================ FILE: src/Calculator/Views/SupplementaryResults.xaml.cs ================================================ [File too large to display: 3.4 KB] ================================================ FILE: src/Calculator/Views/TitleBar.xaml ================================================ [File too large to display: 4.4 KB] ================================================ FILE: src/Calculator/Views/TitleBar.xaml.cs ================================================ [File too large to display: 13.5 KB] ================================================ FILE: src/Calculator/Views/UnitConverter.xaml ================================================ [File too large to display: 49.6 KB] ================================================ FILE: src/Calculator/Views/UnitConverter.xaml.cs ================================================ [File too large to display: 14.2 KB] ================================================ FILE: src/Calculator.ManagedViewModels/ApplicationViewModel.cs ================================================ [File too large to display: 12.6 KB] ================================================ FILE: src/Calculator.ManagedViewModels/Calculator.ManagedViewModels.csproj ================================================ [File too large to display: 6.0 KB] ================================================ FILE: src/Calculator.ManagedViewModels/Properties/AssemblyInfo.cs ================================================ [File too large to display: 317 B] ================================================ FILE: src/Calculator.ManagedViewModels/Properties/Calculator.ManagedViewModels.rd.xml ================================================ [File too large to display: 1.5 KB] ================================================ FILE: src/Calculator.ManagedViewModels/RelayCommand.cs ================================================ [File too large to display: 935 B] ================================================ FILE: src/Calculator.sln ================================================ [File too large to display: 13.1 KB] ================================================ FILE: src/CalculatorUITestFramework/CalculatorApp.cs ================================================ [File too large to display: 2.9 KB] ================================================ FILE: src/CalculatorUITestFramework/CalculatorDriver.cs ================================================ [File too large to display: 2.5 KB] ================================================ FILE: src/CalculatorUITestFramework/CalculatorResults.cs ================================================ [File too large to display: 2.6 KB] ================================================ FILE: src/CalculatorUITestFramework/CalculatorUITestFramework.csproj ================================================ [File too large to display: 553 B] ================================================ FILE: src/CalculatorUITestFramework/HistoryItem.cs ================================================ [File too large to display: 714 B] ================================================ FILE: src/CalculatorUITestFramework/HistoryPanel.cs ================================================ [File too large to display: 5.8 KB] ================================================ FILE: src/CalculatorUITestFramework/MemoryItem.cs ================================================ [File too large to display: 433 B] ================================================ FILE: src/CalculatorUITestFramework/MemoryPanel.cs ================================================ [File too large to display: 7.3 KB] ================================================ FILE: src/CalculatorUITestFramework/NavigationMenu.cs ================================================ [File too large to display: 2.4 KB] ================================================ FILE: src/CalculatorUITestFramework/NumberPad.cs ================================================ [File too large to display: 3.6 KB] ================================================ FILE: src/CalculatorUITestFramework/ProgrammerCalculatorPage.cs ================================================ [File too large to display: 2.1 KB] ================================================ FILE: src/CalculatorUITestFramework/ProgrammerOperatorsPanel.cs ================================================ [File too large to display: 12.2 KB] ================================================ FILE: src/CalculatorUITestFramework/ScientificCalculatorPage.cs ================================================ [File too large to display: 1.9 KB] ================================================ FILE: src/CalculatorUITestFramework/ScientificOperatorsPanel.cs ================================================ [File too large to display: 8.8 KB] ================================================ FILE: src/CalculatorUITestFramework/StandardAoTCalculatorPage.cs ================================================ [File too large to display: 6.0 KB] ================================================ FILE: src/CalculatorUITestFramework/StandardCalculatorPage.cs ================================================ [File too large to display: 2.9 KB] ================================================ FILE: src/CalculatorUITestFramework/StandardOperatorsPanel.cs ================================================ [File too large to display: 2.0 KB] ================================================ FILE: src/CalculatorUITestFramework/UnitConverterOperatorsPanel.cs ================================================ [File too large to display: 814 B] ================================================ FILE: src/CalculatorUITestFramework/UnitConverterPage.cs ================================================ [File too large to display: 3.4 KB] ================================================ FILE: src/CalculatorUITestFramework/UnitConverterResults.cs ================================================ [File too large to display: 1.7 KB] ================================================ FILE: src/CalculatorUITestFramework/WinAppDriverLocalServer.cs ================================================ [File too large to display: 4.1 KB] ================================================ FILE: src/CalculatorUITestFramework/WindowsDriverExtensions.cs ================================================ [File too large to display: 3.0 KB] ================================================ FILE: src/CalculatorUITestFramework/WindowsElementExtensions.cs ================================================ [File too large to display: 1.3 KB] ================================================ FILE: src/CalculatorUITests/CalculatorUITests.ci-internal.runsettings ================================================ [File too large to display: 881 B] ================================================ FILE: src/CalculatorUITests/CalculatorUITests.ci.runsettings ================================================ [File too large to display: 956 B] ================================================ FILE: src/CalculatorUITests/CalculatorUITests.csproj ================================================ [File too large to display: 1.1 KB] ================================================ FILE: src/CalculatorUITests/CalculatorUITests.release.runsettings ================================================ [File too large to display: 877 B] ================================================ FILE: src/CalculatorUITests/CurrencyConverterFunctionalTests.cs ================================================ [File too large to display: 16.3 KB] ================================================ FILE: src/CalculatorUITests/HistoryFunctionalTests.cs ================================================ [File too large to display: 7.8 KB] ================================================ FILE: src/CalculatorUITests/MemoryFunctionalTests.cs ================================================ [File too large to display: 5.9 KB] ================================================ FILE: src/CalculatorUITests/ProgrammerModeFunctionalTests.cs ================================================ [File too large to display: 38.4 KB] ================================================ FILE: src/CalculatorUITests/ScientificModeFunctionalTests.cs ================================================ [File too large to display: 26.4 KB] ================================================ FILE: src/CalculatorUITests/StandardModeFunctionalTests.cs ================================================ [File too large to display: 42.8 KB] ================================================ FILE: src/CalculatorUnitTests/AsyncHelper.cpp ================================================ [File too large to display: 1.1 KB] ================================================ FILE: src/CalculatorUnitTests/AsyncHelper.h ================================================ [File too large to display: 2.3 KB] ================================================ FILE: src/CalculatorUnitTests/CalcEngineTests.cpp ================================================ [File too large to display: 12.9 KB] ================================================ FILE: src/CalculatorUnitTests/CalcInputTest.cpp ================================================ [File too large to display: 19.8 KB] ================================================ FILE: src/CalculatorUnitTests/CalculatorManagerTest.cpp ================================================ [File too large to display: 62.4 KB] ================================================ FILE: src/CalculatorUnitTests/CalculatorUnitTests.vcxproj ================================================ [File too large to display: 14.2 KB] ================================================ FILE: src/CalculatorUnitTests/CalculatorUnitTests.vcxproj.filters ================================================ [File too large to display: 2.7 KB] ================================================ FILE: src/CalculatorUnitTests/CopyPasteManagerTest.cpp ================================================ [File too large to display: 85.0 KB] ================================================ FILE: src/CalculatorUnitTests/CurrencyConverterUnitTests.cpp ================================================ [File too large to display: 21.7 KB] ================================================ FILE: src/CalculatorUnitTests/DateCalculatorUnitTests.cpp ================================================ [File too large to display: 39.4 KB] ================================================ FILE: src/CalculatorUnitTests/DateUtils.h ================================================ [File too large to display: 2.0 KB] ================================================ FILE: src/CalculatorUnitTests/Helpers.h ================================================ [File too large to display: 8.3 KB] ================================================ FILE: src/CalculatorUnitTests/HistoryTests.cpp ================================================ [File too large to display: 36.1 KB] ================================================ FILE: src/CalculatorUnitTests/LocalizationServiceUnitTests.cpp ================================================ [File too large to display: 3.3 KB] ================================================ FILE: src/CalculatorUnitTests/LocalizationSettingsUnitTests.cpp ================================================ [File too large to display: 3.1 KB] ================================================ FILE: src/CalculatorUnitTests/Module.cpp ================================================ [File too large to display: 509 B] ================================================ FILE: src/CalculatorUnitTests/MultiWindowUnitTests.cpp ================================================ [File too large to display: 46.3 KB] ================================================ FILE: src/CalculatorUnitTests/NarratorAnnouncementUnitTests.cpp ================================================ [File too large to display: 10.7 KB] ================================================ FILE: src/CalculatorUnitTests/NavCategoryUnitTests.cpp ================================================ [File too large to display: 23.8 KB] ================================================ FILE: src/CalculatorUnitTests/Package.appxmanifest ================================================ [File too large to display: 1.7 KB] ================================================ FILE: src/CalculatorUnitTests/RationalTest.cpp ================================================ [File too large to display: 8.2 KB] ================================================ FILE: src/CalculatorUnitTests/StandardViewModelUnitTests.cpp ================================================ [File too large to display: 54.5 KB] ================================================ FILE: src/CalculatorUnitTests/Test.resw ================================================ [File too large to display: 19.6 KB] ================================================ FILE: src/CalculatorUnitTests/UnitConverterTest.cpp ================================================ [File too large to display: 25.6 KB] ================================================ FILE: src/CalculatorUnitTests/UnitConverterViewModelUnitTests.cpp ================================================ [File too large to display: 39.0 KB] ================================================ FILE: src/CalculatorUnitTests/UnitConverterViewModelUnitTests.h ================================================ [File too large to display: 3.4 KB] ================================================ FILE: src/CalculatorUnitTests/UnitTestApp.rd.xml ================================================ [File too large to display: 1.2 KB] ================================================ FILE: src/CalculatorUnitTests/UnitTestApp.xaml ================================================ [File too large to display: 285 B] ================================================ FILE: src/CalculatorUnitTests/UnitTestApp.xaml.cpp ================================================ [File too large to display: 4.1 KB] ================================================ FILE: src/CalculatorUnitTests/UnitTestApp.xaml.h ================================================ [File too large to display: 995 B] ================================================ FILE: src/CalculatorUnitTests/UtilsTests.cpp ================================================ [File too large to display: 961 B] ================================================ FILE: src/CalculatorUnitTests/pch.cpp ================================================ [File too large to display: 203 B] ================================================ FILE: src/CalculatorUnitTests/pch.h ================================================ [File too large to display: 1.6 KB] ================================================ FILE: src/CalculatorUnitTests/resource.h ================================================ [File too large to display: 368 B] ================================================ FILE: src/GraphControl/Control/Grapher.cpp ================================================ [File too large to display: 37.1 KB] ================================================ FILE: src/GraphControl/Control/Grapher.h ================================================ [File too large to display: 13.9 KB] ================================================ FILE: src/GraphControl/DirectX/DeviceResources.cpp ================================================ [File too large to display: 25.1 KB] ================================================ FILE: src/GraphControl/DirectX/DeviceResources.h ================================================ [File too large to display: 5.9 KB] ================================================ FILE: src/GraphControl/DirectX/DirectXHelper.h ================================================ [File too large to display: 2.4 KB] ================================================ FILE: src/GraphControl/DirectX/NearestPointRenderer.cpp ================================================ [File too large to display: 1.8 KB] ================================================ FILE: src/GraphControl/DirectX/NearestPointRenderer.h ================================================ [File too large to display: 815 B] ================================================ FILE: src/GraphControl/DirectX/RenderMain.cpp ================================================ [File too large to display: 17.8 KB] ================================================ FILE: src/GraphControl/DirectX/RenderMain.h ================================================ [File too large to display: 5.9 KB] ================================================ FILE: src/GraphControl/GraphControl.rc ================================================ [File too large to display: 376 B] ================================================ FILE: src/GraphControl/GraphControl.vcxproj ================================================ [File too large to display: 17.7 KB] ================================================ FILE: src/GraphControl/GraphControl.vcxproj.filters ================================================ [File too large to display: 2.6 KB] ================================================ FILE: src/GraphControl/Logger/TraceLogger.cpp ================================================ [File too large to display: 4.0 KB] ================================================ FILE: src/GraphControl/Logger/TraceLogger.h ================================================ [File too large to display: 775 B] ================================================ FILE: src/GraphControl/Models/Equation.cpp ================================================ [File too large to display: 3.1 KB] ================================================ FILE: src/GraphControl/Models/Equation.h ================================================ [File too large to display: 8.3 KB] ================================================ FILE: src/GraphControl/Models/EquationCollection.h ================================================ [File too large to display: 6.0 KB] ================================================ FILE: src/GraphControl/Models/KeyGraphFeaturesInfo.cpp ================================================ [File too large to display: 2.6 KB] ================================================ FILE: src/GraphControl/Models/KeyGraphFeaturesInfo.h ================================================ [File too large to display: 2.0 KB] ================================================ FILE: src/GraphControl/Models/Variable.h ================================================ [File too large to display: 524 B] ================================================ FILE: src/GraphControl/Themes/generic.xaml ================================================ [File too large to display: 555 B] ================================================ FILE: src/GraphControl/Utils.h ================================================ [File too large to display: 61.4 KB] ================================================ FILE: src/GraphControl/pch.cpp ================================================ [File too large to display: 20 B] ================================================ FILE: src/GraphControl/pch.h ================================================ [File too large to display: 1015 B] ================================================ FILE: src/GraphControl/winrtHeaders.h ================================================ [File too large to display: 656 B] ================================================ FILE: src/GraphingImpl/GraphingImpl.rc ================================================ [File too large to display: 387 B] ================================================ FILE: src/GraphingImpl/GraphingImpl.vcxproj ================================================ [File too large to display: 13.0 KB] ================================================ FILE: src/GraphingImpl/GraphingImpl.vcxproj.filters ================================================ [File too large to display: 2.6 KB] ================================================ FILE: src/GraphingImpl/Mocks/Bitmap.h ================================================ [File too large to display: 369 B] ================================================ FILE: src/GraphingImpl/Mocks/Graph.h ================================================ [File too large to display: 2.0 KB] ================================================ FILE: src/GraphingImpl/Mocks/GraphRenderer.h ================================================ [File too large to display: 3.2 KB] ================================================ FILE: src/GraphingImpl/Mocks/GraphingOptions.h ================================================ [File too large to display: 11.2 KB] ================================================ FILE: src/GraphingImpl/Mocks/MathSolver.cpp ================================================ [File too large to display: 646 B] ================================================ FILE: src/GraphingImpl/Mocks/MathSolver.h ================================================ [File too large to display: 3.5 KB] ================================================ FILE: src/GraphingImpl/dllmain.cpp ================================================ [File too large to display: 405 B] ================================================ FILE: src/GraphingImpl/pch.cpp ================================================ [File too large to display: 20 B] ================================================ FILE: src/GraphingImpl/pch.h ================================================ [File too large to display: 162 B] ================================================ FILE: src/GraphingImpl/targetver.h ================================================ [File too large to display: 309 B] ================================================ FILE: src/GraphingInterfaces/Common.h ================================================ [File too large to display: 2.7 KB] ================================================ FILE: src/GraphingInterfaces/GraphingEnums.h ================================================ [File too large to display: 16.9 KB] ================================================ FILE: src/GraphingInterfaces/IBitmap.h ================================================ [File too large to display: 240 B] ================================================ FILE: src/GraphingInterfaces/IEquation.h ================================================ [File too large to display: 549 B] ================================================ FILE: src/GraphingInterfaces/IEquationOptions.h ================================================ [File too large to display: 1.3 KB] ================================================ FILE: src/GraphingInterfaces/IGraph.h ================================================ [File too large to display: 1.0 KB] ================================================ FILE: src/GraphingInterfaces/IGraphAnalyzer.h ================================================ [File too large to display: 811 B] ================================================ FILE: src/GraphingInterfaces/IGraphRenderer.h ================================================ [File too large to display: 1.7 KB] ================================================ FILE: src/GraphingInterfaces/IGraphingOptions.h ================================================ [File too large to display: 4.9 KB] ================================================ FILE: src/GraphingInterfaces/IMathSolver.h ================================================ [File too large to display: 2.6 KB] ================================================ FILE: src/Settings.XamlStyler ================================================ [File too large to display: 1.9 KB] ================================================ FILE: src/TraceLogging/TraceLogging.rc ================================================ [File too large to display: 376 B] ================================================ FILE: src/TraceLogging/TraceLogging.vcxproj ================================================ [File too large to display: 13.6 KB] ================================================ FILE: src/TraceLogging/TraceLogging.vcxproj.filters ================================================ [File too large to display: 781 B] ================================================ FILE: src/TraceLogging/TraceLoggingCommon.cpp ================================================ [File too large to display: 3.2 KB] ================================================ FILE: src/TraceLogging/TraceLoggingCommon.h ================================================ [File too large to display: 1.3 KB] ================================================ FILE: src/TraceLogging/pch.cpp ================================================ [File too large to display: 114 B] ================================================ FILE: src/TraceLogging/pch.h ================================================ [File too large to display: 223 B] ================================================ FILE: src/build/Calculator.StampAssemblyInfo.targets ================================================ [File too large to display: 1.1 KB] ================================================ FILE: src/build/appversion.rc ================================================ [File too large to display: 2.4 KB]