Skip to content
This repository has been archived by the owner on Aug 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #27 from ST-Apps/master
Browse files Browse the repository at this point in the history
Repos update from ST-Apps
  • Loading branch information
DarkAngelFR authored Aug 18, 2016
2 parents 42e597a + d5ae8e5 commit 87bfe2a
Show file tree
Hide file tree
Showing 62 changed files with 3,830 additions and 2,706 deletions.
8 changes: 4 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#Fixes:
### Fixes:

- Fix 1
- Fix 2

#Changes:
### Changes:

- Change 1
- Change 2

#Change details:
### Change details:

#Other informations:
### Other informations:
2 changes: 1 addition & 1 deletion Pokemon-Go-Rocket-API
Submodule Pokemon-Go-Rocket-API updated 97 files
+0 −63 .gitattributes
+255 −8 .gitignore
+674 −0 LICENSE
+ MainPokeUi.png
+ MainSettings2.png
+ MainWindow.png
+0 −31 Pokemon Go Rocket API.sln
+63 −0 PokemonGo.RocketAPI/Client.cs
+0 −0 PokemonGo.RocketAPI/Enums/AuthType.cs
+8 −0 PokemonGo.RocketAPI/Exceptions/AccessTokenExpiredException.cs
+12 −0 PokemonGo.RocketAPI/Exceptions/AccountNotVerifiedException.cs
+16 −0 PokemonGo.RocketAPI/Exceptions/GoogleException.cs
+12 −0 PokemonGo.RocketAPI/Exceptions/GoogleOfflineException.cs
+14 −0 PokemonGo.RocketAPI/Exceptions/InvalidResponseException.cs
+8 −0 PokemonGo.RocketAPI/Exceptions/LoginFailedException.cs
+1 −5 PokemonGo.RocketAPI/Exceptions/PTCOfflineException.cs
+1 −5 PokemonGo.RocketAPI/Extensions/DateTimeExtensions.cs
+109 −0 PokemonGo.RocketAPI/Extensions/HttpClientExtensions.cs
+2 −6 PokemonGo.RocketAPI/Helpers/HttpClientHelper.cs
+1 −5 PokemonGo.RocketAPI/Helpers/JsonHelper.cs
+1 −5 PokemonGo.RocketAPI/Helpers/RandomHelper.cs
+83 −0 PokemonGo.RocketAPI/Helpers/RequestBuilder.cs
+6 −10 PokemonGo.RocketAPI/Helpers/RetryHandler.cs
+13 −14 PokemonGo.RocketAPI/Helpers/S2Helper.cs
+1 −5 PokemonGo.RocketAPI/Helpers/Utils.cs
+29 −0 PokemonGo.RocketAPI/HttpClient/PokemonClient.cs
+17 −0 PokemonGo.RocketAPI/ISettings.cs
+51 −0 PokemonGo.RocketAPI/Login/GoogleLogin.cs
+16 −0 PokemonGo.RocketAPI/Login/ILoginType.cs
+116 −0 PokemonGo.RocketAPI/Login/PtcLogin.cs
+133 −114 PokemonGo.RocketAPI/PokemonGo.RocketAPI.csproj
+5 −9 PokemonGo.RocketAPI/Properties/AssemblyInfo.cs
+0 −0 PokemonGo.RocketAPI/Resources.cs
+89 −0 PokemonGo.RocketAPI/Rpc/BaseRpc.cs
+67 −0 PokemonGo.RocketAPI/Rpc/Download.cs
+93 −0 PokemonGo.RocketAPI/Rpc/Encounter.cs
+134 −0 PokemonGo.RocketAPI/Rpc/Fort.cs
+159 −0 PokemonGo.RocketAPI/Rpc/Inventory.cs
+102 −0 PokemonGo.RocketAPI/Rpc/Login.cs
+82 −0 PokemonGo.RocketAPI/Rpc/Map.cs
+56 −0 PokemonGo.RocketAPI/Rpc/Misc.cs
+115 −0 PokemonGo.RocketAPI/Rpc/Player.cs
+15 −10 PokemonGo.RocketAPI/app.config
+13 −11 PokemonGo.RocketAPI/packages.config
+0 −179 PokemonGo/RocketAPI/ClassDiagram1.cd
+0 −554 PokemonGo/RocketAPI/Client.cs
+0 −45 PokemonGo/RocketAPI/Enums/MiscEnums.cs
+0 −77 PokemonGo/RocketAPI/Enums/RequestType.cs
+0 −75 PokemonGo/RocketAPI/Extensions/HttpClientExtensions.cs
+0 −177 PokemonGo/RocketAPI/GPSOAuthSharp.cs
+0 −1,159 PokemonGo/RocketAPI/GeneratedCode/AllEnum.cs
+0 −27,666 PokemonGo/RocketAPI/GeneratedCode/Payloads.cs
+0 −3,394 PokemonGo/RocketAPI/GeneratedCode/Request.cs
+0 −927 PokemonGo/RocketAPI/GeneratedCode/Response.cs
+0 −24 PokemonGo/RocketAPI/Helpers/ProtoHelper.cs
+0 −73 PokemonGo/RocketAPI/Helpers/RequestBuilder.cs
+0 −37 PokemonGo/RocketAPI/ISettings.cs
+0 −115 PokemonGo/RocketAPI/Login/GoogleLogin.cs
+0 −68 PokemonGo/RocketAPI/Login/PtcLogin.cs
+0 −766 PokemonGo/RocketAPI/Proto/AllEnum.proto
+0 −909 PokemonGo/RocketAPI/Proto/Payloads.proto
+0 −108 PokemonGo/RocketAPI/Proto/Request.proto
+0 −29 PokemonGo/RocketAPI/Proto/Response.proto
+0 −59 PokemonGo/RocketAPI/Window/App.config
+0 −35 PokemonGo/RocketAPI/Window/CueTextBox.cs
+0 −61 PokemonGo/RocketAPI/Window/LocationManager.cs
+0 −184 PokemonGo/RocketAPI/Window/MainForm.Designer.cs
+0 −1,094 PokemonGo/RocketAPI/Window/MainForm.cs
+0 −1,554 PokemonGo/RocketAPI/Window/MainForm.resx
+0 −106 PokemonGo/RocketAPI/Window/MapForm.Designer.cs
+0 −56 PokemonGo/RocketAPI/Window/MapForm.cs
+0 −1,548 PokemonGo/RocketAPI/Window/MapForm.resx
+0 −157 PokemonGo/RocketAPI/Window/PokeUi.Designer.cs
+0 −314 PokemonGo/RocketAPI/Window/PokeUi.cs
+0 −1,548 PokemonGo/RocketAPI/Window/PokeUi.resx
+0 −100 PokemonGo/RocketAPI/Window/PokemonForm.Designer.cs
+0 −88 PokemonGo/RocketAPI/Window/PokemonForm.cs
+0 −1,545 PokemonGo/RocketAPI/Window/PokemonForm.resx
+0 −158 PokemonGo/RocketAPI/Window/PokemonGo.RocketAPI.Window.csproj
+0 −22 PokemonGo/RocketAPI/Window/Program.cs
+0 −36 PokemonGo/RocketAPI/Window/Properties/AssemblyInfo.cs
+0 −71 PokemonGo/RocketAPI/Window/Properties/Resources.Designer.cs
+0 −117 PokemonGo/RocketAPI/Window/Properties/Resources.resx
+0 −30 PokemonGo/RocketAPI/Window/Properties/Settings.Designer.cs
+0 −7 PokemonGo/RocketAPI/Window/Properties/Settings.settings
+0 −142 PokemonGo/RocketAPI/Window/Settings.cs
+0 −559 PokemonGo/RocketAPI/Window/SettingsForm.Designer.cs
+0 −248 PokemonGo/RocketAPI/Window/SettingsForm.cs
+0 −1,545 PokemonGo/RocketAPI/Window/SettingsForm.resx
+ PokemonGo/RocketAPI/Window/lib/GMap.NET.Core.dll
+0 −3,360 PokemonGo/RocketAPI/Window/lib/GMap.NET.Core.xml
+ PokemonGo/RocketAPI/Window/lib/GMap.NET.WindowsForms.dll
+0 −862 PokemonGo/RocketAPI/Window/lib/GMap.NET.WindowsForms.xml
+0 −34 PokemonGo/RocketAPI/Window/lib/License.txt
+ PokemonGo/RocketAPI/Window/pokemonGo.ico
+36 −97 README.md
+ screenshot.png
2 changes: 2 additions & 0 deletions PokemonGo-UWP/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
</ResourceDictionary.MergedDictionaries>

<utils:PokemonIdToPokemonSpriteConverter x:Key="PokemonIdToPokemonSpriteConverter" />
<utils:PokemonTypeTranslationConverter x:Key="PokemonTypeTranslationConverter" />
<utils:EmptyConverter x:Key="EmptyConverter" />
<utils:PlayerTeamToTeamColorBrushConverter x:Key="PlayerTeamToTeamColorBrushConverter" />
<utils:EncounterBackgroundToBackgroundImageConverter x:Key="EncounterBackgroundToBackgroundImageConverter" />
Expand All @@ -32,6 +33,7 @@
<utils:PokemonSortingModesToSortingModesListConverter
x:Key="PokemonSortingModesToSortingModesListConverter" />
<utils:PokemonSortingModesToIconConverter x:Key="PokemonSortingModesToIconConverter" />
<utils:PokemonSortingModesTranslationConverter x:Key="PokemonSortingModesTranslationConverter" />
<utils:EggDataToEggProgressConverter x:Key="EggDataToEggProgressConverter" />
<utils:ItemToItemDescriptionConverter x:Key="ItemToItemDescriptionConverter" />
<utils:IncubatorUsagesCountToUsagesTextConverter x:Key="IncubatorUsagesCountToUsagesTextConverter" />
Expand Down
7 changes: 2 additions & 5 deletions PokemonGo-UWP/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,9 @@ private async void CatchablePokemons_CollectionChanged(object sender, NotifyColl
/// <param name="prelaunchActivated"></param>
/// <returns></returns>
public override Task OnSuspendingAsync(object s, SuspendingEventArgs e, bool prelaunchActivated)
{
{
GameClient.PokemonsInventory.CollectionChanged -= PokemonsInventory_CollectionChanged;
GameClient.CatchablePokemons.CollectionChanged -= CatchablePokemons_CollectionChanged;
// TODO: Probably not needed as stated here: https://blogs.windows.com/buildingapps/2016/05/24/how-to-prevent-screen-locks-in-your-uwp-apps/
_displayRequest.RequestRelease();
if (SettingsService.Instance.LiveTileMode == LiveTileModes.Peek)
{
LiveTileUpdater.EnableNotificationQueue(false);
Expand All @@ -168,8 +166,7 @@ public override async Task OnInitializeAsync(IActivatedEventArgs args)
#if DEBUG
// Init logger
Logger.SetLogger(new ConsoleLogger(LogLevel.Info));
#endif

#endif
// If we have a phone contract, hide the status bar
if (ApiInformation.IsApiContractPresent("Windows.Phone.PhoneContract", 1, 0))
{
Expand Down
Binary file modified PokemonGo-UWP/Assets/Buttons/btn_items.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PokemonGo-UWP/Assets/Buttons/btn_items_catch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PokemonGo-UWP/Assets/Buttons/btn_pokedex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PokemonGo-UWP/Assets/Buttons/btn_pokemon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PokemonGo-UWP/Assets/Icons/pokestop_far_lured.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PokemonGo-UWP/Assets/Items/Item_301.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified PokemonGo-UWP/Assets/Items/Item_401.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PokemonGo-UWP/Assets/Items/Item_402.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PokemonGo-UWP/Assets/Items/Item_501.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions PokemonGo-UWP/Entities/FortDataWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public FortDataStatus FortDataStatus {
if(CooldownCompleteTimestampMs > DateTime.UtcNow.ToUnixTime())
retVal |= FortDataStatus.Cooldown;

if(_fortData.LureInfo != null && _fortData.LureInfo.LureExpiresTimestampMs > DateTime.UtcNow.ToUnixTime())
retVal |= FortDataStatus.Lure;

return retVal;
}
}
Expand Down
8 changes: 8 additions & 0 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.cs.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,14 @@ Chcete otevřít stránku se soubory pro manuální instalaci? </target>
<source>Remember Map Zoom</source>
<target state="new">Remember Map Zoom</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="new">START INCUBATION</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="new">Use an incubator to incubate the Egg.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down
55 changes: 44 additions & 11 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.de.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
</trans-unit>
<trans-unit id="BadgeHatchedTotalDescription" translate="yes" xml:space="preserve">
<source>Hatched {x} Pokemon</source>
<target state="translated">{x} Pokemon geschlüpft</target>
<target state="translated">{x} Pokémon geschlüpft</target>
</trans-unit>
<trans-unit id="BadgePikachuDescription" translate="yes" xml:space="preserve">
<source>Caught {0} Pikachu</source>
Expand Down Expand Up @@ -351,11 +351,11 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="TransferPokemonSuccessText" translate="yes" xml:space="preserve">
<source>Transfer succeeded! Got a {0} Candy from the Professor.</source>
<target state="translated">Transfer erfolgreich! Du hast ein {0} Bonbon vom Professor erhalten.</target>
<target state="translated">Erfolgreich verschickt! {0}-Bonbon vom Professor erhalten!</target>
</trans-unit>
<trans-unit id="TransferPokemonWarningText" translate="yes" xml:space="preserve">
<source>You can't take it back after it's transferred to the Professor. Do you really want to transfer {0} to the Professor?</source>
<target state="translated">Nach dem Transfer zum Professor kannst du es nicht mehr zurückerhalten. Willst du {0} wirklich zum Professor transferieren?</target>
<target state="translated">Nachdem du es an den Professor geschickt hast, kannst du es nicht zurückholen. Möchtest du {0} wirklich an den Professor schicken?</target>
</trans-unit>
<trans-unit id="LoginExpired" translate="yes" xml:space="preserve">
<source>Previous login expired.</source>
Expand Down Expand Up @@ -458,6 +458,31 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
<source>Defeat Gym Leader</source>
<target state="translated">Besiege Arenen Anführer</target>
</trans-unit>
<trans-unit id="Combat" translate="yes" xml:space="preserve">
<source>Combat</source>
<target state="needs-review-translation">Angiffspunkte</target>
</trans-unit>
<trans-unit id="Date" translate="yes" xml:space="preserve">
<source>Date</source>
<target state="translated">Datum</target>
</trans-unit>
<trans-unit id="Fav" translate="yes" xml:space="preserve">
<source>Favorite</source>
<target state="translated">Favorit</target>
</trans-unit>
<trans-unit id="Health" translate="yes" xml:space="preserve">
<source>Health</source>
<target state="translated">Gesundheit</target>
</trans-unit>
<trans-unit id="Name" translate="yes" xml:space="preserve">
<source>Name</source>
<target state="translated">Name</target>
</trans-unit>
<trans-unit id="Number" translate="yes" xml:space="preserve">
<source>Number</source>
<target state="translated">Nummer
</target>
</trans-unit>
</group>
</body>
</file>
Expand Down Expand Up @@ -489,7 +514,7 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="NearbyPokemonTextBlock.Text" translate="yes" xml:space="preserve">
<source>nearby</source>
<target state="translated">in der Nähe</target>
<target state="translated">GESICHTETE POKÉMON</target>
</trans-unit>
<trans-unit id="OutOfRangeTextBlock.Text" translate="yes" xml:space="preserve">
<source>THIS POKÉSTOP IS TOO FAR AWAY</source>
Expand Down Expand Up @@ -582,11 +607,11 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="StartDateTextBlock.Text" translate="yes" xml:space="preserve">
<source>START DATE</source>
<target state="translated">BEGINN</target>
<target state="translated">STARTDATUM</target>
</trans-unit>
<trans-unit id="IncubatorsTextBlock.Text" translate="yes" xml:space="preserve">
<source>INCUBATORS</source>
<target state="translated">Brutmaschine</target>
<target state="translated">BRUTMASCHINEN</target>
</trans-unit>
<trans-unit id="SettingsUseNianticMapTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use Niantic Map</source>
Expand Down Expand Up @@ -618,11 +643,11 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="StardustTextBlock.Text" translate="yes" xml:space="preserve">
<source>STARDUST</source>
<target state="translated">STERNSTAUB</target>
<target state="translated">STERNENSTAUB</target>
</trans-unit>
<trans-unit id="CandyTextBlock.Text" translate="yes" xml:space="preserve">
<source> CANDY</source>
<target state="translated">BONBON</target>
<target state="translated">-BONBON</target>
<note from="MultilingualBuild" annotates="source" priority="2">Watch out: space before the word!</note>
</trans-unit>
<trans-unit id="EvolveButton.Content" translate="yes" xml:space="preserve">
Expand All @@ -631,16 +656,24 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="PowerUpButton.Content" translate="yes" xml:space="preserve">
<source>POWER UP</source>
<target state="needs-review-translation">POWER UP</target>
<target state="translated">POWER-UP</target>
</trans-unit>
<trans-unit id="TransferButton.Content" translate="yes" xml:space="preserve">
<source>TRANSFER</source>
<target state="translated">TRANSFER</target>
<target state="translated">VERSCHICKEN</target>
</trans-unit>
<trans-unit id="SettingsRememberMapZoomTextBlock" translate="yes" xml:space="preserve">
<source>Remember Map Zoom</source>
<target state="translated">Speichere Karten Zoom</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="translated">AUSBRÜTEN BEGINNEN</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="translated">Benutze eine Brutmaschine, um dieses Ei auszubrüten.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down Expand Up @@ -732,7 +765,7 @@ Seite zu den Dateien für manuelle Installation öffnen?</target>
</trans-unit>
<trans-unit id="ItemIncubatorBasicUnlimited" translate="yes" xml:space="preserve">
<source>Incubator Basic Unlimited</source>
<target state="translated">Ei-Brutmaschine (Unbegrenzt)</target>
<target state="translated">Ei-Brutmaschine </target>
</trans-unit>
<trans-unit id="ItemItemStorageUpgrade" translate="yes" xml:space="preserve">
<source>Item Storage Upgrade</source>
Expand Down
8 changes: 8 additions & 0 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.el.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,14 @@ Open page with installation files for manual install?</source>
<source>Remember Map Zoom</source>
<target state="new">Remember Map Zoom</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="new">START INCUBATION</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="new">Use an incubator to incubate the Egg.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down
8 changes: 8 additions & 0 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.es.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,14 @@ Open page with installation files for manual install?</source>
<source>TRANSFER</source>
<target state="translated">Transferir</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="new">START INCUBATION</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="new">Use an incubator to incubate the Egg.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down
8 changes: 8 additions & 0 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.fi.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,14 @@ Open page with installation files for manual install?</target>
<source>Remember Map Zoom</source>
<target state="new">Remember Map Zoom</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="new">START INCUBATION</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="new">Use an incubator to incubate the Egg.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down
31 changes: 16 additions & 15 deletions PokemonGo-UWP/MultilingualResources/PokemonGo-UWP.fr.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,14 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
<source>Remember Map Zoom</source>
<target state="translated">Mémoriser le zoom de la carte</target>
</trans-unit>
<trans-unit id="EggDetailButtonTextBlock.Text" translate="yes" xml:space="preserve">
<source>START INCUBATION</source>
<target state="new">START INCUBATION</target>
</trans-unit>
<trans-unit id="EggDetailTextBlock.Text" translate="yes" xml:space="preserve">
<source>Use an incubator to incubate the Egg.</source>
<target state="new">Use an incubator to incubate the Egg.</target>
</trans-unit>
</group>
</body>
</file>
Expand Down Expand Up @@ -1056,8 +1064,7 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="Ivysaur" translate="yes" xml:space="preserve">
<source>Ivysaur</source>
<target state="translated">Herbizarre
</target>
<target state="translated">Herbizarre</target>
</trans-unit>
<trans-unit id="Jigglypuff" translate="yes" xml:space="preserve">
<source>Jigglypuff</source>
Expand Down Expand Up @@ -1257,9 +1264,7 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="Poliwag" translate="yes" xml:space="preserve">
<source>Poliwag</source>
<target state="translated">Ptitard

</target>
<target state="translated">Ptitard</target>
</trans-unit>
<trans-unit id="Poliwhirl" translate="yes" xml:space="preserve">
<source>Poliwhirl</source>
Expand Down Expand Up @@ -1291,12 +1296,11 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="Rapidash" translate="yes" xml:space="preserve">
<source>Rapidash</source>
<target state="translated">Galopa </target>
<target state="translated">Galopa</target>
</trans-unit>
<trans-unit id="Raticate" translate="yes" xml:space="preserve">
<source>Raticate</source>
<target state="translated">Rattatac
</target>
<target state="translated">Rattatac</target>
</trans-unit>
<trans-unit id="Rattata" translate="yes" xml:space="preserve">
<source>Rattata</source>
Expand Down Expand Up @@ -1481,8 +1485,7 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="FlameWheel" translate="yes" xml:space="preserve">
<source>Flame Wheel</source>
<target state="translated">Roue de Feu
</target>
<target state="translated">Roue de Feu</target>
</trans-unit>
<trans-unit id="HyperBeam" translate="yes" xml:space="preserve">
<source>Hyper Beam</source>
Expand Down Expand Up @@ -1594,8 +1597,7 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="AirSlash" translate="yes" xml:space="preserve">
<source>Air Slash</source>
<target state="translated">Lame d'Air
</target>
<target state="translated">Lame d'Air</target>
</trans-unit>
<trans-unit id="AncientPower" translate="yes" xml:space="preserve">
<source>Ancient Power</source>
Expand Down Expand Up @@ -2052,8 +2054,7 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</trans-unit>
<trans-unit id="SludgeBomb" translate="yes" xml:space="preserve">
<source>Sludge Bomb</source>
<target state="translated">Bomb-Beurk
</target>
<target state="translated">Bomb-Beurk</target>
</trans-unit>
<trans-unit id="SludgeWave" translate="yes" xml:space="preserve">
<source>Sludge Wave</source>
Expand Down Expand Up @@ -2182,4 +2183,4 @@ Ouvrir la page avec les fichiers d'installation pour une installation manuelle ?
</group>
</body>
</file>
</xliff>
</xliff>
Loading

0 comments on commit 87bfe2a

Please sign in to comment.