export const colors = {
white : "#fff" ,
white_alpha : "rgba(255, 255, 255, 0.2)" ,
white_alpha2 : "rgba(255, 255, 255, 0.5)" ,
black : "#000" ,
black_alpha : "rgba(0, 0, 0, 0.1)" ,
purple : "#8c0072" ,
purple_light : "#a30085" ,
blue : "#0080d0" ,
dark_blue : "#0072be" ,
red : "#af321e" ,
red_alpha : "rgba(175, 50, 30, 0.9)" ,
red_light : "#af5d44" ,
green : "#28A125" ,
green_alpha : "rgba(40, 160, 40, 0.9)" ,
green_light : "#6cc155" ,
yellow : "#e1ff3c" ,
yellow_alpha : "rgba(225, 255, 60, 0.9)" ,
orange : "#dd732d" ,
transparent : "transparent"
}
export const texts = {
quizzes : "Seleziona un argomento" ,
section_quizzes : "Quiz per argomento" ,
wrong_review : "Rivedi domande sbagliate" ,
wrong_title : "domande da rivedere" ,
section_quizzes_subtitle : "Esercitati su argomenti specifici" ,
exam : "Simulazione esame" ,
exam_simulation : "30 domande in 30min" ,
exam_passed : "Esame superato!" ,
exam_not_passed : "Esame non superato!" ,
exam_needs_oral : "Necessaria prova orale!" ,
corrects : "Corrette" ,
wrongs : "Sbagliate" ,
percentage : "Percentuale" ,
points : "Punti" ,
questions : "Domande" ,
aerodynamics : "Aerodinamica" ,
first_aid : "Primo soccorso" ,
flight_safety : "Sicurezza in volo" ,
instruments : "Strumentazione" ,
legislation : "Normativa e legislazione" ,
materials : "Materiali" ,
meteorology : "Meteorologia e aerologia" ,
physiopathology : "Fisiopatologia del volo" ,
piloting_techniques : "Tecniche di pilotaggio" ,
restart : "Ricomincia!" ,
recap : "Visualizza errori" ,
recapTitle : "Riepilogo risposte sbagliate" ,
infoTitle : "Informazioni App" ,
setupTitle : "Impostazioni" ,
dictionaryTitle : "Terminologia" ,
dictionarySubtitle : "Dizionario ICAO e abbreviazioni" ,
alphabethTitle : "Alfabeto ICAO" ,
abbreviationsTitle : "Abbreviazioni" ,
numbersTitle : "Numeri ICAO" ,
version : "Versione" ,
author : "Autore" ,
exit : "Esci" ,
exitQuestion : "Vuoi uscire dall'app?" ,
description : "VDS Quiz è una applicazione che utilizza le 500 domande ufficiali dell'AeCI (Aero Club d'Italia), nella simulazione le domande vengono estrapolate seguendo lo schema ufficiale d'esame:" ,
source : "PDF Domande ufficiali" ,
pdfLinkText : "Fonte: AeCI (Aero Club d'Italia) \"500 Quiz\"" ,
pdfLink : "http://www.aeci.it/upload/files/quiz_VDS-VL_2017.pdf" ,
legislation : "Normativa e legislazione" ,
aerodynamics : "Aerodinamica" ,
firstAid : "Pronto soccorso" ,
physiopathology : "Fisiopatologia del volo" ,
meteorology : "Meteorologia e aerologia" ,
instruments : "Strumenti" ,
pilotingTechniques : "Tecnica di pilotaggio" ,
materials : "Materiali" ,
flightSafety : "Sicurezza del volo" ,
examScheme : "Schema domande d'esame" ,
setupScheme : "Configurazione dell'applicazione" ,
setupRandomCheck : "Visualizza le domande per argomento in ordine casuale" ,
setupExcludeDelta : "Escludi le domande relative all'esame per deltaplano" ,
resultsScheme : "Calcolo risultati" ,
true : "Vero" ,
false : "Falso" ,
trueFalse : "Test Vero/Falso" ,
trueFalseSubtitle : "10 domande casuali con risposte Vero/Falso" ,
goToQuestion : "Seleziona ad una domanda specifica..." ,
lens : "\uD83D\uDD0D"
}
export const examScheme = [
{ section : "aerodynamics" , questions : 8 , points : 3 } ,
{ section : "firstAid" , questions : 1 , points : 2 } ,
{ section : "flightSafety" , questions : 3 , points : 4 } ,
{ section : "instruments" , questions : 1 , points : 2 } ,
{ section : "legislation" , questions : 4 , points : 3 } ,
{ section : "materials" , questions : 1 , points : 2 } ,
{ section : "meteorology" , questions : 6 , points : 4 } ,
{ section : "physiopathology" , questions : 1 , points : 2 } ,
{ section : "pilotingTechniques" , questions : 5 , points : 4 }
]
/ *
export const examScheme = [
{ section : "aerodynamics" , questions : 1 , points : 3 } ,
{ section : "firstAid" , questions : 1 , points : 2 } ,
{ section : "flightSafety" , questions : 1 , points : 4 } ,
{ section : "instruments" , questions : 1 , points : 2 }
]
* /
export const resultsScheme = [
{ points : "da 86 a 100 punti" , result : "idoneo" } ,
{ points : "da 80 a 85 punti" , result : "idoneo con superamento di una verifica orale, riguardante i quesiti errati" } ,
{ points : "inferiore a 80 punti" , result : "non idoneo" }
]
export const credentials = {
adMobUnitIDTest : "ca-app-pub-3940256099942544/6300978111" ,
adMobUnitID : "ca-app-pub-4145771316565790/1848957462" ,
adMobUnitIDFooter : "ca-app-pub-4145771316565790/9810834234"
}