This commit is contained in:
Han Zhang 2024-01-09 14:56:29 +08:00
commit 2b531b1f51
86 changed files with 1628 additions and 2229 deletions

View file

@ -0,0 +1,13 @@
{
"tool": "Credential Scanner",
"suppressions": [
{
"file": "\\src\\Calculator\\WindowsDev_TemporaryKey.pfx",
"_justification": "This is an untrusted, self-signed certificate which is used only during development. Its private key is not intended to be secret."
},
{
"file": "\\src\\CalculatorUnitTests\\WindowsDev_TemporaryKey.pfx",
"_justification": "This is an untrusted, self-signed certificate which is used only during development. Its private key is not intended to be secret."
}
]
}

1550
.github/fabricbot.json vendored

File diff suppressed because it is too large Load diff

135
.github/policies/resourceManagement.yml vendored Normal file
View file

@ -0,0 +1,135 @@
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:

View file

@ -12,47 +12,64 @@ pr: none
name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0 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
stages:
- stage:
jobs: jobs:
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxManifest: false useReleaseAppxManifest: false
platform: x64 platform: x64
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxManifest: false useReleaseAppxManifest: false
platform: x86 platform: x86
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxManifest: false useReleaseAppxManifest: false
platform: ARM platform: ARM
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxManifest: false useReleaseAppxManifest: false
platform: ARM64 platform: ARM64
- template: ./templates/run-ui-tests.yaml - template: /build/pipelines/templates/run-ui-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
runsettingsFileName: CalculatorUITests.ci-internal.runsettings runsettingsFileName: CalculatorUITests.ci-internal.runsettings
- template: ./templates/run-ui-tests.yaml - template: /build/pipelines/templates/run-ui-tests.yaml@self
parameters: parameters:
platform: x86 platform: x86
runsettingsFileName: CalculatorUITests.ci-internal.runsettings runsettingsFileName: CalculatorUITests.ci-internal.runsettings
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x86 platform: x86
- template: ./templates/package-msixbundle.yaml - template: /build/pipelines/templates/package-msixbundle.yaml@self

View file

@ -15,46 +15,63 @@ pr:
name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0 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: EssentialExperiencesOpenSource-windows-2022
image: MMSWindows2022-Secure
os: windows
sdl:
binskim:
enabled: false
stages:
- stage: Calculator
jobs: jobs:
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: x64 platform: x64
isOSSBuild: true isOSSBuild: true
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: x86 platform: x86
isOSSBuild: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
isOSSBuild: true
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: ARM platform: ARM
isOSSBuild: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
isOSSBuild: true
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: ARM64 platform: ARM64
isOSSBuild: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
isOSSBuild: true
- template: ./templates/run-ui-tests.yaml - template: /build/pipelines/templates/run-ui-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
isOSSBuild: true isOSSBuild: true
runsettingsFileName: CalculatorUITests.ci.runsettings runsettingsFileName: CalculatorUITests.ci.runsettings
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
isOSSBuild: true
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x86 platform: x86
isOSSBuild: true
- template: ./templates/package-msixbundle.yaml - template: /build/pipelines/templates/package-msixbundle.yaml@self
parameters:
isOSSBuild: true

View file

@ -9,62 +9,79 @@ pr: none
variables: variables:
versionMajor: 11 versionMajor: 11
versionMinor: 2305 versionMinor: 2311
versionBuild: $[counter(format('{0}.{1}.*', variables['versionMajor'], variables['versionMinor']), 0)] versionBuild: $[counter(format('{0}.{1}.*', variables['versionMajor'], variables['versionMinor']), 0)]
versionPatch: 0 versionPatch: 0
name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)' name: '$(versionMajor).$(versionMinor).$(versionBuild).$(versionPatch)'
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
stages:
- stage: Calculator
jobs: jobs:
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: x64 platform: x64
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxmanifest: true useReleaseAppxmanifest: true
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: x86 platform: x86
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxmanifest: true useReleaseAppxmanifest: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: ARM platform: ARM
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxmanifest: true useReleaseAppxmanifest: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
- template: ./templates/build-single-architecture.yaml - template: /build/pipelines/templates/build-single-architecture.yaml@self
parameters: parameters:
platform: ARM64 platform: ARM64
isReleaseBuild: true isReleaseBuild: true
useReleaseAppxmanifest: true useReleaseAppxmanifest: true
condition: not(eq(variables['Build.Reason'], 'PullRequest')) condition: not(eq(variables['Build.Reason'], 'PullRequest'))
- template: ./templates/run-ui-tests.yaml - template: /build/pipelines/templates/run-ui-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
runsettingsFileName: CalculatorUITests.release.runsettings runsettingsFileName: CalculatorUITests.release.runsettings
- template: ./templates/run-ui-tests.yaml - template: /build/pipelines/templates/run-ui-tests.yaml@self
parameters: parameters:
platform: x86 platform: x86
runsettingsFileName: CalculatorUITests.release.runsettings runsettingsFileName: CalculatorUITests.release.runsettings
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x64 platform: x64
- template: ./templates/run-unit-tests.yaml - template: /build/pipelines/templates/run-unit-tests.yaml@self
parameters: parameters:
platform: x86 platform: x86
- template: ./templates/package-msixbundle.yaml - template: /build/pipelines/templates/package-msixbundle.yaml@self
parameters: parameters:
signBundle: true signBundle: true
createStoreBrokerPackages: true createStoreBrokerPackages: true
- template: ./templates/release-store.yaml - template: /build/pipelines/templates/release-store.yaml@self
- template: ./templates/release-vpack.yaml - template: /build/pipelines/templates/release-vpack.yaml@self

View file

@ -11,11 +11,6 @@ jobs:
- job: Build${{ parameters.platform }} - job: Build${{ parameters.platform }}
displayName: Build ${{ parameters.platform }} displayName: Build ${{ parameters.platform }}
condition: ${{ parameters.condition }} condition: ${{ parameters.condition }}
pool:
${{ if eq(parameters.isOSSBuild, true) }}:
name: EssentialExperiencesOpenSource-windows-2022
${{ if eq(parameters.isOSSBuild, false) }}:
name: EssentialExperiences-windows-2022
variables: variables:
BuildConfiguration: Release BuildConfiguration: Release
BuildPlatform: ${{ parameters.platform }} BuildPlatform: ${{ parameters.platform }}
@ -33,10 +28,25 @@ jobs:
ManifestFileName: 'Package.appxmanifest' ManifestFileName: 'Package.appxmanifest'
${{ if eq(parameters.useReleaseAppxManifest, true) }}: ${{ if eq(parameters.useReleaseAppxManifest, true) }}:
ManifestFileName: 'Package.Release.appxmanifest' 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: steps:
- checkout: self - checkout: self
fetchDepth: 1 fetchDepth: 1
- ${{ if eq(parameters.isOSSBuild, true) }}:
- task: nuget-security-analysis@0
displayName: Secure Supply Chain Analysis
- ${{ if eq(parameters.isReleaseBuild, true) }}: - ${{ if eq(parameters.isReleaseBuild, true) }}:
- task: UniversalPackages@0 - task: UniversalPackages@0
displayName: Download internals package displayName: Download internals package
@ -75,30 +85,6 @@ jobs:
maximumCpuCount: true maximumCpuCount: true
- ${{ if eq(parameters.isReleaseBuild, true) }}: - ${{ if eq(parameters.isReleaseBuild, true) }}:
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0
displayName: 'Generate Software Bill of Material(SBoM)'
inputs:
BuildDropPath: $(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)\Calculator
PackageName: 'Microsoft.WindowsCalculator'
PackageVersion: $(Build.BuildNumber)
- task: PublishBuildArtifacts@1
displayName: Publish drop artifact
inputs:
artifactName: drop
pathToPublish: $(Build.BinariesDirectory)
parallel: true
- ${{ if eq(parameters.isReleaseBuild, true) }}:
- task: PublishSymbols@2
displayName: Publish symbols
inputs:
symbolsFolder: $(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)
searchPattern: '**/*.pdb'
symbolServerType: teamServices
treatNotIndexedAsWarning: true
symbolsArtifactName: $(System.teamProject)/$(Build.BuildNumber)_$(BuildPlatform)$(BuildConfiguration)
- task: CopyFiles@2 - task: CopyFiles@2
displayName: Copy Files for BinSkim analysis displayName: Copy Files for BinSkim analysis
inputs: inputs:
@ -110,7 +96,8 @@ jobs:
# - WebView2Loader.dll # - WebView2Loader.dll
# - Microsoft.Web.WebView2.Core.dll # - Microsoft.Web.WebView2.Core.dll
Contents: | Contents: |
**\* **\*.dll
**\*.exe
!**\clrcompression.dll !**\clrcompression.dll
!**\WebView2Loader.dll !**\WebView2Loader.dll
!**\Microsoft.Web.WebView2.Core.dll !**\Microsoft.Web.WebView2.Core.dll
@ -120,24 +107,15 @@ jobs:
flattenFolders: false flattenFolders: false
analyzeTarget: '$(Agent.BuildDirectory)\binskim\*' analyzeTarget: '$(Agent.BuildDirectory)\binskim\*'
- task: securedevelopmentteam.vss-secure-development-tools.build-task-binskim.BinSkim@3 - task: PublishSymbols@2
displayName: Run BinSkim displayName: Publish symbols
inputs: inputs:
inputType: Basic symbolsFolder: $(Build.BinariesDirectory)\$(BuildConfiguration)\$(BuildPlatform)
analyzeTarget: '$(Agent.BuildDirectory)\binskim\*' searchPattern: '**/*.pdb'
analyzeVerbose: true symbolServerType: teamServices
analyzeHashes: true treatNotIndexedAsWarning: true
continueOnError: true
- task: securedevelopmentteam.vss-secure-development-tools.build-task-policheck.PoliCheck@1 - task: securedevelopmentteam.vss-secure-development-tools.build-task-policheck.PoliCheck@1
displayName: Run PoliCheck displayName: Run PoliCheck
inputs: inputs:
targetType: F targetType: F
- task: securedevelopmentteam.vss-secure-development-tools.build-task-publishsecurityanalysislogs.PublishSecurityAnalysisLogs@2
displayName: Publish security analysis logs
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
displayName: Detect open source components
inputs:
sourceScanPath: $(Agent.BuildDirectory)

View file

@ -3,7 +3,6 @@
# this job also signs the bundle and creates StoreBroker packages. # this job also signs the bundle and creates StoreBroker packages.
parameters: parameters:
isOSSBuild: false
signBundle: false signBundle: false
createStoreBrokerPackages: false createStoreBrokerPackages: false
@ -22,24 +21,67 @@ jobs:
in(dependencies.BuildARM.result, 'Succeeded', 'SucceededWithIssues', 'Skipped'), in(dependencies.BuildARM.result, 'Succeeded', 'SucceededWithIssues', 'Skipped'),
in(dependencies.BuildARM64.result, 'Succeeded', 'SucceededWithIssues', 'Skipped') in(dependencies.BuildARM64.result, 'Succeeded', 'SucceededWithIssues', 'Skipped')
) )
pool:
${{ if eq(parameters.isOSSBuild, true) }}:
name: EssentialExperiencesOpenSource-windows-2022
${{ if eq(parameters.isOSSBuild, false) }}:
name: EssentialExperiences-windows-2022
variables: variables:
skipComponentGovernanceDetection: true skipComponentGovernanceDetection: true
StoreBrokerMediaRootPath: $(TEMP)\SBMedia StoreBrokerMediaRootPath: $(TEMP)\SBMedia
StoreBrokerPackagePath: $(Build.ArtifactStagingDirectory)\storeBrokerPayload StoreBrokerPackagePath: $(Build.ArtifactStagingDirectory)\storeBrokerPayload
PackageX86: $[in(dependencies.Buildx86.result, 'Succeeded', 'SucceededWithIssues')]
PackageX64: $[in(dependencies.Buildx64.result, 'Succeeded', 'SucceededWithIssues')]
PackageARM: $[in(dependencies.BuildARM.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: steps:
- checkout: self - checkout: self
fetchDepth: 1 fetchDepth: 1
- task: DownloadBuildArtifacts@0 - task: DownloadPipelineArtifact@2
displayName: Download all .msix artifacts displayName: Download all .msix artifacts (x86)
condition: and(succeeded(), eq(variables.PackageX86, 'true'))
inputs: inputs:
artifactName: drop artifactName: drop-x86
itemPattern: '**/*.msix' 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 (ARM)
condition: and(succeeded(), eq(variables.PackageARM, 'true'))
inputs:
artifactName: drop-ARM
itemPattern: '**/*.msix'
targetPath: $(Build.ArtifactStagingDirectory)\drop\ARM
- 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 eq(parameters.createStoreBrokerPackages, true) }}: - ${{ if eq(parameters.createStoreBrokerPackages, true) }}:
- task: UniversalPackages@0 - task: UniversalPackages@0
@ -55,7 +97,7 @@ jobs:
displayName: Generate MsixBundle mapping displayName: Generate MsixBundle mapping
inputs: inputs:
filePath: $(Build.SourcesDirectory)\build\scripts\CreateMsixBundleMapping.ps1 filePath: $(Build.SourcesDirectory)\build\scripts\CreateMsixBundleMapping.ps1
arguments: '-InputPath $(Build.ArtifactStagingDirectory)\drop\Release -ProjectName Calculator -OutputFile $(Build.BinariesDirectory)\MsixBundleMapping.txt' arguments: '-InputPath $(Build.ArtifactStagingDirectory)\drop -ProjectName Calculator -OutputFile $(Build.BinariesDirectory)\MsixBundleMapping.txt'
- powershell: | - powershell: |
$buildVersion = [version]$Env:BUILDVERSION $buildVersion = [version]$Env:BUILDVERSION
@ -74,12 +116,6 @@ jobs:
contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle
targetFolder: $(Build.ArtifactStagingDirectory)\msixBundle targetFolder: $(Build.ArtifactStagingDirectory)\msixBundle
- task: PublishBuildArtifacts@1
displayName: Publish MsixBundle artifact
inputs:
artifactName: msixBundle
pathToPublish: $(Build.ArtifactStagingDirectory)\msixBundle
- ${{ if eq(parameters.signBundle, true) }}: - ${{ if eq(parameters.signBundle, true) }}:
- task: EsrpCodeSigning@2 - task: EsrpCodeSigning@2
displayName: Send msixbundle to code signing service displayName: Send msixbundle to code signing service
@ -114,11 +150,6 @@ jobs:
"ToolVersion": "1.0" "ToolVersion": "1.0"
} }
] ]
- task: PublishBuildArtifacts@1
displayName: Publish MsixBundleSigned artifact
inputs:
pathtoPublish: $(Build.ArtifactStagingDirectory)\msixBundle
artifactName: msixBundleSigned
- ${{ if eq(parameters.createStoreBrokerPackages, true) }}: - ${{ if eq(parameters.createStoreBrokerPackages, true) }}:
- powershell: | - powershell: |
@ -152,9 +183,3 @@ jobs:
pdpMediaPath: $(StoreBrokerMediaRootPath) pdpMediaPath: $(StoreBrokerMediaRootPath)
outSBPackagePath: $(StoreBrokerPackagePath) outSBPackagePath: $(StoreBrokerPackagePath)
outSBName: SBCalculator outSBName: SBCalculator
- task: PublishBuildArtifacts@1
displayName: Publish StoreBroker Payload artifact
inputs:
pathtoPublish: $(StoreBrokerPackagePath)
artifactName: storeBrokerPayload

View file

@ -3,11 +3,9 @@
jobs: jobs:
- job: ReleaseStore - job: ReleaseStore
dependsOn: Package dependsOn: Package
pool:
name: EssentialExperiences-windows-2022
variables: variables:
skipComponentGovernanceDetection: true skipComponentGovernanceDetection: true
StoreBrokerPackagePath: $(Build.ArtifactStagingDirectory)\storeBrokerPayload StoreBrokerPackagePath: $(Pipeline.Workspace)\storeBrokerPayload
StoreBrokerLogPath: $(StoreBrokerPackagePath)\StoreBroker.log StoreBrokerLogPath: $(StoreBrokerPackagePath)\StoreBroker.log
FlightId: 161f0975-cb5f-475b-8ef6-26383c37621f FlightId: 161f0975-cb5f-475b-8ef6-26383c37621f
AppId: 9WZDNCRFHVN5 AppId: 9WZDNCRFHVN5
@ -15,10 +13,9 @@ jobs:
steps: steps:
- checkout: none - checkout: none
- task: DownloadBuildArtifacts@0 - download: current
displayName: Download storeBrokerPayload artifact displayName: Download storeBrokerPayload artifact
inputs: artifact: storeBrokerPayload
artifactName: storeBrokerPayload
- task: MS-RDX-MRO.windows-store-publish-dev.flight-task.store-flight@2 - task: MS-RDX-MRO.windows-store-publish-dev.flight-task.store-flight@2
displayName: Flight StoreBroker Payload to team ring displayName: Flight StoreBroker Payload to team ring

View file

@ -4,39 +4,38 @@
jobs: jobs:
- job: ReleaseVPack - job: ReleaseVPack
dependsOn: Package dependsOn: Package
pool:
name: EssentialExperiences-windows-2022
variables: variables:
skipComponentGovernanceDetection: true skipComponentGovernanceDetection: true
templateContext:
outputs:
- output: pipelineArtifact
displayName: Publish vpack\app artifact with vpack manifest
targetPath: $(XES_VPACKMANIFESTDIRECTORY)\$(XES_VPACKMANIFESTNAME)
artifactName: vpackManifest
sbomEnabled: false
steps: steps:
- checkout: none - checkout: none
- task: DownloadBuildArtifacts@0 - download: current
displayName: Download msixBundleSigned artifact displayName: Download msixBundleSigned artifact
inputs: artifact: msixBundleSigned
artifactName: msixBundleSigned
- task: CopyFiles@2 - task: CopyFiles@2
displayName: Copy signed MsixBundle to vpack staging folder displayName: Copy signed MsixBundle to vpack staging folder
inputs: inputs:
sourceFolder: $(Build.ArtifactStagingDirectory)\msixBundleSigned sourceFolder: $(Pipeline.Workspace)\msixBundleSigned
contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle contents: Microsoft.WindowsCalculator_8wekyb3d8bbwe.msixbundle
targetFolder: $(Build.ArtifactStagingDirectory)\vpack\msixBundle targetFolder: $(Pipeline.Workspace)\vpack\msixBundle
- task: PkgESVPack@12 - task: PkgESVPack@12
displayName: Create and push vpack for app displayName: Create and push vpack for app
env: env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken) SYSTEM_ACCESSTOKEN: $(System.AccessToken)
inputs: inputs:
sourceDirectory: $(Build.ArtifactStagingDirectory)\vpack\msixBundle sourceDirectory: $(Pipeline.Workspace)\vpack\msixBundle
description: VPack for the Calculator Application description: VPack for the Calculator Application
pushPkgName: calculator.app pushPkgName: calculator.app
version: $(versionMajor).$(versionMinor).$(versionBuild) version: $(versionMajor).$(versionMinor).$(versionBuild)
owner: paxeeapps owner: paxeeapps
provData: true provData: true
- task: PublishBuildArtifacts@1
displayName: Publish vpack\app artifact with vpack manifest
inputs:
pathtoPublish: $(XES_VPACKMANIFESTDIRECTORY)\$(XES_VPACKMANIFESTNAME)
artifactName: vpackManifest

View file

@ -17,6 +17,8 @@ jobs:
name: EssentialExperiences-Win11 name: EssentialExperiences-Win11
variables: variables:
skipComponentGovernanceDetection: true skipComponentGovernanceDetection: true
DropName: drop-${{ parameters.platform }}
steps: steps:
- checkout: self - checkout: self
fetchDepth: 1 fetchDepth: 1
@ -33,32 +35,29 @@ jobs:
width: 1920 width: 1920
height: 1080 height: 1080
- task: DownloadBuildArtifacts@0 - download: current
displayName: Download MsixBundle and CalculatorUITests displayName: Download MsixBundle and CalculatorUITests
inputs: artifact: $(DropName)
artifactName: drop patterns: |
itemPattern: | Calculator/AppPackages/**
drop/Release/${{ parameters.platform }}/Calculator/AppPackages/** publish/**
drop/Release/${{ parameters.platform }}/publish/**
- task: PowerShell@2 - task: PowerShell@2
displayName: Install certificate displayName: Install certificate
inputs: inputs:
filePath: $(Build.ArtifactStagingDirectory)/drop/Release/${{ parameters.platform }}/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Add-AppDevPackage.ps1 filePath: $(Pipeline.Workspace)/$(DropName)/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Add-AppDevPackage.ps1
arguments: -CertificatePath $(Build.ArtifactStagingDirectory)/drop/Release/${{ parameters.platform }}/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Calculator_$(Build.BuildNumber)_${{ parameters.platform }}.cer -Force arguments: -CertificatePath $(Pipeline.Workspace)/$(DropName)/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Calculator_$(Build.BuildNumber)_${{ parameters.platform }}.cer -Force
- task: PowerShell@2 - task: PowerShell@2
displayName: Install app displayName: Install app
inputs: inputs:
filePath: $(Build.ArtifactStagingDirectory)/drop/Release/${{ parameters.platform }}/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Add-AppDevPackage.ps1 filePath: $(Pipeline.Workspace)/$(DropName)/Calculator/AppPackages/Calculator_$(Build.BuildNumber)_Test/Add-AppDevPackage.ps1
arguments: -Force arguments: -Force
- task: VSTest@2 - task: VSTest@2
displayName: Run CalculatorUITests displayName: Run CalculatorUITests
inputs: inputs:
testAssemblyVer2: $(Build.ArtifactStagingDirectory)/drop/Release/${{ parameters.platform }}/publish/CalculatorUITests.dll testAssemblyVer2: $(Pipeline.Workspace)/$(DropName)/publish/CalculatorUITests.dll
runSettingsFile: $(Build.ArtifactStagingDirectory)/drop/Release/${{ parameters.platform }}/publish/${{ parameters.runsettingsFileName }} runSettingsFile: $(Pipeline.Workspace)/$(DropName)/publish/${{ parameters.runsettingsFileName }}
platform: ${{ parameters.platform }} platform: ${{ parameters.platform }}
configuration: Release configuration: Release
${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
testFiltercriteria: Priority=0

View file

@ -1,7 +1,6 @@
# This template contains jobs to run unit tests. # This template contains jobs to run unit tests.
parameters: parameters:
isOSSBuild: false
platform: '' platform: ''
runsettingsFileName: '' runsettingsFileName: ''
@ -10,30 +9,25 @@ jobs:
displayName: UnitTests ${{ parameters.platform }} displayName: UnitTests ${{ parameters.platform }}
dependsOn: Build${{ parameters.platform }} dependsOn: Build${{ parameters.platform }}
condition: succeeded() condition: succeeded()
pool:
${{ if eq(parameters.isOSSBuild, true) }}:
name: EssentialExperiencesOpenSource-windows-2022
${{ if eq(parameters.isOSSBuild, false) }}:
name: EssentialExperiences-windows-2022
variables: variables:
skipComponentGovernanceDetection: true skipComponentGovernanceDetection: true
UnitTestsDir: $(Pipeline.Workspace)\drop-${{ parameters.platform }}\CalculatorUnitTests\AppPackages\CalculatorUnitTests_Test
steps: steps:
- checkout: none - checkout: none
- task: DownloadBuildArtifacts@0 - download: current
displayName: Download CalculatorUnitTests displayName: Download CalculatorUnitTests
inputs: artifact: drop-${{ parameters.platform }}
artifactName: drop patterns: '**/CalculatorUnitTests_Test/**'
itemPattern: drop/Release/${{ parameters.platform }}/CalculatorUnitTests/AppPackages/CalculatorUnitTests_Test/**
- task: PowerShell@2 - task: PowerShell@2
displayName: Install Certificate displayName: Install Certificate
inputs: inputs:
filePath: $(Build.ArtifactStagingDirectory)\drop\Release\${{ parameters.platform }}\CalculatorUnitTests\AppPackages\CalculatorUnitTests_Test\Add-AppDevPackage.ps1 filePath: $(UnitTestsDir)\Add-AppDevPackage.ps1
arguments: -CertificatePath $(Build.ArtifactStagingDirectory)\drop\Release\${{ parameters.platform }}\CalculatorUnitTests\AppPackages\CalculatorUnitTests_Test\CalculatorUnitTests.cer -Force arguments: -CertificatePath $(UnitTestsDir)\CalculatorUnitTests.cer -Force
- task: VSTest@2 - task: VSTest@2
displayName: Run CalculatorUnitTests displayName: Run CalculatorUnitTests
inputs: inputs:
testAssemblyVer2: $(Build.ArtifactStagingDirectory)\drop\Release\${{ parameters.platform }}\CalculatorUnitTests\AppPackages\CalculatorUnitTests_Test\CalculatorUnitTests.msix testAssemblyVer2: $(UnitTestsDir)\CalculatorUnitTests.msix
otherConsoleOptions: /Platform:${{ parameters.platform }} otherConsoleOptions: /Platform:${{ parameters.platform }}

View file

@ -3,7 +3,6 @@
<packageSources> <packageSources>
<clear /> <clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Toolkit Labs" value="https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json" />
</packageSources> </packageSources>
<disabledPackageSources> <disabledPackageSources>
<clear /> <clear />

View file

@ -344,6 +344,9 @@
<ClCompile Include="NumberFormattingUtils.cpp" /> <ClCompile Include="NumberFormattingUtils.cpp" />
<ClCompile Include="UnitConverter.cpp" /> <ClCompile Include="UnitConverter.cpp" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Natvis Include="ratpak.natvis" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" /> <ImportGroup Label="ExtensionTargets" />
</Project> </Project>

View file

@ -162,4 +162,9 @@
</ClInclude> </ClInclude>
<ClInclude Include="NumberFormattingUtils.h" /> <ClInclude Include="NumberFormattingUtils.h" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Natvis Include="ratpak.natvis">
<Filter>RatPack</Filter>
</Natvis>
</ItemGroup>
</Project> </Project>

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="_number">
<Expand>
<Item Name="sign">sign</Item>
<Item Name="exp">exp</Item>
<ArrayItems>
<Size>cdigit</Size>
<ValuePointer>mant</ValuePointer>
</ArrayItems>
</Expand>
</Type>
<Type Name="_rat">
<DisplayString>{*pp}/{*pq}</DisplayString>
</Type>
</AutoVisualizer>

View file

@ -107,6 +107,14 @@ CurrencyDataLoader::CurrencyDataLoader(_In_ unique_ptr<ICurrencyHttpClient> clie
if (GlobalizationPreferences::Languages->Size > 0) if (GlobalizationPreferences::Languages->Size > 0)
{ {
m_responseLanguage = GlobalizationPreferences::Languages->GetAt(0); m_responseLanguage = GlobalizationPreferences::Languages->GetAt(0);
// Workaround for Simplified Chinese localization issue of currency API.
std::wstring_view responseLanguage(m_responseLanguage->Data(), m_responseLanguage->Length());
std::match_results<std::wstring_view::const_iterator> match;
if (std::regex_match(responseLanguage.cbegin(), responseLanguage.cend(), match, std::wregex(L"zh-hans-[a-z]+", std::regex_constants::icase)))
{
m_responseLanguage = L"zh-CN";
}
} }
else else
{ {

View file

@ -165,7 +165,8 @@ namespace CalculatorApp
Data_Zetabytes = UnitStart + 164, Data_Zetabytes = UnitStart + 164,
Area_Pyeong = UnitStart + 165, Area_Pyeong = UnitStart + 165,
Energy_Kilowatthour = UnitStart + 166, Energy_Kilowatthour = UnitStart + 166,
UnitEnd = Energy_Kilowatthour Data_Nibble = UnitStart + 167,
UnitEnd = Data_Nibble
}; };
} }
} }

View file

@ -250,81 +250,83 @@ void UnitConverterDataLoader::GetUnits(_In_ unordered_map<ViewMode, vector<Order
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Bit, GetLocalizedStringName(L"UnitName_Bit"), GetLocalizedStringName(L"UnitAbbreviation_Bit"), 1 }); OrderedUnit{ UnitConverterUnits::Data_Bit, GetLocalizedStringName(L"UnitName_Bit"), GetLocalizedStringName(L"UnitAbbreviation_Bit"), 1 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Byte, GetLocalizedStringName(L"UnitName_Byte"), GetLocalizedStringName(L"UnitAbbreviation_Byte"), 2 }); OrderedUnit{ UnitConverterUnits::Data_Byte, GetLocalizedStringName(L"UnitName_Byte"), GetLocalizedStringName(L"UnitAbbreviation_Byte"), 3 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Exabits, GetLocalizedStringName(L"UnitName_Exabits"), GetLocalizedStringName(L"UnitAbbreviation_Exabits"), 23 }); OrderedUnit{ UnitConverterUnits::Data_Exabits, GetLocalizedStringName(L"UnitName_Exabits"), GetLocalizedStringName(L"UnitAbbreviation_Exabits"), 24 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Exabytes, GetLocalizedStringName(L"UnitName_Exabytes"), GetLocalizedStringName(L"UnitAbbreviation_Exabytes"), 25 }); UnitConverterUnits::Data_Exabytes, GetLocalizedStringName(L"UnitName_Exabytes"), GetLocalizedStringName(L"UnitAbbreviation_Exabytes"), 26 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Exbibits, GetLocalizedStringName(L"UnitName_Exbibits"), GetLocalizedStringName(L"UnitAbbreviation_Exbibits"), 24 }); UnitConverterUnits::Data_Exbibits, GetLocalizedStringName(L"UnitName_Exbibits"), GetLocalizedStringName(L"UnitAbbreviation_Exbibits"), 25 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Exbibytes, GetLocalizedStringName(L"UnitName_Exbibytes"), GetLocalizedStringName(L"UnitAbbreviation_Exbibytes"), 26 }); UnitConverterUnits::Data_Exbibytes, GetLocalizedStringName(L"UnitName_Exbibytes"), GetLocalizedStringName(L"UnitAbbreviation_Exbibytes"), 27 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Gibibits, GetLocalizedStringName(L"UnitName_Gibibits"), GetLocalizedStringName(L"UnitAbbreviation_Gibibits"), 12 }); UnitConverterUnits::Data_Gibibits, GetLocalizedStringName(L"UnitName_Gibibits"), GetLocalizedStringName(L"UnitAbbreviation_Gibibits"), 13 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Gibibytes, GetLocalizedStringName(L"UnitName_Gibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Gibibytes"), 14 }); UnitConverterUnits::Data_Gibibytes, GetLocalizedStringName(L"UnitName_Gibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Gibibytes"), 15 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Gigabit, GetLocalizedStringName(L"UnitName_Gigabit"), GetLocalizedStringName(L"UnitAbbreviation_Gigabit"), 11 }); OrderedUnit{ UnitConverterUnits::Data_Gigabit, GetLocalizedStringName(L"UnitName_Gigabit"), GetLocalizedStringName(L"UnitAbbreviation_Gigabit"), 12 });
dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Gigabyte, dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Gigabyte,
GetLocalizedStringName(L"UnitName_Gigabyte"), GetLocalizedStringName(L"UnitName_Gigabyte"),
GetLocalizedStringName(L"UnitAbbreviation_Gigabyte"), GetLocalizedStringName(L"UnitAbbreviation_Gigabyte"),
13, 14,
true, true,
false, false,
false }); false });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Kibibits, GetLocalizedStringName(L"UnitName_Kibibits"), GetLocalizedStringName(L"UnitAbbreviation_Kibibits"), 4 }); UnitConverterUnits::Data_Kibibits, GetLocalizedStringName(L"UnitName_Kibibits"), GetLocalizedStringName(L"UnitAbbreviation_Kibibits"), 5 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Kibibytes, GetLocalizedStringName(L"UnitName_Kibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Kibibytes"), 6 }); UnitConverterUnits::Data_Kibibytes, GetLocalizedStringName(L"UnitName_Kibibytes"), GetLocalizedStringName(L"UnitAbbreviation_Kibibytes"), 7 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Kilobit, GetLocalizedStringName(L"UnitName_Kilobit"), GetLocalizedStringName(L"UnitAbbreviation_Kilobit"), 3 }); OrderedUnit{ UnitConverterUnits::Data_Kilobit, GetLocalizedStringName(L"UnitName_Kilobit"), GetLocalizedStringName(L"UnitAbbreviation_Kilobit"), 4 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Kilobyte, GetLocalizedStringName(L"UnitName_Kilobyte"), GetLocalizedStringName(L"UnitAbbreviation_Kilobyte"), 5 }); UnitConverterUnits::Data_Kilobyte, GetLocalizedStringName(L"UnitName_Kilobyte"), GetLocalizedStringName(L"UnitAbbreviation_Kilobyte"), 6 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Mebibits, GetLocalizedStringName(L"UnitName_Mebibits"), GetLocalizedStringName(L"UnitAbbreviation_Mebibits"), 8 }); UnitConverterUnits::Data_Mebibits, GetLocalizedStringName(L"UnitName_Mebibits"), GetLocalizedStringName(L"UnitAbbreviation_Mebibits"), 9 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Mebibytes, GetLocalizedStringName(L"UnitName_Mebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Mebibytes"), 10 }); UnitConverterUnits::Data_Mebibytes, GetLocalizedStringName(L"UnitName_Mebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Mebibytes"), 11 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Megabit, GetLocalizedStringName(L"UnitName_Megabit"), GetLocalizedStringName(L"UnitAbbreviation_Megabit"), 7 }); OrderedUnit{ UnitConverterUnits::Data_Megabit, GetLocalizedStringName(L"UnitName_Megabit"), GetLocalizedStringName(L"UnitAbbreviation_Megabit"), 8 });
dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Megabyte, dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_Megabyte,
GetLocalizedStringName(L"UnitName_Megabyte"), GetLocalizedStringName(L"UnitName_Megabyte"),
GetLocalizedStringName(L"UnitAbbreviation_Megabyte"), GetLocalizedStringName(L"UnitAbbreviation_Megabyte"),
9, 10,
false, false,
true, true,
false }); false });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Pebibits, GetLocalizedStringName(L"UnitName_Pebibits"), GetLocalizedStringName(L"UnitAbbreviation_Pebibits"), 20 }); UnitConverterUnits::Data_Nibble, GetLocalizedStringName(L"UnitName_Nibble"), GetLocalizedStringName(L"UnitAbbreviation_Nibble"), 2 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Pebibytes, GetLocalizedStringName(L"UnitName_Pebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Pebibytes"), 22 }); 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( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Petabit, GetLocalizedStringName(L"UnitName_Petabit"), GetLocalizedStringName(L"UnitAbbreviation_Petabit"), 19 }); OrderedUnit{ UnitConverterUnits::Data_Petabit, GetLocalizedStringName(L"UnitName_Petabit"), GetLocalizedStringName(L"UnitAbbreviation_Petabit"), 20 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Petabyte, GetLocalizedStringName(L"UnitName_Petabyte"), GetLocalizedStringName(L"UnitAbbreviation_Petabyte"), 21 }); UnitConverterUnits::Data_Petabyte, GetLocalizedStringName(L"UnitName_Petabyte"), GetLocalizedStringName(L"UnitAbbreviation_Petabyte"), 22 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Tebibits, GetLocalizedStringName(L"UnitName_Tebibits"), GetLocalizedStringName(L"UnitAbbreviation_Tebibits"), 16 }); UnitConverterUnits::Data_Tebibits, GetLocalizedStringName(L"UnitName_Tebibits"), GetLocalizedStringName(L"UnitAbbreviation_Tebibits"), 17 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Tebibytes, GetLocalizedStringName(L"UnitName_Tebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Tebibytes"), 18 }); UnitConverterUnits::Data_Tebibytes, GetLocalizedStringName(L"UnitName_Tebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Tebibytes"), 19 });
dataUnits.push_back( dataUnits.push_back(
OrderedUnit{ UnitConverterUnits::Data_Terabit, GetLocalizedStringName(L"UnitName_Terabit"), GetLocalizedStringName(L"UnitAbbreviation_Terabit"), 15 }); OrderedUnit{ UnitConverterUnits::Data_Terabit, GetLocalizedStringName(L"UnitName_Terabit"), GetLocalizedStringName(L"UnitAbbreviation_Terabit"), 16 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Terabyte, GetLocalizedStringName(L"UnitName_Terabyte"), GetLocalizedStringName(L"UnitAbbreviation_Terabyte"), 17 }); UnitConverterUnits::Data_Terabyte, GetLocalizedStringName(L"UnitName_Terabyte"), GetLocalizedStringName(L"UnitAbbreviation_Terabyte"), 18 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Yobibits, GetLocalizedStringName(L"UnitName_Yobibits"), GetLocalizedStringName(L"UnitAbbreviation_Yobibits"), 32 }); UnitConverterUnits::Data_Yobibits, GetLocalizedStringName(L"UnitName_Yobibits"), GetLocalizedStringName(L"UnitAbbreviation_Yobibits"), 33 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Yobibytes, GetLocalizedStringName(L"UnitName_Yobibytes"), GetLocalizedStringName(L"UnitAbbreviation_Yobibytes"), 34 }); UnitConverterUnits::Data_Yobibytes, GetLocalizedStringName(L"UnitName_Yobibytes"), GetLocalizedStringName(L"UnitAbbreviation_Yobibytes"), 35 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Yottabit, GetLocalizedStringName(L"UnitName_Yottabit"), GetLocalizedStringName(L"UnitAbbreviation_Yottabit"), 31 }); UnitConverterUnits::Data_Yottabit, GetLocalizedStringName(L"UnitName_Yottabit"), GetLocalizedStringName(L"UnitAbbreviation_Yottabit"), 32 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Yottabyte, GetLocalizedStringName(L"UnitName_Yottabyte"), GetLocalizedStringName(L"UnitAbbreviation_Yottabyte"), 33 }); UnitConverterUnits::Data_Yottabyte, GetLocalizedStringName(L"UnitName_Yottabyte"), GetLocalizedStringName(L"UnitAbbreviation_Yottabyte"), 34 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Zebibits, GetLocalizedStringName(L"UnitName_Zebibits"), GetLocalizedStringName(L"UnitAbbreviation_Zebibits"), 28 }); UnitConverterUnits::Data_Zebibits, GetLocalizedStringName(L"UnitName_Zebibits"), GetLocalizedStringName(L"UnitAbbreviation_Zebibits"), 29 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Zebibytes, GetLocalizedStringName(L"UnitName_Zebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Zebibytes"), 30 }); UnitConverterUnits::Data_Zebibytes, GetLocalizedStringName(L"UnitName_Zebibytes"), GetLocalizedStringName(L"UnitAbbreviation_Zebibytes"), 31 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Zetabits, GetLocalizedStringName(L"UnitName_Zetabits"), GetLocalizedStringName(L"UnitAbbreviation_Zetabits"), 27 }); UnitConverterUnits::Data_Zetabits, GetLocalizedStringName(L"UnitName_Zetabits"), GetLocalizedStringName(L"UnitAbbreviation_Zetabits"), 28 });
dataUnits.push_back(OrderedUnit{ dataUnits.push_back(OrderedUnit{
UnitConverterUnits::Data_Zetabytes, GetLocalizedStringName(L"UnitName_Zetabytes"), GetLocalizedStringName(L"UnitAbbreviation_Zetabytes"), 29 }); UnitConverterUnits::Data_Zetabytes, GetLocalizedStringName(L"UnitName_Zetabytes"), GetLocalizedStringName(L"UnitAbbreviation_Zetabytes"), 30 });
dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_FloppyDisk, dataUnits.push_back(OrderedUnit{ UnitConverterUnits::Data_FloppyDisk,
GetLocalizedStringName(L"UnitName_FloppyDisk"), GetLocalizedStringName(L"UnitName_FloppyDisk"),
GetLocalizedStringName(L"UnitAbbreviation_FloppyDisk"), GetLocalizedStringName(L"UnitAbbreviation_FloppyDisk"),
@ -796,6 +798,7 @@ void UnitConverterDataLoader::GetConversionData(_In_ unordered_map<ViewMode, uno
{ ViewMode::Area, UnitConverterUnits::Area_Pyeong, 400.0 / 121.0 }, { ViewMode::Area, UnitConverterUnits::Area_Pyeong, 400.0 / 121.0 },
{ ViewMode::Data, UnitConverterUnits::Data_Bit, 0.000000125 }, { 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_Byte, 0.000001 },
{ ViewMode::Data, UnitConverterUnits::Data_Kilobyte, 0.001 }, { ViewMode::Data, UnitConverterUnits::Data_Kilobyte, 0.001 },
{ ViewMode::Data, UnitConverterUnits::Data_Megabyte, 1 }, { ViewMode::Data, UnitConverterUnits::Data_Megabyte, 1 },

View file

@ -793,8 +793,8 @@
</Page> </Page>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="CommunityToolkit.Labs.Uwp.SettingsControls"> <PackageReference Include="CommunityToolkit.Uwp.Controls.SettingsControls">
<Version>0.0.16</Version> <Version>8.0.230823-rc</Version>
</PackageReference> </PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform"> <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.14</Version> <Version>6.2.14</Version>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-ure</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minute</value> <value>Minute</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Voorkoms</value> <value>Voorkoms</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Toepassingtema</value> <value>Toepassingtema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Kies watter toepassingtema om te vertoon</value> <value>Kies watter toepassingtema om te vertoon</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Instellingsbladsy</value> <value>Instellingsbladsy</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Toepassingtema-instelling</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>ኪዋሰ</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>ኬ</value> <value>ኬ</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ጁውል</value> <value>ጁውል</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>ኪሎዋት-ሰዓቶች</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>ኬልቪን</value> <value>ኬልቪን</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>ደቂቃዎች</value> <value>ደቂቃዎች</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>ኒብል</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ናኖሜትር</value> <value>ናኖሜትር</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>ገጽታ</value> <value>ገጽታ</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>የመተግበሪያ ፈትለ ነገር</value> <value>የመተግበሪያ ፈትለ ነገር</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>የትኛው የመተግበሪያ ፈትለ ነገር ለእይታ እንደሚቀርብ ይምረጡ</value> <value>የትኛው የመተግበሪያ ፈትለ ነገር ለእይታ እንደሚቀርብ ይምረጡ</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>የክንውን አውዶች ገጽ</value> <value>የክንውን አውዶች ገጽ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>የመተግበሪያ ገጽታ ቅንብር</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>جول</value> <value>جول</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>كيلوواط ساعة</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>كلفن</value> <value>كلفن</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>نايبل</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>باي</value> <value>باي</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>جول</value> <value>جول</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>كيلو واط/ساعة</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>كلفن</value> <value>كلفن</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>دقيقة</value> <value>دقيقة</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>نايبل</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>نانومتر</value> <value>نانومتر</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>المظهر</value> <value>المظهر</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>نسق التطبيق</value> <value>نسق التطبيق</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>تحديد نسق التطبيق المطلوب عرضه</value> <value>تحديد نسق التطبيق المطلوب عرضه</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>صفحة الإعدادات</value> <value>صفحة الإعدادات</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>إعداد نسق التطبيق</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kVs</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Coul</value> <value>Coul</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovat-saat</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Dəqiqə</value> <value>Dəqiqə</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometr</value> <value>Nanometr</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Görünüş</value> <value>Görünüş</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Proqramın mövzusu</value> <value>Proqramın mövzusu</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Göstəriləcək proqramın mövzusunu seçin</value> <value>Göstəriləcək proqramın mövzusunu seçin</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Parametrlər səhifəsi</value> <value>Parametrlər səhifəsi</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Proqram mövzusu parametri</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>джаула</value> <value>джаула</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>КВт/ч</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>келвина</value> <value>келвина</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>МиБ</value> <value>МиБ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Пи</value> <value>Пи</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>джаула</value> <value>джаула</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Киловат-часа</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Келвина</value> <value>Келвина</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>минути</value> <value>минути</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>гризане</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Нанометра</value> <value>Нанометра</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Облик</value> <value>Облик</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Тема на приложението</value> <value>Тема на приложението</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Изберете коя тема на приложение да се показва</value> <value>Изберете коя тема на приложение да се показва</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Страница с настройки</value> <value>Страница с настройки</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Настройка на тема на приложение</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Quilowatts-hora</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuts</value> <value>Minuts</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanòmetres</value> <value>Nanòmetres</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aparença</value> <value>Aparença</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema de l'aplicació</value> <value>Tema de l'aplicació</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Selecciona el tema de l'aplicació vols que es mostri.</value> <value>Selecciona el tema de l'aplicació vols que es mostri.</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Pàgina de configuració</value> <value>Pàgina de configuració</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Configuració del tema de l'aplicació</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pí</value> <value>Pí</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>joulů</value> <value>joulů</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatthodiny</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>kelvinů</value> <value>kelvinů</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>minut</value> <value>minut</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>nanometrů</value> <value>nanometrů</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Vzhled</value> <value>Vzhled</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Motiv aplikace</value> <value>Motiv aplikace</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Vyberte motiv aplikace, který se má zobrazit.</value> <value>Vyberte motiv aplikace, který se má zobrazit.</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stránka Nastavení</value> <value>Stránka Nastavení</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Nastavení motivu aplikace</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatttimer</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutter</value> <value>Minutter</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Udseende</value> <value>Udseende</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>App tema</value> <value>App tema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Vælg, hvilket apptema der skal vises</value> <value>Vælg, hvilket apptema der skal vises</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Siden Indstillinger</value> <value>Siden Indstillinger</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Indstilling for apptema</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>Nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowattstunden</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuten</value> <value>Minuten</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Darstellung</value> <value>Darstellung</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>App-Design</value> <value>App-Design</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Auswählen des anzuzeigenden App-Designs</value> <value>Auswählen des anzuzeigenden App-Designs</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Seite „Einstellungen“</value> <value>Seite „Einstellungen“</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>App-Designeinstellung</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Τζάουλ</value> <value>Τζάουλ</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Κιλοβατώρες</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Κέλβιν</value> <value>Κέλβιν</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Λεπτά</value> <value>Λεπτά</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Νανόμετρα</value> <value>Νανόμετρα</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Εμφάνιση</value> <value>Εμφάνιση</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Θέμα εφαρμογής</value> <value>Θέμα εφαρμογής</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Επιλέξτε το θέμα εφαρμογής που θα εμφανίζεται</value> <value>Επιλέξτε το θέμα εφαρμογής που θα εμφανίζεται</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Σελίδα ρυθμίσεων</value> <value>Σελίδα ρυθμίσεων</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Ρύθμιση θέματος εφαρμογής</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-hours</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutes</value> <value>Minutes</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometres</value> <value>Nanometres</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Appearance</value> <value>Appearance</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>App theme</value> <value>App theme</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Select which app theme to display</value> <value>Select which app theme to display</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Settings page</value> <value>Settings page</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>App theme setting</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1965,6 +1965,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -2229,6 +2233,10 @@
<value>Minutes</value> <value>Minutes</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometers</value> <value>Nanometers</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4742,8 +4750,4 @@
<value>Settings page</value> <value>Settings page</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>App theme setting</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Julios</value> <value>Julios</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilobyte-horas</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutos</value> <value>Minutos</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Cuarteto</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanómetros</value> <value>Nanómetros</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Apariencia</value> <value>Apariencia</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema de la aplicación</value> <value>Tema de la aplicación</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Seleccionar el tema de la aplicación que se va a mostrar</value> <value>Seleccionar el tema de la aplicación que se va a mostrar</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Página de configuración</value> <value>Página de configuración</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Configuración del tema de la aplicación</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilobyte-horas</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutos</value> <value>Minutos</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Cuarteto</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanómetros</value> <value>Nanómetros</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -3623,7 +3639,7 @@
<comment>Error that occurs during graphing when a } is missing.</comment> <comment>Error that occurs during graphing when a } is missing.</comment>
</data> </data>
<data name="CannotUseIInReal" xml:space="preserve"> <data name="CannotUseIInReal" xml:space="preserve">
<value>"i" e "I" no se pueden usar como nombres de variables</value> <value>Tanto "i", como "I", no se pueden usar como nombres de variables</value>
<comment>Error that occurs during graphing when i or I is used.</comment> <comment>Error that occurs during graphing when i or I is used.</comment>
</data> </data>
<data name="GeneralError" xml:space="preserve"> <data name="GeneralError" xml:space="preserve">
@ -4023,7 +4039,7 @@
<comment>Graph settings option to set graph to light theme</comment> <comment>Graph settings option to set graph to light theme</comment>
</data> </data>
<data name="MatchAppTheme.Content" xml:space="preserve"> <data name="MatchAppTheme.Content" xml:space="preserve">
<value>Hacer coincidir con el tema de la aplicación</value> <value>Coincidir con el tema de la aplicación</value>
<comment>Graph settings option to set graph to match the app theme</comment> <comment>Graph settings option to set graph to match the app theme</comment>
</data> </data>
<data name="GraphThemeHeading.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <data name="GraphThemeHeading.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>Apariencia</value> <value>Apariencia</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema de la aplicación</value> <value>Tema de la aplicación</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Seleccionar el tema de la aplicación para mostrar</value> <value>Seleccionar el tema de la aplicación para mostrar</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Página de configuración</value> <value>Página de configuración</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Configuración del tema de la aplicación</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pii</value> <value>Pii</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>džauli</value> <value>džauli</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovatt-tunnid</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>kelvinit</value> <value>kelvinit</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>minutit</value> <value>minutit</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Näks(i)</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>nanomeetrit</value> <value>nanomeetrit</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Välimus</value> <value>Välimus</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Rakenduse kujundus</value> <value>Rakenduse kujundus</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Valige kuvatav rakenduse kujundus</value> <value>Valige kuvatav rakenduse kujundus</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Sätete leht</value> <value>Sätete leht</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Rakenduse kujunduse säte</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1386,6 +1386,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1574,6 +1578,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1750,6 +1758,10 @@
<value>joule</value> <value>joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-orduak</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1834,6 +1846,10 @@
<value>minutu</value> <value>minutu</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>nanometro</value> <value>nanometro</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4135,11 +4151,11 @@
<value>Itxura</value> <value>Itxura</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Aplikazioaren gaia</value> <value>Aplikazioaren gaia</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Hautatu bistaratu beharreko aplikazioaren gaia</value> <value>Hautatu bistaratu beharreko aplikazioaren gaia</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4163,8 +4179,4 @@
<value>Ezarpenen orria</value> <value>Ezarpenen orria</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Aplikazio-gaiaren ezarpenak</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>ژول</value> <value>ژول</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>کلوین</value> <value>کلوین</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>مبی‌بایت</value> <value>مبی‌بایت</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>پبی‌بیت</value> <value>پبی‌بیت</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ژول</value> <value>ژول</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>کیلووات ساعت</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>کلوین</value> <value>کلوین</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>دقیقه</value> <value>دقیقه</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>نیبل</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>نانومتر</value> <value>نانومتر</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>ظاهر</value> <value>ظاهر</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>طرح زمینه برنامه</value> <value>طرح زمینه برنامه</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>انتخاب کنید کدام طرح زمینه برنامه نمایش داده شود</value> <value>انتخاب کنید کدام طرح زمینه برنامه نمایش داده شود</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>صفحه تنظیمات</value> <value>صفحه تنظیمات</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>تنظیمات طرح زمینه برنامه</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pii</value> <value>Pii</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>joulea</value> <value>joulea</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>kilowattituntia</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>minuuttia</value> <value>minuuttia</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Puolitavu</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometrit</value> <value>Nanometrit</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Ulkoasu</value> <value>Ulkoasu</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Sovelluksen teema</value> <value>Sovelluksen teema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Valitse näytettävä sovelluksen teema</value> <value>Valitse näytettävä sovelluksen teema</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Asetussivu</value> <value>Asetussivu</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Sovelluksen teeman asetus</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>(na) Joule</value> <value>(na) Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-hours</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuto</value> <value>Minuto</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Appearance</value> <value>Appearance</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema ng app</value> <value>Tema ng app</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Piliin kung aling tema ng app ang ipapakita</value> <value>Piliin kung aling tema ng app ang ipapakita</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Pahina ng nga setting</value> <value>Pahina ng nga setting</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Setting ng tema ng app</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>Mio</value> <value>Mio</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowattheures</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutes</value> <value>Minutes</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Quartet</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanomètres</value> <value>Nanomètres</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,12 +4150,12 @@
<value>Apparence</value> <value>Apparence</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Thème dapplication</value> <value>Thème dapplication</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Sélectionner le thème dapplication à afficher</value> <value>Sélectionner le thème de lappli</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
<data name="LightThemeRadioButton.Content" xml:space="preserve"> <data name="LightThemeRadioButton.Content" xml:space="preserve">
@ -4162,8 +4178,4 @@
<value>Page Paramètres</value> <value>Page Paramètres</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Paramètre du thème dapplication</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>Mio</value> <value>Mio</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-hours</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutes</value> <value>Minutes</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Quartet</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanomètres</value> <value>Nanomètres</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,12 +4150,12 @@
<value>Apparence</value> <value>Apparence</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Thème dapplication</value> <value>Thème dapplication</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Sélectionner le thème dapplication à afficher</value> <value>Sélectionner le thème de lapplication</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
<data name="LightThemeRadioButton.Content" xml:space="preserve"> <data name="LightThemeRadioButton.Content" xml:space="preserve">
@ -4162,8 +4178,4 @@
<value>Page Paramètres</value> <value>Page Paramètres</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Paramètre du thème dapplication</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Quilowatt-hora</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutos</value> <value>Minutos</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Mordida</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanómetros</value> <value>Nanómetros</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aspecto</value> <value>Aspecto</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema da aplicación</value> <value>Tema da aplicación</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Seleccionar que tema da aplicación se vai mostrar</value> <value>Seleccionar que tema da aplicación se vai mostrar</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Páxina de configuración</value> <value>Páxina de configuración</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Configuración de tema da aplicación</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>ג'אול</value> <value>ג'אול</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>קוט"ש</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>קלווין</value> <value>קלווין</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ג'אולים</value> <value>ג'אולים</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>קילו-ואט לשעה</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>קלווין</value> <value>קלווין</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>דקות</value> <value>דקות</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>חצי בייט</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ננומטרים</value> <value>ננומטרים</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>מראה</value> <value>מראה</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ערכת הנושא של האפליקציה</value> <value>ערכת הנושא של האפליקציה</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>בחר איזו ערכת נושא של אפליקציה תוצג</value> <value>בחר איזו ערכת נושא של אפליקציה תוצג</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>דף ההגדרות</value> <value>דף ההגדרות</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>הגדרת ערכת נושא של אפליקציה</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>पाई</value> <value>पाई</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>जूल</value> <value>जूल</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>किलोवाट-घंटे</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>केल्विन</value> <value>केल्विन</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>मिनट</value> <value>मिनट</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>कुतरना / कुतरें</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>नैनोमीटर</value> <value>नैनोमीटर</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>प्रकटन</value> <value>प्रकटन</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ऐप थीम</value> <value>ऐप थीम</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>जो ऐप थीम प्रदर्शित करनी है, वह चुनें</value> <value>जो ऐप थीम प्रदर्शित करनी है, वह चुनें</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>सेटिंग्स पृष्ठ</value> <value>सेटिंग्स पृष्ठ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>ऐप थीम सेटिंग</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Džula</value> <value>Džula</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovatsati</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuta</value> <value>Minuta</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometara</value> <value>Nanometara</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Izgled</value> <value>Izgled</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema aplikacije</value> <value>Tema aplikacije</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Odaberite temu aplikacije koja će se prikazati</value> <value>Odaberite temu aplikacije koja će se prikazati</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stranica postavki</value> <value>Stranica postavki</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Postavka teme aplikacije</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>falat</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>joule</value> <value>joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowattóra</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>perc</value> <value>perc</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Falat</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>nanométer</value> <value>nanométer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -2318,7 +2334,7 @@
<comment>{Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits)</comment> <comment>{Locked="%1"}. Copyright statement, displayed on the About panel. %1 = the current year (4 digits)</comment>
</data> </data>
<data name="AboutControlContribute" xml:space="preserve"> <data name="AboutControlContribute" xml:space="preserve">
<value>Ha tudni szeretné, hogy miként működhet a Windows Számológép számára, nézze meg a projektet %HL%GitHub%HL%.</value> <value>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.</value>
<comment>{Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel</comment> <comment>{Locked="%HL%GitHub%HL%"}. GitHub link, Displayed on the About panel</comment>
</data> </data>
<data name="AboutGroupTitle.Text" xml:space="preserve"> <data name="AboutGroupTitle.Text" xml:space="preserve">
@ -3464,7 +3480,7 @@
<comment>Title for KeyGraphFeatures Minima Property</comment> <comment>Title for KeyGraphFeatures Minima Property</comment>
</data> </data>
<data name="Monotonicity" xml:space="preserve"> <data name="Monotonicity" xml:space="preserve">
<value>Monotonicitás</value> <value>Monotonitás</value>
<comment>Title for KeyGraphFeatures Monotonicity Property</comment> <comment>Title for KeyGraphFeatures Monotonicity Property</comment>
</data> </data>
<data name="ObliqueAsymptotes" xml:space="preserve"> <data name="ObliqueAsymptotes" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>Megjelenés</value> <value>Megjelenés</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Alkalmazástéma</value> <value>Alkalmazástéma</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Válassza ki a megjelenítendő alkalmazástémát</value> <value>Válassza ki a megjelenítendő alkalmazástémát</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Beállítások lap</value> <value>Beállítások lap</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Alkalmazástéma beállítása</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-jam</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Menit</value> <value>Menit</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Tampilan</value> <value>Tampilan</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema aplikasi</value> <value>Tema aplikasi</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Pilih tema aplikasi yang akan ditampilkan</value> <value>Pilih tema aplikasi yang akan ditampilkan</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Halaman pengaturan</value> <value>Halaman pengaturan</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Pengaturan tema aplikasi</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Júl</value> <value>Júl</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kílóvatt-klukkustundir</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Mínútur</value> <value>Mínútur</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nart</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanómetrar</value> <value>Nanómetrar</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Útlit</value> <value>Útlit</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Þema forrits</value> <value>Þema forrits</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Velja hvaða forritaþema á að birta</value> <value>Velja hvaða forritaþema á að birta</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stillingarsíða</value> <value>Stillingarsíða</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Þemastilling forrits</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi greco</value> <value>Pi greco</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Chilowattora</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuti</value> <value>Minuti</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometri</value> <value>Nanometri</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aspetto</value> <value>Aspetto</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema dell'app</value> <value>Tema dell'app</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Seleziona il tema dell'app da mostrare</value> <value>Seleziona il tema dell'app da mostrare</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Pagina Impostazioni</value> <value>Pagina Impostazioni</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Impostazione tema app</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>パイ</value> <value>パイ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ジュール</value> <value>ジュール</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>キロワット時間</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>ケルビン</value> <value>ケルビン</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>分</value> <value>分</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>ひとかじり</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ナノメートル</value> <value>ナノメートル</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>外観</value> <value>外観</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>アプリ テーマ</value> <value>アプリ テーマ</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>表示するアプリ テーマを選択します</value> <value>表示するアプリ テーマを選択します</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>設定ページ</value> <value>設定ページ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>アプリのテーマの設定</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>Дж</value> <value>Дж</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>кВтсағ</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>МиБ</value> <value>МиБ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Пи</value> <value>Пи</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Джоуль</value> <value>Джоуль</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Киловатт-сағат</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Кельвин</value> <value>Кельвин</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Минут</value> <value>Минут</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Жарты байт</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Нанометр</value> <value>Нанометр</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Көрініс</value> <value>Көрініс</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Бағдарлама тақырыбы</value> <value>Бағдарлама тақырыбы</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Көрсетілетін бағдарлама тақырыбын таңдау</value> <value>Көрсетілетін бағдарлама тақырыбын таңдау</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Параметрлер беті</value> <value>Параметрлер беті</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Бағдарлама тақырыбының параметрі</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>គីឡូវ៉ាត់ក្នុងមួយម៉ោង</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ស៊ូល</value> <value>ស៊ូល</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>គីឡូវ៉ាត់ម៉ោង</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>កាវវិន</value> <value>កាវវិន</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>នាទី</value> <value>នាទី</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>នីបប៊ល</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ណាណូម៉ែត្រ</value> <value>ណាណូម៉ែត្រ</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>រូបរាង</value> <value>រូបរាង</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>គំរូរចនាកម្មវិធី</value> <value>គំរូរចនាកម្មវិធី</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>ជ្រើសរើសគំរូរចនាកម្មវិធីណាមួយ ដើម្បីបង្ហាញ</value> <value>ជ្រើសរើសគំរូរចនាកម្មវិធីណាមួយ ដើម្បីបង្ហាញ</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>ទំព័រការកំណត់</value> <value>ទំព័រការកំណត់</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>ការកំណត់រចនាប័ទ្មកម្មវិធី</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ಜೌಲ್‍ಗಳು</value> <value>ಜೌಲ್‍ಗಳು</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>ಕಿಲೋವ್ಯಾಟ್-ಸಮಯ</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>ಕೆಲ್ವಿನ್</value> <value>ಕೆಲ್ವಿನ್</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>ನಿಮಿಷಗಳು</value> <value>ನಿಮಿಷಗಳು</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>ನಿಬ್ಬಲ್</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ನ್ಯಾನೋಮೀಟರ್‌‍ಗಳು</value> <value>ನ್ಯಾನೋಮೀಟರ್‌‍ಗಳು</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>ನೋಟ</value> <value>ನೋಟ</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ಅಪ್ಲಿ ಥೀಮ್</value> <value>ಅಪ್ಲಿ ಥೀಮ್</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>ಯಾವ ಅಪ್ಲಿ ಥೀಮ್ ಪ್ರದರ್ಶಿಸಬೇಕೆಂದು ಆಯ್ಕೆಮಾಡಿ</value> <value>ಯಾವ ಅಪ್ಲಿ ಥೀಮ್ ಪ್ರದರ್ಶಿಸಬೇಕೆಂದು ಆಯ್ಕೆಮಾಡಿ</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪುಟ</value> <value>ಸೆಟ್ಟಿಂಗ್‌ಗಳ ಪುಟ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>ಅಪ್ಲಿ ಥೀಮ್ ಸೆಟ್ಟಿಂಗ್</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>파이</value> <value>파이</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>줄</value> <value>줄</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>킬로와트시</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>절대 온도</value> <value>절대 온도</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>분</value> <value>분</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>니블</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>나노미터</value> <value>나노미터</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -2198,11 +2214,11 @@
<comment>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)</comment> <comment>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)</comment>
</data> </data>
<data name="UnitName_Jet" xml:space="preserve"> <data name="UnitName_Jet" xml:space="preserve">
<value></value> <value>제트</value>
<comment>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)</comment> <comment>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)</comment>
</data> </data>
<data name="UnitAbbreviation_Jet" xml:space="preserve"> <data name="UnitAbbreviation_Jet" xml:space="preserve">
<value></value> <value>제트</value>
<comment>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)</comment> <comment>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)</comment>
</data> </data>
<data name="UnitName_Whale" xml:space="preserve"> <data name="UnitName_Whale" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>모양</value> <value>모양</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>앱 테마</value> <value>앱 테마</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>표시할 앱 테마 선택</value> <value>표시할 앱 테마 선택</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>설정 페이지</value> <value>설정 페이지</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>앱 테마 설정</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ຈູນ</value> <value>ຈູນ</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>ກິໂລວັດ-ຊົ່ວໂມງ</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>ເຄລວິນ</value> <value>ເຄລວິນ</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>ນາທີ</value> <value>ນາທີ</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>ເລັມ</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>ນາໂນແມັດ</value> <value>ນາໂນແມັດ</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>ຮູບພາຍນອກ</value> <value>ຮູບພາຍນອກ</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ຮູບແບບສີສັນແອັບ</value> <value>ຮູບແບບສີສັນແອັບ</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>ເລືອກເທມຂອງແອັບເພື່ອສະແດງຜົນ</value> <value>ເລືອກເທມຂອງແອັບເພື່ອສະແດງຜົນ</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>ຕັ້ງຄ່າໜ້າ</value> <value>ຕັ້ງຄ່າໜ້າ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>ການຕັ້ງຄ່າຊຸດຮູບແບບແອັບ</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>kąsn.</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Džauliai</value> <value>Džauliai</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovatvalandės</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvinas</value> <value>Kelvinas</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutės</value> <value>Minutės</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Kąsnelis</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometrai</value> <value>Nanometrai</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Išvaizda</value> <value>Išvaizda</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Programėlės tema</value> <value>Programėlės tema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Pasirinkite, kurią programėlės temą rodyti</value> <value>Pasirinkite, kurią programėlės temą rodyti</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Parametrų puslapis</value> <value>Parametrų puslapis</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Programos temos parametras</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl (Jaunbl)</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Džouli</value> <value>Džouli</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovatstundas</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvini</value> <value>Kelvini</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minūtes</value> <value>Minūtes</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Pusbaits</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometri</value> <value>Nanometri</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Izskats</value> <value>Izskats</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Programmas dizains</value> <value>Programmas dizains</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Atlasiet, kuru programmas dizainu rādīt</value> <value>Atlasiet, kuru programmas dizainu rādīt</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Iestatījumu lapa</value> <value>Iestatījumu lapa</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Programmu dizaina iestatījums</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>МиБ</value> <value>МиБ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>нибли</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Пи</value> <value>Пи</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Џули</value> <value>Џули</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Киловат-часови</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Келвин</value> <value>Келвин</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Минути</value> <value>Минути</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Нибли</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Нанометри</value> <value>Нанометри</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Изглед</value> <value>Изглед</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Тема на апликацијата</value> <value>Тема на апликацијата</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Изберете која тема на апликацијата да се прикажува</value> <value>Изберете која тема на апликацијата да се прикажува</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Страницата со параметри</value> <value>Страницата со параметри</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Параметри за темата на апликацијата</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ജൂൾസ്</value> <value>ജൂൾസ്</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>കിലോവാട്ട്-മണിക്കൂർ</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>താപമാത്ര</value> <value>താപമാത്ര</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>മിനിറ്റ്</value> <value>മിനിറ്റ്</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>നിബിൾ</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>നാനോമീറ്ററുകൾ</value> <value>നാനോമീറ്ററുകൾ</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>പ്രത്യക്ഷത</value> <value>പ്രത്യക്ഷത</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ആപ്പ് തീം</value> <value>ആപ്പ് തീം</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>ഏത് ആപ്പ് തീം പ്രദർശിപ്പിക്കണമെന്ന് തിരഞ്ഞെടുക്കുക</value> <value>ഏത് ആപ്പ് തീം പ്രദർശിപ്പിക്കണമെന്ന് തിരഞ്ഞെടുക്കുക</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>സജ്ജീകരണ പേജ്</value> <value>സജ്ജീകരണ പേജ്</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>ആപ് തീം ക്രമീകരണം</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWj</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-jam</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minit</value> <value>Minit</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Menggigit</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Penampilan</value> <value>Penampilan</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema aplikasi</value> <value>Tema aplikasi</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Pilih tema aplikasi untuk dipaparkan</value> <value>Pilih tema aplikasi untuk dipaparkan</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Halaman tetapan</value> <value>Halaman tetapan</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Tetapan tema aplikasi</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>joule</value> <value>joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-hours</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>kelvin</value> <value>kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>minutter</value> <value>minutter</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibbel</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>nanometer</value> <value>nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -1926,7 +1942,7 @@
<comment>An abbreviation for a measurement unit of Angle</comment> <comment>An abbreviation for a measurement unit of Angle</comment>
</data> </data>
<data name="UnitAbbreviation_Atmosphere" xml:space="preserve"> <data name="UnitAbbreviation_Atmosphere" xml:space="preserve">
<value>Minibank</value> <value>atm</value>
<comment>An abbreviation for a measurement unit of Pressure</comment> <comment>An abbreviation for a measurement unit of Pressure</comment>
</data> </data>
<data name="UnitAbbreviation_Bar" xml:space="preserve"> <data name="UnitAbbreviation_Bar" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>Utseende</value> <value>Utseende</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>App-tema</value> <value>App-tema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Velg hvilket app-tema som skal vises</value> <value>Velg hvilket app-tema som skal vises</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Innstillingssiden</value> <value>Innstillingssiden</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Innstilling for apptema</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-uren</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuten</value> <value>Minuten</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Uiterlijk</value> <value>Uiterlijk</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>App-thema</value> <value>App-thema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Selecteer welk app-thema moet worden weergegeven</value> <value>Selecteer welk app-thema moet worden weergegeven</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Instellingenpagina</value> <value>Instellingenpagina</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Instelling voor app-thema</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Dżule</value> <value>Dżule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatogodzin</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelwiny</value> <value>Kelwiny</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuty</value> <value>Minuty</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Półbajt</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometry</value> <value>Nanometry</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Wygląd</value> <value>Wygląd</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Motyw aplikacji</value> <value>Motyw aplikacji</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Wybierz motyw aplikacji do wyświetlenia</value> <value>Wybierz motyw aplikacji do wyświetlenia</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Strona ustawień</value> <value>Strona ustawień</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Ustawienie motywu aplikacji</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Quilowatt por hora</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutos</value> <value>Minutos</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanômetros</value> <value>Nanômetros</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aparência</value> <value>Aparência</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema do aplicativo</value> <value>Tema do aplicativo</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Selecionar o tema do aplicativo a ser exibido</value> <value>Selecionar o tema do aplicativo a ser exibido</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Página de configurações</value> <value>Página de configurações</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Configuração do tema do aplicativo</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-horas</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minutos</value> <value>Minutos</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanómetros</value> <value>Nanómetros</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aspeto</value> <value>Aspeto</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema da aplicação</value> <value>Tema da aplicação</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Selecionar o tema da aplicação a apresentar</value> <value>Selecionar o tema da aplicação a apresentar</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Página Definições</value> <value>Página Definições</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Definição do tema da Aplicação</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Jouli</value> <value>Jouli</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-ore</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minute</value> <value>Minute</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometri</value> <value>Nanometri</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Aspect</value> <value>Aspect</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Temă aplicație</value> <value>Temă aplicație</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Selectați ce temă de aplicație să afișați</value> <value>Selectați ce temă de aplicație să afișați</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Pagina de setări</value> <value>Pagina de setări</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Setare temă aplicație</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>Дж</value> <value>Дж</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>кВтч</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>МиБ</value> <value>МиБ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Пи</value> <value>Пи</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>джоулей</value> <value>джоулей</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Киловатт-часы</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>шкала Кельвина</value> <value>шкала Кельвина</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>минут</value> <value>минут</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Полубайт</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Нанометры</value> <value>Нанометры</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Внешний вид</value> <value>Внешний вид</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Тема приложения</value> <value>Тема приложения</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Выберите тему приложения для отображения</value> <value>Выберите тему приложения для отображения</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Страница параметров</value> <value>Страница параметров</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Параметр темы приложения</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Jouly</value> <value>Jouly</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatthodiny</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Stupne Kelvina</value> <value>Stupne Kelvina</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minúty</value> <value>Minúty</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometre</value> <value>Nanometre</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Vzhľad</value> <value>Vzhľad</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Motív aplikácie</value> <value>Motív aplikácie</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Vyberte, ktorý motív aplikácie sa má zobraziť</value> <value>Vyberte, ktorý motív aplikácie sa má zobraziť</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stránka Nastavenia</value> <value>Stránka Nastavenia</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Nastavenie motívu aplikácie</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>polbajt</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Džuli</value> <value>Džuli</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovatne ure</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minute</value> <value>Minute</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Polbajt</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometri</value> <value>Nanometri</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Videz</value> <value>Videz</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema aplikacije</value> <value>Tema aplikacije</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Izberite temo aplikacije za prikaz</value> <value>Izberite temo aplikacije za prikaz</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stran z nastavitvami</value> <value>Stran z nastavitvami</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Nastavitev teme aplikacije</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Xhaulë</value> <value>Xhaulë</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovat për orë</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuta</value> <value>Minuta</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>çukis</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometra</value> <value>Nanometra</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Pamja</value> <value>Pamja</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema e aplikacionit</value> <value>Tema e aplikacionit</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Zgjidh temën e aplikacionit për t'u shfaqur</value> <value>Zgjidh temën e aplikacionit për t'u shfaqur</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Faqja e konfigurimeve</value> <value>Faqja e konfigurimeve</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Konfigurimet e temës së aplikacionit</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -558,7 +558,7 @@
<comment>{Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +".</comment> <comment>{Locked="%1"}. Screen reader prompt for the Calculator expression results. %1 = Localized display value, e.g. "50 + 2 - 60 +".</comment>
</data> </data>
<data name="Display_Copied" xml:space="preserve"> <data name="Display_Copied" xml:space="preserve">
<value>Prikaži vrednost kopiranu u ostavu</value> <value>Prikaži vrednost kopiranu u međuspremnik</value>
<comment>Screen reader prompt for the Calculator display copy button, when the button is invoked.</comment> <comment>Screen reader prompt for the Calculator display copy button, when the button is invoked.</comment>
</data> </data>
<data name="HistoryPane" xml:space="preserve"> <data name="HistoryPane" xml:space="preserve">
@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Džula</value> <value>Džula</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilovat-sati</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuta</value> <value>Minuta</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibl</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometara</value> <value>Nanometara</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Izgled</value> <value>Izgled</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Tema aplikacije</value> <value>Tema aplikacije</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Izaberite temu aplikacije koju želite da prikažete</value> <value>Izaberite temu aplikacije koju želite da prikažete</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Stranica sa postavkama</value> <value>Stranica sa postavkama</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Postavka teme aplikacija</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joule</value> <value>Joule</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-hours</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Minuter</value> <value>Minuter</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometer</value> <value>Nanometer</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -3671,15 +3687,15 @@
<comment>This is the automation name for the back button in the equation analysis page in the graphing calculator</comment> <comment>This is the automation name for the back button in the equation analysis page in the graphing calculator</comment>
</data> </data>
<data name="functionAnalysisButton.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <data name="functionAnalysisButton.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>Analysfunktion</value> <value>Analysera funktion</value>
<comment>This is the tooltip for the analyze function button</comment> <comment>This is the tooltip for the analyze function button</comment>
</data> </data>
<data name="functionAnalysisButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <data name="functionAnalysisButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Analysfunktion</value> <value>Analysera funktion</value>
<comment>This is the automation name for the analyze function button</comment> <comment>This is the automation name for the analyze function button</comment>
</data> </data>
<data name="functionAnalysisMenuItem" xml:space="preserve"> <data name="functionAnalysisMenuItem" xml:space="preserve">
<value>Analysfunktion</value> <value>Analysera funktion</value>
<comment>This is the text for the for the analyze function context menu command</comment> <comment>This is the text for the for the analyze function context menu command</comment>
</data> </data>
<data name="removeButton.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <data name="removeButton.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>Utseende</value> <value>Utseende</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Apptema</value> <value>Apptema</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Välj vilket apptema som ska visas</value> <value>Välj vilket apptema som ska visas</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Sidan Inställningar</value> <value>Sidan Inställningar</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Inställning för apptema</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>ஜூல்கள்</value> <value>ஜூல்கள்</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>கிலோவாட்-மணிநேரங்கள்</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>கெல்வின்</value> <value>கெல்வின்</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>நிமிடங்கள்</value> <value>நிமிடங்கள்</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>நிபில்</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>நானோமீட்டர்கள்</value> <value>நானோமீட்டர்கள்</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -2330,7 +2346,7 @@
<comment>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</comment> <comment>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</comment>
</data> </data>
<data name="HistoryEmpty.Text" xml:space="preserve"> <data name="HistoryEmpty.Text" xml:space="preserve">
<value>ங்கு இதுவரை வரலாறு ஏதுமில்லை</value> <value>ங்கு இதுவரை வரலாறு ஏதுமில்லை</value>
<comment>The text that shows as the header for the history list</comment> <comment>The text that shows as the header for the history list</comment>
</data> </data>
<data name="MemoryPaneEmpty.Text" xml:space="preserve"> <data name="MemoryPaneEmpty.Text" xml:space="preserve">
@ -4135,16 +4151,16 @@
<value>தோற்றம்</value> <value>தோற்றம்</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>பயன்பாட்டு தீம்</value> <value>பயன்பாட்டுக் கருப்பொருள்</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>எந்தப் பயன்பாட்டு கருப்பொருளைக் காண்பிக்க வேண்டும் என்பதைத் தேர்ந்தெடுக்கவும்</value> <value>எந்தப் பயன்பாட்டு கருப்பொருளைக் காண்பிக்க வேண்டும் என்பதைத் தேர்ந்தெடுக்கவும்</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
<data name="LightThemeRadioButton.Content" xml:space="preserve"> <data name="LightThemeRadioButton.Content" xml:space="preserve">
<value>லைட்</value> <value>வெளிச்சம்</value>
<comment>Lable for light theme option</comment> <comment>Lable for light theme option</comment>
</data> </data>
<data name="DarkThemeRadioButton.Content" xml:space="preserve"> <data name="DarkThemeRadioButton.Content" xml:space="preserve">
@ -4163,8 +4179,4 @@
<value>அமைப்புகள் பக்கம்</value> <value>அமைப்புகள் பக்கம்</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>பயன்பாட்டின் கருப்பொருள் அமைப்பு</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>జౌల్స్</value> <value>జౌల్స్</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>కిలోవాట్-గంటలు</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>కెల్విన్</value> <value>కెల్విన్</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>నిమిషాలు</value> <value>నిమిషాలు</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>నిబుల్</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>నానోమీటర్లు</value> <value>నానోమీటర్లు</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>కనిపించే తీరు</value> <value>కనిపించే తీరు</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>అనువర్తనం థీమ్</value> <value>అనువర్తనం థీమ్</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>ప్రదర్శించాలనుకునే అనువర్తనం థీమ్‌ను ఎంచుకోండి</value> <value>ప్రదర్శించాలనుకునే అనువర్తనం థీమ్‌ను ఎంచుకోండి</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>సెట్టింగ్‌ల పేజీ</value> <value>సెట్టింగ్‌ల పేజీ</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>అప్లికేషన్ థీమ్ సెట్టింగ్</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>จูล</value> <value>จูล</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>กิโลวัตต์-ชั่วโมง</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>เคลวิน</value> <value>เคลวิน</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>นาที</value> <value>นาที</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>สี่บิต</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>นาโนเมตร</value> <value>นาโนเมตร</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>ลักษณะที่ปรากฏ</value> <value>ลักษณะที่ปรากฏ</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>ธีมแอป</value> <value>ธีมแอป</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>เลือกธีมแอปที่จะแสดง</value> <value>เลือกธีมแอปที่จะแสดง</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>เพจการตั้งค่า</value> <value>เพจการตั้งค่า</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>การตั้งค่าธีมแอป</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>Dört B</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Jul</value> <value>Jul</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowattsaat</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Dakika</value> <value>Dakika</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Dört bit</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nanometre</value> <value>Nanometre</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -2492,7 +2508,7 @@
<value>gün</value> <value>gün</value>
</data> </data>
<data name="Date_Days" xml:space="preserve"> <data name="Date_Days" xml:space="preserve">
<value>günler</value> <value>gün</value>
</data> </data>
<data name="Date_Month" xml:space="preserve"> <data name="Date_Month" xml:space="preserve">
<value>ay</value> <value>ay</value>
@ -3623,7 +3639,7 @@
<comment>Error that occurs during graphing when a } is missing.</comment> <comment>Error that occurs during graphing when a } is missing.</comment>
</data> </data>
<data name="CannotUseIInReal" xml:space="preserve"> <data name="CannotUseIInReal" xml:space="preserve">
<value>"i" ve "ı" değişken adı olarak kullanılamaz</value> <value>"i" ve "I" değişken adı olarak kullanılamaz</value>
<comment>Error that occurs during graphing when i or I is used.</comment> <comment>Error that occurs during graphing when i or I is used.</comment>
</data> </data>
<data name="GeneralError" xml:space="preserve"> <data name="GeneralError" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>Görünüm</value> <value>Görünüm</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Uygulama teması</value> <value>Uygulama teması</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Görüntülenecek uygulama temasını seçin</value> <value>Görüntülenecek uygulama temasını seçin</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Ayarlar sayfası</value> <value>Ayarlar sayfası</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Uygulama teması ayarları</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>Дж</value> <value>Дж</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>кВт⋅год</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>К</value> <value>К</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>МіБ</value> <value>МіБ</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>нібл</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Пі</value> <value>Пі</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Джоулі</value> <value>Джоулі</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Кіловат-години</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Кельвін</value> <value>Кельвін</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Хвилини</value> <value>Хвилини</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Шматочок</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Нанометр.</value> <value>Нанометр.</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Вигляд</value> <value>Вигляд</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Тема програми</value> <value>Тема програми</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Виберіть тему програми для відображення</value> <value>Виберіть тему програми для відображення</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Сторінка параметрів</value> <value>Сторінка параметрів</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Параметр теми програми</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>kWh</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>Joules</value> <value>Joules</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>Kilowatt-giờ</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>Kelvin</value> <value>Kelvin</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>Phút</value> <value>Phút</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>Nibble</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>Nano mét</value> <value>Nano mét</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>Giao diện</value> <value>Giao diện</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>Chủ đề ứng dụng</value> <value>Chủ đề ứng dụng</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>Chọn chủ đề ứng dụng để hiển thị</value> <value>Chọn chủ đề ứng dụng để hiển thị</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>Trang cài đặt</value> <value>Trang cài đặt</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Cài đặt Chủ đề ứng dụng</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>焦耳</value> <value>焦耳</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>千瓦时</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>焦耳</value> <value>焦耳</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>千瓦时</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>开尔文</value> <value>开尔文</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>分钟</value> <value>分钟</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>半字节</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>纳米</value> <value>纳米</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -4134,11 +4150,11 @@
<value>外观</value> <value>外观</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>应用程序主题</value> <value>应用程序主题</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>选择要显示的应用主题</value> <value>选择要显示的应用主题</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>“设置”页面</value> <value>“设置”页面</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>应用主题设置</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -1385,6 +1385,10 @@
<value>J</value> <value>J</value>
<comment>An abbreviation for a measurement unit of energy</comment> <comment>An abbreviation for a measurement unit of energy</comment>
</data> </data>
<data name="UnitAbbreviation_Kilowatthour" xml:space="preserve">
<value>千瓦小時</value>
<comment>An abbreviation for a measurement unit of electricity consumption</comment>
</data>
<data name="UnitAbbreviation_Kelvin" xml:space="preserve"> <data name="UnitAbbreviation_Kelvin" xml:space="preserve">
<value>K</value> <value>K</value>
<comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment> <comment>An abbreviation for the temperature system "Kelvin" (eg. 0 degrees Celsius = 273 Kelvin)</comment>
@ -1573,6 +1577,10 @@
<value>MiB</value> <value>MiB</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
</data> </data>
<data name="UnitAbbreviation_Nibble" xml:space="preserve">
<value>nybl</value>
<comment>An abbreviation for a measurement unit of data</comment>
</data>
<data name="UnitAbbreviation_Pebibits" xml:space="preserve"> <data name="UnitAbbreviation_Pebibits" xml:space="preserve">
<value>Pi</value> <value>Pi</value>
<comment>An abbreviation for a measurement unit of data</comment> <comment>An abbreviation for a measurement unit of data</comment>
@ -1749,6 +1757,10 @@
<value>焦耳</value> <value>焦耳</value>
<comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for energy. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Kilowatthour" xml:space="preserve">
<value>千瓦時數</value>
<comment>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)</comment>
</data>
<data name="UnitName_Kelvin" xml:space="preserve"> <data name="UnitName_Kelvin" xml:space="preserve">
<value>開氏</value> <value>開氏</value>
<comment>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".</comment> <comment>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".</comment>
@ -1833,6 +1845,10 @@
<value>分鐘</value> <value>分鐘</value>
<comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for time. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data> </data>
<data name="UnitName_Nibble" xml:space="preserve">
<value>半位元組</value>
<comment>A measurement unit for data. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
</data>
<data name="UnitName_Nanometer" xml:space="preserve"> <data name="UnitName_Nanometer" xml:space="preserve">
<value>奈米</value> <value>奈米</value>
<comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment> <comment>A measurement unit for length. (Please choose the most appropriate plural form to fit any number between 0 and 999,999,999,999,999)</comment>
@ -3436,7 +3452,7 @@
<comment>Message displayed when the graph does not have any y-intercepts</comment> <comment>Message displayed when the graph does not have any y-intercepts</comment>
</data> </data>
<data name="Domain" xml:space="preserve"> <data name="Domain" xml:space="preserve">
<value>域</value> <value>域</value>
<comment>Title for KeyGraphFeatures Domain Property</comment> <comment>Title for KeyGraphFeatures Domain Property</comment>
</data> </data>
<data name="HorizontalAsymptotes" xml:space="preserve"> <data name="HorizontalAsymptotes" xml:space="preserve">
@ -4134,11 +4150,11 @@
<value>外觀</value> <value>外觀</value>
<comment>Subtitle of appearance setting on Settings page</comment> <comment>Subtitle of appearance setting on Settings page</comment>
</data> </data>
<data name="SettingsAppThemeTitle.Text" xml:space="preserve"> <data name="AppThemeExpander.Header" xml:space="preserve">
<value>應用程式佈景主題</value> <value>應用程式佈景主題</value>
<comment>Title of App theme expander</comment> <comment>Title of App theme expander</comment>
</data> </data>
<data name="SettingsAppThemeDescription.Text" xml:space="preserve"> <data name="AppThemeExpander.Description" xml:space="preserve">
<value>選取要顯示的應用程式佈景主題</value> <value>選取要顯示的應用程式佈景主題</value>
<comment>Description of App theme expander</comment> <comment>Description of App theme expander</comment>
</data> </data>
@ -4162,8 +4178,4 @@
<value>設定頁面</value> <value>設定頁面</value>
<comment>Announcement used when Settings page is opened</comment> <comment>Announcement used when Settings page is opened</comment>
</data> </data>
<data name="AppThemeExpander.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>應用程式佈景主題設定</value>
<comment>Screen reader prompt for the App theme Setting radio buttons group</comment>
</data>
</root> </root>

View file

@ -110,10 +110,12 @@
AutomationProperties.AutomationId="num9Button" AutomationProperties.AutomationId="num9Button"
AutomationProperties.Name="{utils:ResourceString Name=num9Button/[using:Windows.UI.Xaml.Automation]AutomationProperties/Name}" AutomationProperties.Name="{utils:ResourceString Name=num9Button/[using:Windows.UI.Xaml.Automation]AutomationProperties/Name}"
ButtonId="Nine"/> ButtonId="Nine"/>
<!-- DO NOT REMOVE the common:KeyboardShortcutManager.Character from this element, it's value will be overwritten by the KeyboardShortcutManager -->
<controls:CalculatorButton x:Name="DecimalSeparatorButton" <controls:CalculatorButton x:Name="DecimalSeparatorButton"
Grid.Row="3" Grid.Row="3"
Grid.Column="2" Grid.Column="2"
Style="{Binding ElementName=ControlRoot, Path=ButtonStyle}" Style="{Binding ElementName=ControlRoot, Path=ButtonStyle}"
common:KeyboardShortcutManager.Character="."
common:KeyboardShortcutManager.VirtualKey="{utils:ResourceVirtualKey Name=decimalSeparatorButton/[using:CalculatorApp.Common]KeyboardShortcutManager/VirtualKey}" common:KeyboardShortcutManager.VirtualKey="{utils:ResourceVirtualKey Name=decimalSeparatorButton/[using:CalculatorApp.Common]KeyboardShortcutManager/VirtualKey}"
AutomationProperties.AutomationId="decimalSeparatorButton" AutomationProperties.AutomationId="decimalSeparatorButton"
AutomationProperties.Name="{utils:ResourceString Name=decimalSeparatorButton/[using:Windows.UI.Xaml.Automation]AutomationProperties/Name}" AutomationProperties.Name="{utils:ResourceString Name=decimalSeparatorButton/[using:Windows.UI.Xaml.Automation]AutomationProperties/Name}"

View file

@ -3,9 +3,9 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:automation="using:CalculatorApp.ViewModel.Common.Automation" xmlns:automation="using:CalculatorApp.ViewModel.Common.Automation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:labs="using:CommunityToolkit.Labs.WinUI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls" xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
xmlns:toolkit="using:CommunityToolkit.WinUI.Controls"
xmlns:utils="using:CalculatorApp.Utils" xmlns:utils="using:CalculatorApp.Utils"
Loaded="OnLoaded" Loaded="OnLoaded"
Unloaded="OnUnloaded" Unloaded="OnUnloaded"
@ -32,25 +32,20 @@
<Setter Property="TextWrapping" Value="Wrap"/> <Setter Property="TextWrapping" Value="Wrap"/>
</Style> </Style>
<Style x:Key="SettingsCategoryTitleTextBlockStyle"
BasedOn="{StaticResource BodyStrongTextBlockStyle}"
TargetType="TextBlock">
<Setter Property="Margin" Value="0,29,0,5"/>
</Style>
<automation:NarratorNotifier x:Name="NarratorNotifier"/> <automation:NarratorNotifier x:Name="NarratorNotifier"/>
<!-- Override default hyperlink button background color --> <!-- Override default hyperlink button background color -->
<StaticResource x:Key="HyperlinkButtonBackgroundPointerOver" ResourceKey="SubtleFillColorTransparentBrush"/> <StaticResource x:Key="HyperlinkButtonBackgroundPointerOver" ResourceKey="SubtleFillColorTransparentBrush"/>
<StaticResource x:Key="HyperlinkButtonBackgroundPressed" ResourceKey="SubtleFillColorTransparentBrush"/> <StaticResource x:Key="HyperlinkButtonBackgroundPressed" ResourceKey="SubtleFillColorTransparentBrush"/>
<x:Double x:Key="SettingsCardSpacing">3</x:Double> <x:Double x:Key="SettingsCardSpacing">4</x:Double>
</ResourceDictionary> </ResourceDictionary>
</UserControl.Resources> </UserControl.Resources>
<Grid> <Grid>
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="{x:Bind TitleBarHeight, Mode=OneWay}"/> <RowDefinition Height="{x:Bind TitleBarHeight, Mode=OneWay}"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/> <RowDefinition Height="*"/>
</Grid.RowDefinitions> </Grid.RowDefinitions>
@ -76,8 +71,7 @@
Text="{utils:ResourceString Name=SettingsHeader/Text}"/> Text="{utils:ResourceString Name=SettingsHeader/Text}"/>
</Grid> </Grid>
<ScrollViewer Grid.Row="1" <ScrollViewer Grid.Row="2"
Margin="0,30,0,0"
Padding="24,0,24,16" Padding="24,0,24,16"
Style="{StaticResource SettingsContentScrollViewStyle}"> Style="{StaticResource SettingsContentScrollViewStyle}">
@ -86,17 +80,18 @@
<EntranceThemeTransition FromVerticalOffset="50" IsStaggeringEnabled="True"/> <EntranceThemeTransition FromVerticalOffset="50" IsStaggeringEnabled="True"/>
<RepositionThemeTransition IsStaggeringEnabled="False"/> <RepositionThemeTransition IsStaggeringEnabled="False"/>
</StackPanel.ChildrenTransitions> </StackPanel.ChildrenTransitions>
<TextBlock Style="{StaticResource SettingsCategoryTitleTextBlockStyle}" <TextBlock Margin="0,12,0,4"
Style="{StaticResource BodyStrongTextBlockStyle}"
AutomationProperties.HeadingLevel="Level1" AutomationProperties.HeadingLevel="Level1"
Text="{utils:ResourceString Name=SettingsAppearance/Text}"/> Text="{utils:ResourceString Name=SettingsAppearance/Text}"/>
<labs:SettingsExpander x:Name="AppThemeExpander" <toolkit:SettingsExpander x:Name="AppThemeExpander"
Description="Select which app theme to display" Description="{utils:ResourceString Name=AppThemeExpander/Description}"
Header="App theme"> Header="{utils:ResourceString Name=AppThemeExpander/Header}">
<labs:SettingsExpander.HeaderIcon> <toolkit:SettingsExpander.HeaderIcon>
<FontIcon Glyph="&#xE790;"/> <FontIcon Glyph="&#xE790;"/>
</labs:SettingsExpander.HeaderIcon> </toolkit:SettingsExpander.HeaderIcon>
<labs:SettingsExpander.Items> <toolkit:SettingsExpander.Items>
<labs:SettingsCard ContentAlignment="Left"> <toolkit:SettingsCard ContentAlignment="Left">
<muxc:RadioButtons x:Name="ThemeRadioButtons" <muxc:RadioButtons x:Name="ThemeRadioButtons"
Margin="0,-8,0,0" Margin="0,-8,0,0"
SelectionChanged="OnThemeSelectionChanged"> SelectionChanged="OnThemeSelectionChanged">
@ -110,23 +105,26 @@
Content="{utils:ResourceString Name=SystemThemeRadioButton/Content}" Content="{utils:ResourceString Name=SystemThemeRadioButton/Content}"
Tag="Default"/> Tag="Default"/>
</muxc:RadioButtons> </muxc:RadioButtons>
</labs:SettingsCard> </toolkit:SettingsCard>
</labs:SettingsExpander.Items> </toolkit:SettingsExpander.Items>
</labs:SettingsExpander> </toolkit:SettingsExpander>
<TextBlock x:Name="AboutGroupTitle" <TextBlock x:Name="AboutGroupTitle"
Style="{ThemeResource SettingsCategoryTitleTextBlockStyle}" Margin="0,30,0,4"
Style="{StaticResource BodyStrongTextBlockStyle}"
AutomationProperties.HeadingLevel="Level1" AutomationProperties.HeadingLevel="Level1"
Text="{utils:ResourceString Name=AboutGroupTitle/Text}"/> Text="{utils:ResourceString Name=AboutGroupTitle/Text}"/>
<labs:SettingsExpander x:Name="AboutExpander"> <toolkit:SettingsExpander x:Name="AboutExpander">
<labs:SettingsExpander.HeaderIcon> <toolkit:SettingsExpander.HeaderIcon>
<BitmapIcon AutomationProperties.AccessibilityView="Raw" UriSource="ms-appx:///Assets/CalculatorAppList.png"/> <BitmapIcon AutomationProperties.AccessibilityView="Raw"
</labs:SettingsExpander.HeaderIcon> ShowAsMonochrome="False"
UriSource="ms-appx:///Assets/CalculatorAppList.png"/>
</toolkit:SettingsExpander.HeaderIcon>
<TextBlock x:Name="AboutBuildVersion" <TextBlock x:Name="AboutBuildVersion"
Foreground="{ThemeResource TextFillColorSecondaryBrush}" Foreground="{ThemeResource TextFillColorSecondaryBrush}"
IsTextSelectionEnabled="True"/> IsTextSelectionEnabled="True"/>
<labs:SettingsExpander.Items> <toolkit:SettingsExpander.Items>
<labs:SettingsCard ContentAlignment="Left"> <toolkit:SettingsCard ContentAlignment="Left">
<StackPanel Margin="0,4,0,6" <StackPanel Margin="0,4,0,6"
Orientation="Vertical" Orientation="Vertical"
Spacing="12"> Spacing="12">
@ -158,9 +156,9 @@
TextWrapping="Wrap"/> TextWrapping="Wrap"/>
</HyperlinkButton> </HyperlinkButton>
</StackPanel> </StackPanel>
</labs:SettingsCard> </toolkit:SettingsCard>
</labs:SettingsExpander.Items> </toolkit:SettingsExpander.Items>
</labs:SettingsExpander> </toolkit:SettingsExpander>
<HyperlinkButton x:Name="FeedbackButton" <HyperlinkButton x:Name="FeedbackButton"
MinWidth="120" MinWidth="120"

View file

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -145,6 +145,7 @@
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<WarningLevel>Level4</WarningLevel> <WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError> <TreatWarningAsError>true</TreatWarningAsError>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
@ -163,6 +164,7 @@
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<WarningLevel>Level4</WarningLevel> <WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError> <TreatWarningAsError>true</TreatWarningAsError>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
@ -181,6 +183,7 @@
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<WarningLevel>Level4</WarningLevel> <WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError> <TreatWarningAsError>true</TreatWarningAsError>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@ -199,6 +202,7 @@
<AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(SolutionDir);$(SolutionDir)CalcManager;$(SolutionDir)CalcViewModel;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<WarningLevel>Level4</WarningLevel> <WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError> <TreatWarningAsError>true</TreatWarningAsError>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemGroup> <ItemGroup>

View file

@ -162,6 +162,9 @@
<data name="Megabytes-Bits"> <data name="Megabytes-Bits">
<value>0.000000125</value> <value>0.000000125</value>
</data> </data>
<data name="Megabytes-Nibble">
<value>0.0000005</value>
</data>
<data name="Megabytes-Bytes"> <data name="Megabytes-Bytes">
<value>0.000001</value> <value>0.000001</value>
</data> </data>

View file

@ -148,6 +148,7 @@
<LanguageStandard>stdcpp17</LanguageStandard> <LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions> <AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
@ -176,6 +177,7 @@
<LanguageStandard>stdcpp17</LanguageStandard> <LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions> <AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
@ -204,6 +206,7 @@
<LanguageStandard>stdcpp17</LanguageStandard> <LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions> <AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>
@ -232,6 +235,7 @@
<LanguageStandard>stdcpp17</LanguageStandard> <LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions> <AdditionalOptions>/DGRAPHING_ENGINE_IMPL %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>$(ProjectDir);$(ProjectDir)\..\;$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<ControlFlowGuard>Guard</ControlFlowGuard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Console</SubSystem> <SubSystem>Console</SubSystem>