@php $locale = strtolower(app()->getLocale()); $localeIsEs = str_starts_with($locale, 'es'); $localeIsEn = str_starts_with($locale, 'en') || (!$localeIsEs && !str_starts_with($locale, 'tr')); $horaryRequiredTokens = (int) ($horaryChatWordsCost ?? 0); $creditHintText = $localeIsEn ? 'Each request is deducted from your balance.' : ($localeIsEs ? 'Cada interpretación se deduce de su saldo.' : 'Her yorum bakiyenizden düşer'); $horaryTypeYesNoLabel = $localeIsEn ? 'Yes/No' : ($localeIsEs ? 'Sí/No' : 'Evet/Hayır'); $horaryTypeLostItemLabel = $localeIsEn ? 'Lost Item' : ($localeIsEs ? 'Objeto Perdido' : 'Kayıp Eşya'); $horaryTypeHelpText = $localeIsEn ? 'Select the question type before calculation. Lost item mode will focus the interpretation on finding clues.' : ($localeIsEs ? 'Seleccione el tipo de pregunta antes del cálculo. El modo objeto perdido enfocará la interpretación en encontrar pistas.' : 'Hesaplamadan önce soru tipini seçin. Kayıp eşya modunda yorum, bulmaya yönelik ipuçlarına odaklanır.'); @endphp