3911012c65
Broad sweep across the whole codebase:
- Blade views (39 files, 315 wraps): tag-text and title/placeholder/alt
attributes wrapped with {{ __() }}. Excludes scripts, styles, @php,
@verbatim, {{ }}, {!! !!}, comments to avoid touching interpolations.
- PHP (54 files, 179 wraps): array 'key' => 'RO value' patterns and
list items with diacritics wrapped with __(). Reverted __() inside
const arrays (PHP disallows non-constant expressions).
- Added 269 new keys to lang/{ru,en}.json (identity fallback for
unknowns → 161 human RU + 163 EN translations added for the most
common enums, stages, roles, statuses, payment methods, vehicle
categories, warehouse, portal, form actions.
Missing translations fall back to RO so the UI never breaks. All 306
tests pass; view cache compiles cleanly.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
850 B
PHP
19 lines
850 B
PHP
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head><meta charset="UTF-8"><title>{{ __('Plată anulată') }}</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; background: #fef2f2; padding: 60px 20px; text-align: center; color: #1f2937; }
|
|
.box { max-width: 480px; margin: 0 auto; background:#fff; padding:40px 24px; border-radius:12px; }
|
|
.btn { display:inline-block; margin-top: 16px; padding: 10px 24px; background: #6b7280; color: #fff; border-radius: 8px; text-decoration: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div style="font-size:48px;">↩</div>
|
|
<h1 style="color:#ef4444;">{{ __('Plată anulată') }}</h1>
|
|
<p style="color:#6b7280;">{{ __('Nu a fost prelevată nicio sumă. Poți încerca din nou oricând.') }}</p>
|
|
<a href="/billing" class="btn">{{ __('← Înapoi la facturi') }}</a>
|
|
</div>
|
|
</body>
|
|
</html>
|