// ignore: unused_import import 'package:intl/intl.dart' as intl; import 'app_localizations.dart'; // ignore_for_file: type=lint /// The translations for Italian (`it`). class AppLocalizationsIt extends AppLocalizations { AppLocalizationsIt([String locale = 'it']) : super(locale); @override String get appTitle => 'FocusBuddy'; @override String get startFocusing => 'Inizia a concentrarti'; @override String minutes(int count) { String _temp0 = intl.Intl.pluralLogic( count, locale: localeName, other: 'minuti', one: 'minuto', ); return '$_temp0'; } @override String minutesValue(int count, Object minutes) { return '$count $minutes'; } @override String get tapDistractionAnytime => 'Tocca \'Mi sono distratto\'\nin qualsiasi momento\n—senza sensi di colpa'; @override String get history => 'Cronologia'; @override String get settings => 'Impostazioni'; @override String get iGotDistracted => 'Mi sono distratto'; @override String get pause => 'Pausa'; @override String get resume => 'Riprendi'; @override String get stopSession => 'Interrompi sessione'; @override String get whatPulledYouAway => 'Cosa ti ha distratto?'; @override String get skipThisTime => 'Salta questa volta'; @override String get stopEarly => 'Fermare prima?'; @override String stopEarlyMessage(int minutes, Object minuteText) { return 'Va bene — ti sei concentrato per $minutes $minuteText!'; } @override String get keepGoing => 'Continua'; @override String get yesStop => 'Sì, ferma'; @override String get distractionEncouragement => 'Succede. Torniamo gentilmente indietro.'; @override String get focusComplete => 'Sessione di concentrazione completata!'; @override String get youFocusedFor => 'Ti sei concentrato per'; @override String totalToday(int minutes) { return 'Totale oggi: $minutes min'; } @override String distractionsCount(int count, Object times) { return 'Distrazioni: $count $times'; } @override String times(int count) { String _temp0 = intl.Intl.pluralLogic( count, locale: localeName, other: 'volte', one: 'volta', ); return '$_temp0'; } @override String get startAnother => 'Inizia un\'altra'; @override String get viewHistory => 'Visualizza cronologia'; @override String get yourFocusJourney => 'Il tuo viaggio di concentrazione'; @override String get noFocusSessionsYet => 'Nessuna sessione di concentrazione ancora'; @override String get startFirstSession => 'Inizia la tua prima sessione\nper vedere i tuoi progressi qui!'; @override String get today => 'Oggi'; @override String sessions(int count) { String _temp0 = intl.Intl.pluralLogic( count, locale: localeName, other: '$count sessioni', one: '$count sessione', ); return '$_temp0'; } @override String get completed => 'Completata'; @override String get stoppedEarly => 'Interrotta prima'; @override String distractions(int count) { String _temp0 = intl.Intl.pluralLogic( count, locale: localeName, other: 'distrazioni', one: 'distrazione', ); return '$_temp0'; } @override String get focusSettings => 'Impostazioni di concentrazione'; @override String get defaultFocusDuration => 'Durata predefinita della concentrazione'; @override String get defaultLabel => 'Predefinito'; @override String get about => 'Informazioni'; @override String get privacyPolicy => 'Informativa sulla privacy'; @override String get termsOfService => 'Termini di servizio'; @override String get aboutFocusBuddy => 'Informazioni su FocusBuddy'; @override String get resetOnboarding => 'Ripristina introduzione'; @override String get version => 'Versione 1.0.0 (MVP)'; @override String get privacyPolicyTitle => 'Informativa sulla privacy'; @override String get privacyPolicyContent => 'FocusBuddy funziona al 100% offline. Non raccogliamo nome, email, posizione o dati di utilizzo. Tutte le sessioni rimangono sul tuo dispositivo.\n\nNessuna sincronizzazione cloud, sistema di account o tracciamento analitico.\n\nPer l\'informativa completa sulla privacy, visita:\nhttps://ytc1012.github.io/focusbuddy-site/privacy-policy.html'; @override String get termsOfServiceTitle => 'Termini di servizio'; @override String get termsOfServiceContent => 'FocusBuddy è fornito \"così com\'è\" senza garanzie. Utilizzando questa app, accetti di usarla a tuo rischio.\n\nQuesta app è progettata come uno strumento timer di concentrazione e non garantisce risultati specifici. Tutti i dati sono archiviati localmente sul tuo dispositivo.\n\nPer i termini di servizio completi, visita:\nhttps://ytc1012.github.io/focusbuddy-site/terms-of-service.html'; @override String get close => 'Chiudi'; @override String get aboutTitle => 'Informazioni su FocusBuddy'; @override String get aboutSubtitle => 'Un timer di concentrazione delicato per menti neurodivergenti'; @override String get aboutQuote => '\"La concentrazione non riguarda il non distrarsi mai — riguarda il tornare gentilmente ogni volta che lo fai.\"'; @override String get aboutFeatures => '✨ Nessuna punizione per le distrazioni\n💚 Incoraggiamento invece di critiche\n🔒 100% offline e privato\n🌱 Fatto con cura'; @override String get resetOnboardingTitle => 'Ripristinare introduzione?'; @override String get resetOnboardingMessage => 'Questo mostrerà di nuovo le schermate di introduzione quando riavvii l\'app.'; @override String get cancel => 'Annulla'; @override String get reset => 'Ripristina'; @override String get onboardingReset => 'Introduzione ripristinata. Riavvia l\'app per vederla di nuovo.'; @override String get onboarding1Title => 'Concentrati senza sensi di colpa'; @override String get onboarding1Description => 'Questa app è diversa — non ti punirà per aver perso la concentrazione.\n\nPerfetta per ADHD, ansia o chiunque trovi i timer tradizionali troppo severi.'; @override String get onboarding2Title => 'Tocca quando ti distrai'; @override String get onboarding2Description => 'Ti ricorderemo gentilmente di tornare.\n\nNessuna vergogna. Nessuno stress. Solo un promemoria amichevole.'; @override String get onboarding3Title => 'Monitora i tuoi progressi'; @override String get onboarding3Description => 'Guarda come stai migliorando, una sessione alla volta.\n\nOgni distrazione è solo un dato — non un fallimento.'; @override String get skip => 'Salta'; @override String get next => 'Avanti'; @override String get getStarted => 'Inizia'; @override String get notificationFocusInProgress => 'Sessione di concentrazione in corso'; @override String notificationRemaining(String time) { return '$time rimanenti'; } @override String get notificationFocusCompleteTitle => '🎉 Sessione di concentrazione completata!'; @override String notificationFocusCompleteBodyNoDistractions( int minutes, Object minuteText, ) { return 'Ti sei concentrato per $minutes $minuteText senza distrazioni!'; } @override String notificationFocusCompleteBody(int minutes, Object minuteText) { return 'Ti sei concentrato per $minutes $minuteText. Ottimo sforzo!'; } @override String get distractionPhoneNotification => 'Telefono / Notifica'; @override String get distractionSocialMedia => 'Social Media'; @override String get distractionThoughts => 'Pensieri / Sogni ad occhi aperti'; @override String get distractionOther => 'Altro'; @override String get language => 'Lingua'; @override String get selectLanguage => 'Seleziona lingua'; @override String get english => 'English'; @override String get chinese => '中文'; @override String get japanese => '日本語'; @override String get korean => '한국어'; @override String get spanish => 'Español'; @override String get german => 'Deutsch'; @override String get french => 'Français'; @override String get portuguese => 'Português'; @override String get russian => 'Русский'; @override String get hindi => 'हिन्दी'; @override String get indonesian => 'Bahasa Indonesia'; @override String get italian => 'Italiano'; @override String get arabic => 'العربية'; @override String get points => 'Points'; @override String get level => 'Level'; @override String get checked => 'Checked'; @override String get checkIn => 'Check In'; @override String get earnedPoints => 'Earned:'; @override String get basePoints => 'Base Points'; @override String get honestyBonus => 'Honesty Bonus'; @override String totalPoints(int count) { return 'Total Points: $count ⚡'; } @override String distractionsRecorded(int count, Object distractionText) { return '($count $distractionText recorded)'; } @override String get achievementUnlocked => '🎖️ Achievement Unlocked!'; @override String bonusPoints(int points) { return '+$points Points ⚡'; } @override String checkInSuccess(int points) { return 'Check-in successful! +$points points ⚡'; } @override String get weeklyStreakBonus => '🎉 Weekly streak bonus!'; @override String get newAchievementUnlocked => '🎖️ New achievement unlocked!'; @override String get alreadyCheckedIn => 'You have already checked in today! Come back tomorrow 📅'; @override String get checkInCalendar => 'Check-In Calendar 📅'; @override String get checkInToday => '📅 Check In Today'; @override String get checkedInToday => '✓ Checked In Today'; @override String get currentStreak => '🔥 Current Streak'; @override String get longestStreak => '🏆 Longest Streak'; @override String get days => 'days'; @override String daysCount(int count) { return '$count days'; } @override String get achievements => 'Achievements 🎖️'; @override String get viewAllAchievements => 'View All Achievements'; @override String get allAchievementsComingSoon => 'Full achievements screen coming soon!'; @override String get profile => 'Profile'; @override String get focuser => 'Focuser'; @override String pointsToNextLevel(int points, int level) { return '$points points to Level $level'; } @override String get achievement_first_session_name => 'Focus Newbie'; @override String get achievement_first_session_desc => 'Complete your first focus session'; @override String get achievement_sessions_10_name => 'Getting Started'; @override String get achievement_sessions_10_desc => 'Complete 10 focus sessions'; @override String get achievement_sessions_50_name => 'Focus Enthusiast'; @override String get achievement_sessions_50_desc => 'Complete 50 focus sessions'; @override String get achievement_sessions_100_name => 'Focus Master'; @override String get achievement_sessions_100_desc => 'Complete 100 focus sessions'; @override String get achievement_honest_bronze_name => 'Honest Tracker · Bronze'; @override String get achievement_honest_bronze_desc => 'Record 50 distractions honestly'; @override String get achievement_honest_silver_name => 'Honest Tracker · Silver'; @override String get achievement_honest_silver_desc => 'Record 200 distractions honestly'; @override String get achievement_honest_gold_name => 'Honest Tracker · Gold'; @override String get achievement_honest_gold_desc => 'Record 500 distractions honestly'; @override String get achievement_marathon_name => 'Marathon Runner'; @override String get achievement_marathon_desc => 'Accumulate 10 hours of focus time'; @override String get achievement_century_name => 'Century Club'; @override String get achievement_century_desc => 'Accumulate 100 hours of focus time'; @override String get achievement_master_name => 'Focus Grandmaster'; @override String get achievement_master_desc => 'Accumulate 1000 hours of focus time'; @override String get achievement_persistence_star_name => 'Persistence Star'; @override String get achievement_persistence_star_desc => 'Check in for 7 consecutive days'; @override String get achievement_monthly_habit_name => 'Monthly Habit'; @override String get achievement_monthly_habit_desc => 'Check in for 30 consecutive days'; @override String get achievement_centurion_name => 'Centurion'; @override String get achievement_centurion_desc => 'Check in for 100 consecutive days'; @override String get achievement_year_warrior_name => 'Year Warrior'; @override String get achievement_year_warrior_desc => 'Check in for 365 consecutive days'; }