mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
ALPHA 3.0.1e
This commit is contained in:
19
resources/lang/fr/calendar.php
Normal file
19
resources/lang/fr/calendar.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Calendar Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
*/
|
||||
|
||||
'nothing_today' => "Il n'y a rien a l'horaire pour cette date",
|
||||
'admin_page_title' => "Horaire",
|
||||
'admin_breadcrumb' => "Horaire",
|
||||
'add_to_schedule' => "Ajouter une activité a l'horaire",
|
||||
'begin_at' => "Commence a ",
|
||||
'end_at' => " et termine a ",
|
||||
'pilotage_title' => "Cours de pilotage",
|
||||
];
|
||||
@@ -15,5 +15,6 @@ return [
|
||||
|
||||
'previous' => '« Précédent',
|
||||
'next' => 'Suivant »',
|
||||
'close' => 'Fermer',
|
||||
|
||||
];
|
||||
|
||||
@@ -21,6 +21,28 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="scrollmodal" tabindex="-1" role="dialog" aria-labelledby="scrollmodalLabel" style="display: none;" aria-hidden="true">
|
||||
<div class="modal-dialog modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="scrollmodalLabel">Scrolling Long Content Modal</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="loader">
|
||||
<img class="loader-bg" src="/images/leaf_of_canada.png"></img>
|
||||
<div class="loader-spinner"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
||||
<button type="button" class="btn btn-primary">Confirm</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('breadcrumb')
|
||||
@@ -28,7 +50,7 @@
|
||||
<div class="col-sm-4">
|
||||
<div class="page-header float-left">
|
||||
<div class="page-title">
|
||||
<h1>{{ trans('admin/dashboard.page_title')}}</h1>
|
||||
<h1>{{ trans('calendar.admin_page_title')}}</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -36,7 +58,7 @@
|
||||
<div class="page-header float-right">
|
||||
<div class="page-title">
|
||||
<ol class="breadcrumb text-right">
|
||||
<li class="active">{{ trans('admin/dashboard.breadcrumb')}}</li>
|
||||
<li class="active">{{ trans('calendar.admin_breadcrumb')}}</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -2,9 +2,35 @@
|
||||
|
||||
@section('content')
|
||||
|
||||
<!--/* ALPHA 3.0.1c */-->
|
||||
<!--/* ALPHA 3.0.1e */-->
|
||||
<div class="card-header">
|
||||
<strong class="card-title"><i class="fa fa-star" aria-hidden="true" style="color: gold"></i> ALPHA 3.0.1c<small><span class="badge badge-danger float-right mt-1">UNSTABLE</span> <span class="badge badge-warning float-right mt-1">ALPHA</span></small></strong>
|
||||
<strong class="card-title"><i class="fa fa-star" aria-hidden="true" style="color: gold"></i> ALPHA 3.0.1e<small><span class="badge badge-danger float-right mt-1">UNSTABLE</span> <span class="badge badge-warning float-right mt-1">ALPHA</span></small></strong>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
Nouveauté
|
||||
<ul style="margin-left: 28px;list-style-type: none;">
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Amélioration générale de l'horaire</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout du model d'activité</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout de la migration d'activité</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout du CSS du calendrier</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout d'un préloader</li>
|
||||
<li><i class="fa fa-plus" aria-hidden="true" style="color: green"></i> Ajout de photos sur la page publique</li>
|
||||
</ul>
|
||||
</p>
|
||||
<hr>
|
||||
<p>
|
||||
Correction de bug
|
||||
<ul style="margin-left: 28px;list-style-type: none;">
|
||||
<li><i class="fa fa-bug" aria-hidden="true" style="color: green"></i> Correction de multiple bug mineur</li>
|
||||
</ul>
|
||||
</p>
|
||||
<small><span class="badge badge-primary float-right mt-1">2018-07-18 21:23</span></small>
|
||||
</div>
|
||||
|
||||
<!--/* ALPHA 3.0.1d */-->
|
||||
<div class="card-header">
|
||||
<strong class="card-title"><i class="fa fa-star" aria-hidden="true" style="color: gold"></i> ALPHA 3.0.1d<small><span class="badge badge-danger float-right mt-1">UNSTABLE</span> <span class="badge badge-warning float-right mt-1">ALPHA</span></small></strong>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<p class="card-text">
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<?php setlocale( LC_ALL, str_replace('_', '-', app()->getLocale())) ?>
|
||||
<?php
|
||||
$lang = str_replace('_', '-', app()->getLocale());
|
||||
setlocale( LC_ALL, $lang.'_'.strtoupper($lang).'.utf8','fra');
|
||||
?>
|
||||
<title>C-CMS - Espace Administration</title>
|
||||
<meta name="description" content="Sufee Admin - HTML5 Admin Template">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
@@ -12,7 +12,6 @@ use App\Notifications\Alert;
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Including Left Panel -->
|
||||
|
||||
@include('layouts.admin.sidebar')
|
||||
|
||||
@@ -10,4 +10,4 @@
|
||||
<script src="/assets/admin/assets/js/lib/vector-map/jquery.vmap.js"></script>
|
||||
<script src="/assets/admin/assets/js/lib/vector-map/jquery.vmap.min.js"></script>
|
||||
<script src="/assets/admin/assets/js/lib/vector-map/jquery.vmap.sampledata.js"></script>
|
||||
<script src="/assets/admin/assets/js/lib/vector-map/country/jquery.vmap.world.js"></script>
|
||||
<script src="/assets/admin/assets/js/lib/vector-map/country/jquery.vmap.world.js"></script>
|
||||
|
||||
@@ -92,13 +92,13 @@
|
||||
<section id="three" class="wrapper style3 special">
|
||||
<div class="inner">
|
||||
<header class="major">
|
||||
<h2>Photo</h2>
|
||||
<h2>Photos</h2>
|
||||
<p>Voici quelques photos de nos activités, même s'il est mieux d'y participer réellement!</p>
|
||||
</header>
|
||||
<ul class="features">
|
||||
<li>
|
||||
<h3><img src="/assets/public/images/survie_2.png" alt="Un Cadet-Cadre qui a été trop efficace" width="100%"></h3>
|
||||
<p> Les Cadets-Cadre travaillent très fort en survie, comme en témoigne l'Adjudant Première Classe Lagacé.</p>
|
||||
<p>Les Cadets-Cadre travaillent très fort en survie, comme en témoigne l'Adjudant Première Classe Lagacé.</p>
|
||||
</li>
|
||||
<li>
|
||||
<h3><img src="/assets/public/images/survie_1.png" alt="Une activité en attente de cours de survie" width="100%"></h3>
|
||||
@@ -116,6 +116,14 @@
|
||||
<h3><img src="/assets/public/images/parade-2018-1.png" alt="Parade du jour du Souvenir" width="100%"></h3>
|
||||
<p>Comme à chaque année, l'escadron participe à la parade du Jour du Souvenir, pour honorer les canadiens tombés au combat.</p>
|
||||
</li>
|
||||
<li>
|
||||
<h3><img src="/assets/public/images/griffon.png" alt="Hélicoptère Griffon" width="100%"></h3>
|
||||
<p>Lors d'une activité spéciale, les cadets on eu la chance unique de faire un tour de Griffon.</p>
|
||||
</li>
|
||||
<li>
|
||||
<h3><img src="/assets/public/images/CL-415.png" alt="Avion anti-incendie" width="100%"></h3>
|
||||
<p>Lors d'une autre activité spéciale, les cadets ont eu la chance de visiter l'intérieur d'un CL-415 et de discuter avec les pilotes.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user