#wip(ecma): Gestionada la puntuación final.
This commit is contained in:
		
							parent
							
								
									9b84823a74
								
							
						
					
					
						commit
						1b10fbecd0
					
				
										
											Binary file not shown.
										
									
								
							@ -114,9 +114,9 @@ Mapeate.Base = function(mapeate, entradas){
 | 
			
		||||
            innerText = mapeate.i18n(mensaje);
 | 
			
		||||
        };
 | 
			
		||||
        dialogo.querySelector("section").innerHTML = datos && typeof datos == "string" ? datos : (
 | 
			
		||||
            `<p data-i18n="` + mensaje + `_texto"` + (
 | 
			
		||||
                typeof datos == "object" ? ` data-1i8n-variables="`  + atob(JSON.stringify(datos)
 | 
			
		||||
            ) + `"` : ``) + `>` + mapeate.i18n(mensaje + "_texto", datos) + `</p>`
 | 
			
		||||
            `<div data-i18n="` + mensaje + `_texto"` + (
 | 
			
		||||
                typeof datos == "object" ? ` data-1i8n-variables="`  + btoa(JSON.stringify(datos)
 | 
			
		||||
            ) + `"` : ``) + `>` + mapeate.i18n(mensaje + "_texto", datos) + `</div>` + (datos ? datos.final || `` : ``)
 | 
			
		||||
        );
 | 
			
		||||
 | 
			
		||||
        if(acciones){
 | 
			
		||||
@ -132,7 +132,6 @@ Mapeate.Base = function(mapeate, entradas){
 | 
			
		||||
                </button>`);
 | 
			
		||||
 | 
			
		||||
                ((accion, i) => mapeate.precargar("[data-precarga=" + hash + "]", boton => {
 | 
			
		||||
                    console.log(boton);
 | 
			
		||||
                    boton.removeAttribute("data-precarga");
 | 
			
		||||
                    boton.onclick = accion.accion;
 | 
			
		||||
                    !i && boton.focus();
 | 
			
		||||
 | 
			
		||||
@ -10,7 +10,10 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
        sobreescribir_por_defecto, 
 | 
			
		||||
        sobreescribir_tipos_por_defecto, 
 | 
			
		||||
        mapas_hilo_de_proceso, 
 | 
			
		||||
        fecha_inicio_juego;
 | 
			
		||||
        fecha_inicio_juego, 
 | 
			
		||||
        tiempo_partida, tiempo_crudo_partida, 
 | 
			
		||||
        puntos_tiempo_respuesta, puntos_aciertos, puntos_fallos, 
 | 
			
		||||
        aciertos, fallos, puntos_total, finalizada_partida;
 | 
			
		||||
 | 
			
		||||
    let selector = this.selector;
 | 
			
		||||
    let global = this.global;
 | 
			
		||||
@ -41,6 +44,9 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
 | 
			
		||||
        sobreescribir_por_defecto = mapeate.configuracion(["mapas_sobreescribir", "sobreescribir"]);
 | 
			
		||||
        sobreescribir_tipos_por_defecto = mapeate.configuracion(["mapas_tipos_sobreescribir", "mapas_sobreescribir", "sobreescribir"]);
 | 
			
		||||
        puntos_tiempo_respuesta = mapeate.configuracion("puntos_tiempo_respuesta");
 | 
			
		||||
        puntos_aciertos = mapeate.configuracion("puntos_aciertos");
 | 
			
		||||
        puntos_fallos = mapeate.configuracion("puntos_fallos");
 | 
			
		||||
 | 
			
		||||
        mapeate.ejecutar_array_asincrono([
 | 
			
		||||
            "archivos_de_mapas_tipos_por_defecto", 
 | 
			
		||||
@ -77,8 +83,7 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
        if(svg){
 | 
			
		||||
 | 
			
		||||
            const limites = {}, 
 | 
			
		||||
                  final = {}, 
 | 
			
		||||
                  tiempo = Date.now() - fecha_inicio_juego;
 | 
			
		||||
                  final = {};
 | 
			
		||||
 | 
			
		||||
            [limites.x, limites.y, limites.ancho, limites.alto] = svg.getAttribute("data-caja").split(" ").map(valor => Number(valor));
 | 
			
		||||
            [final.x, final.y, final.ancho, final.alto] = mapeate.porcentuar(
 | 
			
		||||
@ -106,12 +111,15 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
 | 
			
		||||
            };
 | 
			
		||||
 | 
			
		||||
            mapeate.si_mismo.querySelector(".juego .temporizador>section").innerText = (
 | 
			
		||||
                ("00" + (tiempo / 3600000 >> 0)).slice(-2) + ":" + 
 | 
			
		||||
                ("00" + (tiempo / 60000 % 60 >> 0)).slice(-2) + ":" + 
 | 
			
		||||
                ("00" + (tiempo / 1000 % 60 >> 0)).slice(-2) + "." + 
 | 
			
		||||
                ("00" + (tiempo % 1000 >> 0)).slice(-3)
 | 
			
		||||
            );
 | 
			
		||||
            if(!finalizada_partida){
 | 
			
		||||
                tiempo_crudo_partida = Date.now() - fecha_inicio_juego;
 | 
			
		||||
                mapeate.si_mismo.querySelector(".juego .temporizador>section").innerText = tiempo_partida = (
 | 
			
		||||
                    ("00" + (tiempo_crudo_partida / 3600000 >> 0)).slice(-2) + ":" + 
 | 
			
		||||
                    ("00" + (tiempo_crudo_partida / 60000 % 60 >> 0)).slice(-2) + ":" + 
 | 
			
		||||
                    ("00" + (tiempo_crudo_partida / 1000 % 60 >> 0)).slice(-2) + "." + 
 | 
			
		||||
                    ("00" + (tiempo_crudo_partida % 1000 >> 0)).slice(-3)
 | 
			
		||||
                );
 | 
			
		||||
            };
 | 
			
		||||
 | 
			
		||||
        };
 | 
			
		||||
        
 | 
			
		||||
@ -291,6 +299,10 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
            mapeate.si_mismo.querySelectorAll(".juego fieldset:not(.mapa)").forEach(campo => campo.innerHTML += mapeate.vistas.coger("posicionador"));
 | 
			
		||||
 | 
			
		||||
            fecha_inicio_juego = Date.now();
 | 
			
		||||
            aciertos = 0;
 | 
			
		||||
            fallos = 0;
 | 
			
		||||
            puntos_total = 0;
 | 
			
		||||
            finalizada_partida = false;
 | 
			
		||||
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
@ -339,16 +351,43 @@ Mapeate.Mapas = function(mapeate, entradas){
 | 
			
		||||
            seleccionado.setAttribute("data-seleccionado", false);
 | 
			
		||||
            seleccionado.setAttribute("data-ok", true);
 | 
			
		||||
            elemento.setAttribute("data-acertado", true);
 | 
			
		||||
            with(mapeate.si_mismo.querySelector(".juego .puntos section"))innerText = Number(innerText) + 5;
 | 
			
		||||
            mapeate.si_mismo.querySelector(".juego .puntos section").innerText = puntos_total += puntos_aciertos;
 | 
			
		||||
            aciertos ++;
 | 
			
		||||
 | 
			
		||||
            if(siguiente){
 | 
			
		||||
                siguiente.setAttribute("data-seleccionado", true);
 | 
			
		||||
                seleccionado.parentNode.parentNode.scrollTop = siguiente.offsetTop - (siguiente.offsetHeight / 2) - (siguiente.parentNode.parentNode.offsetHeight / 2);
 | 
			
		||||
            }else 
 | 
			
		||||
                mapeate.alerta("mapeate_mapas_ganaste", () => self.volver_al_menu(elemento, evento));
 | 
			
		||||
            }else{
 | 
			
		||||
 | 
			
		||||
                const total = aciertos + fallos, 
 | 
			
		||||
                      porcentage_aciertos = aciertos / total, 
 | 
			
		||||
                      marco_tiempo = tiempo_crudo_partida / aciertos, 
 | 
			
		||||
                      puntos_tiempo = (
 | 
			
		||||
                          marco_tiempo < puntos_tiempo_respuesta[0] ? 1 : 
 | 
			
		||||
                          marco_tiempo > puntos_tiempo_respuesta[1] ? 0 : 
 | 
			
		||||
                          1 * (puntos_tiempo_respuesta[1] - marco_tiempo - puntos_tiempo_respuesta[0]) / (puntos_tiempo_respuesta[1] - puntos_tiempo_respuesta[0])
 | 
			
		||||
                      );
 | 
			
		||||
 | 
			
		||||
                finalizada_partida = true;
 | 
			
		||||
 | 
			
		||||
                mapeate.alerta("mapeate_mapas_ganaste", () => self.volver_al_menu(elemento, evento), {
 | 
			
		||||
                    final : mapeate.vistas.coger("resumen_fin_juego", {
 | 
			
		||||
                        tiempo : tiempo_partida, 
 | 
			
		||||
                        aciertos : aciertos, 
 | 
			
		||||
                        fallos : fallos, 
 | 
			
		||||
                        porcentaje_aciertos : (100 * porcentage_aciertos).toFixed(2), 
 | 
			
		||||
                        porcentaje_fallos : (100 * fallos / total).toFixed(2), 
 | 
			
		||||
                        puntos : puntos_total, 
 | 
			
		||||
                        puntos_tiempo : (aciertos * puntos_tiempo).toFixed(2), 
 | 
			
		||||
                        puntos_totales : (10 * porcentage_aciertos * puntos_tiempo).toFixed(2)
 | 
			
		||||
                    })
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
            };
 | 
			
		||||
 | 
			
		||||
        }else{
 | 
			
		||||
            with(mapeate.si_mismo.querySelector(".juego .puntos section"))innerText = Number(innerText) - 1;
 | 
			
		||||
            mapeate.si_mismo.querySelector(".juego .puntos section").innerText = puntos_total -= puntos_fallos;
 | 
			
		||||
            fallos ++;
 | 
			
		||||
            mapeate.alerta("mapeate_mapas_mal_elegido");
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -192,5 +192,44 @@
 | 
			
		||||
 | 
			
		||||
        </ul>
 | 
			
		||||
 | 
			
		||||
        <!-- [[resumen_fin_juego]] -->
 | 
			
		||||
        <div class="resumen-fin-juego">
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li data-i18n="tiempo" data-i18n-without="true" title="{{tiempo}}">
 | 
			
		||||
                    <span data-i18n="tiempo">{{tiempo}}</span>
 | 
			
		||||
                    <span class="valor">{tiempo}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="aciertos" data-i18n-without="true" title="{{aciertos}}">
 | 
			
		||||
                    <span data-i18n="aciertos">{{aciertos}}</span>
 | 
			
		||||
                    <span class="valor">{aciertos}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="fallos" data-i18n-without="true" title="{{fallos}}">
 | 
			
		||||
                    <span data-i18n="fallos">{{fallos}}</span>
 | 
			
		||||
                    <span class="valor">{fallos}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="porcentaje_fallos" data-i18n-without="true" title="{{porcentaje_fallos}}">
 | 
			
		||||
                    <span data-i18n="porcentaje_fallos">{{porcentaje_fallos}}</span>
 | 
			
		||||
                    <span class="valor">{porcentaje_fallos}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="porcentaje_aciertos" data-i18n-without="true" title="{{porcentaje_aciertos}}">
 | 
			
		||||
                    <span data-i18n="porcentaje_aciertos">{{porcentaje_aciertos}}</span>
 | 
			
		||||
                    <span class="valor">{porcentaje_aciertos}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="puntos" data-i18n-without="true" title="{{puntos}}">
 | 
			
		||||
                    <span data-i18n="puntos">{{puntos}}</span>
 | 
			
		||||
                    <span class="valor">{puntos}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="puntos_tiempo" data-i18n-without="true" title="{{puntos_tiempo}}">
 | 
			
		||||
                    <span data-i18n="puntos_tiempo">{{puntos_tiempo}}</span>
 | 
			
		||||
                    <span class="valor">{puntos_tiempo}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li data-i18n="puntos_totales" data-i18n-without="true" title="{{puntos_totales}}">
 | 
			
		||||
                    <span data-i18n="puntos_totales">{{puntos_totales}}</span>
 | 
			
		||||
                    <span class="valor">{puntos_totales}</span>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <!-- [[resumen_fin_juego]] -->
 | 
			
		||||
 | 
			
		||||
    </body>
 | 
			
		||||
</html>
 | 
			
		||||
@ -61,5 +61,8 @@
 | 
			
		||||
        {"nombre" : "app", "link" : "https://mapeate.k3y.pw/app.html", "target" : "_blank", "visible" : false}, 
 | 
			
		||||
        {"nombre" : "git", "link" : "https://git.k3y.pw/CaritasSantaCruz/Mapeate", "target" : "_blank"}
 | 
			
		||||
    ], 
 | 
			
		||||
    "claves_padre_por_defecto" : ["tagName", "nodeName"]
 | 
			
		||||
    "claves_padre_por_defecto" : ["tagName", "nodeName"], 
 | 
			
		||||
    "puntos_aciertos" : 5, 
 | 
			
		||||
    "puntos_fallos" : 1, 
 | 
			
		||||
    "puntos_tiempo_respuesta" : [1000, 25000]
 | 
			
		||||
}
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "العناصر على مستوى النقطة", 
 | 
			
		||||
        "nivel_3" : "الخصوم", 
 | 
			
		||||
        "aceptar" : "قبول", 
 | 
			
		||||
        "tiempo" : "الوقت", 
 | 
			
		||||
        "aciertos" : "الإنجازات", 
 | 
			
		||||
        "fallos" : "الأحكام", 
 | 
			
		||||
        "porcentaje_fallos" : "النسبة المئوية للفشل", 
 | 
			
		||||
        "porcentaje_aciertos" : "النسبة المئوية للنجاحات", 
 | 
			
		||||
        "puntos_tiempo" : "نقاط وقت الاستجابة", 
 | 
			
		||||
        "puntos_totales" : "مجموع النقاط", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Kateqoriyalar", 
 | 
			
		||||
        "nivel_3" : "Qeydiyyat", 
 | 
			
		||||
        "aceptar" : "Qeydiyyat", 
 | 
			
		||||
        "tiempo" : "Vaxt", 
 | 
			
		||||
        "aciertos" : "Qeydiyyat", 
 | 
			
		||||
        "fallos" : "Haqqında", 
 | 
			
		||||
        "porcentaje_fallos" : "İnformasiya", 
 | 
			
		||||
        "porcentaje_aciertos" : "Müəllifliklər", 
 | 
			
		||||
        "puntos_tiempo" : "Cavab vaxtı", 
 | 
			
		||||
        "puntos_totales" : "Ümumi hesablar", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elements a nivell de punt", 
 | 
			
		||||
        "nivel_3" : "Subelements", 
 | 
			
		||||
        "aceptar" : "Acceptar", 
 | 
			
		||||
        "tiempo" : "Temps", 
 | 
			
		||||
        "aciertos" : "Assoliments", 
 | 
			
		||||
        "fallos" : "Jutges", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentatge de fallades", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentatge d'èxits", 
 | 
			
		||||
        "puntos_tiempo" : "Temps de resposta", 
 | 
			
		||||
        "puntos_totales" : "Total punts", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Prvky na úrovni bodů", 
 | 
			
		||||
        "nivel_3" : "Subelementy", 
 | 
			
		||||
        "aceptar" : "Čeština", 
 | 
			
		||||
        "tiempo" : "Čas", 
 | 
			
		||||
        "aciertos" : "Úspěchy", 
 | 
			
		||||
        "fallos" : "Hledat", 
 | 
			
		||||
        "porcentaje_fallos" : "Procento poruch", 
 | 
			
		||||
        "porcentaje_aciertos" : "Procento úspěchů", 
 | 
			
		||||
        "puntos_tiempo" : "Body pro čas odezva", 
 | 
			
		||||
        "puntos_totales" : "Celkem bodů", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementer på punktniveau", 
 | 
			
		||||
        "nivel_3" : "Subelementer", 
 | 
			
		||||
        "aceptar" : "Accept Accepter", 
 | 
			
		||||
        "tiempo" : "Tidstid", 
 | 
			
		||||
        "aciertos" : "Opnåelser", 
 | 
			
		||||
        "fallos" : "Dommere", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentage af fejl", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentage af succeser", 
 | 
			
		||||
        "puntos_tiempo" : "Punkter for svartid", 
 | 
			
		||||
        "puntos_totales" : "Totalpoint", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elemente auf Punktebene", 
 | 
			
		||||
        "nivel_3" : "Subelemente", 
 | 
			
		||||
        "aceptar" : "Annahme", 
 | 
			
		||||
        "tiempo" : "Zeit", 
 | 
			
		||||
        "aciertos" : "Erfolge", 
 | 
			
		||||
        "fallos" : "Urteile", 
 | 
			
		||||
        "porcentaje_fallos" : "Prozentsatz der Fehler", 
 | 
			
		||||
        "porcentaje_aciertos" : "Prozentsatz der Erfolge", 
 | 
			
		||||
        "puntos_tiempo" : "Punkte für Reaktionszeit", 
 | 
			
		||||
        "puntos_totales" : "Gesamtpunkte", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Στοιχεία σε επίπεδο σημείου", 
 | 
			
		||||
        "nivel_3" : "Υποθέσεις", 
 | 
			
		||||
        "aceptar" : "Αποδοχή", 
 | 
			
		||||
        "tiempo" : "Time Time Time Time Time", 
 | 
			
		||||
        "aciertos" : "Επιτεύγματα", 
 | 
			
		||||
        "fallos" : "Κριτήρια", 
 | 
			
		||||
        "porcentaje_fallos" : "Το ποσοστό των αποτυχιών", 
 | 
			
		||||
        "porcentaje_aciertos" : "Το ποσοστό των επιτυχιών", 
 | 
			
		||||
        "puntos_tiempo" : "Σημεία για το χρόνο απόκρισης", 
 | 
			
		||||
        "puntos_totales" : "Σύνολο σημείων", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elements at point level", 
 | 
			
		||||
        "nivel_3" : "Subelements", 
 | 
			
		||||
        "aceptar" : "Accept", 
 | 
			
		||||
        "tiempo" : "Time", 
 | 
			
		||||
        "aciertos" : "Achievements", 
 | 
			
		||||
        "fallos" : "Judgements", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentage of failures", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentage of successes", 
 | 
			
		||||
        "puntos_tiempo" : "Points for response time", 
 | 
			
		||||
        "puntos_totales" : "Total points", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementos a nivel de puntos", 
 | 
			
		||||
        "nivel_3" : "Subelementos", 
 | 
			
		||||
        "aceptar" : "Aceptar", 
 | 
			
		||||
        "tiempo" : "Tiempo", 
 | 
			
		||||
        "aciertos" : "Aciertos", 
 | 
			
		||||
        "fallos" : "Fallos", 
 | 
			
		||||
        "porcentaje_fallos" : "Porcentaje de fallos", 
 | 
			
		||||
        "porcentaje_aciertos" : "Porcentaje de aciertos", 
 | 
			
		||||
        "puntos_tiempo" : "Puntos por tiempo de respuesta", 
 | 
			
		||||
        "puntos_totales" : "Puntos totales", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementoj sur punktonivelo", 
 | 
			
		||||
        "nivel_3" : "Subelementoj", 
 | 
			
		||||
        "aceptar" : "Akcepto", 
 | 
			
		||||
        "tiempo" : "La tempo", 
 | 
			
		||||
        "aciertos" : "Atingoj", 
 | 
			
		||||
        "fallos" : "Juĝistoj", 
 | 
			
		||||
        "porcentaje_fallos" : "Procento de fiaskoj", 
 | 
			
		||||
        "porcentaje_aciertos" : "Procento de sukcesoj", 
 | 
			
		||||
        "puntos_tiempo" : "Punktoj por respondtempo", 
 | 
			
		||||
        "puntos_totales" : "Totalaj punktoj", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "عناصر در سطح نقطه", 
 | 
			
		||||
        "nivel_3" : "Subelement", 
 | 
			
		||||
        "aceptar" : "پذیرش", 
 | 
			
		||||
        "tiempo" : "زمان زمان", 
 | 
			
		||||
        "aciertos" : "موفقیت", 
 | 
			
		||||
        "fallos" : "داوری", 
 | 
			
		||||
        "porcentaje_fallos" : "درصد شکست ها", 
 | 
			
		||||
        "porcentaje_aciertos" : "درصد موفقیت ها", 
 | 
			
		||||
        "puntos_tiempo" : "امتیازات برای زمان پاسخگویی", 
 | 
			
		||||
        "puntos_totales" : "مجموع امتیازات", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Éléments au niveau des points", 
 | 
			
		||||
        "nivel_3" : "Sous-éléments", 
 | 
			
		||||
        "aceptar" : "Accepte", 
 | 
			
		||||
        "tiempo" : "Heure", 
 | 
			
		||||
        "aciertos" : "Réalisations", 
 | 
			
		||||
        "fallos" : "Jugements", 
 | 
			
		||||
        "porcentaje_fallos" : "Pourcentage de défaillances", 
 | 
			
		||||
        "porcentaje_aciertos" : "Pourcentage de réussites", 
 | 
			
		||||
        "puntos_tiempo" : "Points pour le temps de réponse", 
 | 
			
		||||
        "puntos_totales" : "Total", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Eilimintí ag leibhéal pointe", 
 | 
			
		||||
        "nivel_3" : "Fodhlíthe", 
 | 
			
		||||
        "aceptar" : "Glacadh le", 
 | 
			
		||||
        "tiempo" : "Am agus am", 
 | 
			
		||||
        "aciertos" : "Amharc ar gach eolas", 
 | 
			
		||||
        "fallos" : "Breithiúnas", 
 | 
			
		||||
        "porcentaje_fallos" : "Céatadán na teipeanna", 
 | 
			
		||||
        "porcentaje_aciertos" : "Céatadán de rath", 
 | 
			
		||||
        "puntos_tiempo" : "Pointí le haghaidh am freagartha", 
 | 
			
		||||
        "puntos_totales" : "Pointí iomlána", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "점 수준에 요소", 
 | 
			
		||||
        "nivel_3" : "관련 기사", 
 | 
			
		||||
        "aceptar" : "이름 *", 
 | 
			
		||||
        "tiempo" : "(주)", 
 | 
			
		||||
        "aciertos" : "공지사항", 
 | 
			
		||||
        "fallos" : "댓글 RSS", 
 | 
			
		||||
        "porcentaje_fallos" : "실패의 비율", 
 | 
			
		||||
        "porcentaje_aciertos" : "성공의 비율", 
 | 
			
		||||
        "puntos_tiempo" : "응답 시간의 점", 
 | 
			
		||||
        "puntos_totales" : "총 점", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "बिंदु स्तर पर तत्व", 
 | 
			
		||||
        "nivel_3" : "नियम", 
 | 
			
		||||
        "aceptar" : "स्वीकार करना", 
 | 
			
		||||
        "tiempo" : "समय", 
 | 
			
		||||
        "aciertos" : "उपलब्धियां", 
 | 
			
		||||
        "fallos" : "न्याय", 
 | 
			
		||||
        "porcentaje_fallos" : "असफलता का प्रतिशत", 
 | 
			
		||||
        "porcentaje_aciertos" : "सफलता की प्रतिशतता", 
 | 
			
		||||
        "puntos_tiempo" : "प्रतिक्रिया समय के लिए अंक", 
 | 
			
		||||
        "puntos_totales" : "कुल अंक", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elemen pada tingkat titik", 
 | 
			
		||||
        "nivel_3" : "Login", 
 | 
			
		||||
        "aceptar" : "Sitemap", 
 | 
			
		||||
        "tiempo" : "Sitemap", 
 | 
			
		||||
        "aciertos" : "Sitemap", 
 | 
			
		||||
        "fallos" : "Login", 
 | 
			
		||||
        "porcentaje_fallos" : "Persentase kegagalan", 
 | 
			
		||||
        "porcentaje_aciertos" : "Persentase keberhasilan", 
 | 
			
		||||
        "puntos_tiempo" : "Poin untuk waktu respons", 
 | 
			
		||||
        "puntos_totales" : "Total poin", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementi a livello di punto", 
 | 
			
		||||
        "nivel_3" : "Subelementi", 
 | 
			
		||||
        "aceptar" : "Accettare", 
 | 
			
		||||
        "tiempo" : "Tempo", 
 | 
			
		||||
        "aciertos" : "Risultati", 
 | 
			
		||||
        "fallos" : "Giudici", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentuale di guasti", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentuale di successi", 
 | 
			
		||||
        "puntos_tiempo" : "Punti per il tempo di risposta", 
 | 
			
		||||
        "puntos_totales" : "Totale punti", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "יסודות ברמת נקודה", 
 | 
			
		||||
        "nivel_3" : "המונחים", 
 | 
			
		||||
        "aceptar" : "קבלה", 
 | 
			
		||||
        "tiempo" : "הזמן", 
 | 
			
		||||
        "aciertos" : "הישגים", 
 | 
			
		||||
        "fallos" : "שופטים", 
 | 
			
		||||
        "porcentaje_fallos" : "אחוז הכישלונות", 
 | 
			
		||||
        "porcentaje_aciertos" : "אחוז ההצלחות", 
 | 
			
		||||
        "puntos_tiempo" : "נקודות זמן תגובה", 
 | 
			
		||||
        "puntos_totales" : "Total נקודות", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elemek pontszinten", 
 | 
			
		||||
        "nivel_3" : "Subelements", 
 | 
			
		||||
        "aceptar" : "Elfogadás", 
 | 
			
		||||
        "tiempo" : "Idő", 
 | 
			
		||||
        "aciertos" : "Elérések", 
 | 
			
		||||
        "fallos" : "Bírák", 
 | 
			
		||||
        "porcentaje_fallos" : "A kudarcok százaléka", 
 | 
			
		||||
        "porcentaje_aciertos" : "A sikerek százaléka", 
 | 
			
		||||
        "puntos_tiempo" : "Pontok a válaszidőre", 
 | 
			
		||||
        "puntos_totales" : "Összes pont", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementen op punt niveau", 
 | 
			
		||||
        "nivel_3" : "Vertaling:", 
 | 
			
		||||
        "aceptar" : "Accepteren", 
 | 
			
		||||
        "tiempo" : "Tijd", 
 | 
			
		||||
        "aciertos" : "Achievementen", 
 | 
			
		||||
        "fallos" : "Veroordelingen", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentage van falen", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentage van succes", 
 | 
			
		||||
        "puntos_tiempo" : "Punt voor reactietijd", 
 | 
			
		||||
        "puntos_totales" : "Totale punten", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "ポイントレベルの要素", 
 | 
			
		||||
        "nivel_3" : "サブエレメント", 
 | 
			
		||||
        "aceptar" : "お問い合わせ", 
 | 
			
		||||
        "tiempo" : "イベント", 
 | 
			
		||||
        "aciertos" : "実績紹介", 
 | 
			
		||||
        "fallos" : "審査委員", 
 | 
			
		||||
        "porcentaje_fallos" : "故障率", 
 | 
			
		||||
        "porcentaje_aciertos" : "成功の割合", 
 | 
			
		||||
        "puntos_tiempo" : "応答時間のポイント", 
 | 
			
		||||
        "puntos_totales" : "総ポイント", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementy na poziomie punktowym", 
 | 
			
		||||
        "nivel_3" : "Subelement", 
 | 
			
		||||
        "aceptar" : "Akcept", 
 | 
			
		||||
        "tiempo" : "Time", 
 | 
			
		||||
        "aciertos" : "Osiągnięcie", 
 | 
			
		||||
        "fallos" : "Sędzia", 
 | 
			
		||||
        "porcentaje_fallos" : "Opłata niepowodzeń", 
 | 
			
		||||
        "porcentaje_aciertos" : "Sukces", 
 | 
			
		||||
        "puntos_tiempo" : "Punkty na czas reakcji", 
 | 
			
		||||
        "puntos_totales" : "Punkty zwrotne", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementos ao nível do ponto", 
 | 
			
		||||
        "nivel_3" : "Subelementos", 
 | 
			
		||||
        "aceptar" : "Aceitar", 
 | 
			
		||||
        "tiempo" : "Tempo", 
 | 
			
		||||
        "aciertos" : "Conquistas", 
 | 
			
		||||
        "fallos" : "Juízes", 
 | 
			
		||||
        "porcentaje_fallos" : "Percentagem de falhas", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percentagem de sucessos", 
 | 
			
		||||
        "puntos_tiempo" : "Pontos para tempo de resposta", 
 | 
			
		||||
        "puntos_totales" : "Total dos pontos", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Элементы на уровне точек", 
 | 
			
		||||
        "nivel_3" : "Помещения", 
 | 
			
		||||
        "aceptar" : "Принимать", 
 | 
			
		||||
        "tiempo" : "Время", 
 | 
			
		||||
        "aciertos" : "Достижения", 
 | 
			
		||||
        "fallos" : "Решения", 
 | 
			
		||||
        "porcentaje_fallos" : "Процент неудач", 
 | 
			
		||||
        "porcentaje_aciertos" : "Процентная доля успехов", 
 | 
			
		||||
        "puntos_tiempo" : "Вопросы для времени реагирования", 
 | 
			
		||||
        "puntos_totales" : "Итого", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Prvky na úrovni bodu", 
 | 
			
		||||
        "nivel_3" : "Aktuality", 
 | 
			
		||||
        "aceptar" : "Súhlasím", 
 | 
			
		||||
        "tiempo" : "Čas", 
 | 
			
		||||
        "aciertos" : "Úspechy", 
 | 
			
		||||
        "fallos" : "Rozhodcovia", 
 | 
			
		||||
        "porcentaje_fallos" : "Percenta porúch", 
 | 
			
		||||
        "porcentaje_aciertos" : "Percenta úspechov", 
 | 
			
		||||
        "puntos_tiempo" : "Body pre čas odozvy", 
 | 
			
		||||
        "puntos_totales" : "Celkom bodov", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Elementit pistetasolla", 
 | 
			
		||||
        "nivel_3" : "Sublementit", 
 | 
			
		||||
        "aceptar" : "Hyväksytty", 
 | 
			
		||||
        "tiempo" : "Aika aika", 
 | 
			
		||||
        "aciertos" : "Saavutuksia", 
 | 
			
		||||
        "fallos" : "Tuomiot", 
 | 
			
		||||
        "porcentaje_fallos" : "Epäonnistumisprosentti", 
 | 
			
		||||
        "porcentaje_aciertos" : "Menestysten prosenttiosuus", 
 | 
			
		||||
        "puntos_tiempo" : "Vastausaikaa varten", 
 | 
			
		||||
        "puntos_totales" : "Yhteensä", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Element på punktnivå", 
 | 
			
		||||
        "nivel_3" : "Subelement", 
 | 
			
		||||
        "aceptar" : "Acceptera", 
 | 
			
		||||
        "tiempo" : "Tid", 
 | 
			
		||||
        "aciertos" : "Prestationer", 
 | 
			
		||||
        "fallos" : "Domar", 
 | 
			
		||||
        "porcentaje_fallos" : "Procentandel av misslyckanden", 
 | 
			
		||||
        "porcentaje_aciertos" : "Andel framgångar", 
 | 
			
		||||
        "puntos_tiempo" : "Poäng för svarstid", 
 | 
			
		||||
        "puntos_totales" : "Totalpoäng", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "องค์ประกอบที่อยู่ในระดับ", 
 | 
			
		||||
        "nivel_3" : "เอกสาร", 
 | 
			
		||||
        "aceptar" : "ยอมรับ", 
 | 
			
		||||
        "tiempo" : "เวลา", 
 | 
			
		||||
        "aciertos" : "คําศัพท์", 
 | 
			
		||||
        "fallos" : "รายงาน", 
 | 
			
		||||
        "porcentaje_fallos" : "ความผิดปกติของความล้มเหลว", 
 | 
			
		||||
        "porcentaje_aciertos" : "ความสําเร็จ", 
 | 
			
		||||
        "puntos_tiempo" : "คะแนนสําหรับการตอบสนอง", 
 | 
			
		||||
        "puntos_totales" : "คะแนน", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -78,6 +78,40 @@
 | 
			
		||||
        "nivel_2" : "Sayı seviyesindeki elementler", 
 | 
			
		||||
        "nivel_3" : "Subelements", 
 | 
			
		||||
        "aceptar" : "Kabul Kabul Kabul Kabul", 
 | 
			
		||||
        "tiempo" : [
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman Zaman ", 
 | 
			
		||||
            "Zaman Zaman Zaman Zaman Zaman Zaman"
 | 
			
		||||
        ], 
 | 
			
		||||
        "aciertos" : "Başarılar Başarılar", 
 | 
			
		||||
        "fallos" : "Yargıçlar", 
 | 
			
		||||
        "porcentaje_fallos" : "Başarısızlık", 
 | 
			
		||||
        "porcentaje_aciertos" : "Başarıların Yüzdesi", 
 | 
			
		||||
        "puntos_tiempo" : "Yanıt zamanı için puanlar", 
 | 
			
		||||
        "puntos_totales" : "Toplam puan Toplam puan", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "Елементи на рівні точки", 
 | 
			
		||||
        "nivel_3" : "Підтвердження", 
 | 
			
		||||
        "aceptar" : "Приват", 
 | 
			
		||||
        "tiempo" : "Час", 
 | 
			
		||||
        "aciertos" : "Досягнення", 
 | 
			
		||||
        "fallos" : "Суддя", 
 | 
			
		||||
        "porcentaje_fallos" : "Відсоток відмов", 
 | 
			
		||||
        "porcentaje_aciertos" : "Відсоток успіхів", 
 | 
			
		||||
        "puntos_tiempo" : "Точки для часу реагування", 
 | 
			
		||||
        "puntos_totales" : "Всього точок", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,13 @@
 | 
			
		||||
        "nivel_2" : "点级要素", 
 | 
			
		||||
        "nivel_3" : "补贴", 
 | 
			
		||||
        "aceptar" : "接受", 
 | 
			
		||||
        "tiempo" : "时间", 
 | 
			
		||||
        "aciertos" : "成就", 
 | 
			
		||||
        "fallos" : "判决", 
 | 
			
		||||
        "porcentaje_fallos" : "失败百分比", 
 | 
			
		||||
        "porcentaje_aciertos" : "成功百分比", 
 | 
			
		||||
        "puntos_tiempo" : "答复时间要点", 
 | 
			
		||||
        "puntos_totales" : "总点", 
 | 
			
		||||
        "Mapeate_comun_end" : null, 
 | 
			
		||||
 | 
			
		||||
        "Mapeate_mapas_start" : null, 
 | 
			
		||||
 | 
			
		||||
@ -541,4 +541,11 @@
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .resumen-fin-juego{
 | 
			
		||||
        span[data-i18n]{
 | 
			
		||||
            font-weight : 900;
 | 
			
		||||
            &::after{content : ":";}
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@ -475,6 +475,10 @@
 | 
			
		||||
      width: 100%;
 | 
			
		||||
      margin-bottom: .5em;
 | 
			
		||||
      text-align: center; }
 | 
			
		||||
  .mapeate .resumen-fin-juego span[data-i18n] {
 | 
			
		||||
    font-weight: 900; }
 | 
			
		||||
    .mapeate .resumen-fin-juego span[data-i18n]::after {
 | 
			
		||||
      content: ":"; }
 | 
			
		||||
 | 
			
		||||
[data-clase=global] {
 | 
			
		||||
  /*
 | 
			
		||||
 | 
			
		||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
		Loading…
	
		Reference in New Issue
	
	Block a user