-
Notifications
You must be signed in to change notification settings - Fork 564
[OneLoc] Localize Microsoft.Android.Templates #7248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ce8dc94
[OneLoc] Localize Microsoft.Android.Templates
pjcollins 2a3f5d6
Test OneLocBuild on this branch
pjcollins 84c9046
Remove invalid trailing ','
pjcollins 586d24c
Revert testing changes
pjcollins f18ff30
Use ToolsetDependency, update version
pjcollins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| param ($SourcesDirectory, $LocProjectPath) | ||
|
|
||
| $jsonFiles = @() | ||
| $jsonTemplateFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "\.template\.config\\localize\\.+\.en\.json" } # .NET templating pattern | ||
| $jsonTemplateFiles | ForEach-Object { | ||
| $null = $_.Name -Match "(.+)\.[\w-]+\.json" # matches '[filename].[langcode].json | ||
|
|
||
| $destinationFile = "$($_.Directory.FullName)\$($Matches.1).json" | ||
| $jsonFiles += Copy-Item "$($_.FullName)" -Destination $destinationFile -PassThru | ||
| Write-Host "Template loc file generated: $destinationFile" | ||
| } | ||
|
|
||
| Push-Location "$SourcesDirectory" | ||
| $projectObject = Get-Content $LocProjectPath | ConvertFrom-Json | ||
| $jsonFiles | ForEach-Object { | ||
| $sourceFile = ($_.FullName | Resolve-Path -Relative) | ||
| $outputPath = "$(($_.DirectoryName | Resolve-Path -Relative) + "\")" | ||
| $projectObject.Projects[0].LocItems += (@{ | ||
| SourceFile = $sourceFile | ||
| CopyOption = "LangIDOnName" | ||
| OutputPath = $outputPath | ||
| }) | ||
| } | ||
| Pop-Location | ||
|
|
||
| $locProjectJson = ConvertTo-Json $projectObject -Depth 5 | ||
| Set-Content $LocProjectPath $locProjectJson | ||
| Write-Host "LocProject.json was updated to contain template localizations:`n`n$locProjectJson`n`n" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| templatestrings.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.cs.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.de.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.en.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.es.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.fr.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.it.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.ja.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.ko.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.pl.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...t.Android.Templates/android-activity/.template.config/localize/templatestrings.pt-BR.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.ru.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...soft.Android.Templates/android-activity/.template.config/localize/templatestrings.tr.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...Android.Templates/android-activity/.template.config/localize/templatestrings.zh-Hans.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...Android.Templates/android-activity/.template.config/localize/templatestrings.zh-Hant.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Activity template", | ||
| "description": "An Android Activity class", | ||
| "symbols/namespace/description": "namespace for the generated code" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.cs.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.de.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.en.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.es.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.fr.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.it.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.ja.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.ko.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.pl.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...Android.Templates/android-bindinglib/.template.config/localize/templatestrings.pt-BR.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.ru.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...ft.Android.Templates/android-bindinglib/.template.config/localize/templatestrings.tr.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...droid.Templates/android-bindinglib/.template.config/localize/templatestrings.zh-Hans.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
6 changes: 6 additions & 0 deletions
6
...droid.Templates/android-bindinglib/.template.config/localize/templatestrings.zh-Hant.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Java Library Binding", | ||
| "description": "A project for creating a .NET Android class library that binds to a native Java library", | ||
| "symbols/supportedOSVersion/description": "Overrides $(SupportedOSPlatformVersion) in the project" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.cs.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.de.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.en.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.es.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.fr.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.it.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.ja.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.ko.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
5 changes: 5 additions & 0 deletions
5
...rosoft.Android.Templates/android-layout/.template.config/localize/templatestrings.pl.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "author": "Microsoft", | ||
| "name": "Android Layout template", | ||
| "description": "An Android layout (XML) file" | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+xon Unix?.gitattributesaccordingly.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would lean towards no as I don't anticipate us needing to invoke this script much (if ever) outside of CI, and running the script with a
pwshprefix in those cases doesn't feel like too much overhead. I will make these changes if you would prefer though?