// 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 authCubitCheckEmailToConfirmAccount => 'Controlla la tua email per confermare l\'account!'; @override String authCubitResetPasswordEmailSentTo(String email) { return 'Email per reset password inviata a $email!'; } @override String authError(String message) { return 'Errore di autenticazione: $message'; } @override String get authScreenAlreadyHaveAccount => 'Hai già un account?'; @override String get authScreenBusinessEmail => 'Email aziendale'; @override String get authScreenCreateAccount => 'CREA ACCOUNT'; @override String get authScreenDontHaveAccount => 'Non hai un account?'; @override String get authScreenForgotPassword => 'Password dimenticata/Invito scaduto?'; @override String get authScreenLogin => 'LOGIN'; @override String get authScreenLoginToManageYourBusiness => 'Accedi per gestire il tuo business'; @override String get authScreenSignUp => 'REGISTRATI'; @override String get authScreenStartTodayToDigitalizeYourStore => 'Inizia oggi a digitalizzare il tuo negozio'; @override String get authScreenWelcomeBack => 'BENTORNATO'; @override String get commonClose => 'Chiudi'; @override String get commonComingSoon => 'Coming soon'; @override String get commonDashboard => 'Panoramica'; @override String commonError(String error) { return 'Si è verificato un errore: $error'; } @override String get commonMasterData => 'Anagrafiche'; @override String get commonNewPassword => 'Nuova Password'; @override String get commonNote => 'Nota'; @override String get commonSave => 'Salva'; @override String get commonOperation => 'Servizio'; @override String get commonSettings => 'Impostazioni'; @override String get commonStickyNotes => 'Sticky Notes'; @override String get commonTask => 'Attività'; @override String get homeExpiringContracts => 'Contratti in scadenza'; @override String get homeLatestOperationTickets => 'Ultime assistenze'; @override String get homeLatestOperations => 'Ultimi Servizi'; @override String get homeMyTasks => 'Mie Attività'; @override String get homeNewOperationTicket => 'Nuova assistenza'; @override String get homeNoStoreFound => 'Nessun negozio trovato'; @override String homeWelcomeBack(String name) { return 'Bentornato, $name! 👋'; } @override String get imageViewerWidgetErrorOpening => 'Errore durante l\'apertura dell\'immagine'; @override String get pdfViewerAnteprimaPdf => 'Anteprima PDF'; @override String get setPasswordInviteAcceptedChoosePassword => 'Hai accettato l\'invito. Scegli una password sicura per accedere in futuro.'; @override String get setPasswordScreenAtLeast6Chars => 'La password deve avere almeno 6 caratteri'; @override String get setPasswordScreenPasswordSetWelcome => 'Password impostata! Benvenuto a bordo 🚀'; @override String get setPasswordScreenSaveAndStart => 'SALVA E INIZIA'; @override String get setPasswordScreenSetPassword => 'Imposta una nuova Password'; @override String get setPasswordScreenWelcomeInFlux => 'Benvenuto in FLUX!'; @override String get createCompanyScreenCompanyConfiguration => 'Configurazione Azienda'; @override String get commonSavingError => 'Errore durante il salvataggio'; @override String get createCompanyScreenFiscalData => 'DATI FISCALI'; @override String get createCompanyScreenCompanyName => 'Ragione Sociale'; @override String get createCompanyScreenVatId => 'Partita IVA'; @override String get createCompanyScreenFiscalCode => 'Codice Fiscale'; @override String get createCompanyScreenSdiPec => 'Codice Univoco (SDI) / PEC'; @override String get createCompanyScreenCompanyLegalAddress => 'SEDE LEGALE'; @override String get commonAddress => 'Indirizzo e n. civico'; @override String get commonCity => 'Città'; @override String get commonZipCode => 'CAP'; @override String get commonProvince => 'Prov'; @override String get commonCountry => 'Paese'; @override String get createCompanyScreenUploadLogo => 'Carica Logo Aziendale'; @override String get createCompanyScreenWillBeUsedForReceipts => 'Verrà utilizzato per le tue stampe e ricevute'; @override String get createCompanyScreenSaveCompany => 'SALVA AZIENDA'; @override String get createCompanyScreenSetupYourCompany => 'Configura la tua Azienda'; @override String get createCompanyScreenFluxNeedsYourFiscalData => 'FLUX ha bisogno dei tuoi dati fiscali per gestire correttamente le fatturazioni e le attivazioni dei tuoi negozi.'; @override String get operationFormAttachmentSectionNoCustomer => 'Devi prima selezionare un cliente'; }