Skip to content

Commit

Permalink
Merge pull request #1 from YannickFavre/2.5.1-2
Browse files Browse the repository at this point in the history
Traduction + Taille zone incident
  • Loading branch information
YannickFavre authored Jan 17, 2022
2 parents 1ccac4e + 80d2f4f commit c753af3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions resources/lang/fr-FR/cachet.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
'posted' => 'Posted :timestamp by :username',
'posted_at' => 'Posted at :timestamp',
'status' => [
1 => 'Enquête en cours',
2 => 'Identifié',
1 => 'Analyse en cours',
2 => 'Correction en cours',
3 => 'Sous surveillance',
4 => 'Corrigé',
4 => 'Clôturé',
],
],

Expand Down
2 changes: 1 addition & 1 deletion resources/lang/fr-FR/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
'verified' => 'Vérifié',
'not_verified' => 'Non vérifié',
'subscriber' => ':email, abonné à :date',
'no_subscriptions' => 'Souscrire à toutes les mises à jour',
'no_subscriptions' => 'Aucune souscription',
'global' => 'Abonné globalement',
'add' => [
'title' => 'Ajouter un abonné',
Expand Down
2 changes: 1 addition & 1 deletion resources/views/dashboard/incidents/add.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<div class="form-group">
<label>{{ trans('forms.incidents.message') }}</label>
<div class="markdown-control">
<textarea name="message" class="form-control autosize" rows="5" required v-model="message">{{ Binput::old('message') }}</textarea>
<textarea name="message" class="form-control autosize" rows="20" required v-model="message">{{ Binput::old('message') }}</textarea>
</div>
</div>
<div class="form-group">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/dashboard/incidents/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<div class="form-group">
<label>{{ trans('forms.incidents.message') }}</label>
<div class="markdown-control">
<textarea name="message" class="form-control autosize" rows="5" required>{{ $incident->message }}</textarea>
<textarea name="message" class="form-control autosize" rows="20" required>{{ $incident->message }}</textarea>
</div>
</div>
<div class="form-group">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/dashboard/incidents/updates/add.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<div class="form-group">
<label for="message">{{ trans('forms.incidents.message') }}</label>
<div class="markdown-control">
<textarea name="message" class="form-control autosize" rows="5" required>{{ Binput::old('message') }}</textarea>
<textarea name="message" class="form-control autosize" rows="20" required>{{ Binput::old('message') }}</textarea>
</div>
</div>
</fieldset>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/dashboard/incidents/updates/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<div class="form-group">
<label>{{ trans('forms.incidents.message') }}</label>
<div class="markdown-control">
<textarea name="message" class="form-control autosize" rows="5" required>{{ $update->message }}</textarea>
<textarea name="message" class="form-control autosize" rows="20" required>{{ $update->message }}</textarea>
</div>
</div>
</fieldset>
Expand Down

0 comments on commit c753af3

Please sign in to comment.