feat: added strings to Teams feature

This commit is contained in:
2022-03-19 06:22:00 +00:00
committed by Miguel Nogueira
parent 703032a008
commit 44874fbdc5
4 changed files with 81 additions and 81 deletions

View File

@@ -1,9 +1,9 @@
@extends('adminlte::page')
@section('title', config('app.name') . ' | ' . __('messages.teams.m_teams_page'))
@section('title', config('app.name') . ' | ' . __('Teams'))
@section('content_header')
<h1>{{config('app.name')}} / {{__('messages.teams.m_teams_page')}}</h1>
<h1>{{config('app.name')}} / {{__('Teams')}}</h1>
@stop
@section('js')
@@ -26,18 +26,18 @@
<form action="{{ route('teams.store') }}" method="POST" id="newTeamForm">
@csrf
<div class="text-center">
<input type="text" id="teamName" class="form-control" required name="teamName">
</div>
<p class="text-muted text-sm">This is the name team members will see.</p>
<p class="text-muted text-sm">{{ __('This is the name team members will see.') }}</p>
</form>
<x-slot name="modalFooter">
<button type="button" class="btn btn-success" onclick="$('#newTeamForm').submit()"><i class="fas fa-check"></i> Create</button>
<button type="button" class="btn btn-success" onclick="$('#newTeamForm').submit()"><i class="fas fa-check"></i> {{__('Create')}}</button>
</x-slot>
@@ -49,7 +49,7 @@
<div class="col-md-4 offset-4 text-center">
<img src="/img/team.svg" height="230px" width="230px" alt="Team illustration">
<img src="/img/team.svg" height="230px" width="230px" alt="{{ __('Team illustration') }}">
</div>
@@ -71,8 +71,8 @@
<div class="col">
<div class="card-title"><h4>{{ __('messages.teams.m_teams_page') }} <span class="badge badge-warning"><i class="fas fa-check-circle"></i> {{ (Auth::user()->currentTeam) ? Auth::user()->currentTeam->name : 'Select a team' }}</span></h4></div>
<div class="card-title"><h4>{{ __('Teams') }} <span class="badge badge-warning"><i class="fas fa-check-circle"></i> {{ (Auth::user()->currentTeam) ? Auth::user()->currentTeam->name : __('Select a team') }}</span></h4></div>
</div>
</div>
@@ -89,23 +89,23 @@
<thead>
<tr>
<th>#</th>
<th>Team Owner</th>
<th>Team Name</th>
<th>Actions</th>
<th>{{ __('Team Owner') }}</th>
<th>{{ __('Team Name') }}</th>
<th>{{__('Actions')}}</th>
</tr>
</thead>
<tbody>
@foreach ($teams as $team)
<tr>
<td>{{ $team->id }}</td>
<td>{{ $team->owner_id }}</td>
<td>{{ $team->name }}</td>
<td>
<button type="button" class="btn btn-success btn-sm ml-2" onclick="location.href='{{ route('teams.edit', ['team' => $team->id]) }}'"><i class="fas fa-cogs"></i> Settings</button>
<button onclick="location.href='{{ route('switchTeam', ['team' => $team]) }}'" rel="buttonTxtTooltip" data-placement="top" data-toggle="tooltip" title="Select your active team (for dasboard context, etc)" type="button" class="btn btn-warning btn-sm ml-2"><i class="fas fa-random"></i> Switch To</button>
<button type="button" class="btn btn-success btn-sm ml-2" onclick="location.href='{{ route('teams.edit', ['team' => $team->id]) }}'"><i class="fas fa-cogs"></i> {{ __('Settings') }}</button>
<button onclick="location.href='{{ route('switchTeam', ['team' => $team]) }}'" rel="buttonTxtTooltip" data-placement="top" data-toggle="tooltip" title="{{ __('Select your active team (for dasboard context, etc)') }}" type="button" class="btn btn-warning btn-sm ml-2"><i class="fas fa-random"></i> {{ __('Switch To') }}</button>
</td>
</tr>
@@ -119,8 +119,8 @@
@else
<div class="alert alert-warning">
<i class="fas fa-exclamation-triangle"></i> <b> There don't seem to be any teams here</b>
<p>Have you tried creating or joining a team? You may also click an invite link if you've been invited.</p>
<i class="fas fa-exclamation-triangle"></i> {!! __("<b> There don't seem to be any teams here</b>") !!}
<p>{{ __("Have you tried creating or joining a team? You may also click an invite link if you've been invited.") }}</p>
</div>
@endif
@@ -130,8 +130,8 @@
<div class="card-footer">
<button type="button" class="btn btn-success btn-sm ml-3" onclick="$('#newTeamModal').modal('show')"><i class="fas fa-plus-circle"></i> New team</button>
<button type="button" class="btn btn-warning btn-sm ml-3"><i class="fas fas fa-long-arrow-alt-right"></i> Team Dashboard</button>
<button type="button" class="btn btn-success btn-sm ml-3" onclick="$('#newTeamModal').modal('show')"><i class="fas fa-plus-circle"></i> {{ __('New team') }}</button>
<button type="button" class="btn btn-warning btn-sm ml-3"><i class="fas fas fa-long-arrow-alt-right"></i> {{ __('Team Dashboard') }}</button>
</div>