Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,7 @@ MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
.DS_Store

src/TravelMonkey/ApiKeys.cs

src/TravelMonkey.Android/Resources/Resource.designer.cs
16,924 changes: 0 additions & 16,924 deletions src/TravelMonkey.Android/Resources/Resource.designer.cs

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/TravelMonkey.Android/TravelMonkey.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@
<SubType></SubType>
<Generator></Generator>
</AndroidResource>
<AndroidResource Include="Resources\drawable\ja.png">
<SubType></SubType>
<Generator></Generator>
</AndroidResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\drawable\" />
Expand Down
Binary file added src/TravelMonkey.iOS/Resources/ja.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/TravelMonkey.iOS/TravelMonkey.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
<BundleResource Include="Resources\nl.png" />
<BundleResource Include="Resources\es.png" />
<BundleResource Include="Resources\TravelMonkey.png" />
<BundleResource Include="Resources\ja.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Effects\" />
Expand Down
14 changes: 0 additions & 14 deletions src/TravelMonkey/ApiKeys.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/TravelMonkey/Services/TranslationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public async Task<TranslateTextResult> TranslateText(string inputText)
{
// Build the request.
request.Method = HttpMethod.Post;
request.RequestUri = new Uri(ApiKeys.TranslationsEndpoint + "/translate?api-version=3.0&to=en&to=nl&to=es&to=fr");
request.RequestUri = new Uri(ApiKeys.TranslationsEndpoint + "/translate?api-version=3.0&to=en&to=nl&to=es&to=fr&to=ja");
request.Content = new StringContent(requestBody, Encoding.UTF8, "application/json");
request.Headers.Add("Ocp-Apim-Subscription-Key", ApiKeys.TranslationsApiKey);

Expand Down