Merge branch 'vnext' of github.com:pazof/yavsc into vnext

vnext
Paul Schneider 8 years ago
commit 3dcec64d31
3 changed files with 90 additions and 14 deletions

@ -16,15 +16,14 @@
</ResourceDictionary> </ResourceDictionary>
</CarouselPage.Resources> </CarouselPage.Resources>
<!-- La recherche d'un pro -->
<ContentPage Title="{x:Static local:Strings.SearchForAPro}" >
</ContentPage>
<!-- <!--
les derniers sons/videos/articles postés les derniers sons/videos/articles postés
--> -->
<ContentPage Title="Blogspot"> <ContentPage >
<StackLayout Orientation="Horizontal"> <StackLayout Orientation="Horizontal">
<Label Text="{x:Static local:Strings.Blogspot}" Style="{StaticResource BigLabelStyle}"/>
<Editor x:Name="search_blog_phrase" HorizontalOptions="FillAndExpand"/> <Editor x:Name="search_blog_phrase" HorizontalOptions="FillAndExpand"/>
<Button x:Name="btn_blog_update" HorizontalOptions="End" /> <Button x:Name="btn_blog_update" HorizontalOptions="End" />
</StackLayout> </StackLayout>
@ -33,9 +32,10 @@
<!-- <!--
Les demandes devis en attente de réponse (pro) Les demandes devis en attente de réponse (pro)
--> -->
<ContentPage Title="Demandes de devis" <ContentPage
IsVisible="{Binding UserProfile.IsAPerformer}"> IsVisible="{Binding UserProfile.IsAPerformer}">
<StackLayout BindingContext="{Binding BookQueries}"> <StackLayout BindingContext="{Binding BookQueries}" Padding="5,5,5,5">
<Label Text="{x:Static local:Strings.EstimateQueries}" Style="{StaticResource BigLabelStyle}"/>
<ListView x:Name="querylist" <ListView x:Name="querylist"
RefreshCommand="{Binding RefreshQueries}" RefreshCommand="{Binding RefreshQueries}"
@ -75,25 +75,29 @@
<!-- Les signatures de contrat en souffreances (pro) --> <!-- Les signatures de contrat en souffreances (pro) -->
<ContentPage Title="Contrats fournisseur" IsVisible="{Binding UserProfile.IsAPerformer}"> <ContentPage IsVisible="{Binding UserProfile.IsAPerformer}">
</ContentPage> <Label Text="{x:Static local:Strings.ProviderContracts}" Style="{StaticResource BigLabelStyle}"/>
</ContentPage>
<!-- Les signatures de contrat en souffreances (client) --> <!-- Les signatures de contrat en souffreances (client) -->
<ContentPage Title="Contrats client" IsVisible="{Binding UserProfile.IsAPerformer}"> <ContentPage IsVisible="{Binding UserProfile.IsAPerformer}">
</ContentPage> <Label Text="{x:Static local:Strings.CLientContracts}" Style="{StaticResource BigLabelStyle}"/>
</ContentPage>
<!-- Les annonces pro (pro) --> <!-- Les annonces pro (pro) -->
<ContentPage Title="Annonces pro" IsVisible="{Binding UserProfile.IsAPerformer}"> <ContentPage Title="Annonces pro" IsVisible="{Binding UserProfile.IsAPerformer}">
<StackLayout Orientation="Horizontal" > <StackLayout Orientation="Horizontal" >
<Editor x:Name="search_pub_pro_phrase" HorizontalOptions="FillAndExpand" VerticalOptions="Start"/> <Label Text="{x:Static local:Strings.ProAnounces}" Style="{StaticResource BigLabelStyle}"/>
<Editor x:Name="search_pub_pro_phrase" HorizontalOptions="FillAndExpand" VerticalOptions="Start"/>
<Button x:Name="btn_pro_pub" HorizontalOptions="End" VerticalOptions="Start" Text="Chercher"/> <Button x:Name="btn_pro_pub" HorizontalOptions="End" VerticalOptions="Start" Text="Chercher"/>
</StackLayout> </StackLayout>
</ContentPage> </ContentPage>
<!-- les petites annonces des clients (pro) --> <!-- les petites annonces des clients (pro) -->
<ContentPage Title="Annonces client" Icon="" IsVisible="{Binding UserProfile.IsAPerformer}"> <ContentPage Icon="icon" IsVisible="{Binding UserProfile.IsAPerformer}">
<StackLayout Orientation="Horizontal" > <StackLayout Orientation="Horizontal" >
<Editor x:Name="search_pub_cli_phrase" HorizontalOptions="FillAndExpand" VerticalOptions="Start"/> <Label Text="{x:Static local:Strings.ClientAnounces}" Style="{StaticResource BigLabelStyle}"/>
<Editor x:Name="search_pub_cli_phrase" HorizontalOptions="FillAndExpand" VerticalOptions="Start"/>
<Button x:Name="btn_cli_pub" HorizontalOptions="End" VerticalOptions="Start" Text="Chercher"/> <Button x:Name="btn_cli_pub" HorizontalOptions="End" VerticalOptions="Start" Text="Chercher"/>
</StackLayout> </StackLayout>
</ContentPage> </ContentPage>

@ -79,6 +79,15 @@ namespace ZicMoove {
} }
} }
/// <summary>
/// Recherche une chaîne localisée semblable à Blog spot.
/// </summary>
public static string Blogspot {
get {
return ResourceManager.GetString("Blogspot", resourceCulture);
}
}
/// <summary> /// <summary>
/// Recherche une chaîne localisée semblable à Annuler la validation. /// Recherche une chaîne localisée semblable à Annuler la validation.
/// </summary> /// </summary>
@ -88,6 +97,24 @@ namespace ZicMoove {
} }
} }
/// <summary>
/// Recherche une chaîne localisée semblable à Annonces client.
/// </summary>
public static string ClientAnounces {
get {
return ResourceManager.GetString("ClientAnounces", resourceCulture);
}
}
/// <summary>
/// Recherche une chaîne localisée semblable à Contrats client.
/// </summary>
public static string CLientContracts {
get {
return ResourceManager.GetString("CLientContracts", resourceCulture);
}
}
/// <summary> /// <summary>
/// Recherche une chaîne localisée semblable à Restreindre la demande aux clients professionnels. /// Recherche une chaîne localisée semblable à Restreindre la demande aux clients professionnels.
/// </summary> /// </summary>
@ -151,6 +178,15 @@ namespace ZicMoove {
} }
} }
/// <summary>
/// Recherche une chaîne localisée semblable à Demandes de devis.
/// </summary>
public static string EstimateQueries {
get {
return ResourceManager.GetString("EstimateQueries", resourceCulture);
}
}
/// <summary> /// <summary>
/// Recherche une chaîne localisée semblable à Star. /// Recherche une chaîne localisée semblable à Star.
/// </summary> /// </summary>
@ -250,6 +286,15 @@ namespace ZicMoove {
} }
} }
/// <summary>
/// Recherche une chaîne localisée semblable à Annonces pro.
/// </summary>
public static string ProAnounces {
get {
return ResourceManager.GetString("ProAnounces", resourceCulture);
}
}
/// <summary> /// <summary>
/// Recherche une chaîne localisée semblable à Profile professionnel. /// Recherche une chaîne localisée semblable à Profile professionnel.
/// </summary> /// </summary>
@ -259,6 +304,15 @@ namespace ZicMoove {
} }
} }
/// <summary>
/// Recherche une chaîne localisée semblable à Contrats fournisseur.
/// </summary>
public static string ProviderContracts {
get {
return ResourceManager.GetString("ProviderContracts", resourceCulture);
}
}
/// <summary> /// <summary>
/// Recherche une chaîne localisée semblable à Rechercher un artiste. /// Recherche une chaîne localisée semblable à Rechercher un artiste.
/// </summary> /// </summary>

@ -215,4 +215,22 @@
<data name="SearchForAPro" xml:space="preserve"> <data name="SearchForAPro" xml:space="preserve">
<value>Rechercher un artiste</value> <value>Rechercher un artiste</value>
</data> </data>
<data name="Blogspot" xml:space="preserve">
<value>Blog spot</value>
</data>
<data name="ClientAnounces" xml:space="preserve">
<value>Annonces client</value>
</data>
<data name="CLientContracts" xml:space="preserve">
<value>Contrats client</value>
</data>
<data name="EstimateQueries" xml:space="preserve">
<value>Demandes de devis</value>
</data>
<data name="ProAnounces" xml:space="preserve">
<value>Annonces pro</value>
</data>
<data name="ProviderContracts" xml:space="preserve">
<value>Contrats fournisseur</value>
</data>
</root> </root>
Loading…