Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
Nom mois bon affichage accent calendrier
Browse files Browse the repository at this point in the history
  • Loading branch information
prytoegrian committed Sep 27, 2017
1 parent 3e1778d commit 12f3b3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion App/Views/Calendrier/Mois.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
$moisPrecedent = getUrlMois($moisDemande->modify('-1 month'), $idGroupe);
$moisCourant = getUrlMois(new \DateTimeImmutable(), $idGroupe);
$moisSuivant = getUrlMois($moisDemande->modify('+1 month'), $idGroupe);
$timestampMois = $mois->getBegin()->getTimestamp();

require_once VIEW_PATH . 'Calendrier.php';
?>
Expand All @@ -22,7 +23,7 @@
<a class="btn btn-default" href="<?= $moisSuivant ?>"><i class="fa fa-chevron-right" aria-hidden="true"></i></a>
</div>

<h2><?= strftime('%B %G', $mois->getBegin()->getTimestamp()) ?></h2>
<h2><?= date_fr('F', $timestampMois) . ' ' . date('Y', $timestampMois) ?></h2>
<div id="calendrierMois" class="calendrier">
<table id="calendrier">
<tr id="entete"><th></th>
Expand Down
3 changes: 1 addition & 2 deletions locale/fr_FR/LC_MESSAGES/php-conges.po
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ msgid "langue"
msgstr "Langue"

msgid "janvier"
msgstr "janvier"
msgstr "Janvier"

msgid "fevrier"
msgstr "Février"
Expand Down Expand Up @@ -1993,4 +1993,3 @@ msgstr "Traitement des demandes d'heures de repos"

msgid "install_maj_cas_echec_backup"
msgstr "Attention! La base de donnée n'a pas pu être sauvegardée."

0 comments on commit 12f3b3a

Please sign in to comment.