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>
</CarouselPage.Resources>
<!-- La recherche d'un pro -->
<ContentPage Title="{x:Static local:Strings.SearchForAPro}" >
</ContentPage>
<!--
les derniers sons/videos/articles postés
-->
<ContentPage Title="Blogspot">
<ContentPage >
<StackLayout Orientation="Horizontal">
<Label Text="{x:Static local:Strings.Blogspot}" Style="{StaticResource BigLabelStyle}"/>
<Editor x:Name="search_blog_phrase" HorizontalOptions="FillAndExpand"/>
<Button x:Name="btn_blog_update" HorizontalOptions="End" />
</StackLayout>
@ -33,10 +32,11 @@
<!--
Les demandes devis en attente de réponse (pro)
-->
<ContentPage Title="Demandes de devis"
<ContentPage
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"
RefreshCommand="{Binding RefreshQueries}"
IsPullToRefreshEnabled="True"
@ -75,25 +75,29 @@
<!-- Les signatures de contrat en souffreances (pro) -->
<ContentPage Title="Contrats fournisseur" IsVisible="{Binding UserProfile.IsAPerformer}">
</ContentPage>
<ContentPage IsVisible="{Binding UserProfile.IsAPerformer}">
<Label Text="{x:Static local:Strings.ProviderContracts}" Style="{StaticResource BigLabelStyle}"/>
</ContentPage>
<!-- Les signatures de contrat en souffreances (client) -->
<ContentPage Title="Contrats client" IsVisible="{Binding UserProfile.IsAPerformer}">
</ContentPage>
<ContentPage IsVisible="{Binding UserProfile.IsAPerformer}">
<Label Text="{x:Static local:Strings.CLientContracts}" Style="{StaticResource BigLabelStyle}"/>
</ContentPage>
<!-- Les annonces pro (pro) -->
<ContentPage Title="Annonces pro" IsVisible="{Binding UserProfile.IsAPerformer}">
<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"/>
</StackLayout>
</ContentPage>
<!-- 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" >
<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"/>
</StackLayout>
</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>
/// Recherche une chaîne localisée semblable à Annuler la validation.
/// </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>
/// Recherche une chaîne localisée semblable à Restreindre la demande aux clients professionnels.
/// </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>
/// Recherche une chaîne localisée semblable à Star.
/// </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>
/// Recherche une chaîne localisée semblable à Profile professionnel.
/// </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>
/// Recherche une chaîne localisée semblable à Rechercher un artiste.
/// </summary>

@ -215,4 +215,22 @@
<data name="SearchForAPro" xml:space="preserve">
<value>Rechercher un artiste</value>
</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>
Loading…