From bce6280750dd139012c1e62d0003f8324df1a3f2 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 4 Jul 2026 20:03:56 +0100 Subject: [PATCH] titres --- src/Yavsc.Org/Views/Account/AccessDenied.cshtml | 6 +++++- src/Yavsc.Org/Views/Account/ForgotPassword.cshtml | 5 ++++- .../Views/Account/ForgotPasswordConfirmation.cshtml | 4 +++- src/Yavsc.Org/Views/Account/LoggedOut.cshtml | 6 +++++- src/Yavsc.Org/Views/Account/Login.cshtml | 5 ++++- src/Yavsc.Org/Views/Account/Logout.cshtml | 6 +++++- src/Yavsc.Org/Views/Account/Register.cshtml | 5 ++++- src/Yavsc.Org/Views/Account/ResetPassword.cshtml | 5 ++++- src/Yavsc.Org/Views/Account/Signin.cshtml | 5 ++++- src/Yavsc.Org/Views/Administration/Haircut.cshtml | 3 +++ src/Yavsc.Org/Views/ApiScope/Create.cshtml | 5 ++++- src/Yavsc.Org/Views/ApiScope/Delete.cshtml | 5 ++++- src/Yavsc.Org/Views/ApiScope/Details.cshtml | 5 ++++- src/Yavsc.Org/Views/ApiScope/Edit.cshtml | 5 ++++- src/Yavsc.Org/Views/Client/Create.cshtml | 4 +++- src/Yavsc.Org/Views/Client/Delete.cshtml | 5 ++++- src/Yavsc.Org/Views/Client/Details.cshtml | 5 +++++ src/Yavsc.Org/Views/Client/Edit.cshtml | 5 ++++- src/Yavsc.Org/Views/Client/EditClaims.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditCorsOrigins.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditGrantTypes.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditIdPRestrictions.cshtml | 6 +++++- .../Views/Client/EditPostLogoutRedirectUris.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditProperties.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditRedirectUris.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditScopes.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/EditSecrets.cshtml | 6 +++++- src/Yavsc.Org/Views/Client/RegenerateSecret.cshtml | 5 ++++- src/Yavsc.Org/Views/Client/ShowSecret.cshtml | 4 ++++ src/Yavsc.Org/Views/Device/Success.cshtml | 5 ++++- src/Yavsc.Org/Views/Device/UserCodeCapture.cshtml | 5 ++++- src/Yavsc.Org/Views/Device/UserCodeConfirmation.cshtml | 5 ++++- .../Yavsc.Models.Booking.MusicianSettingsEditor.fr.cshtml | 5 ++++- src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml | 4 ++++ src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml | 4 ++++ .../Views/FrontOffice/EstimateClientValidation.cshtml | 4 ++++ .../Views/FrontOffice/EstimateProValidation.cshtml | 4 ++++ .../FrontOffice/Yavsc.Models.Haircut.BrusherProfile.cshtml | 3 +++ .../Yavsc.Models.Musical.Profiles.Instrumentation.cshtml | 5 ++++- .../Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml | 6 +++++- .../Views/HairCutCommand/BrusherProfileScript.cshtml | 5 ++++- src/Yavsc.Org/Views/Home/About.cshtml | 5 ++++- src/Yavsc.Org/Views/Home/About.pt.cshtml | 4 ++++ src/Yavsc.Org/Views/Home/AboutIdentityServer.cshtml | 5 ++++- src/Yavsc.Org/Views/Home/Basket.cshtml | 4 ++++ src/Yavsc.Org/Views/Home/Contact.cshtml | 6 +++++- src/Yavsc.Org/Views/Home/Privacy.cshtml | 5 ++++- src/Yavsc.Org/Views/Manage/DoDirectCredit.cshtml | 6 +++++- src/Yavsc.Org/Views/Manage/ProfileEMailUsage.cshtml | 5 ++++- src/Yavsc.Org/Views/Manage/SetAddress.cshtml | 6 +++++- src/Yavsc.Org/Views/OAuth/AuthorizeDenied.cshtml | 6 +++++- src/Yavsc.Org/Views/OAuth/AuthorizeError.cshtml | 6 +++++- src/Yavsc.Org/Views/SIRENExceptions/Create.cshtml | 5 ++++- src/Yavsc.Org/Views/SIRENExceptions/Delete.cshtml | 5 ++++- src/Yavsc.Org/Views/SIRENExceptions/Details.cshtml | 5 ++++- 55 files changed, 235 insertions(+), 45 deletions(-) diff --git a/src/Yavsc.Org/Views/Account/AccessDenied.cshtml b/src/Yavsc.Org/Views/Account/AccessDenied.cshtml index 0745189e..4e8b2f84 100644 --- a/src/Yavsc.Org/Views/Account/AccessDenied.cshtml +++ b/src/Yavsc.Org/Views/Account/AccessDenied.cshtml @@ -1,4 +1,8 @@ - +@{ + ViewBag.Title = Localizer["Account"]; +} + +

Access Denied

diff --git a/src/Yavsc.Org/Views/Account/ForgotPassword.cshtml b/src/Yavsc.Org/Views/Account/ForgotPassword.cshtml index e2d7a02d..3b318ef7 100644 --- a/src/Yavsc.Org/Views/Account/ForgotPassword.cshtml +++ b/src/Yavsc.Org/Views/Account/ForgotPassword.cshtml @@ -1,4 +1,7 @@ @model ForgotPasswordViewModel +@{ + ViewBag.Title = Localizer["Account"]; +}
@@ -6,4 +9,4 @@
-
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Account/ForgotPasswordConfirmation.cshtml b/src/Yavsc.Org/Views/Account/ForgotPasswordConfirmation.cshtml index d1e50615..4faaf2d0 100644 --- a/src/Yavsc.Org/Views/Account/ForgotPasswordConfirmation.cshtml +++ b/src/Yavsc.Org/Views/Account/ForgotPasswordConfirmation.cshtml @@ -1,5 +1,7 @@ @model string +@{ + ViewBag.Title = Localizer["Account"]; +}

Check your mail box!

- diff --git a/src/Yavsc.Org/Views/Account/LoggedOut.cshtml b/src/Yavsc.Org/Views/Account/LoggedOut.cshtml index dc9fbf7a..82c653c7 100644 --- a/src/Yavsc.Org/Views/Account/LoggedOut.cshtml +++ b/src/Yavsc.Org/Views/Account/LoggedOut.cshtml @@ -1,4 +1,8 @@ -@model LoggedOutViewModel +@{ + ViewBag.Title = Localizer["Account"]; +} + +@model LoggedOutViewModel @{ // set this so the layout rendering sees an anonymous user diff --git a/src/Yavsc.Org/Views/Account/Login.cshtml b/src/Yavsc.Org/Views/Account/Login.cshtml index b0ee8e88..54df2e3e 100644 --- a/src/Yavsc.Org/Views/Account/Login.cshtml +++ b/src/Yavsc.Org/Views/Account/Login.cshtml @@ -1,4 +1,7 @@ @model LoginViewModel +@{ + ViewBag.Title = Localizer["Account"]; +} -
+
\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Account/Logout.cshtml b/src/Yavsc.Org/Views/Account/Logout.cshtml index b49dee09..893807f7 100644 --- a/src/Yavsc.Org/Views/Account/Logout.cshtml +++ b/src/Yavsc.Org/Views/Account/Logout.cshtml @@ -1,4 +1,8 @@ -@model LogoutViewModel +@{ + ViewBag.Title = Localizer["Account"]; +} + +@model LogoutViewModel
diff --git a/src/Yavsc.Org/Views/Account/Register.cshtml b/src/Yavsc.Org/Views/Account/Register.cshtml index 388b2ecd..92a7f34e 100644 --- a/src/Yavsc.Org/Views/Account/Register.cshtml +++ b/src/Yavsc.Org/Views/Account/Register.cshtml @@ -1,8 +1,11 @@ @model RegisterModel +@{ + ViewBag.Title = Localizer["Account"]; +}
@Html.EditorForModel() -
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Account/ResetPassword.cshtml b/src/Yavsc.Org/Views/Account/ResetPassword.cshtml index 5f64c727..0cdbb2e3 100644 --- a/src/Yavsc.Org/Views/Account/ResetPassword.cshtml +++ b/src/Yavsc.Org/Views/Account/ResetPassword.cshtml @@ -1,4 +1,7 @@ @model ResetPasswordViewModel +@{ + ViewBag.Title = Localizer["Account"]; +}

Your email : @Model.Email

@@ -15,4 +18,4 @@ -
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Account/Signin.cshtml b/src/Yavsc.Org/Views/Account/Signin.cshtml index 079882b3..871c0c74 100644 --- a/src/Yavsc.Org/Views/Account/Signin.cshtml +++ b/src/Yavsc.Org/Views/Account/Signin.cshtml @@ -1,4 +1,7 @@ @model SignInModel +@{ + ViewBag.Title = Localizer["Account"]; +} -
+
\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Administration/Haircut.cshtml b/src/Yavsc.Org/Views/Administration/Haircut.cshtml index a59ab801..0165665c 100644 --- a/src/Yavsc.Org/Views/Administration/Haircut.cshtml +++ b/src/Yavsc.Org/Views/Administration/Haircut.cshtml @@ -1,4 +1,7 @@ @model HaircutAdminViewModel +@{ + ViewBag.Title = Localizer["Administration"]; +} Gestion des couleurs diff --git a/src/Yavsc.Org/Views/ApiScope/Create.cshtml b/src/Yavsc.Org/Views/ApiScope/Create.cshtml index 5d3b9b8b..01aed332 100644 --- a/src/Yavsc.Org/Views/ApiScope/Create.cshtml +++ b/src/Yavsc.Org/Views/ApiScope/Create.cshtml @@ -1,4 +1,7 @@ @model IdentityServer8.EntityFramework.Entities.ApiScope +@{ + ViewBag.Title = Localizer["ApiScope"]; +} @{ Layout = null; @@ -66,4 +69,4 @@ - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/ApiScope/Delete.cshtml b/src/Yavsc.Org/Views/ApiScope/Delete.cshtml index 166e6110..2fbc66b1 100644 --- a/src/Yavsc.Org/Views/ApiScope/Delete.cshtml +++ b/src/Yavsc.Org/Views/ApiScope/Delete.cshtml @@ -1,4 +1,7 @@ @model Yavsc.Models.YavscApiScope +@{ + ViewBag.Title = Localizer["ApiScope"]; +} @{ Layout = null; @@ -69,4 +72,4 @@ - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/ApiScope/Details.cshtml b/src/Yavsc.Org/Views/ApiScope/Details.cshtml index 6c904ce3..47c52f24 100644 --- a/src/Yavsc.Org/Views/ApiScope/Details.cshtml +++ b/src/Yavsc.Org/Views/ApiScope/Details.cshtml @@ -1,4 +1,7 @@ @model Yavsc.Models.YavscApiScope +@{ + ViewBag.Title = Localizer["ApiScope"]; +} @{ Layout = null; @@ -66,4 +69,4 @@ Back to List - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/ApiScope/Edit.cshtml b/src/Yavsc.Org/Views/ApiScope/Edit.cshtml index 34b111d4..33feb63d 100644 --- a/src/Yavsc.Org/Views/ApiScope/Edit.cshtml +++ b/src/Yavsc.Org/Views/ApiScope/Edit.cshtml @@ -1,4 +1,7 @@ @model Yavsc.Models.YavscApiScope +@{ + ViewBag.Title = Localizer["ApiScope"]; +} @{ Layout = null; @@ -67,4 +70,4 @@ - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/Create.cshtml b/src/Yavsc.Org/Views/Client/Create.cshtml index 76fece36..3bdb03ab 100644 --- a/src/Yavsc.Org/Views/Client/Create.cshtml +++ b/src/Yavsc.Org/Views/Client/Create.cshtml @@ -1,4 +1,7 @@ @model Client +@{ + ViewBag.Title = Localizer["Client"]; +}

@Localizer["Create"]

@@ -77,4 +80,3 @@
@Localizer["Back to List"]
- diff --git a/src/Yavsc.Org/Views/Client/Delete.cshtml b/src/Yavsc.Org/Views/Client/Delete.cshtml index bba5a1b5..f2e68d8e 100644 --- a/src/Yavsc.Org/Views/Client/Delete.cshtml +++ b/src/Yavsc.Org/Views/Client/Delete.cshtml @@ -1,4 +1,7 @@ @model Client +@{ + ViewBag.Title = Localizer["Client"]; +}

@Localizer["Delete"]

@@ -63,4 +66,4 @@ @Localizer["Back to List"] - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/Details.cshtml b/src/Yavsc.Org/Views/Client/Details.cshtml index b39a3f70..770042be 100644 --- a/src/Yavsc.Org/Views/Client/Details.cshtml +++ b/src/Yavsc.Org/Views/Client/Details.cshtml @@ -2,7 +2,12 @@ @using Microsoft.AspNetCore.Html @using System.Text +@{ + ViewBag.Title = Localizer["Client"]; +} + @functions { + // Lifetimes in IdentityServer are stored as seconds (int). Render them // in a human-friendly way: "5 min", "2 h", "30 d", "—" for 0/negative. // Zero typically means "use the global default" — show it as such so diff --git a/src/Yavsc.Org/Views/Client/Edit.cshtml b/src/Yavsc.Org/Views/Client/Edit.cshtml index a1245061..5b9e107d 100644 --- a/src/Yavsc.Org/Views/Client/Edit.cshtml +++ b/src/Yavsc.Org/Views/Client/Edit.cshtml @@ -1,4 +1,7 @@ @model Client +@{ + ViewBag.Title = Localizer["Client"]; +}

@Localizer["Edit"]

@@ -303,4 +306,4 @@
@Localizer["Back to List"] -
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditClaims.cshtml b/src/Yavsc.Org/Views/Client/EditClaims.cshtml index bf156b09..9877019b 100644 --- a/src/Yavsc.Org/Views/Client/EditClaims.cshtml +++ b/src/Yavsc.Org/Views/Client/EditClaims.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Client Claims"; var clientId = Model.FirstOrDefault()?.ClientId ?? 0; @@ -61,4 +65,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditCorsOrigins.cshtml b/src/Yavsc.Org/Views/Client/EditCorsOrigins.cshtml index 035c130a..7e613b35 100644 --- a/src/Yavsc.Org/Views/Client/EditCorsOrigins.cshtml +++ b/src/Yavsc.Org/Views/Client/EditCorsOrigins.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Allowed CORS Origins"; ViewData["addAction"] = "AddCorsOrigin"; @@ -23,4 +27,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditGrantTypes.cshtml b/src/Yavsc.Org/Views/Client/EditGrantTypes.cshtml index 6f1a1739..139d779a 100644 --- a/src/Yavsc.Org/Views/Client/EditGrantTypes.cshtml +++ b/src/Yavsc.Org/Views/Client/EditGrantTypes.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Allowed Grant Types"; ViewData["addAction"] = "AddGrantType"; @@ -24,4 +28,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditIdPRestrictions.cshtml b/src/Yavsc.Org/Views/Client/EditIdPRestrictions.cshtml index a0032598..5f9d1160 100644 --- a/src/Yavsc.Org/Views/Client/EditIdPRestrictions.cshtml +++ b/src/Yavsc.Org/Views/Client/EditIdPRestrictions.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Identity Provider Restrictions"; ViewData["addAction"] = "AddIdPRestriction"; @@ -21,4 +25,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditPostLogoutRedirectUris.cshtml b/src/Yavsc.Org/Views/Client/EditPostLogoutRedirectUris.cshtml index f80d2953..9282d298 100644 --- a/src/Yavsc.Org/Views/Client/EditPostLogoutRedirectUris.cshtml +++ b/src/Yavsc.Org/Views/Client/EditPostLogoutRedirectUris.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Post-logout Redirect URIs"; ViewData["addAction"] = "AddPostLogoutRedirectUri"; @@ -22,4 +26,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditProperties.cshtml b/src/Yavsc.Org/Views/Client/EditProperties.cshtml index e067d487..6017bc34 100644 --- a/src/Yavsc.Org/Views/Client/EditProperties.cshtml +++ b/src/Yavsc.Org/Views/Client/EditProperties.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Client Properties"; var clientId = Model.FirstOrDefault()?.ClientId ?? 0; @@ -62,4 +66,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditRedirectUris.cshtml b/src/Yavsc.Org/Views/Client/EditRedirectUris.cshtml index fe936624..4a6467a2 100644 --- a/src/Yavsc.Org/Views/Client/EditRedirectUris.cshtml +++ b/src/Yavsc.Org/Views/Client/EditRedirectUris.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Redirect URIs"; ViewData["addAction"] = "AddRedirectUri"; @@ -22,4 +26,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditScopes.cshtml b/src/Yavsc.Org/Views/Client/EditScopes.cshtml index 0e9e0608..62978f5c 100644 --- a/src/Yavsc.Org/Views/Client/EditScopes.cshtml +++ b/src/Yavsc.Org/Views/Client/EditScopes.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Allowed Scopes"; ViewData["addAction"] = "AddScope"; @@ -22,4 +26,4 @@

Back to client -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/EditSecrets.cshtml b/src/Yavsc.Org/Views/Client/EditSecrets.cshtml index 61a23cb3..e7ce748d 100644 --- a/src/Yavsc.Org/Views/Client/EditSecrets.cshtml +++ b/src/Yavsc.Org/Views/Client/EditSecrets.cshtml @@ -1,4 +1,8 @@ @model IEnumerable +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ ViewData["Title"] = "Edit Client Secrets"; var clientId = Model.FirstOrDefault()?.ClientId ?? 0; @@ -80,4 +84,4 @@

Back to client Regenerate a single secret -

+

\ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/RegenerateSecret.cshtml b/src/Yavsc.Org/Views/Client/RegenerateSecret.cshtml index b0fd554d..cc1c1b4f 100644 --- a/src/Yavsc.Org/Views/Client/RegenerateSecret.cshtml +++ b/src/Yavsc.Org/Views/Client/RegenerateSecret.cshtml @@ -1,4 +1,7 @@ @model Client +@{ + ViewBag.Title = Localizer["Client"]; +}

@Localizer["Regenerate client secret"]

@@ -36,4 +39,4 @@ @Html.AntiForgeryToken() @Localizer["Cancel"] - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Client/ShowSecret.cshtml b/src/Yavsc.Org/Views/Client/ShowSecret.cshtml index 5256e327..3d8ff78a 100644 --- a/src/Yavsc.Org/Views/Client/ShowSecret.cshtml +++ b/src/Yavsc.Org/Views/Client/ShowSecret.cshtml @@ -1,3 +1,7 @@ +@{ + ViewBag.Title = Localizer["Client"]; +} + @{ var secret = ViewBag.NewClientSecret as string; var expiresAt = ViewBag.NewClientSecretExpiresAt as string; diff --git a/src/Yavsc.Org/Views/Device/Success.cshtml b/src/Yavsc.Org/Views/Device/Success.cshtml index 050dd91c..7ba766d3 100644 --- a/src/Yavsc.Org/Views/Device/Success.cshtml +++ b/src/Yavsc.Org/Views/Device/Success.cshtml @@ -1,7 +1,10 @@ +@{ + ViewBag.Title = Localizer["Device"]; +}

Success

You have successfully authorized the device

-
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Device/UserCodeCapture.cshtml b/src/Yavsc.Org/Views/Device/UserCodeCapture.cshtml index 6d412613..6357c752 100644 --- a/src/Yavsc.Org/Views/Device/UserCodeCapture.cshtml +++ b/src/Yavsc.Org/Views/Device/UserCodeCapture.cshtml @@ -1,4 +1,7 @@ @model string +@{ + ViewBag.Title = Localizer["Device"]; +}
@@ -20,4 +23,4 @@
- + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Device/UserCodeConfirmation.cshtml b/src/Yavsc.Org/Views/Device/UserCodeConfirmation.cshtml index e1d3b196..ef60ba1c 100644 --- a/src/Yavsc.Org/Views/Device/UserCodeConfirmation.cshtml +++ b/src/Yavsc.Org/Views/Device/UserCodeConfirmation.cshtml @@ -1,4 +1,7 @@ @model DeviceAuthorizationViewModel +@{ + ViewBag.Title = Localizer["Device"]; +}
@@ -105,4 +108,4 @@
- + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Do/Yavsc.Models.Booking.MusicianSettingsEditor.fr.cshtml b/src/Yavsc.Org/Views/Do/Yavsc.Models.Booking.MusicianSettingsEditor.fr.cshtml index 0b9b6b32..2bfa0ae5 100644 --- a/src/Yavsc.Org/Views/Do/Yavsc.Models.Booking.MusicianSettingsEditor.fr.cshtml +++ b/src/Yavsc.Org/Views/Do/Yavsc.Models.Booking.MusicianSettingsEditor.fr.cshtml @@ -1,4 +1,7 @@ @model Instrumentation +@{ + ViewBag.Title = Localizer["Do"]; +}

@Model.Tool.Name

@@ -6,4 +9,4 @@ Remove Instrument
-
+ \ No newline at end of file diff --git a/src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml b/src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml index e69de29b..8777a809 100644 --- a/src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/BillAcquitment.cshtml @@ -0,0 +1,4 @@ +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} + diff --git a/src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml b/src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml index e69de29b..8777a809 100644 --- a/src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/BillValidation.cshtml @@ -0,0 +1,4 @@ +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} + diff --git a/src/Yavsc.Org/Views/FrontOffice/EstimateClientValidation.cshtml b/src/Yavsc.Org/Views/FrontOffice/EstimateClientValidation.cshtml index e69de29b..8777a809 100644 --- a/src/Yavsc.Org/Views/FrontOffice/EstimateClientValidation.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/EstimateClientValidation.cshtml @@ -0,0 +1,4 @@ +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} + diff --git a/src/Yavsc.Org/Views/FrontOffice/EstimateProValidation.cshtml b/src/Yavsc.Org/Views/FrontOffice/EstimateProValidation.cshtml index e69de29b..8777a809 100644 --- a/src/Yavsc.Org/Views/FrontOffice/EstimateProValidation.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/EstimateProValidation.cshtml @@ -0,0 +1,4 @@ +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} + diff --git a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Haircut.BrusherProfile.cshtml b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Haircut.BrusherProfile.cshtml index 5fe3cc17..9b22e772 100644 --- a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Haircut.BrusherProfile.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Haircut.BrusherProfile.cshtml @@ -1,4 +1,7 @@ @model Yavsc.Models.Haircut.BrusherProfile +@{ + ViewBag.Title = Localizer["FrontOffice"]; +}
Disponibilités diff --git a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Musical.Profiles.Instrumentation.cshtml b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Musical.Profiles.Instrumentation.cshtml index f4b2ec80..1dd077bc 100644 --- a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Musical.Profiles.Instrumentation.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Musical.Profiles.Instrumentation.cshtml @@ -1,5 +1,8 @@ @model Yavsc.Models.Musical.Profiles.Instrumentation +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} @if (Model == null) {

NoInstrument

@@ -17,4 +20,4 @@
-} +} \ No newline at end of file diff --git a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml index 139c4eb5..906f130a 100644 --- a/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml +++ b/src/Yavsc.Org/Views/FrontOffice/Yavsc.Models.Workflow.Profiles.FormationSettings.cshtml @@ -1,4 +1,8 @@ @model Yavsc.Models.Workflow.Profiles.FormationSettings +@{ + ViewBag.Title = Localizer["FrontOffice"]; +} + @if (Model != null && Model.CoWorking != null) {
Partenariat
@@ -10,4 +14,4 @@ }
-} +} \ No newline at end of file diff --git a/src/Yavsc.Org/Views/HairCutCommand/BrusherProfileScript.cshtml b/src/Yavsc.Org/Views/HairCutCommand/BrusherProfileScript.cshtml index 7458e15c..e26397e5 100644 --- a/src/Yavsc.Org/Views/HairCutCommand/BrusherProfileScript.cshtml +++ b/src/Yavsc.Org/Views/HairCutCommand/BrusherProfileScript.cshtml @@ -1,4 +1,7 @@ @model BrusherProfile +@{ + ViewBag.Title = Localizer["HairCutCommand"]; +} + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Home/About.cshtml b/src/Yavsc.Org/Views/Home/About.cshtml index dbde9bc5..39062cb2 100755 --- a/src/Yavsc.Org/Views/Home/About.cshtml +++ b/src/Yavsc.Org/Views/Home/About.cshtml @@ -1,4 +1,7 @@ @using System.Diagnostics +@{ + ViewBag.Title = Localizer["Home"]; +}

@SiteSettings.Value.Title - À Propos

@@ -67,4 +70,4 @@ Il a accès à la connaissance des journées connues comme libres des artistes p De plus, le droit de retrait est permanent et sa mise en oeuvre immédiate. Les artistes comme les clients peuvent demander leur désinscription, qui désactive immédiatement les publications associées à leurs informations, et programme la suppression complète de ces dites informations dans les quinze jours à compter de la demande, sauf demande contradictoire. L'opération est annulable, jusqu'à deux semaines après sa programmation. - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Home/About.pt.cshtml b/src/Yavsc.Org/Views/Home/About.pt.cshtml index 85b4d291..cca60a94 100755 --- a/src/Yavsc.Org/Views/Home/About.pt.cshtml +++ b/src/Yavsc.Org/Views/Home/About.pt.cshtml @@ -1,3 +1,7 @@ +@{ + ViewBag.Title = Localizer["Home"]; +} +

@SiteSettings.Value.Title - objetivo

diff --git a/src/Yavsc.Org/Views/Home/AboutIdentityServer.cshtml b/src/Yavsc.Org/Views/Home/AboutIdentityServer.cshtml index b34a19c8..b77f2032 100644 --- a/src/Yavsc.Org/Views/Home/AboutIdentityServer.cshtml +++ b/src/Yavsc.Org/Views/Home/AboutIdentityServer.cshtml @@ -1,4 +1,7 @@ @using System.Diagnostics +@{ + ViewBag.Title = Localizer["Home"]; +} @{ var version = FileVersionInfo.GetVersionInfo(typeof(IdentityServer8.Hosting.IdentityServerMiddleware).Assembly.Location).ProductVersion.Split('+').First(); @@ -29,4 +32,4 @@ and ready to use samples. - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Home/Basket.cshtml b/src/Yavsc.Org/Views/Home/Basket.cshtml index d9882ae3..120b96d3 100644 --- a/src/Yavsc.Org/Views/Home/Basket.cshtml +++ b/src/Yavsc.Org/Views/Home/Basket.cshtml @@ -1,3 +1,7 @@ +@{ + ViewBag.Title = Localizer["Home"]; +} + @Model BasketView
    diff --git a/src/Yavsc.Org/Views/Home/Contact.cshtml b/src/Yavsc.Org/Views/Home/Contact.cshtml index d7ae2fa7..2488e2a0 100755 --- a/src/Yavsc.Org/Views/Home/Contact.cshtml +++ b/src/Yavsc.Org/Views/Home/Contact.cshtml @@ -1,5 +1,9 @@ @using Microsoft.IdentityModel.Protocols.Configuration @model SiteSettings +@{ + ViewBag.Title = Localizer["Home"]; +} +

    Contact

    @Model.Owner.Name

    @@ -9,4 +13,4 @@
    Support: @(Model.Admin.Name)<@(Model.Admin.EMail)>
    Marketing: @(Model.Owner.Name)<@(Model.Owner.EMail)> -
    + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Home/Privacy.cshtml b/src/Yavsc.Org/Views/Home/Privacy.cshtml index 2f76522b..34ae1803 100644 --- a/src/Yavsc.Org/Views/Home/Privacy.cshtml +++ b/src/Yavsc.Org/Views/Home/Privacy.cshtml @@ -1,3 +1,6 @@ +@{ + ViewBag.Title = Localizer["Home"]; +} = La confidentialité @@ -10,4 +13,4 @@ ne sont transmis à personne. Seul le système et son link:Contact[possesseur] o De plus, le droit de retrait est permanent et sa mise en oeuvre link:/Account/Delete[immédiate]. - + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Manage/DoDirectCredit.cshtml b/src/Yavsc.Org/Views/Manage/DoDirectCredit.cshtml index c51ad586..b6a21b88 100644 --- a/src/Yavsc.Org/Views/Manage/DoDirectCredit.cshtml +++ b/src/Yavsc.Org/Views/Manage/DoDirectCredit.cshtml @@ -1,5 +1,9 @@ @model DoDirectCreditViewModel +@{ + ViewBag.Title = Localizer["Manage"]; +} +
    @@ -124,4 +128,4 @@ -
    + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Manage/ProfileEMailUsage.cshtml b/src/Yavsc.Org/Views/Manage/ProfileEMailUsage.cshtml index 008897fe..95e70fb0 100644 --- a/src/Yavsc.Org/Views/Manage/ProfileEMailUsage.cshtml +++ b/src/Yavsc.Org/Views/Manage/ProfileEMailUsage.cshtml @@ -1,4 +1,7 @@ @model Yavsc.ViewModels.Manage.ProfileEMailUsageViewModel +@{ + ViewBag.Title = Localizer["Manage"]; +}
    @@ -17,4 +20,4 @@ -
    + \ No newline at end of file diff --git a/src/Yavsc.Org/Views/Manage/SetAddress.cshtml b/src/Yavsc.Org/Views/Manage/SetAddress.cshtml index b6546b89..e757ac1e 100644 --- a/src/Yavsc.Org/Views/Manage/SetAddress.cshtml +++ b/src/Yavsc.Org/Views/Manage/SetAddress.cshtml @@ -1,4 +1,8 @@ @model Location +@{ + ViewBag.Title = Localizer["Manage"]; +} + @section header {