* Edit.aspx: A Page Title

* style.css: space was needed

* LocalizedText.resx: A Page Title for bill edition

* LocalizedText.Designer.cs: A Page Title for bill edition

* LocalizedText.fr.Designer.cs:  A Page Title for bill edition

* LocalizedText.fr.resx: Page Title for bill edition
vnext
Paul Schneider 9 years ago
parent a7f5f399ed
commit 7181e09bb7
8 changed files with 31 additions and 2 deletions

@ -1,3 +1,9 @@
2015-06-09 Paul Schneider <paul@pschneider.fr>
* Edit.aspx: A Page Title
* style.css: space was needed
2015-06-09 Paul Schneider <paul@pschneider.fr>
* BlogsController.cs: - cleans unused code

@ -58,6 +58,7 @@ footer {
border-radius:5px; border: solid 1px #000060;
float: right;
margin:.5em;
padding: .5em;
}
.bsh { float: right; }

@ -1,4 +1,4 @@
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<BlogEntry>" MasterPageFile="~/Models/App.master" %>
<%@ Page Title="Bill edition" Language="C#" Inherits="System.Web.Mvc.ViewPage<BlogEntry>" MasterPageFile="~/Models/App.master" %>
<asp:Content ContentPlaceHolderID="head" ID="HeadContent1" runat="server">
<link rel="stylesheet" href="<%=Url.Content("~/Theme/mdd_styles.css")%>">
<script type="text/javascript" src="<%=Url.Content("~/Scripts/MarkdownDeepLib.min.js")%>">
@ -53,5 +53,5 @@
<asp:Content ContentPlaceHolderID="MASContent" ID="masContent1" runat="server">
<div class="mdd_preview"></div>
<div class="mdd_preview panel"></div>
</asp:Content>

@ -1,3 +1,11 @@
2015-06-09 Paul Schneider <paul@pschneider.fr>
* LocalizedText.resx:
* LocalizedText.Designer.cs:
* LocalizedText.fr.Designer.cs:
* LocalizedText.fr.resx: Page Title
2015-06-09 Paul Schneider <paul@pschneider.fr>
* YavscModel.csproj:

@ -274,6 +274,12 @@ namespace Yavsc.Model {
}
}
public static string Bill_edition {
get {
return ResourceManager.GetString("Bill edition", resourceCulture);
}
}
public static string Offline {
get {
return ResourceManager.GetString("Offline", resourceCulture);

@ -268,6 +268,12 @@ namespace Yavsc.Model {
}
}
public static string Bill_edition {
get {
return ResourceManager.GetString("Bill edition", resourceCulture);
}
}
public static string Offline {
get {
return ResourceManager.GetString("Offline", resourceCulture);

@ -59,4 +59,5 @@
<data name="EventWebPage"><value>Page web de l'événement</value></data>
<data name="ImgLocator"><value>URI de l'image</value></data>
<data name="Home"><value>Accueil</value></data>
<data name="Bill edition"><value>Édition d'un billet</value></data>
</root>

@ -61,4 +61,5 @@
<data name="EventWebPage"><value>Event Web page</value></data>
<data name="ImgLocator"><value>Image URI</value></data>
<data name="Home"><value>Home</value></data>
<data name="Bill edition"><value>Bill edition</value></data>
</root>

Loading…