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

Translations for Egg incubator and Setting (map zoom level) #592

Closed
wants to merge 16 commits into from
Closed
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
9 changes: 9 additions & 0 deletions PokemonGo-UWP/Strings/en-US/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -381,4 +381,13 @@ Open page with installation files for manual install?</value>
<data name="BadgeSmallRattata" xml:space="preserve">
<value>Youngster</value>
</data>
<data name="IncubatorExplanationText.Text" xml:space="preserve">
<value>Use an incubator to incubate the Egg.</value>
</data>
<data name="RememberMapZoomTitleText.Text" xml:space="preserve">
<value>Remember Map Zoom</value>
</data>
<data name="StartIncubationText.Text" xml:space="preserve">
<value>START INCUBATION</value>
</data>
</root>
15 changes: 15 additions & 0 deletions PokemonGo-UWP/Strings/nl-NL/Resources.resw
Original file line number Diff line number Diff line change
Expand Up @@ -257,4 +257,19 @@ Open de pagina met installatie bestanden voor handmatige installatie?</value>
<data name="UpdateInstalling" xml:space="preserve">
<value>Installeren van de update, app zal herstarten...</value>
</data>
<data name="MapAutoRotateTitleText.Text" xml:space="preserve">
<value>Kaart automatisch draaien</value>
</data>
<data name="IncubateEggText.Text" xml:space="preserve">
<value>Gebruik een broedmachine om een ei uit te broeden.</value>
</data>
<data name="incubatorsText.Text" xml:space="preserve">
<value>BROEDMACHINES</value>
</data>
<data name="StartIncubationText.Text" xml:space="preserve">
<value>START UITBROEDEN</value>
</data>
<data name="RememberMapZoomTitleText.Text" xml:space="preserve">
<value>Onthou kaart zoom level</value>
</data>
</root>
4 changes: 2 additions & 2 deletions PokemonGo-UWP/Views/EggDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,13 @@

<StackPanel Grid.Row="1"
Visibility="{Binding CurrentEgg.EggIncubatorId, Converter={StaticResource VisibleWhenStringEmptyConverter}}">
<TextBlock Text="Use an incubator to incubate the Egg."
<TextBlock x:Uid="IncubateEggText" Text="Use an incubator to incubate the Egg."
HorizontalAlignment="Center" />

<Button Style="{StaticResource ButtonSubmit}"
Tapped="ToggleIncubatorModel"
Width="180">
<TextBlock Text="START INCUBATION" />
<TextBlock x:Uid="StartIncubationText" Text="START INCUBATION" />
</Button>
</StackPanel>

Expand Down