Skip to content

Commit

Permalink
adding 2 translation into appeals create
Browse files Browse the repository at this point in the history
missing "IP" and "Your IP", but maybe its needed to remove.
most of players are sharing only SteamID
  • Loading branch information
originalaidn authored Aug 21, 2024
1 parent 6fe18f5 commit 7dfdb74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/appeals/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<div class="mb-3">
<label for="ban_type" class="form-label">{{ __('Ban Type') }}</label>
<select id="ban_type" class="form-select" name="ban_type" required onchange="toggleBanInput()">
<option value="Steam ID">Steam ID</option>
<option value="Steam ID">{{ __('admins.steam') }}</option>
<option value="IP">IP</option>
</select>
</div>
Expand Down Expand Up @@ -110,7 +110,7 @@ function toggleBanInput() {
banInputLabel.textContent = 'Your IP';
banInput.name = 'ip';
} else {
banInputLabel.textContent = 'Your SteamID';
banInputLabel.textContent = '{{ __('Your SteamID') }}';
banInput.name = 'steamid';
}
}
Expand Down

0 comments on commit 7dfdb74

Please sign in to comment.