#wip: Arreglados algunos bugs gráficos, añadidos textos, alertas y confirmaciones.
This commit is contained in:
parent
c0a482756a
commit
9b84823a74
BIN
Artbook/MinMpas.xcf
Normal file
BIN
Artbook/MinMpas.xcf
Normal file
Binary file not shown.
@ -103,6 +103,59 @@ Mapeate.Base = function(mapeate, entradas){
|
||||
|
||||
this.coger_posicion_del_raton = () => ({...posicion_de_raton});
|
||||
|
||||
this.abrir_dialogo = (mensaje, datos, acciones) => {
|
||||
|
||||
const dialogo = mapeate.si_mismo.querySelector(".dialogo");
|
||||
let botones = ``;
|
||||
|
||||
dialogo.setAttribute("data-visible", true);
|
||||
with(dialogo.querySelector("legend")){
|
||||
setAttribute("data-i18n", mensaje);
|
||||
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>`
|
||||
);
|
||||
|
||||
if(acciones){
|
||||
dialogo.setAttribute("data-solo-mensaje", false);
|
||||
acciones.forEach((accion, i) => {
|
||||
|
||||
const texto = mapeate.i18n(accion.i18n),
|
||||
hash = mapeate.hash();
|
||||
|
||||
botones += (`<button type="button" data-i18n="` + accion.i18n + `" data-i18n-without="true" title="` + texto + `" data-precarga="` + hash + `">
|
||||
<span data-icon="` + (accion.icono || accion.i18n) + `"></span>
|
||||
<span data-i18n="` + accion.i18n + `">` + texto + `</span>
|
||||
</button>`);
|
||||
|
||||
((accion, i) => mapeate.precargar("[data-precarga=" + hash + "]", boton => {
|
||||
console.log(boton);
|
||||
boton.removeAttribute("data-precarga");
|
||||
boton.onclick = accion.accion;
|
||||
!i && boton.focus();
|
||||
}))(accion, i);
|
||||
|
||||
});
|
||||
}else
|
||||
dialogo.setAttribute("data-solo-mensaje", true);
|
||||
|
||||
dialogo.querySelector(".grupo").innerHTML = botones;
|
||||
|
||||
};
|
||||
|
||||
this.ocultar_dialogo = (elemento, evento) => {
|
||||
if(elemento && elemento.parentNode && (elemento = elemento.parentNode).classList.contains("dialogo"))
|
||||
elemento.getAttribute("data-solo-mensaje") == "true" &&
|
||||
elemento.getAttribute("data-visible") == "true" &&
|
||||
elemento.setAttribute("data-visible", false);
|
||||
else
|
||||
with(mapeate.si_mismo.querySelector(".dialogo"))
|
||||
getAttribute("data-visible") == "true" && setAttribute("data-visible", false);
|
||||
};
|
||||
|
||||
constructor();
|
||||
|
||||
};
|
@ -9,7 +9,8 @@ Mapeate.Mapas = function(mapeate, entradas){
|
||||
let iniciado = false,
|
||||
sobreescribir_por_defecto,
|
||||
sobreescribir_tipos_por_defecto,
|
||||
mapas_hilo_de_proceso;
|
||||
mapas_hilo_de_proceso,
|
||||
fecha_inicio_juego;
|
||||
|
||||
let selector = this.selector;
|
||||
let global = this.global;
|
||||
@ -75,15 +76,9 @@ Mapeate.Mapas = function(mapeate, entradas){
|
||||
|
||||
if(svg){
|
||||
|
||||
const ancho_real = Number(svg.getAttribute("data-ancho")),
|
||||
alto_real = Number(svg.getAttribute("data-alto"));
|
||||
|
||||
// const [x, y, ancho, alto] = mapeate.porcentuar(
|
||||
// ancho_real, alto_real, mapa.offsetWidth, mapa.offsetHeight
|
||||
// ),
|
||||
|
||||
const limites = {},
|
||||
final = {};
|
||||
final = {},
|
||||
tiempo = Date.now() - fecha_inicio_juego;
|
||||
|
||||
[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(
|
||||
@ -111,6 +106,13 @@ 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)
|
||||
);
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
@ -288,6 +290,8 @@ 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();
|
||||
|
||||
});
|
||||
|
||||
};
|
||||
@ -315,7 +319,7 @@ Mapeate.Mapas = function(mapeate, entradas){
|
||||
seleccionado = mapeate.si_mismo.querySelector(".juego .objetivos [data-seleccionado=true][data-ok=false]");
|
||||
|
||||
if(!seleccionado)
|
||||
mapeate.alerta("Seleccionad objetivo.");
|
||||
mapeate.alerta("mapeate_mapas_seleccionar_objetivo");
|
||||
else if(seleccionado.getAttribute("data-clave") == clave){
|
||||
|
||||
const opciones = [...seleccionado.parentNode.querySelectorAll("li")];
|
||||
@ -341,11 +345,11 @@ Mapeate.Mapas = function(mapeate, entradas){
|
||||
siguiente.setAttribute("data-seleccionado", true);
|
||||
seleccionado.parentNode.parentNode.scrollTop = siguiente.offsetTop - (siguiente.offsetHeight / 2) - (siguiente.parentNode.parentNode.offsetHeight / 2);
|
||||
}else
|
||||
mapeate.alerta("¡Has ganado!", () => self.volver_al_menu(elemento, evento));
|
||||
mapeate.alerta("mapeate_mapas_ganaste", () => self.volver_al_menu(elemento, evento));
|
||||
|
||||
}else{
|
||||
with(mapeate.si_mismo.querySelector(".juego .puntos section"))innerText = Number(innerText) - 1;
|
||||
mapeate.alerta("Has elegido mal.");
|
||||
mapeate.alerta("mapeate_mapas_mal_elegido");
|
||||
};
|
||||
|
||||
};
|
||||
|
@ -49,7 +49,12 @@ Mapeate.Vistas = function(mapeate, entradas){
|
||||
const cursor = mapeate.base.coger_posicion_del_raton();
|
||||
|
||||
elemento_de_arrastre.elemento.style.marginTop = (cursor.y + elemento_de_arrastre.y) + "px";
|
||||
if(elemento_de_arrastre.left)
|
||||
elemento_de_arrastre.elemento.style.marginLeft = (cursor.x + elemento_de_arrastre.x) + "px";
|
||||
else
|
||||
elemento_de_arrastre.elemento.style.marginRight = (
|
||||
elemento_de_arrastre.elemento.parentNode.offsetWidth - cursor.x - elemento_de_arrastre.x
|
||||
) + "px";
|
||||
|
||||
};
|
||||
|
||||
@ -185,13 +190,18 @@ Mapeate.Vistas = function(mapeate, entradas){
|
||||
|
||||
const [x, y] = mapeate.base.coger_posicion_del_cursor(evento),
|
||||
caja = elemento.parentNode.parentNode.getBoundingClientRect(),
|
||||
limites = elemento.parentNode.getBoundingClientRect();
|
||||
limites = elemento.parentNode.getBoundingClientRect(),
|
||||
is_left = elemento.parentNode.getAttribute("data-posicion").includes("_izquierda");
|
||||
let z = 0;
|
||||
|
||||
elemento_de_arrastre = {
|
||||
elemento : elemento.parentNode,
|
||||
x : limites.x - x - caja.x,
|
||||
y : limites.y - y - caja.y
|
||||
x : (
|
||||
is_left ? limites.x - x - caja.x :
|
||||
limites.x + elemento.parentNode.offsetWidth - x - caja.x
|
||||
),
|
||||
y : limites.y - y - caja.y,
|
||||
left : is_left
|
||||
};
|
||||
|
||||
elemento.parentNode.parentNode.childNodes.forEach(hijo => {
|
||||
|
@ -173,7 +173,7 @@ Mapeate = function(entradas){
|
||||
|
||||
nuevas_claves_padre.length && (claves_padre_por_defecto = nuevas_claves_padre);
|
||||
|
||||
intervalo_de_procesos = setInterval(ejecutar_hilos_de_proceso, 1000 / self.configuracion("ejecutar_hilos_de_proceso"));
|
||||
intervalo_de_procesos = setInterval(ejecutar_hilos_de_proceso, 1000 / self.configuracion("fotogramas_por_segundo"));
|
||||
|
||||
self.print("info", "cargando_i18n");
|
||||
self.ejecutar_array_asincrono([
|
||||
@ -693,12 +693,23 @@ Mapeate = function(entradas){
|
||||
return (elemento && elemento.hasAttribute && elemento) || null;
|
||||
};
|
||||
|
||||
this.alerta = (mensaje, callback) => {
|
||||
alert(self.i18n(mensaje));
|
||||
this.alerta = (mensaje, callback, datos) => base.abrir_dialogo(mensaje, datos, [
|
||||
{i18n : "aceptar", accion : () => {
|
||||
base.ocultar_dialogo();
|
||||
self.ejecutar(callback);
|
||||
};
|
||||
}}
|
||||
]);
|
||||
|
||||
this.confirmar = (mensaje, si, no) => self.ejecutar(confirm(self.i18n(mensaje)) ? si : no);
|
||||
this.confirmar = (mensaje, si, no, datos) => base.abrir_dialogo(mensaje, datos, [
|
||||
{i18n : "aceptar", accion : () => {
|
||||
base.ocultar_dialogo();
|
||||
self.ejecutar(si);
|
||||
}},
|
||||
{i18n : "cancelar", accion : () => {
|
||||
base.ocultar_dialogo();
|
||||
self.ejecutar(no);
|
||||
}}
|
||||
]);
|
||||
|
||||
constructor();
|
||||
|
||||
|
@ -67,6 +67,11 @@
|
||||
<p data-i18n="consola_texto">{{consola_texto}}</p>
|
||||
<section></section>
|
||||
</fieldset>
|
||||
<fieldset class="temporizador" data-posicion="arriba_derecha">
|
||||
<legend data-i18n="temporizador" onmousedown="nombre_objeto.vistas.arrastrar(this, event);" onmouseup="nombre_objeto.vistas.soltar(this, event);" ontouchstart="nombre_objeto.vistas.arrastrar(this, event);" ontouchend="nombre_objeto.vistas.soltar(this, event);">{{temporizador}}</legend>
|
||||
<p data-i18n="temporizador_texto">{{temporizador_texto}}</p>
|
||||
<section>00:00:00.000</section>
|
||||
</fieldset>
|
||||
<fieldset class="mapa">
|
||||
<legend data-i18n="mapa">{{mapa}}</legend>
|
||||
<p data-i18n="mapa_texto">{{mapa_texto}}</p>
|
||||
@ -85,6 +90,14 @@
|
||||
</a>
|
||||
</span>
|
||||
</footer>
|
||||
<div class="dialogo" data-solo-mensaje="true" data-visible="false">
|
||||
<div class="fondo" onclick="nombre_objeto.base.ocultar_dialogo(this, event);"></div>
|
||||
<fieldset>
|
||||
<legend>Ejemplo</legend>
|
||||
<section>Esto es un ejemplo xD</section>
|
||||
<div class="grupo"></div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<!-- [[base]] -->
|
||||
|
||||
@ -135,7 +148,7 @@
|
||||
<img src="{thumbnail}" alt="{{nombre}}" />
|
||||
<span style="background-image:url('{thumbnail}');"></span>
|
||||
</span>
|
||||
<span data-i18n="{nombre}">{{nombre}}</span>
|
||||
<span class="titulo"><span data-i18n="{nombre}">{{nombre}}</span></span>
|
||||
<ul class="descripcion">
|
||||
<li data-i18n="dificultad" title="{{dificultad}}" data-i18n-without="true" data-dificultad="{dificultad}">
|
||||
<span data-icon="dificultad"></span>
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "البنود الصغيرة",
|
||||
"nivel_2" : "العناصر على مستوى النقطة",
|
||||
"nivel_3" : "الخصوم",
|
||||
"aceptar" : "قبول",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "بلدان العالم",
|
||||
"paises_mundo_descripcion" : "انظر إذا كنت تستطيع أن ترى أين هذه البلدان في العالم التي هي المقترحة لك في هذا التحدي...",
|
||||
"paises_europa" : "بلدان أوروبا",
|
||||
"paises_europa_descripcion" : "هنا جميع بلدان القارة القديمة. شاهدْ كَمْ تَعْرفُ عنه...",
|
||||
"paises_asia" : "البلدان الآسيوية",
|
||||
"paises_asia_descripcion" : "نحن ذاهبون إلى الشرق، مكان الشمس المرتفعة، أقرب منطقة بين روسيا والولايات المتحدة وأرخبيل كبير من البلدان التي توحد مع أوقيانوسيا. أتعرف أين كل شيء؟?",
|
||||
"paises_africa" : "البلدان الأفريقية",
|
||||
"paises_africa_descripcion" : "أفريقيا، حيث بدأت البشرية، الارتباط بالشرق الأوسط، مهد الحضارة الإنسانية. ماذا تعرف عن هناك؟?",
|
||||
"paises_oceania" : "بلدان أوقيانوسيا",
|
||||
"paises_oceania_descripcion" : "أرض الكنغارو، والفحم وغيرها من الحيوانات، مثل تسمانيا. المكان الذي يشمل كراكاتوا هل تعرف أين هذا؟?",
|
||||
"paises_america" : "بلدان أمريكا",
|
||||
"paises_america_descripcion" : "إن أمريكا كبيرة جدا بحيث تضم قارتين. انظر كم تعرف عن الاثنين.",
|
||||
"paises_norteamerica" : "بلدان أمريكا الشمالية",
|
||||
"paises_norteamerica_descripcion" : "موطن (هوليوود) مع قوة (سيليكون فالي) الحاسبية و الدببة (غريزلي) ماذا تعرف عن هناك؟?",
|
||||
"paises_centroamerica" : "بلدان أمريكا الوسطى",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. هل تعلم أن هناك العديد من الرجال في تلك المنطقة؟?",
|
||||
"paises_suramerica" : "بلدان أمريكا الجنوبية",
|
||||
"paises_suramerica_descripcion" : "حتى الآن وصل (إنكاس) على طول (ماجيلان) الجنوبي عبروا من أجل مكان آمن من الغابة والأدغال العظيمة ماذا تعرف عن أمريكا الجنوبية؟?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "وقد بدأت وحدة إدارة الخرائط في تطبيق 'Mapeatea...",
|
||||
"mapeate_mapas_ya_iniciado" : "وقد بدأت بالفعل وحدة إدارة الخرائط في تطبيق 'Mapeatea.",
|
||||
"mapeate_mapas_iniciado" : "وبدأت وحدة إدارة خرائط تطبيقات 'Mapeatea بالكامل.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "اختيار هدف",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "الرجاء اختيار هدف على الخريطة.",
|
||||
"mapeate_mapas_ganaste" : "لقد فزت!",
|
||||
"mapeate_mapas_ganaste_texto" : "تهانينا!",
|
||||
"mapeate_mapas_mal_elegido" : "لقد اخترت خطأ.",
|
||||
"mapeate_mapas_mal_elegido_texto" : "العنصر المختار غير صحيح من فضلك جربي شيئاً آخر.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "شاشة عينات من خريطة اللعبة.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "انصرف من النقابة.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "هنا يمكنك أن ترى كم من الوقت تأخذك اللعبة.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,33 @@
|
||||
"nivel_1" : "Kiçik maddələr",
|
||||
"nivel_2" : "Kateqoriyalar",
|
||||
"nivel_3" : "Qeydiyyat",
|
||||
"aceptar" : "Qeydiyyat",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Dünyanın ixtisasları",
|
||||
"paises_mundo_descripcion" : "Siz dünyanın bu ölkələrin bu meydançada sizin üçün təklif edilmiş olduğunu görə bilərsiniz...",
|
||||
"paises_europa" : "Avropa Birləşmiş Ştatları",
|
||||
"paises_europa_descripcion" : "Burada yaşlı kıtanın bütün ölkələri var. Onun haqqında neçə bilirə baxın...",
|
||||
"paises_asia" : "Asiya ölkələri",
|
||||
"paises_asia_descripcion" : [
|
||||
"Biz doğuya gecək, artan Sun yeri, Rusiya və Amerika Birləşmiş ",
|
||||
"Ştatları arasında ən yaxşı sahəsi və Uşaq ilə birləşdirilən ",
|
||||
"ölkələrin böyük bir archipelago. Siz hər şey olduğunu ",
|
||||
"bilirmisiniz?"
|
||||
],
|
||||
"paises_africa" : "Afrika ölkələri",
|
||||
"paises_africa_descripcion" : "Afrika, məhsullar başladı, nexus, Orta Şərh, insan iqtisadi. Oxunub:?",
|
||||
"paises_oceania" : "Uşaq ölkələri",
|
||||
"paises_oceania_descripcion" : "Kangaroos, kömürlər və digər heyvanlar daxili demins kimi. Krakatoa daxil olan yer. Bunun olduğunu bilirmisiniz?",
|
||||
"paises_america" : "Amerika Birləşmiş Ştatları",
|
||||
"paises_america_descripcion" : "Amerika iki səfərliklər var ki, böyükdür. Siz haqqında neçə bilirə baxın...",
|
||||
"paises_norteamerica" : "Amerika Birləşmiş Ştatları",
|
||||
"paises_norteamerica_descripcion" : "Hollywood'un tikintisi, Silikon Vadisinin kompüter gücü və Grizzly ayı ilə. Oxunub:?",
|
||||
"paises_centroamerica" : "Amerika Birləşmiş Ştatları",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Bu sahəsində bir çox mikro-fərman olduğunu bilirdinizmi?",
|
||||
"paises_suramerica" : "Amerika Birləşmiş Ştatları",
|
||||
"paises_suramerica_descripcion" : "Bu gün Incas gətirdi, arxa Magellan daxili, böyük orqanlar və orqanlar yerləşdi. Güney Amerika haqqında necə bilirsiniz?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +84,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea'nın proqramının kart idarəetmə modulu ...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea'nın xəritə idarə edilib.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea'nın proqramının kart idarəetmə modulu tamamilə başladı.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Axtarış",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Xəzərinə baxın.",
|
||||
"mapeate_mapas_ganaste" : "Oxunub!",
|
||||
"mapeate_mapas_ganaste_texto" : " Congratulations!",
|
||||
"mapeate_mapas_mal_elegido" : "Yanlış seçdiyiniz...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Seçilmiş element düzgün deyil. Seçilmiş digər maddə çalışın.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +119,8 @@
|
||||
"mapa_texto" : "Oyun xəritənin Sampling ekran.",
|
||||
"consola" : "Qeydiyyat",
|
||||
"consola_texto" : "Konsoldan keçin.",
|
||||
"temporizador" : "Chrono",
|
||||
"temporizador_texto" : "Burada oyun sizi almaq necə uzun görə bilərsiniz.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Petits articles",
|
||||
"nivel_2" : "Elements a nivell de punt",
|
||||
"nivel_3" : "Subelements",
|
||||
"aceptar" : "Acceptar",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Països del món",
|
||||
"paises_mundo_descripcion" : "Si vols saber on són els països del món que et proposen aquest repte.",
|
||||
"paises_europa" : "Països d' Europa",
|
||||
"paises_europa_descripcion" : "Aquí teniu tots els països de l’antic continent. Veure el que se sap d'ell...",
|
||||
"paises_asia" : "Països asiàtics",
|
||||
"paises_asia_descripcion" : [
|
||||
"Ens anem cap a l'est, lloc del sol naixent, la zona més propera ",
|
||||
"entre Rússia i els Estats Units i un gran arxipèlag de països ",
|
||||
"que s'uneixen amb Oceania. Saps on és tot?"
|
||||
],
|
||||
"paises_africa" : "Països africans",
|
||||
"paises_africa_descripcion" : "Àfrica, on la humanitat va començar, nexe amb l'Orient Mitjà, bressol de la civilització humana. En què consisteix?",
|
||||
"paises_oceania" : "Països d'Oceania",
|
||||
"paises_oceania_descripcion" : "Terra de cangurs, carbons i altres animals com la tasmania demins. Lloc que inclou Krakatoa. Saps on és?",
|
||||
"paises_america" : "Països d' Amèrica",
|
||||
"paises_america_descripcion" : "Amèrica és tan gran que es compon de dos continents. Descobreix el que més t'interessa...",
|
||||
"paises_norteamerica" : "Països nord-americans",
|
||||
"paises_norteamerica_descripcion" : "La terra natal de Hollywood, amb el poder informàtic de Silicon Valley i els óssos Grizzly. En què consisteix?",
|
||||
"paises_centroamerica" : "Països d'Amèrica Central",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Hi ha molts microcampistes?",
|
||||
"paises_suramerica" : "Països sud-americans",
|
||||
"paises_suramerica_descripcion" : "Els inques van arribar fins al moment, al llarg del sud de Magallanes van creuar la pau, lloc de grans selves i selves. Què saps d'Amèrica del Sud?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,16 @@
|
||||
"mapeate_mapas_iniciando" : "El mòdul de gestió del mapa de l'aplicació 'Mapeatea està començant a...",
|
||||
"mapeate_mapas_ya_iniciado" : "El mòdul de gestió de mapes d'aplicacions 'Mapeatea' ja s'ha iniciat.",
|
||||
"mapeate_mapas_iniciado" : "El mòdul de gestió del mapa de l'aplicació 'Mapeatea va començar completament.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Seleccioneu un objectiu",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Si us plau, seleccioneu un objectiu al mapa.",
|
||||
"mapeate_mapas_ganaste" : "Has guanyat!",
|
||||
"mapeate_mapas_ganaste_texto" : "Felicitats!",
|
||||
"mapeate_mapas_mal_elegido" : "Vostè va triar malament...",
|
||||
"mapeate_mapas_mal_elegido_texto" : [
|
||||
"L'element seleccionat no és correcte. Si us plau, introdueix ",
|
||||
"dins de la caixa de text els caràcters que veu a la imatge de ",
|
||||
"sota. Això és requerit per evitar enviaments automàtics."
|
||||
],
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +122,8 @@
|
||||
"mapa_texto" : "Pantalla de mostreig del mapa del joc.",
|
||||
"consola" : "Consola",
|
||||
"consola_texto" : "Sortida des de la consola.",
|
||||
"temporizador" : "Cronòmetre",
|
||||
"temporizador_texto" : "Aquí podeu veure el temps que et porta el joc.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "Malé předměty",
|
||||
"nivel_2" : "Prvky na úrovni bodů",
|
||||
"nivel_3" : "Subelementy",
|
||||
"aceptar" : "Čeština",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Země světa",
|
||||
"paises_mundo_descripcion" : "Podívejte se, jestli vidíte, kde jsou tyto země světa navrženy pro vás v této výzvě...",
|
||||
"paises_europa" : "Země Evropy",
|
||||
"paises_europa_descripcion" : "Zde jsou všechny země starého kontinentu. Podívejte se, kolik víte o něm...",
|
||||
"paises_asia" : "Asijské země",
|
||||
"paises_asia_descripcion" : "Pocházíme na východ, místo rostoucího Slunce, nejbližší oblast mezi Ruskem a USA a velkým souostrovem zemí, které spojuje s Oceánie. Víte, kde je vše?",
|
||||
"paises_africa" : "Africký země",
|
||||
"paises_africa_descripcion" : "Afrika, kde lidstvo začalo, nexus s Blízkým východem, kolébkou lidské civilizace. Co víte?",
|
||||
"paises_oceania" : "Oceánie země",
|
||||
"paises_oceania_descripcion" : "Země kangaroos, uhlí a jiných zvířat, jako je tasmania demins. Místo, které zahrnuje Krakatoa. Víte, kde je to?",
|
||||
"paises_america" : "Země Ameriky",
|
||||
"paises_america_descripcion" : "Amerika je tak skvělá, že tvoří dva kontinenty. Podívejte se, kolik víte o obou...",
|
||||
"paises_norteamerica" : "Severní Amerika",
|
||||
"paises_norteamerica_descripcion" : "Hollywoodský domov, s počítačovou silou Silicon Valley a medvědy Grizzly. Co víte?",
|
||||
"paises_centroamerica" : "Země střední Ameriky",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Víte, že v této oblasti existuje mnoho mikroletů?",
|
||||
"paises_suramerica" : "Jižní Ameriky",
|
||||
"paises_suramerica_descripcion" : "Do té doby Incas dorazil, podél jižní Magellan přešel na klidné, místo velkých džunglí a džunglí. Co víte o Jižní Americe?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "Modul pro správu map 'Mapeatea' je spuštěn...",
|
||||
"mapeate_mapas_ya_iniciado" : "Modul pro správu map 'Mapeatea' byl již zahájen.",
|
||||
"mapeate_mapas_iniciado" : "Modul pro správu map 'Mapeatea' začala zcela.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Vyberte cíl",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Prosím vyberte cíl na mapě.",
|
||||
"mapeate_mapas_ganaste" : "Vyhráli jste!",
|
||||
"mapeate_mapas_ganaste_texto" : "Gratulujeme!",
|
||||
"mapeate_mapas_mal_elegido" : "Vybrali jste špatně...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Zvolený prvek není správný. Prosím, vyberte jinou položku.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "Sampling obrazovka herní mapy.",
|
||||
"consola" : "Čeština",
|
||||
"consola_texto" : "Odlet z konzole.",
|
||||
"temporizador" : "Chronometr",
|
||||
"temporizador_texto" : "Zde můžete vidět, jak dlouho se vám hra vezme.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Små genstande",
|
||||
"nivel_2" : "Elementer på punktniveau",
|
||||
"nivel_3" : "Subelementer",
|
||||
"aceptar" : "Accept Accepter",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Verdens lande",
|
||||
"paises_mundo_descripcion" : "Se, om du kan se, hvor disse lande i verden er, der foreslås for dig i denne udfordring...",
|
||||
"paises_europa" : "Europas lande",
|
||||
"paises_europa_descripcion" : "Her er alle de lande i det gamle kontinent. Se, hvor meget du kender ham...",
|
||||
"paises_asia" : "Asiatiske lande",
|
||||
"paises_asia_descripcion" : [
|
||||
"Vi kommer til øst, sted for den stigende sol, det nærmeste ",
|
||||
"område mellem Rusland og USA og en stor øgruppe af lande, der ",
|
||||
"forener med Oceanien. Du ved, hvor alt er?"
|
||||
],
|
||||
"paises_africa" : "Afrikanske lande",
|
||||
"paises_africa_descripcion" : "Afrika, hvor menneskeheden begyndte, nexus med Mellemøsten, vugge af menneskelig civilisation. Hvad ved du om der?",
|
||||
"paises_oceania" : "Oceanien lande",
|
||||
"paises_oceania_descripcion" : "Land af kænguruer, kul og andre dyr som tasmania dæmoner. Place, der omfatter Krakatoa. Kender du, hvor dette er?",
|
||||
"paises_america" : "Lande af Amerika",
|
||||
"paises_america_descripcion" : "Amerika er så stor, at det indeholder to kontinenter. Se, hvor meget du kender både...",
|
||||
"paises_norteamerica" : "Nordamerikanske lande",
|
||||
"paises_norteamerica_descripcion" : "Hollywoods hjemland, med Silicon Valleys computerkraft og Grizzly bjørne. Hvad ved du om der?",
|
||||
"paises_centroamerica" : "Mellemamerika",
|
||||
"paises_centroamerica_descripcion" : "I nærheden af Centro América, de los Mallas, los Incas y los Aztecas. Vidste du, at der er mange mikrolande i området?",
|
||||
"paises_suramerica" : "Sydamerikanske lande",
|
||||
"paises_suramerica_descripcion" : "Indtil videre kom Incas langs den sydlige Magellan krydset for den fredelige, store jungle og jungle. Hvad ved du om Sydamerika?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "Map management modul af 'Mapeatea ansøgning er begyndt at...",
|
||||
"mapeate_mapas_ya_iniciado" : "Korthåndteringsmodulet for 'Mapeatea'-applikationen blev allerede påbegyndt.",
|
||||
"mapeate_mapas_iniciado" : "Korthåndteringsmodulet af 'Mapeatea'-applikationen startede helt.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Vælg et mål",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Vælg et mål på kortet.",
|
||||
"mapeate_mapas_ganaste" : "Du vandt!",
|
||||
"mapeate_mapas_ganaste_texto" : "Tillykke!",
|
||||
"mapeate_mapas_mal_elegido" : "Du valgte forkert...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Det valgte element er ikke korrekt. Prøv venligst et andet element valgt.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Sampling skærm af spillet kort.",
|
||||
"consola" : "Konsol konsol",
|
||||
"consola_texto" : "Afrejse fra konsollen.",
|
||||
"temporizador" : "Kronometer",
|
||||
"temporizador_texto" : "Her kan du se, hvor længe spillet tager dig.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,37 @@
|
||||
"nivel_1" : "Kleine Gegenstände",
|
||||
"nivel_2" : "Elemente auf Punktebene",
|
||||
"nivel_3" : "Subelemente",
|
||||
"aceptar" : "Annahme",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Länder der Welt",
|
||||
"paises_mundo_descripcion" : "Wenn Sie sehen können, wo diese Länder der Welt sind, die Ihnen in dieser Herausforderung vorgeschlagen werden...",
|
||||
"paises_europa" : "Länder Europas",
|
||||
"paises_europa_descripcion" : "Hier sind alle Länder des alten Kontinents. Sehen Sie, wie viel Sie über ihn wissen...",
|
||||
"paises_asia" : "Asien",
|
||||
"paises_asia_descripcion" : [
|
||||
"Wir gehen nach Osten, Ort der aufsteigenden Sonne, dem nächsten ",
|
||||
"Gebiet zwischen Russland und den Vereinigten Staaten und einem ",
|
||||
"großen Archipel von Ländern, die mit Ozeanien vereint. Weißt du, ",
|
||||
"wo alles ist?"
|
||||
],
|
||||
"paises_africa" : "Afrikanische Länder",
|
||||
"paises_africa_descripcion" : "Afrika, wo die Menschheit begann, nexus mit dem Nahen Osten, Wiege der menschlichen Zivilisation. Was wissen Sie da?",
|
||||
"paises_oceania" : "Länder des Ozeans",
|
||||
"paises_oceania_descripcion" : "Land von Kangaroos, Kohlen und anderen Tieren wie Tasmanien-Dämonen. Platz, der Krakatoa umfasst. Weißt du, wo das ist?",
|
||||
"paises_america" : "Länder von Amerika",
|
||||
"paises_america_descripcion" : "Amerika ist so groß, dass es zwei Kontinente umfasst. Sehen Sie, wie viel Sie über beide wissen...",
|
||||
"paises_norteamerica" : "Nordamerikanische Länder",
|
||||
"paises_norteamerica_descripcion" : "Hollywoods Heimat, mit Silicon Valleys Computerleistung und Grizzly Bären. Was wissen Sie da?",
|
||||
"paises_centroamerica" : "Länder Mittelamerikas",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Wussten Sie, dass es in diesem Bereich viele Mikro-Landwirte gibt?",
|
||||
"paises_suramerica" : "Südamerikanische Länder",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"Bisher kamen die Inkas an, entlang des Südens Magellan ",
|
||||
"überquerte für den friedlichen Ort der großen Dschungel und ",
|
||||
"Dschungel. Was wissen Sie über Südamerika?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +88,12 @@
|
||||
"mapeate_mapas_iniciando" : "Das Kartenverwaltungsmodul der 'Mapeatea'-Anwendung beginnt...",
|
||||
"mapeate_mapas_ya_iniciado" : "Das Applikationskartenverwaltungsmodul 'Mapeatea wurde bereits initiiert.",
|
||||
"mapeate_mapas_iniciado" : "Das Anwendungskarten-Managementmodul 'Mapeatea wurde komplett gestartet.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Wählen Sie ein Ziel",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Bitte wählen Sie ein Ziel auf der Karte.",
|
||||
"mapeate_mapas_ganaste" : "Du hast gewonnen!",
|
||||
"mapeate_mapas_ganaste_texto" : "Glückwunsch!",
|
||||
"mapeate_mapas_mal_elegido" : "Du hast falsch gewählt...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Das ausgewählte Element ist nicht korrekt. Bitte versuchen Sie einen anderen Artikel ausgewählt.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +123,8 @@
|
||||
"mapa_texto" : "Sampling-Bildschirm der Spielkarte.",
|
||||
"consola" : "Anmerkung",
|
||||
"consola_texto" : "Abfahrt von der Konsole.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "Hier können Sie sehen, wie lange das Spiel Sie nimmt.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,37 @@
|
||||
"nivel_1" : "Μικρά αντικείμενα",
|
||||
"nivel_2" : "Στοιχεία σε επίπεδο σημείου",
|
||||
"nivel_3" : "Υποθέσεις",
|
||||
"aceptar" : "Αποδοχή",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Χώρες του κόσμου",
|
||||
"paises_mundo_descripcion" : "Δείτε αν μπορείτε να δείτε που αυτές οι χώρες του κόσμου σας προτείνονται σε αυτή την πρόκληση.",
|
||||
"paises_europa" : "Χώρες της Ευρώπης",
|
||||
"paises_europa_descripcion" : "Εδώ είναι όλες οι χώρες της παλιάς ηπείρου. Δείτε πόσο ξέρεις γι 'αυτόν...",
|
||||
"paises_asia" : "Ασιατικές χώρες",
|
||||
"paises_asia_descripcion" : [
|
||||
"Θα πάμε προς τα ανατολικά, μέρος του αυξανόμενου Ήλιου, της ",
|
||||
"πλησιέστερης περιοχής μεταξύ της Ρωσίας και των Ηνωμένων ",
|
||||
"Πολιτειών και ενός μεγάλου αρχιπέλαγος χωρών που ενώνονται με ",
|
||||
"την Ωκεανία. Ξέρεις πού είναι όλα?"
|
||||
],
|
||||
"paises_africa" : "Αφρικανικές χώρες",
|
||||
"paises_africa_descripcion" : "Αφρική, όπου ξεκίνησε η ανθρωπότητα, ο nexus με τη Μέση Ανατολή, το λίκνο του ανθρώπινου πολιτισμού. Τι γνωρίζετε εκεί?",
|
||||
"paises_oceania" : "Χώρες της Ωκεανίας",
|
||||
"paises_oceania_descripcion" : "Γη του kangaroos, άνθρακα και άλλα ζώα, όπως η μανία. Place που περιλαμβάνει το Krakatoa. Γνωρίζετε πού είναι αυτό?",
|
||||
"paises_america" : "Χώρες της Αμερικής",
|
||||
"paises_america_descripcion" : "Η Αμερική είναι τόσο μεγάλη που περιλαμβάνει δύο ηπείρους. Δείτε πόσο ξέρετε και για τα δύο...",
|
||||
"paises_norteamerica" : "Χώρες της Βόρειας Αμερικής",
|
||||
"paises_norteamerica_descripcion" : "Η πατρίδα του Χόλιγουντ, με την υπολογιστική ισχύ της Silicon Valley και τις Grizzly αρκούδες. Τι γνωρίζετε εκεί?",
|
||||
"paises_centroamerica" : "Χώρες της Κεντρικής Αμερικής",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Γνωρίζετε ότι υπάρχουν πολλοί μικροεθνικοί στην περιοχή αυτή?",
|
||||
"paises_suramerica" : "Χώρες της Νότιας Αμερικής",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"Μέχρι στιγμής οι Incas έφτασαν, κατά μήκος του νότιου Magellan ",
|
||||
"πέρασαν για την ειρηνική, θέση μεγάλων ζούγκλων και ζούγκλων. Τι ",
|
||||
"γνωρίζετε για τη Νότια Αμερική?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +88,12 @@
|
||||
"mapeate_mapas_iniciando" : "Η ενότητα διαχείρισης χάρτη της εφαρμογής 'Mapeatea ξεκινά...",
|
||||
"mapeate_mapas_ya_iniciado" : "Η ενότητα διαχείρισης χάρτη της εφαρμογής 'Mapeatea ξεκίνησε ήδη.",
|
||||
"mapeate_mapas_iniciado" : "Η ενότητα διαχείρισης χάρτη της εφαρμογής MKVBXBYa ξεκίνησε εντελώς.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Επιλέξτε έναν στόχο",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Επιλέξτε έναν στόχο στον χάρτη.",
|
||||
"mapeate_mapas_ganaste" : "Κέρδισες!",
|
||||
"mapeate_mapas_ganaste_texto" : "Συγχαρητήρια!",
|
||||
"mapeate_mapas_mal_elegido" : "Επιλέξατε λάθος...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Το επιλεγμένο στοιχείο δεν είναι σωστό. Παρακαλούμε δοκιμάστε ένα άλλο αντικείμενο επιλεγμένο.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +123,8 @@
|
||||
"mapa_texto" : "Sampling οθόνη του χάρτη παιχνιδιού.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Αναχώρηση από την κονσόλα.",
|
||||
"temporizador" : "Χρονόμετρο",
|
||||
"temporizador_texto" : "Εδώ μπορείτε να δείτε πόσο καιρό σας παίρνει το παιχνίδι.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,33 @@
|
||||
"nivel_1" : "Small items",
|
||||
"nivel_2" : "Elements at point level",
|
||||
"nivel_3" : "Subelements",
|
||||
"aceptar" : "Accept",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Countries of the world",
|
||||
"paises_mundo_descripcion" : "See if you can see where these countries of the world are that are proposed to you in this challenge...",
|
||||
"paises_europa" : "Countries of Europe",
|
||||
"paises_europa_descripcion" : "Here are all the countries of the old continent. See how much you know about him...",
|
||||
"paises_asia" : "Asian countries",
|
||||
"paises_asia_descripcion" : [
|
||||
"We are going to the east, place of the rising Sun, the nearest ",
|
||||
"area between Russia and the United States and a large ",
|
||||
"archipelago of countries that unites with Oceania. You know ",
|
||||
"where everything is?"
|
||||
],
|
||||
"paises_africa" : "African countries",
|
||||
"paises_africa_descripcion" : "Africa, where humanity began, nexus with the Middle East, cradle of human civilization. What do you know about there?",
|
||||
"paises_oceania" : "Oceania countries",
|
||||
"paises_oceania_descripcion" : "Land of kangaroos, coals and other animals such as tasmania demins. Place that includes Krakatoa. Do you know where this is?",
|
||||
"paises_america" : "Countries of America",
|
||||
"paises_america_descripcion" : "America is so great that it comprises two continents. See how much you know about both...",
|
||||
"paises_norteamerica" : "North American countries",
|
||||
"paises_norteamerica_descripcion" : "Hollywood's homeland, with Silicon Valley's computer power and Grizzly bears. What do you know about there?",
|
||||
"paises_centroamerica" : "Countries of Central America",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Did you know that there are many micro-countrymen in that area?",
|
||||
"paises_suramerica" : "South American countries",
|
||||
"paises_suramerica_descripcion" : "So far the Incas arrived, along the south Magellan crossed for the peaceful, place of great jungles and jungles. What do you know about South America?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +84,12 @@
|
||||
"mapeate_mapas_iniciando" : "The map management module of the 'Mapeatea' application is initiating...",
|
||||
"mapeate_mapas_ya_iniciado" : "The map management module of the 'Mapeatea' application was already initiated.",
|
||||
"mapeate_mapas_iniciado" : "The map management module of the 'Mapeatea' application started completely.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Select a target",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Please select a target on the map.",
|
||||
"mapeate_mapas_ganaste" : "You won!",
|
||||
"mapeate_mapas_ganaste_texto" : "Congratulations!",
|
||||
"mapeate_mapas_mal_elegido" : "You chose wrong...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "The selected element is not correct. Please try another item selected.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +119,8 @@
|
||||
"mapa_texto" : "Sampling screen of the game map.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Departure from the console.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "Here you can see how long the game is taking you.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "Elementos pequeños",
|
||||
"nivel_2" : "Elementos a nivel de puntos",
|
||||
"nivel_3" : "Subelementos",
|
||||
"aceptar" : "Aceptar",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Países del mundo",
|
||||
"paises_mundo_descripcion" : "A ver si aciertas dónde están estos países del mundo que se te proponen en este reto...",
|
||||
"paises_europa" : "Países de Europa",
|
||||
"paises_europa_descripcion" : "Aquí tienes todos los países del viejo continente. A ver cuánto sabes de él...",
|
||||
"paises_asia" : "Países de Asia",
|
||||
"paises_asia_descripcion" : "Nos vamos a oriente, lugar del Sol Naciente, la zona más próxima entre Rusia y Estados Unidos y un gran archipélago de países que une con Oceanía. ¿Sabes donde está todo?",
|
||||
"paises_africa" : "Países de África",
|
||||
"paises_africa_descripcion" : "África, lugar donde empezó la humanidad, nexo con Oriente Medio, cuna de la civilización humana. ¿Qué sabes de allí?",
|
||||
"paises_oceania" : "Países de Oceanía",
|
||||
"paises_oceania_descripcion" : "Tierra de canguros, coalas y otros animales como los deminios de tasmania. Lugar que comprende al Krakatoa. ¿Sabes dónde está todo esto?",
|
||||
"paises_america" : "Países de América",
|
||||
"paises_america_descripcion" : "América es tan grande que comprende dos continentes. A ver cuánto sabes de ambos...",
|
||||
"paises_norteamerica" : "Países de Norteamérica",
|
||||
"paises_norteamerica_descripcion" : "La tierra natal de Hollywood, con el poder informático de Silicon Valley y los osos Grizzly. ¿Qué sabes de allí?",
|
||||
"paises_centroamerica" : "Países de Centro América",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. ¿Sabías que hay muchos micropaíses en esa zona?",
|
||||
"paises_suramerica" : "Países de Suramérica",
|
||||
"paises_suramerica_descripcion" : "Hasta aquí llegaron los Incas, por el sur cruzó Magallanes para el pacífico, lugar de grandes junglas y selvas. ¿Qué sabes de Suramérica?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "El módulo de gestión de mapas de la aplicación 'Mapeatea' se está iniciando...",
|
||||
"mapeate_mapas_ya_iniciado" : "El módulo de gestión de mapas de la aplicación 'Mapeatea' ya estaba iniciado.",
|
||||
"mapeate_mapas_iniciado" : "El módulo de gestión de mapas de la aplicación 'Mapeatea' se inició completamente.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Seleccione un objetivo",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Por favor, seleccione un objetivo en el mapa.",
|
||||
"mapeate_mapas_ganaste" : "¡Has ganado!",
|
||||
"mapeate_mapas_ganaste_texto" : "¡Enhorabuena! ¡Has completado la partida!",
|
||||
"mapeate_mapas_mal_elegido" : "Has elegido mal...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "El elemento seleccionado no es correcto. Por favor, intente seleccionado otro elemento.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "Pantalla de muestreo del mapa de juego.",
|
||||
"consola" : "Consola",
|
||||
"consola_texto" : "Salida de la consola.",
|
||||
"temporizador" : "Cronómetro",
|
||||
"temporizador_texto" : "Aquí podrás ver el tiempo que te está llevando la partida.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Malgrandaj eroj",
|
||||
"nivel_2" : "Elementoj sur punktonivelo",
|
||||
"nivel_3" : "Subelementoj",
|
||||
"aceptar" : "Akcepto",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Landoj de la mondo",
|
||||
"paises_mundo_descripcion" : "Vidu ĉu vi povas vidi kie tiuj landoj de la mondo estas kiuj estas proponitaj al vi en tiu defio.",
|
||||
"paises_europa" : "Landoj de Eŭropo",
|
||||
"paises_europa_descripcion" : "Jen ĉiuj landoj de la malnova kontinento. Vidu kiom vi scias pri li...",
|
||||
"paises_asia" : "Aziaj landoj",
|
||||
"paises_asia_descripcion" : [
|
||||
"Ni iras en la orienton, lokon de la altiĝanta suno, la plej ",
|
||||
"proksima areo inter Rusio kaj Usono kaj granda arkipelago de ",
|
||||
"landoj kiuj kuniĝas kun Oceanio. Ĉu vi scias kie ĉio estas?"
|
||||
],
|
||||
"paises_africa" : "Afrikaj landoj",
|
||||
"paises_africa_descripcion" : "Afriko, kie la homaro komenciĝis, interplektas kun la Proksima Oriento, lulilo da homa civilizo. Kion vi scias tie?",
|
||||
"paises_oceania" : "Oceaniaj landoj",
|
||||
"paises_oceania_descripcion" : "Tero de kangarooj, karboj kaj aliaj bestoj kiel ekzemple tasmaniaj demin'oj. Loko kiu inkludas Krakatoa. Ĉu vi scias kie tio estas?",
|
||||
"paises_america" : "Landoj de Ameriko",
|
||||
"paises_america_descripcion" : "Usono estas tiel granda ke ĝi konsistas el du kontinentoj. Vidu kiom vi scias pri ambaŭ...",
|
||||
"paises_norteamerica" : "Nordamerikaj landoj",
|
||||
"paises_norteamerica_descripcion" : "La patrujo de Holivudo, kun la komputilpotenco kaj Grizursoj de Silicon Valley. Kion vi scias tie?",
|
||||
"paises_centroamerica" : "Landoj de Centrameriko",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de Los Mallas, Los Incas y los Aztecas. Ĉu vi scias, ke ekzistas multaj mikrolandanoj en tiu regiono?",
|
||||
"paises_suramerica" : "Sudamerikaj landoj",
|
||||
"paises_suramerica_descripcion" : "Ĝis nun la inkaoj alvenis, laŭ la suda Magellan krucis por la paca, loko de grandaj ĝangaloj kaj ĝangaloj. Kion vi scias pri Sudameriko?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "La mapa administradmodulo de la 'Mapeatea ' aplikaĵo iniciatas ...",
|
||||
"mapeate_mapas_ya_iniciado" : "La mapadministra modulo de la 'Mapeatea ' aplikaĵo jam estis iniciatita.",
|
||||
"mapeate_mapas_iniciado" : "La mapadministra modulo de la 'Mapeatea ' aplikaĵo estis tute komencita.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Elektu celon",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Bonvolu elekti celon sur la mapo.",
|
||||
"mapeate_mapas_ganaste" : "Vi venkis!",
|
||||
"mapeate_mapas_ganaste_texto" : "Gratulon!",
|
||||
"mapeate_mapas_mal_elegido" : "Vi elektis malĝuste...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "La elektita elemento ne estas ĝusta. Bonvolu provi alian objekton elektita.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Sampling-ekrano de la ludmapo.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Foriro de la konzolo.",
|
||||
"temporizador" : "Kronometro",
|
||||
"temporizador_texto" : "Ĉi tie vi povas vidi kiom longe la ludo prenas vin.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "آیتم های کوچک",
|
||||
"nivel_2" : "عناصر در سطح نقطه",
|
||||
"nivel_3" : "Subelement",
|
||||
"aceptar" : "پذیرش",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "کشورهای جهان",
|
||||
"paises_mundo_descripcion" : "ببینید آیا می توانید ببینید که این کشورها در این چالش به شما پیشنهاد شده اند.",
|
||||
"paises_europa" : "کشورهای اروپایی",
|
||||
"paises_europa_descripcion" : "در اینجا همه کشورهای قاره قدیمی هستند. ببینید چقدر درباره او می دانید...",
|
||||
"paises_asia" : "کشورهای آسیایی",
|
||||
"paises_asia_descripcion" : [
|
||||
"ما به شرق، محل طلوع خورشید، نزدیک ترین منطقه بین روسیه و ایالات ",
|
||||
"متحده و مجمع الجزایر بزرگ کشورهایی که با اقیانوسیه متحد می شوند، ",
|
||||
"می رویم. می دانید همه چیز کجاست؟?"
|
||||
],
|
||||
"paises_africa" : "کشورهای آفریقایی",
|
||||
"paises_africa_descripcion" : "آفریقا، جایی که بشریت شروع شد، با خاورمیانه، گهواره تمدن بشری، ارتباط برقرار کرد. در مورد آن چه می دانید؟?",
|
||||
"paises_oceania" : "کشورهای اقیانوسیه",
|
||||
"paises_oceania_descripcion" : "سرزمین کانگوروها، زغال سنگ ها و سایر حیوانات مانند تامانیا دمین جایی که شامل Krakatoa است. آیا می دانید این کجاست؟?",
|
||||
"paises_america" : "کشورهای آمریکا",
|
||||
"paises_america_descripcion" : "آمریکا آنقدر بزرگ است که دو قاره را تشکیل می دهد. ببینید چقدر در مورد هر دو ...",
|
||||
"paises_norteamerica" : "کشورهای آمریکای شمالی",
|
||||
"paises_norteamerica_descripcion" : "خانه هالیوود، با قدرت کامپیوتر سیلیکون و خرس های گریزلی در مورد آن چه می دانید؟?",
|
||||
"paises_centroamerica" : "کشورهای آمریکای مرکزی",
|
||||
"paises_centroamerica_descripcion" : "Centro América، de los Mallas، Incas y los آزتکas. آیا می دانید که بسیاری از کشورهای کوچک در این منطقه وجود دارند؟?",
|
||||
"paises_suramerica" : "کشورهای آمریکای جنوبی",
|
||||
"paises_suramerica_descripcion" : "تا آنجا که اینکاها وارد شدند، در امتداد جنوب ماژلان برای مکان صلح آمیز و جنگل های بزرگ عبور کرد. درباره آمریکای جنوبی چه می دانید؟?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "ماژول مدیریت نقشه از برنامه 'Mapeatea آغاز شده است ...",
|
||||
"mapeate_mapas_ya_iniciado" : "ماژول مدیریت نقشه برنامه 'Mapeatea در حال حاضر آغاز شده است.",
|
||||
"mapeate_mapas_iniciado" : "ماژول مدیریت نقشه برنامه MKVBPa به طور کامل آغاز شد.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "انتخاب یک هدف",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "یک هدف را روی نقشه انتخاب کنید.",
|
||||
"mapeate_mapas_ganaste" : "تو برنده شدی!",
|
||||
"mapeate_mapas_ganaste_texto" : "تبریک می گویم!",
|
||||
"mapeate_mapas_mal_elegido" : "اشتباه می کنی...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "عنصر انتخاب شده درست نیست. لطفا یک مورد دیگر را انتخاب کنید.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "صفحه نمایش نقشه بازی.",
|
||||
"consola" : "کنسول Console",
|
||||
"consola_texto" : "از کنسول خارج شوید.",
|
||||
"temporizador" : "زمان سنج",
|
||||
"temporizador_texto" : "در اینجا می توانید ببینید که بازی چقدر طول می کشد.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,36 @@
|
||||
"nivel_1" : "Petits articles",
|
||||
"nivel_2" : "Éléments au niveau des points",
|
||||
"nivel_3" : "Sous-éléments",
|
||||
"aceptar" : "Accepte",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Pays du monde",
|
||||
"paises_mundo_descripcion" : "Voyez si vous pouvez voir où ces pays du monde vous sont proposés dans ce défi...",
|
||||
"paises_europa" : "Pays d ' Europe",
|
||||
"paises_europa_descripcion" : "Voici tous les pays du vieux continent. Voyez combien vous savez sur lui...",
|
||||
"paises_asia" : "Pays d ' Asie",
|
||||
"paises_asia_descripcion" : [
|
||||
"Nous allons à l'est, lieu du soleil levant, la zone la plus ",
|
||||
"proche entre la Russie et les États-Unis et un grand archipel de ",
|
||||
"pays qui s'unissent avec l'Océanie. Tu sais où tout est ?"
|
||||
],
|
||||
"paises_africa" : "Pays africains",
|
||||
"paises_africa_descripcion" : "L'Afrique, où l'humanité a commencé, nexus avec le Moyen-Orient, berceau de la civilisation humaine. Que sais-tu de là ?",
|
||||
"paises_oceania" : "Océanie countries",
|
||||
"paises_oceania_descripcion" : "Terre de kangaroos, charbons et autres animaux tels que les tasmania demins. Place qui comprend Krakatoa. Tu sais où c'est ?",
|
||||
"paises_america" : "Pays d ' Amérique",
|
||||
"paises_america_descripcion" : "L'Amérique est si grande qu'elle comprend deux continents. Voyez combien vous savez sur les deux...",
|
||||
"paises_norteamerica" : "Pays d ' Amérique du Nord",
|
||||
"paises_norteamerica_descripcion" : "La patrie d'Hollywood, avec la puissance informatique de la Silicon Valley et les ours Grizzly. Que sais-tu de là ?",
|
||||
"paises_centroamerica" : "Pays d ' Amérique centrale",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Saviez-vous qu'il y a beaucoup de micro-pays dans ce domaine ?",
|
||||
"paises_suramerica" : "Pays d ' Amérique du Sud",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"Jusqu'à présent les Incas sont arrivés, le long du Magellan du ",
|
||||
"sud a traversé pour le lieu paisible, de grandes jungles et de ",
|
||||
"jungles. Que sais-tu de l'Amérique du Sud ?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +87,12 @@
|
||||
"mapeate_mapas_iniciando" : "Le module de gestion de la carte de l'application 'Mapeatea commence...",
|
||||
"mapeate_mapas_ya_iniciado" : "Le module de gestion de la carte de l ' application 'Mapeatea a déjà été lancé.",
|
||||
"mapeate_mapas_iniciado" : "Le module de gestion de la carte de l'application 'Mapeatea ' a complètement commencé.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Sélectionnez une cible",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Veuillez sélectionner une cible sur la carte.",
|
||||
"mapeate_mapas_ganaste" : "Tu as gagné !",
|
||||
"mapeate_mapas_ganaste_texto" : "Félicitations !",
|
||||
"mapeate_mapas_mal_elegido" : "Tu as mal choisi...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "L'élément sélectionné n'est pas correct. Veuillez essayer un autre article sélectionné.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +122,8 @@
|
||||
"mapa_texto" : "Ecran d'échantillonnage de la carte de jeu.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Départ de la console.",
|
||||
"temporizador" : "Chronomètre",
|
||||
"temporizador_texto" : "Ici vous pouvez voir combien de temps le jeu vous prend.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,37 @@
|
||||
"nivel_1" : "Míreanna Beaga",
|
||||
"nivel_2" : "Eilimintí ag leibhéal pointe",
|
||||
"nivel_3" : "Fodhlíthe",
|
||||
"aceptar" : "Glacadh le",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Tíortha an domhain",
|
||||
"paises_mundo_descripcion" : "Féach más féidir leat a fheiceáil i gcás ina bhfuil na tíortha ar fud an domhain atá beartaithe a thabhairt duit sa dúshlán seo...",
|
||||
"paises_europa" : "Tíortha na hEorpa",
|
||||
"paises_europa_descripcion" : "Seo na tíortha ar fad ar an mór-roinn d'aois. Féach cé mhéad a fhios agat mar gheall air...",
|
||||
"paises_asia" : "Tíortha na háise",
|
||||
"paises_asia_descripcion" : [
|
||||
"Táimid ag dul go dtí an taobh thoir, áit an Sun ag ardú, an ",
|
||||
"limistéar is gaire idir an Rúis agus na Stáit Aontaithe agus ",
|
||||
"oileánra mór na dtíortha a aontaíonn le Oceania. Tá a fhios agat ",
|
||||
"cá bhfuil gach rud?"
|
||||
],
|
||||
"paises_africa" : "Afracach eile",
|
||||
"paises_africa_descripcion" : "An Afraic, nuair a thosaigh daonnacht, nexus leis an Meánoirthear, cliabhán sibhialtachta daonna. Cad a fhios agat faoi ann?",
|
||||
"paises_oceania" : "Aigéine tíortha",
|
||||
"paises_oceania_descripcion" : "Talamh kangaroos, guaillí agus ainmhithe eile ar nós demins tasmania. Áit go n-áirítear Krakatoa. An bhfuil a fhios agat cá bhfuil sé seo?",
|
||||
"paises_america" : "Tíortha Mheiriceá",
|
||||
"paises_america_descripcion" : "Tá Meiriceá chomh mór go gcuimsíonn sé dhá mhór-roinn. Féach cé mhéad a fhios agat faoin dá...",
|
||||
"paises_norteamerica" : "Tíortha Mheiriceá Thuaidh",
|
||||
"paises_norteamerica_descripcion" : "Baile fearainn Hollywood, le cumhacht ríomhaireachta Silicon Valley agus Bears Grizzly. Cad a fhios agat faoi ann?",
|
||||
"paises_centroamerica" : "Tíortha Mheiriceá Láir",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, i láthair na huaire Aztecas. An raibh a fhios agat go bhfuil go leor micrea-thíortha sa réimse sin?",
|
||||
"paises_suramerica" : "Tíortha Mheiriceá Theas",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"Go dtí seo tháinig an Incas, ar feadh an deisceart Magellan ",
|
||||
"thrasnaigh le haghaidh an síochánta, áit jungles mór agus ",
|
||||
"jungles. Cad a fhios agat faoi Mheiriceá Theas?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +88,12 @@
|
||||
"mapeate_mapas_iniciando" : "Tá an modúl bainistíochta léarscáil an 'Mapeatea ' iarratas ag tosú...",
|
||||
"mapeate_mapas_ya_iniciado" : "Cuireadh tús leis an modúl bainistíochta léarscáil den iarratas 'Mapeatea ' cheana féin.",
|
||||
"mapeate_mapas_iniciado" : "Thosaigh an modúl bainistíochta léarscáil den iarratas 'Mapeatea ' go hiomlán.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Roghnaigh sprioc",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Roghnaigh sprioc ar an léarscáil.",
|
||||
"mapeate_mapas_ganaste" : "Bhuaigh tú!",
|
||||
"mapeate_mapas_ganaste_texto" : "Comhghairdeas!",
|
||||
"mapeate_mapas_mal_elegido" : "Roghnaigh tú mícheart...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Níl an eilimint roghnaithe ceart. Déan iarracht mír eile a roghnú.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +123,8 @@
|
||||
"mapa_texto" : "Sampling scáileán ar an léarscáil cluiche.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Imeacht ón gconsól.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "Anseo is féidir leat a fheiceáil cé chomh fada is atá an cluiche ag cur tú.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "작은 품목",
|
||||
"nivel_2" : "점 수준에 요소",
|
||||
"nivel_3" : "관련 기사",
|
||||
"aceptar" : "이름 *",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "세계의 국가",
|
||||
"paises_mundo_descripcion" : "이 나라가 이 도전에 당신을 제안한다는 것을 볼 수 있다면 ...",
|
||||
"paises_europa" : "유럽 국가",
|
||||
"paises_europa_descripcion" : "다음은 모든 대륙의 국가입니다. 그에 대해 알고 얼마나 많이 ...",
|
||||
"paises_asia" : "아시아 국가",
|
||||
"paises_asia_descripcion" : "우리는 동쪽으로 가고있다, 상승 태양의 장소, 러시아와 미국 사이의 가장 가까운 지역과 Oceania와 결합하는 국가의 큰 고고학. 모든 것을 알고 있습니까?",
|
||||
"paises_africa" : "아프리카 국가",
|
||||
"paises_africa_descripcion" : "아프리카, 인류가 시작되는 곳, 중동, 인간 문명의 크래들. 당신은 무엇을 알고 있습니까?",
|
||||
"paises_oceania" : "Oceania 국가",
|
||||
"paises_oceania_descripcion" : "Kangaroos, 석탄 및 기타 동물의 토지 tasmania demins. Krakatoa를 포함하는 장소. 당신은 어디입니까?",
|
||||
"paises_america" : "미국 국가",
|
||||
"paises_america_descripcion" : "미국은 두 대륙을 구성하는 것이 좋습니다. 모두에 대해 얼마나 알고 있는지 알아보십시오 ...",
|
||||
"paises_norteamerica" : "북미 국가",
|
||||
"paises_norteamerica_descripcion" : "할리우드의 고향, 실리콘 밸리의 컴퓨터 힘과 Grizzly 곰. 당신은 무엇을 알고 있습니까?",
|
||||
"paises_centroamerica" : "미국의 국가",
|
||||
"paises_centroamerica_descripcion" : "Centro América, 드 로스 Mallas, 로스 Incas y los Aztecas. 그 지역에 많은 마이크로 나라가 있다는 것을 알고 계십니까?",
|
||||
"paises_suramerica" : "남아메리카 국가",
|
||||
"paises_suramerica_descripcion" : "지금까지 Incas가 도착했습니다. 남쪽 Magellan은 평화롭고 큰 정글과 정글의 장소를 교차했습니다. 당신은 남아메리카에 대해 알고 있습니까?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea 애플리케이션의 맵 관리 모듈이 시작되었습니다 ...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea의 맵 관리 모듈은 이미 시작되었습니다.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea의 맵 관리 모듈은 완전히 시작되었습니다.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "선택하기",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "지도에서 대상을 선택하십시오.",
|
||||
"mapeate_mapas_ganaste" : "수상!",
|
||||
"mapeate_mapas_ganaste_texto" : "아름다움!",
|
||||
"mapeate_mapas_mal_elegido" : "당신은 잘못 선택 ...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "선택된 요소는 정확하지 않습니다. 다른 항목을 선택해 주세요.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "게임 맵의 샘플링 화면.",
|
||||
"consola" : "관련 기사",
|
||||
"consola_texto" : "콘솔에서 출발.",
|
||||
"temporizador" : "공급 업체",
|
||||
"temporizador_texto" : "여기 당신은 얼마나 오래 걸릴 수 있습니다.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "छोटी वस्तुओं",
|
||||
"nivel_2" : "बिंदु स्तर पर तत्व",
|
||||
"nivel_3" : "नियम",
|
||||
"aceptar" : "स्वीकार करना",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "दुनिया के देशों",
|
||||
"paises_mundo_descripcion" : "देखें कि क्या आप देख सकते हैं कि दुनिया के ये देश इस चुनौती में आपको प्रस्तावित हैं।.",
|
||||
"paises_europa" : "यूरोप",
|
||||
"paises_europa_descripcion" : "यहाँ पुराने महाद्वीप के सभी देश हैं। क्या आप जानते हैं.",
|
||||
"paises_asia" : "एशियाई देश",
|
||||
"paises_asia_descripcion" : [
|
||||
"हम पूर्व में जा रहे हैं, बढ़ती सूर्य की जगह, रूस और संयुक्त ",
|
||||
"राज्य अमेरिका के बीच निकटतम क्षेत्र और ओशिनिया के साथ एकजुट ",
|
||||
"देशों के एक बड़े द्वीपसमूह। आप जानते हैं कि सब कुछ कहाँ है?"
|
||||
],
|
||||
"paises_africa" : "अफ्रीकी देश",
|
||||
"paises_africa_descripcion" : "अफ्रीका, जहां मानवता शुरू हुई, मध्य पूर्व के साथ नेक्सस, मानव सभ्यता का पालना। क्या आप जानते हैं?",
|
||||
"paises_oceania" : "ओशिनिया देश",
|
||||
"paises_oceania_descripcion" : "Kangaroos, कोयले और अन्य जानवरों जैसे tasmania demins की भूमि। स्थान जिसमें क्राकाटोआ शामिल है। क्या आप जानते हैं कि यह कहाँ है?",
|
||||
"paises_america" : "अमेरिका",
|
||||
"paises_america_descripcion" : "अमेरिका इतना महान है कि इसमें दो महाद्वीप शामिल हैं। क्या आप जानते हैं.",
|
||||
"paises_norteamerica" : "उत्तर अमेरिकी देश",
|
||||
"paises_norteamerica_descripcion" : "हॉलीवुड की होमलैंड, सिलिकॉन वैली की कंप्यूटर पावर और ग्रीसी भालू के साथ। क्या आप जानते हैं?",
|
||||
"paises_centroamerica" : "मध्य अमेरिका",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. क्या आप जानते हैं कि उस क्षेत्र में कई माइक्रो-कंट्रीमैन हैं?",
|
||||
"paises_suramerica" : "दक्षिण अमेरिकी देश",
|
||||
"paises_suramerica_descripcion" : "अब तक इंकास पहुंचे, दक्षिण मैगलन के साथ महान जंगलों और जंगलों के शांतिपूर्ण, जगह के लिए पार हो गया। आप दक्षिण अमेरिका के बारे में क्या जानते हैं?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea के अनुप्रयोग का नक्शा प्रबंधन मॉड्यूल शुरू हो रहा है ...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea' अनुप्रयोग का नक्शा प्रबंधन मॉड्यूल पहले से ही शुरू किया गया था।.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea' अनुप्रयोग मानचित्र प्रबंधन मॉड्यूल पूरी तरह से शुरू किया गया था।.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "लक्ष्य चुनें",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "कृपया मानचित्र पर एक लक्ष्य का चयन करें।.",
|
||||
"mapeate_mapas_ganaste" : "आपने जीता!",
|
||||
"mapeate_mapas_ganaste_texto" : "बधाई!",
|
||||
"mapeate_mapas_mal_elegido" : "आपने गलत चुना...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "चयनित तत्व सही नहीं है। कृपया किसी अन्य आइटम का चयन करें।.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "खेल के नक्शे की सैम्पलिंग स्क्रीन।.",
|
||||
"consola" : "कंसोल",
|
||||
"consola_texto" : "कंसोल से प्रस्थान।.",
|
||||
"temporizador" : "क्रोनोमीटर",
|
||||
"temporizador_texto" : "यहां आप देख सकते हैं कि कितने समय तक गेम आपको ले रहा है।.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,33 @@
|
||||
"nivel_1" : "Artikel",
|
||||
"nivel_2" : "Elemen pada tingkat titik",
|
||||
"nivel_3" : "Login",
|
||||
"aceptar" : "Sitemap",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Negara-negara dunia",
|
||||
"paises_mundo_descripcion" : "Lihat apakah Anda dapat melihat di mana negara-negara dunia ini diusulkan kepada Anda dalam tantangan ini...",
|
||||
"paises_europa" : "Negara-negara Eropa",
|
||||
"paises_europa_descripcion" : "Berikut adalah semua negara benua lama. Lihat berapa banyak yang Anda tahu tentang dia ...",
|
||||
"paises_asia" : "Negara-negara Asia",
|
||||
"paises_asia_descripcion" : [
|
||||
"Kami pergi ke timur, tempat matahari terbit, daerah terdekat ",
|
||||
"antara Rusia dan Amerika Serikat dan kepulauan besar ",
|
||||
"negara-negara yang bersatu dengan Oceania. Anda tahu di mana ",
|
||||
"semuanya?"
|
||||
],
|
||||
"paises_africa" : "Afrika",
|
||||
"paises_africa_descripcion" : "Afrika, di mana kemanusiaan dimulai, nexus dengan Timur Tengah, cradle peradaban manusia. Apa yang Anda ketahui?",
|
||||
"paises_oceania" : "Indonesia",
|
||||
"paises_oceania_descripcion" : "Lahan kangaroos, batu bara dan hewan lainnya seperti demins ladang. Krakatoa Apakah Anda tahu di mana ini?",
|
||||
"paises_america" : "Negara Amerika",
|
||||
"paises_america_descripcion" : "Amerika sangat bagus sehingga terdiri dari dua benua. Lihat berapa banyak yang Anda tahu tentang kedua...",
|
||||
"paises_norteamerica" : "Negara Amerika Utara",
|
||||
"paises_norteamerica_descripcion" : "Rumah Hollywood, dengan daya komputer Silicon Valley dan beruang Grizzly. Apa yang Anda ketahui?",
|
||||
"paises_centroamerica" : "Negara Amerika Tengah",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Tahukah Anda bahwa ada banyak micro-countrymen di daerah itu?",
|
||||
"paises_suramerica" : "Negara Amerika Selatan",
|
||||
"paises_suramerica_descripcion" : "Sejauh ini Incas tiba, di sepanjang Magellan selatan menyeberang untuk hutan dan hutan yang damai. Apa yang Anda ketahui tentang Amerika Selatan?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +84,12 @@
|
||||
"mapeate_mapas_iniciando" : "Modul manajemen peta dari aplikasi 'Mapeatea adalah awal...",
|
||||
"mapeate_mapas_ya_iniciado" : "Modul manajemen peta aplikasi 'Mapeatea sudah dimulai.",
|
||||
"mapeate_mapas_iniciado" : "Modul manajemen peta dari aplikasi 'Mapeatea dimulai sepenuhnya.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Pilih target",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Silakan pilih target di peta.",
|
||||
"mapeate_mapas_ganaste" : "Login!",
|
||||
"mapeate_mapas_ganaste_texto" : "Login!",
|
||||
"mapeate_mapas_mal_elegido" : "Anda memilih salah ...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Elemen yang dipilih tidak benar. Silakan coba item lain yang dipilih.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +119,8 @@
|
||||
"mapa_texto" : "Sampling layar peta permainan.",
|
||||
"consola" : "Login",
|
||||
"consola_texto" : "Keberangkatan dari konsol.",
|
||||
"temporizador" : "Login",
|
||||
"temporizador_texto" : "Di sini Anda dapat melihat berapa lama permainan mengambil Anda. Meme it.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Piccoli articoli",
|
||||
"nivel_2" : "Elementi a livello di punto",
|
||||
"nivel_3" : "Subelementi",
|
||||
"aceptar" : "Accettare",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Paesi del mondo",
|
||||
"paises_mundo_descripcion" : "Vedi se riesci a vedere dove sono questi paesi del mondo che ti vengono proposti in questa sfida...",
|
||||
"paises_europa" : "Paesi d'Europa",
|
||||
"paises_europa_descripcion" : "Ecco tutti i paesi del vecchio continente. Vedi quanto sai di lui...",
|
||||
"paises_asia" : "Paesi dell'Asia",
|
||||
"paises_asia_descripcion" : [
|
||||
"Stiamo andando a est, luogo del Sol Levante, la zona più vicina ",
|
||||
"tra Russia e Stati Uniti e un grande arcipelago di paesi che si ",
|
||||
"uniscono con Oceania. Sai dov'e' tutto?"
|
||||
],
|
||||
"paises_africa" : "Paesi africani",
|
||||
"paises_africa_descripcion" : "Africa, dove l'umanità ha cominciato, nexus con il Medio Oriente, culla della civiltà umana. Cosa sai di lì?",
|
||||
"paises_oceania" : "Paesi dell'Oceania",
|
||||
"paises_oceania_descripcion" : "Terreno di canguro, carboni e altri animali come tasmania demins. Luogo che comprende Krakatoa. Sai dov'e'?",
|
||||
"paises_america" : "Paesi dell'America",
|
||||
"paises_america_descripcion" : "L'America è così grande che comprende due continenti. Vedi quanto sai di entrambi...",
|
||||
"paises_norteamerica" : "Paesi del Nord America",
|
||||
"paises_norteamerica_descripcion" : "La patria di Hollywood, con il potere del computer di Silicon Valley e gli orsi Grizzly. Cosa sai di lì?",
|
||||
"paises_centroamerica" : "Paesi dell'America centrale",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Sapevi che ci sono molti micro-paesi in quella zona?",
|
||||
"paises_suramerica" : "Paesi del Sud America",
|
||||
"paises_suramerica_descripcion" : "Finora gli Inca arrivarono, lungo il Magellano sud attraversarono per la pace, luogo di grandi giungle e giungle. Cosa sai del Sud America?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "Il modulo di gestione della mappa dell'applicazione 'Mapeatea sta iniziando...",
|
||||
"mapeate_mapas_ya_iniciado" : "Il modulo di gestione della mappa dell'applicazione 'Mapeatea' è stato già avviato.",
|
||||
"mapeate_mapas_iniciado" : "Il modulo di gestione della mappa dell'applicazione 'Mapeatea' è iniziato completamente.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Seleziona un obiettivo",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Si prega di selezionare un obiettivo sulla mappa.",
|
||||
"mapeate_mapas_ganaste" : "Hai vinto!",
|
||||
"mapeate_mapas_ganaste_texto" : "Congratulazioni!",
|
||||
"mapeate_mapas_mal_elegido" : "Hai scelto male...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "L'elemento selezionato non è corretto. Si prega di provare un altro elemento selezionato.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Schermo di campionamento della mappa di gioco.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Partenza dalla console.",
|
||||
"temporizador" : "Cronometro",
|
||||
"temporizador_texto" : "Qui si può vedere quanto tempo il gioco sta prendendo voi.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "פריטים קטנים",
|
||||
"nivel_2" : "יסודות ברמת נקודה",
|
||||
"nivel_3" : "המונחים",
|
||||
"aceptar" : "קבלה",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "מדינות העולם",
|
||||
"paises_mundo_descripcion" : "אם אתה יכול לראות איפה מדינות העולם האלה מוצעות לך לאתגר הזה.",
|
||||
"paises_europa" : "מדינות אירופה",
|
||||
"paises_europa_descripcion" : "הנה כל מדינות היבשת הישנה. תראו כמה אתם יודעים עליו...",
|
||||
"paises_asia" : "מדינות אסיה",
|
||||
"paises_asia_descripcion" : "אנחנו הולכים מזרחה, מקום השמש העולה, האזור הקרוב ביותר בין רוסיה וארצות הברית וקשת גדולה של מדינות שמאחדות עם אוקיאניה. אתה יודע איפה הכל?",
|
||||
"paises_africa" : "מדינות אפריקה",
|
||||
"paises_africa_descripcion" : "אפריקה, בה החלה האנושות, נוקסוס עם המזרח התיכון, מחוסמת הציוויליזציה האנושית. מה אתם יודעים שם?",
|
||||
"paises_oceania" : "מדינות אוקיאניה",
|
||||
"paises_oceania_descripcion" : "ארץ קנגורו, פחם ובעלי חיים אחרים כגון טמסמניה. המקום הכולל את קרקוב. אתה יודע איפה זה?",
|
||||
"paises_america" : "מדינות אמריקה",
|
||||
"paises_america_descripcion" : "אמריקה כל כך גדולה שהיא כוללת שתי יבשות. תראו כמה אתם יודעים על שניהם...",
|
||||
"paises_norteamerica" : "מדינות צפון אמריקה",
|
||||
"paises_norteamerica_descripcion" : "מולדתה של הוליווד, עם כוח המחשב של עמק הסיליקון ונושאי גריזל. מה אתם יודעים שם?",
|
||||
"paises_centroamerica" : "מדינות מרכז אמריקה",
|
||||
"paises_centroamerica_descripcion" : "מרכז América, de los Mallas, los Incas y los Aztecas. האם ידעתם שיש הרבה מיקרו-מדינה באזור?",
|
||||
"paises_suramerica" : "מדינות דרום אמריקה",
|
||||
"paises_suramerica_descripcion" : "עד כה הגיע האינקה, לאורך המגדה הדרומית חצה למען השלום, מקום הג'ונגלים הגדולים וג'ונגלים. מה אתם יודעים על דרום אמריקה?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "מודול ניהול יישומים של 'Mapeate של 'Mapeate הושק...",
|
||||
"mapeate_mapas_ya_iniciado" : "מודול ניהול המפה של אפליקציית 'MapeateA' כבר התחיל.",
|
||||
"mapeate_mapas_iniciado" : "מודול ניהול מפת יישומים של MKVXCa' החל לחלוטין.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "בחר מטרה",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "אנא בחרו מטרה על המפה.",
|
||||
"mapeate_mapas_ganaste" : "ניצחת!",
|
||||
"mapeate_mapas_ganaste_texto" : "ברכות!",
|
||||
"mapeate_mapas_mal_elegido" : "בחרת לא נכון...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "היסוד שנבחר אינו נכון. אנא נסה פריט אחר שנבחר.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "מסך של מפת המשחק.",
|
||||
"consola" : "הקונסולה",
|
||||
"consola_texto" : "יציאה מהקונסולה.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "כאן תוכלו לראות כמה זמן המשחק לוקח אתכם.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,33 @@
|
||||
"nivel_1" : "Kis tárgyak",
|
||||
"nivel_2" : "Elemek pontszinten",
|
||||
"nivel_3" : "Subelements",
|
||||
"aceptar" : "Elfogadás",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "A világ országai",
|
||||
"paises_mundo_descripcion" : "Lásd, hogy lásd, hol vannak a világ ezen országai, melyeket erre a kihívásra javasolnak...",
|
||||
"paises_europa" : "Európa országai",
|
||||
"paises_europa_descripcion" : "Itt vannak a régi kontinens összes országa. Nézd meg, mennyit tudsz róla...",
|
||||
"paises_asia" : "Ázsiai országok",
|
||||
"paises_asia_descripcion" : [
|
||||
"Keletre megyünk, a felemelkedő Nap helyére, Oroszország és az ",
|
||||
"Egyesült Államok közötti legközelebbi területre, valamint az ",
|
||||
"Óceániával egyesülő országok nagy archipelagójára. Tudod, hol ",
|
||||
"van minden?"
|
||||
],
|
||||
"paises_africa" : "Afrikai országok",
|
||||
"paises_africa_descripcion" : "Afrika, ahol az emberiség elkezdődött, nexus a Közel-Keleten, az emberi civilizáció bölcsője. Mit tudsz itt?",
|
||||
"paises_oceania" : "Óceánia országok",
|
||||
"paises_oceania_descripcion" : "Kangaroosz földje, szén és egyéb állatok, például tasmania meghatározza. Hely, amely magában foglalja Krakatoa. Tudod, hol van ez?",
|
||||
"paises_america" : "Amerika országai",
|
||||
"paises_america_descripcion" : "Amerika olyan nagy, hogy két kontinensből áll. Lásd, hogy mennyire tudsz mindkettőről...",
|
||||
"paises_norteamerica" : "Észak-Amerika országai",
|
||||
"paises_norteamerica_descripcion" : "Hollywood hazája, a Szilícium-völgy számítógépes erejével és Grizzly medvékkel. Mit tudsz itt?",
|
||||
"paises_centroamerica" : "Közép-Amerika országai",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de Los Mallas, Los Incas y los Aztecas. Tudtad, hogy számos mikro-ország van ezen a területen?",
|
||||
"paises_suramerica" : "Dél-Amerika országai",
|
||||
"paises_suramerica_descripcion" : "Eddig az Incas megérkezett, a dél-magellán mentén átkelt a nagy dzsungelek és dzsungelek békés helyére. Mit tudsz Dél-Amerikáról?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +84,12 @@
|
||||
"mapeate_mapas_iniciando" : "Az 'Mapeatea alkalmazás térképkezelő modulja kezdeményezik...",
|
||||
"mapeate_mapas_ya_iniciado" : "Az 'Mapeatea pályázati térképkezelő modulját már elindították.",
|
||||
"mapeate_mapas_iniciado" : "Az 'Mapeatea alkalmazás térképkezelő modulja teljesen elindult.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Válasszon célt",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Kérjük, válasszon ki egy célt a térképen.",
|
||||
"mapeate_mapas_ganaste" : "Ön nyert!",
|
||||
"mapeate_mapas_ganaste_texto" : "Gratulálok!",
|
||||
"mapeate_mapas_mal_elegido" : "Rosszul választottad...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "A kiválasztott elem nem helyes. Kérjük, próbálja ki a kiválasztott elemet.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +119,8 @@
|
||||
"mapa_texto" : "Sampling képernyője a játék térkép.",
|
||||
"consola" : "Konzol",
|
||||
"consola_texto" : "Távozás a konzolból.",
|
||||
"temporizador" : "Chronométer",
|
||||
"temporizador_texto" : "Itt láthatja, hogy mennyi ideig tart a játék.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,37 @@
|
||||
"nivel_1" : "Kleine items",
|
||||
"nivel_2" : "Elementen op punt niveau",
|
||||
"nivel_3" : "Vertaling:",
|
||||
"aceptar" : "Accepteren",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Vertaling:",
|
||||
"paises_mundo_descripcion" : "Kijk of je kunt zien waar deze landen van de wereld zijn die je worden voorgesteld in deze uitdaging...",
|
||||
"paises_europa" : "Vertaling:",
|
||||
"paises_europa_descripcion" : "Hier zijn alle landen van het oude continent. Kijk hoeveel je over hem weet...",
|
||||
"paises_asia" : "Aziatische landen",
|
||||
"paises_asia_descripcion" : [
|
||||
"We gaan naar het oosten, plaats van de opkomende zon, het ",
|
||||
"dichtstbijzijnde gebied tussen Rusland en de Verenigde Staten en ",
|
||||
"een grote archipel van landen die verenigd worden met Oceania. ",
|
||||
"Weet je waar alles is?"
|
||||
],
|
||||
"paises_africa" : "Afrikaanse landen",
|
||||
"paises_africa_descripcion" : "Afrika, waar de mensheid begon, nexus met het Midden-Oosten, wieg van de menselijke beschaving. Wat weet jij daarvan?",
|
||||
"paises_oceania" : "Oceanië land",
|
||||
"paises_oceania_descripcion" : "Land van kangoeroes, kolen en andere dieren zoals tasmania demins. Inclusief Krakatoa. Weet je waar dit is?",
|
||||
"paises_america" : "Vertaling:",
|
||||
"paises_america_descripcion" : "Amerika is zo geweldig dat het twee continenten comprimeert. Kijk hoeveel je weet over beide...",
|
||||
"paises_norteamerica" : "Noord-Amerikaanse land",
|
||||
"paises_norteamerica_descripcion" : "Hollywood's thuisland, met Silicon Valley's computerkracht en Grizzly beren. Wat weet jij daarvan?",
|
||||
"paises_centroamerica" : "Vertaling:",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, Los Incas, verlies Aztecas. Wist je dat er veel micro-countrymen in dat gebied zijn?",
|
||||
"paises_suramerica" : "Zuid-Amerikaanse land",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"Tot nu toe kwamen de Incas, langs de zuidelijke Magellan ",
|
||||
"gekruist voor de vreedzame, plaats van grote jungles en jungles. ",
|
||||
"Wat weet je over Zuid-Amerika?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +88,12 @@
|
||||
"mapeate_mapas_iniciando" : "De kaartbeheersingsmodule van de MKVNVMLa-aanvraag begint...",
|
||||
"mapeate_mapas_ya_iniciado" : "De 'Mapeatea kaart management module was al gestart.",
|
||||
"mapeate_mapas_iniciado" : "De kaartmanagement module van de 'Mapeatea aanvraag begon volledig.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Verkoop een doelwit",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Kies een doel op de kaart.",
|
||||
"mapeate_mapas_ganaste" : "Je hebt gewonnen!",
|
||||
"mapeate_mapas_ganaste_texto" : "Gefeliciteerd!",
|
||||
"mapeate_mapas_mal_elegido" : "Je koos verkeerd...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Het geselecteerde element is niet correct. Probeer een ander item.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +123,8 @@
|
||||
"mapa_texto" : "Sampling scherm van de kaart.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Vertrek van het console.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "Hier kun je zien hoe lang het spel je inneemt.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "小さい項目",
|
||||
"nivel_2" : "ポイントレベルの要素",
|
||||
"nivel_3" : "サブエレメント",
|
||||
"aceptar" : "お問い合わせ",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "世界の国",
|
||||
"paises_mundo_descripcion" : "これらの世界の国がこのチャレンジであなたに提案されている場所を見ることができるかどうかをご覧ください...",
|
||||
"paises_europa" : "ヨーロッパ諸国",
|
||||
"paises_europa_descripcion" : "古い大陸のすべての国がここにあります。 彼について知っているどのくらいを参照してください。...",
|
||||
"paises_asia" : "アジア諸国",
|
||||
"paises_asia_descripcion" : "我々は東に行く、上昇する太陽の場所、ロシアと米国の間の最も近いエリア、そしてオセアニアと結合する国の大規模な考古学者。 どこにあるか知っていますか?",
|
||||
"paises_africa" : "アフリカ諸国",
|
||||
"paises_africa_descripcion" : "人類が始まったアフリカ、中東のネクサス、人間の文明の揺れ。 お問い合わせ?",
|
||||
"paises_oceania" : "オセアニア諸国",
|
||||
"paises_oceania_descripcion" : "タスマニアなどのカンガルー、石炭、その他の動物の土地。 クラカトアを含む場所。 ここがどこですか?",
|
||||
"paises_america" : "アメリカ国",
|
||||
"paises_america_descripcion" : "アメリカは、それが2つの大陸で構成されているので、とても素晴らしいです。 両方について知っているどのくらいを参照してください。.",
|
||||
"paises_norteamerica" : "北米諸国",
|
||||
"paises_norteamerica_descripcion" : "ハリウッドのホームランド、シリコンバレーのコンピューターパワーとグリズリーベア。 お問い合わせ?",
|
||||
"paises_centroamerica" : "中央アメリカ国",
|
||||
"paises_centroamerica_descripcion" : "セントロ・アメリカ、デロス・マカラス、ロス・インカス・イ・ロス・アステラス。 そのエリアにマイクロカントリーマンが数多くあることをご存知ですか?",
|
||||
"paises_suramerica" : "南米諸国",
|
||||
"paises_suramerica_descripcion" : "ここまでインパスが到着しました, 平和のために交差南マゼランに沿って, 偉大なジャングルとジャングルの場所. 南米についてご存知ですか?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea'アプリケーションのマップ管理モジュールが始まります...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeateaのアプリケーションマップ管理モジュールは既に開始されました。.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeateaのアプリケーションマップ管理モジュールが本格始動しました。.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "ターゲットを選択",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "地図上で対象を選択して下さい。.",
|
||||
"mapeate_mapas_ganaste" : "優勝!",
|
||||
"mapeate_mapas_ganaste_texto" : "おめでとうございます!",
|
||||
"mapeate_mapas_mal_elegido" : "あなたは間違っている...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "選択した要素は正しくありません。 別の項目を選んで下さい。.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "ゲームマップのサンプリング画面。.",
|
||||
"consola" : "コンソール",
|
||||
"consola_texto" : "コンソールから出発します。.",
|
||||
"temporizador" : "クロノメーター",
|
||||
"temporizador_texto" : "ここでは、ゲームがどのくらいの時間を服用しているかを見ることができます。.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,33 @@
|
||||
"nivel_1" : "Małe przedmioty",
|
||||
"nivel_2" : "Elementy na poziomie punktowym",
|
||||
"nivel_3" : "Subelement",
|
||||
"aceptar" : "Akcept",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Countries of the world (ang.)",
|
||||
"paises_mundo_descripcion" : "Jeśli zobaczysz, gdzie te kraje światowe są proponowane w tej sprawie..",
|
||||
"paises_europa" : "Państwa Europy",
|
||||
"paises_europa_descripcion" : "Wszystkie kraje starego kontynentu. Jak bardzo znasz o nim..",
|
||||
"paises_asia" : "Kraje azjatyckie",
|
||||
"paises_asia_descripcion" : [
|
||||
"Znajdują się na wschód, miejsce powstania Słońca, najbliższego ",
|
||||
"obszaru między Rosją a Stanami Zjednoczonymi i dużym ",
|
||||
"archipelagiem krajów, które zjednoczą się z Oceanią. Wiem, gdzie ",
|
||||
"wszystko jest?"
|
||||
],
|
||||
"paises_africa" : "Kraj Afryki",
|
||||
"paises_africa_descripcion" : "Afryka, gdzie ludzkość zaczęła się, neksus z Bliskim Wschodzie, kolebką cywilizacji. Co wiesz o tym?",
|
||||
"paises_oceania" : "Kraje Oceania",
|
||||
"paises_oceania_descripcion" : "Krainy kangurów, węgla i innych zwierząt, takich jak tasmania demins. Miejsce to obejmuje Krakatoa. Czy wiesz gdzie jest?",
|
||||
"paises_america" : "Hrabstwa Ameryki",
|
||||
"paises_america_descripcion" : "Ameryka jest tak duża, że składa się z dwóch kontynentów. Jak bardzo wiesz obojga...",
|
||||
"paises_norteamerica" : "Kraje Ameryki Północnej",
|
||||
"paises_norteamerica_descripcion" : "Hollywood's homeland, Silicon Valley's computer power and Grizzly bear (ang.). Co wiesz o tym?",
|
||||
"paises_centroamerica" : "Kraje Ameryki Środkowej",
|
||||
"paises_centroamerica_descripcion" : "Centro America, de los Mallas, los Incas y los Aztecas. Czy wiesz, że w tym rejonie znajduje się wiele mikrobiorników?",
|
||||
"paises_suramerica" : "Kraje Ameryki Południowej",
|
||||
"paises_suramerica_descripcion" : "Do tej pory Incas, wzdłuż południowego Magellana, przeszedł w spokojne miejsce wielkich dżungli i dżungli. Co wiadomo o Ameryce Południowej?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +84,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea (ang.). Początek modułu zarządzania mapami Ya..",
|
||||
"mapeate_mapas_ya_iniciado" : "Założono już moduł zarządzania mapami 'Mapeatea.",
|
||||
"mapeate_mapas_iniciado" : "Zapoczątkowany został moduł zarządzania mapą aplikacji 'Mapeatea.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Wybrany cel",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Wybiera cel na mapie.",
|
||||
"mapeate_mapas_ganaste" : "Ty wygrasz!",
|
||||
"mapeate_mapas_ganaste_texto" : "Kongratulacje!",
|
||||
"mapeate_mapas_mal_elegido" : "Wybraliśmy błędy..",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Wybrany element nie jest poprawny. Proszę wybrać inną osobę.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +119,8 @@
|
||||
"mapa_texto" : "Zdjęcie ekranu mapy gry.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Odcinek od konsoli.",
|
||||
"temporizador" : "Chronometr",
|
||||
"temporizador_texto" : "W ten sposób można zobaczyć jak długość gry.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Artigos pequenos",
|
||||
"nivel_2" : "Elementos ao nível do ponto",
|
||||
"nivel_3" : "Subelementos",
|
||||
"aceptar" : "Aceitar",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Países do mundo",
|
||||
"paises_mundo_descripcion" : "Veja se você pode ver onde esses países do mundo são propostos a você neste desafio...",
|
||||
"paises_europa" : "Países da Europa",
|
||||
"paises_europa_descripcion" : "Aqui estão todos os países do velho continente. Vê o quanto sabes sobre ele...",
|
||||
"paises_asia" : "Países da Ásia",
|
||||
"paises_asia_descripcion" : [
|
||||
"Vamos para o leste, lugar do Sol nascente, a área mais próxima ",
|
||||
"entre a Rússia e os Estados Unidos e um grande arquipélago de ",
|
||||
"países que se unem com a Oceania. Sabes onde está tudo?"
|
||||
],
|
||||
"paises_africa" : "Países africanos",
|
||||
"paises_africa_descripcion" : "África, onde a humanidade começou, nexus com o Oriente Médio, berço da civilização humana. O que sabes sobre isso?",
|
||||
"paises_oceania" : "Países da Ásia",
|
||||
"paises_oceania_descripcion" : "Terra de cangurus, carvão e outros animais como tasmânia demins. Lugar que inclui Krakatoa. Sabe onde é isto?",
|
||||
"paises_america" : "Países da América",
|
||||
"paises_america_descripcion" : "A América é tão grande que compreende dois continentes. Vê o quanto sabes sobre ambos...",
|
||||
"paises_norteamerica" : "Países da América do Norte",
|
||||
"paises_norteamerica_descripcion" : "A terra natal de Hollywood, com o poder de computador do Vale do Silício e os ursos Grizzly. O que sabes sobre isso?",
|
||||
"paises_centroamerica" : "Países da América Central",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Sabias que há muitos micro-país naquela área?",
|
||||
"paises_suramerica" : "Países da América do Sul",
|
||||
"paises_suramerica_descripcion" : "Até agora os Incas chegaram, ao longo do sul Magalhães cruzaram para o pacífico, lugar de grandes selvas e selvas. O que sabe sobre a América do Sul?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "O módulo de gerenciamento de mapas do aplicativo 'Mapeatea' está começando a...",
|
||||
"mapeate_mapas_ya_iniciado" : "O módulo de gerenciamento de mapas de aplicação 'Mapeatea já foi iniciado.",
|
||||
"mapeate_mapas_iniciado" : "O módulo de gerenciamento de mapas de aplicação 'Mapeatea' foi completamente iniciado.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Selecione um alvo",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Por favor, selecione um alvo no mapa.",
|
||||
"mapeate_mapas_ganaste" : "Ganhaste!",
|
||||
"mapeate_mapas_ganaste_texto" : "Parabéns!",
|
||||
"mapeate_mapas_mal_elegido" : "Escolheste mal...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "O elemento selecionado não está correto. Por favor, tente outro item selecionado.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Tela de amostragem do mapa do jogo.",
|
||||
"consola" : "Console",
|
||||
"consola_texto" : "Saída do console.",
|
||||
"temporizador" : "Cronómetro",
|
||||
"temporizador_texto" : "Aqui você pode ver quanto tempo o jogo está levando você.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Небольшие предметы",
|
||||
"nivel_2" : "Элементы на уровне точек",
|
||||
"nivel_3" : "Помещения",
|
||||
"aceptar" : "Принимать",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Страны мира",
|
||||
"paises_mundo_descripcion" : "Посмотрите, можете ли вы увидеть, где эти страны мира предлагаются вам в этом вызове...",
|
||||
"paises_europa" : "Страны Европы",
|
||||
"paises_europa_descripcion" : "Вот все страны старого континента. Видишь, сколько ты о нем знаешь...",
|
||||
"paises_asia" : "Страны Азии",
|
||||
"paises_asia_descripcion" : [
|
||||
"Мы идем на восток, место восходящего Солнца, ближайшая ",
|
||||
"территория между Россией и США и большой архипелаг стран, ",
|
||||
"объединяющихся с Океанией. Ты знаешь, где все?"
|
||||
],
|
||||
"paises_africa" : "Африканские страны",
|
||||
"paises_africa_descripcion" : "Африка, где начиналось человечество, связалась с Ближним Востоком, колыбелью человеческой цивилизации. Что ты там знаешь?",
|
||||
"paises_oceania" : "Страны Океании",
|
||||
"paises_oceania_descripcion" : "Земля кенгуру, уголь и другие животные, такие как tasmania demins. Место, которое включает Кракатоа. Ты знаешь, где это?",
|
||||
"paises_america" : "Страны Америки",
|
||||
"paises_america_descripcion" : "Америка настолько велика, что состоит из двух континентов. Посмотрите, сколько вы знаете об обоих...",
|
||||
"paises_norteamerica" : "Страны Северной Америки",
|
||||
"paises_norteamerica_descripcion" : "Родина Голливуда, с компьютерной мощью Силиконовой долины и медведями Гризли. Что ты там знаешь?",
|
||||
"paises_centroamerica" : "Страны Центральной Америки",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Знаете ли вы, что в этой области много микространиц?",
|
||||
"paises_suramerica" : "Страны Южной Америки",
|
||||
"paises_suramerica_descripcion" : "До сих пор прибыли инки, вдоль южного Магеллана пересеклись для мирного, места великих джунглей и джунглей. Что вы знаете о Южной Америке?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "В настоящее время запущен модуль управления прикладными картами 'Mapeatea...",
|
||||
"mapeate_mapas_ya_iniciado" : "Уже создан модуль управления картой приложения 'Mapeatea.",
|
||||
"mapeate_mapas_iniciado" : "Модуль управления картой приложения 'MapeateA начался полностью.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Выберите цель",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Пожалуйста, выберите цель на карте.",
|
||||
"mapeate_mapas_ganaste" : "Вы победили!",
|
||||
"mapeate_mapas_ganaste_texto" : "Поздравляю!",
|
||||
"mapeate_mapas_mal_elegido" : "Ты выбрал неправильно...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Выбранный элемент неправильный. Пожалуйста, попробуйте еще один пункт.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Отбор экрана игровой карты.",
|
||||
"consola" : "Консоль",
|
||||
"consola_texto" : "Вылет из консоли.",
|
||||
"temporizador" : "Хронометр",
|
||||
"temporizador_texto" : "Здесь вы можете увидеть, как долго игра забирает вас.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Malé položky",
|
||||
"nivel_2" : "Prvky na úrovni bodu",
|
||||
"nivel_3" : "Aktuality",
|
||||
"aceptar" : "Súhlasím",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Krajiny sveta",
|
||||
"paises_mundo_descripcion" : "Pozrite sa, či môžete vidieť, kde sú tieto krajiny sveta, ktoré sú navrhnuté pre vás v tejto výzve...",
|
||||
"paises_europa" : "Krajiny Európy",
|
||||
"paises_europa_descripcion" : "Tu sú všetky krajiny starého kontinentu. Pozrite sa, koľko viete o ňom...",
|
||||
"paises_asia" : "Ázijské krajiny",
|
||||
"paises_asia_descripcion" : [
|
||||
"Ideme na východ, miesto stúpania slnka, najbližšia oblasť medzi ",
|
||||
"Ruskom a Spojenými štátmi a veľkým oblúkom krajín, ktoré spája s ",
|
||||
"oceánia. Viete, kde je všetko?"
|
||||
],
|
||||
"paises_africa" : "Africké krajiny",
|
||||
"paises_africa_descripcion" : "Afrika, kde ľudstvo začalo, nexus so Stredným Východom, kolískou ľudskej civilizácie. Čo o tom viete?",
|
||||
"paises_oceania" : "Oceánia krajiny",
|
||||
"paises_oceania_descripcion" : "Pozemok kangaroos, uhlia a iných zvierat, ako sú tasmania demins. Miesto, ktoré zahŕňa Krakatoa. Viete, kde to je?",
|
||||
"paises_america" : "Krajiny Ameriky",
|
||||
"paises_america_descripcion" : "Amerika je taká skvelá, že obsahuje dva kontinenty. Pozrite sa, koľko viete o oboch...",
|
||||
"paises_norteamerica" : "Severoamerické krajiny",
|
||||
"paises_norteamerica_descripcion" : "Hollywoodská vlasť, s počítačom Silicon Valley a Grizzly nesie. Čo o tom viete?",
|
||||
"paises_centroamerica" : "Krajiny Strednej Ameriky",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Vedeli ste, že v tejto oblasti existuje veľa mikro-countrymen?",
|
||||
"paises_suramerica" : "Juhoamerické krajiny",
|
||||
"paises_suramerica_descripcion" : "Doteraz Incas prišiel, pozdĺž juhu Magellan prekročil pre pokoj, miesto veľkých džungle a džungle. Čo viete o Južnej Amerike?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "Mapový riadiaci modul aplikácie 'Mapeatea sa začína ...",
|
||||
"mapeate_mapas_ya_iniciado" : "Modul 'Mapeatea sa už začal.",
|
||||
"mapeate_mapas_iniciado" : "Mapový riadiaci modul aplikácie 'Mapeatea' začal úplne.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Vyberte cieľ",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Vyberte cieľ na mape.",
|
||||
"mapeate_mapas_ganaste" : "Vyhrali ste!",
|
||||
"mapeate_mapas_ganaste_texto" : "Gratulujeme!",
|
||||
"mapeate_mapas_mal_elegido" : "Vybrali ste si zle...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Vybraný prvok nie je správny. Prosím, skúste ďalšie položky vybrané.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Vzorová obrazovka mapy hry.",
|
||||
"consola" : "Všeobecný",
|
||||
"consola_texto" : "Odchod z konzoly.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "Tu môžete vidieť, ako dlho bude hra trvať vás.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Pieniä esineitä",
|
||||
"nivel_2" : "Elementit pistetasolla",
|
||||
"nivel_3" : "Sublementit",
|
||||
"aceptar" : "Hyväksytty",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Maailman maat",
|
||||
"paises_mundo_descripcion" : "Katso, jos näet, missä nämä maailman maat ovat sinulle tässä haasteessa.",
|
||||
"paises_europa" : "Euroopan maat",
|
||||
"paises_europa_descripcion" : "Tässä kaikki maanosan maat. Katso, kuinka paljon tiedät hänestä...",
|
||||
"paises_asia" : "Aasian maat",
|
||||
"paises_asia_descripcion" : [
|
||||
"Menemme itään, nousevan auringon paikkaan, lähimpään Venäjän ja ",
|
||||
"Yhdysvaltojen väliseen alueeseen ja suureen saaristoon maista, ",
|
||||
"jotka yhdistävät Oseanian. Tiedätkö missä kaikki on?"
|
||||
],
|
||||
"paises_africa" : "Afrikan maat",
|
||||
"paises_africa_descripcion" : "Afrikka, jossa ihmiskunta alkoi, neksus Lähi-idän kanssa, ihmissivilisaation kehto. Mitä tiedät tuosta?",
|
||||
"paises_oceania" : "Oceanian maat",
|
||||
"paises_oceania_descripcion" : "Kengurojen, hiilien ja muiden eläinten, kuten tasmanian, maa. Sisältää Krakatoa. Tiedätkö missä se on?",
|
||||
"paises_america" : "Amerikan maat",
|
||||
"paises_america_descripcion" : "Yhdysvallat on niin hyvä, että se koostuu kahdesta maanosasta. Katso kuinka paljon tiedät molemmista...",
|
||||
"paises_norteamerica" : "Pohjois-Amerikan maat",
|
||||
"paises_norteamerica_descripcion" : "Hollywoodin kotimaa, jossa on Silicon Valleyn tietokoneteho ja Grizzly-karhut. Mitä tiedät tuosta?",
|
||||
"paises_centroamerica" : "Keski-Amerikan maat",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, Los Incas ja Aztecas. Tiesitkö, että alueella on paljon mikromaita?",
|
||||
"paises_suramerica" : "Etelä-Amerikan maat",
|
||||
"paises_suramerica_descripcion" : "Toistaiseksi inkat saapuivat eteläisen Magellanin varrella rauhalliseen, suurten viidakoiden ja viidakoiden paikkaan. Mitä tiedät Etelä-Amerikasta?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatean 'Mapeate-kartanhallintamoduuli käynnistyy...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea-kartanhallintamoduuli on jo aloitettu.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea-sovelluksen karttahallintamoduuli käynnistyi täysin.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Valitse kohde",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Valitse kohde kartalle.",
|
||||
"mapeate_mapas_ganaste" : "Sinä voitit!",
|
||||
"mapeate_mapas_ganaste_texto" : "Onnittelut!",
|
||||
"mapeate_mapas_mal_elegido" : "Valitsit väärin...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Valittu elementti ei ole oikea. Kokeile toista kohdetta, joka on valittu.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Pelin kartan näytteenotto.",
|
||||
"consola" : "Konsoli",
|
||||
"consola_texto" : "Lähtö konsolista.",
|
||||
"temporizador" : "Kronometriä",
|
||||
"temporizador_texto" : "Tässä näet, kuinka kauan peli kestää.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "Små objekt",
|
||||
"nivel_2" : "Element på punktnivå",
|
||||
"nivel_3" : "Subelement",
|
||||
"aceptar" : "Acceptera",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Länder i världen",
|
||||
"paises_mundo_descripcion" : "Se om du kan se var dessa länder i världen är som föreslås för dig i denna utmaning.",
|
||||
"paises_europa" : "Europas länder",
|
||||
"paises_europa_descripcion" : "Här är alla länder i den gamla kontinenten. Se hur mycket du vet om honom...",
|
||||
"paises_asia" : "Asiatiska länder",
|
||||
"paises_asia_descripcion" : [
|
||||
"Vi kommer österut, platsen för den stigande solen, det närmaste ",
|
||||
"området mellan Ryssland och USA och en stor skärgård av länder ",
|
||||
"som förenas med Oceanien. Vet du var allt är?"
|
||||
],
|
||||
"paises_africa" : "Afrikanska länder",
|
||||
"paises_africa_descripcion" : "Afrika, där mänskligheten började, nexus med Mellanöstern, vagga av mänsklig civilisation. Vad vet du om det?",
|
||||
"paises_oceania" : "Oceanien länder",
|
||||
"paises_oceania_descripcion" : "Land av känguruer, kol och andra djur som tasmanien demins. Plats som inkluderar Krakatoa. Vet du var detta är?",
|
||||
"paises_america" : "Länder i Amerika",
|
||||
"paises_america_descripcion" : "Amerika är så stort att det består av två kontinenter. Se hur mycket du vet om båda...",
|
||||
"paises_norteamerica" : "Nordamerikanska länder",
|
||||
"paises_norteamerica_descripcion" : "Hollywoods hemland, med Silicon Valley datorkraft och Grizzly björnar. Vad vet du om det?",
|
||||
"paises_centroamerica" : "Länder i Centralamerika",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Visste du att det finns många mikroländer i det området?",
|
||||
"paises_suramerica" : "Sydamerikanska länder",
|
||||
"paises_suramerica_descripcion" : "Hittills anlände Incas, längs södra Magellan korsade för lugn, plats för stora djungler och djungler. Vad vet du om Sydamerika?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "Karthanteringsmodulen för 'Mapeatea-applikationen initierar ...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea karthanteringsmodul inleddes redan.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeateas applikationskarthanteringsmodul startades helt.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Välj ett mål",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Välj ett mål på kartan.",
|
||||
"mapeate_mapas_ganaste" : "Du vann!",
|
||||
"mapeate_mapas_ganaste_texto" : "Grattis!",
|
||||
"mapeate_mapas_mal_elegido" : "Du valde fel...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Det valda elementet är inte korrekt. Prova ett annat objekt valt.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "Sampling skärm av spelkartan.",
|
||||
"consola" : "Konsol",
|
||||
"consola_texto" : "Avgång från konsolen.",
|
||||
"temporizador" : "Kronometer",
|
||||
"temporizador_texto" : "Här kan du se hur länge spelet tar dig.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,32 @@
|
||||
"nivel_1" : "รายการขนาดเล็ก",
|
||||
"nivel_2" : "องค์ประกอบที่อยู่ในระดับ",
|
||||
"nivel_3" : "เอกสาร",
|
||||
"aceptar" : "ยอมรับ",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "ประเทศของโลก",
|
||||
"paises_mundo_descripcion" : "ดูถ้าคุณเห็นประเทศเหล่านี้ของโลกที่นําเสนอคุณในความท้าทายนี้ ...",
|
||||
"paises_europa" : "ประเทศยุโรป",
|
||||
"paises_europa_descripcion" : "ที่นี่เป็นประเทศของทวีปเก่า ดูสิ่งที่คุณทราบเกี่ยวกับเขา ...",
|
||||
"paises_asia" : "ประเทศเอเชีย",
|
||||
"paises_asia_descripcion" : [
|
||||
"",
|
||||
"เรามีสถานที่ตะวันออกของดวงอาทิตย์เพิ่มขึ้นระหว่างรัสเซียและสหรัฐอเมริกาและธงขนาดใหญ่ของประเทศของประเทศของประเทศที่มีหน่วยที่มีหน่วยของประเทศที่ใหญ่ที่สุดในโลก ",
|
||||
"คุณรู้ว่าทุกอย่าง?"
|
||||
],
|
||||
"paises_africa" : "ประเทศแอฟริกา",
|
||||
"paises_africa_descripcion" : "แอฟริกาที่เริ่มต้น, nexus กับตะวันออกกลาง, ศาสนาของมนุษย์. คุณรู้ว่าอะไร?",
|
||||
"paises_oceania" : "โอเชียเนีย",
|
||||
"paises_oceania_descripcion" : "ดินแดนของ kangaroos, ถ่านหินและสัตว์อื่น ๆ เช่น ymins สถานที่ที่ประกอบไปด้วย คราโก คุณรู้ว่าเรื่องนี้?",
|
||||
"paises_america" : "ประเทศ",
|
||||
"paises_america_descripcion" : "ทวีปอเมริกามีสองทวีป ดูสิ่งที่คุณรู้ว่าทั้ง ...",
|
||||
"paises_norteamerica" : "ประเทศอเมริกาเหนือ",
|
||||
"paises_norteamerica_descripcion" : "บ้านของฮอลแลนด์, ด้วยพลังงานแสงอาทิตย์และ Grizzly คุณรู้ว่าอะไร?",
|
||||
"paises_centroamerica" : "ประเทศสหรัฐอเมริกา",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los ใน casy คุณรู้ว่ามีทั้งทั้งประเทศ?",
|
||||
"paises_suramerica" : "ประเทศอเมริกา",
|
||||
"paises_suramerica_descripcion" : "ดังนั้นไกลในเดือนกันยายนที่ทางใต้ของ Magellan ข้ามสําหรับสถานที่ที่เงียบสงบและป่า คุณทราบเกี่ยวกับอเมริกาใต้?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +83,12 @@
|
||||
"mapeate_mapas_iniciando" : "โมดูลแผนที่ของ 'Mapeatea เป็นโปรแกรมเริ่มต้น ...",
|
||||
"mapeate_mapas_ya_iniciado" : "โมดูลการจัดการแผนที่ของ 'Mapeatea โปรแกรมนี้เริ่มต้น.",
|
||||
"mapeate_mapas_iniciado" : "โมดูลการจัดการแผนที่ของ 'Mapeatea''.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "เลือกเป้าหมาย",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "เลือกเป้าหมายในแผนที่.",
|
||||
"mapeate_mapas_ganaste" : "คุณ!",
|
||||
"mapeate_mapas_ganaste_texto" : "ขอแสดงความยินดี!",
|
||||
"mapeate_mapas_mal_elegido" : "เลือกผิด ...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "องค์ประกอบที่เลือกไม่แก้ไข โปรดลองรายการอื่น.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +118,8 @@
|
||||
"mapa_texto" : "หน้าจอเกมของแผนที่.",
|
||||
"consola" : "คอนโซล",
|
||||
"consola_texto" : "การเดินทางจากคอนโซล.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "ที่นี่คุณสามารถดูเกมยาว.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -77,11 +77,33 @@
|
||||
"nivel_1" : "Küçük öğeler",
|
||||
"nivel_2" : "Sayı seviyesindeki elementler",
|
||||
"nivel_3" : "Subelements",
|
||||
"aceptar" : "Kabul Kabul Kabul Kabul",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Dünya Ülkeleri",
|
||||
"paises_mundo_descripcion" : "Dünyanın bu ülkelerinin size bu meydan okumada önerdiğini görebilirsiniz...",
|
||||
"paises_europa" : "Avrupa Ülkeleri",
|
||||
"paises_europa_descripcion" : "İşte eski kıtanın tüm ülkeleri. Onun hakkında ne kadar şey biliyorsun...",
|
||||
"paises_asia" : "Asya ülkeleri",
|
||||
"paises_asia_descripcion" : [
|
||||
"Doğuya gidiyoruz, yükselen Güneş’in yeri, Rusya ile Amerika ",
|
||||
"Birleşik Devletleri arasındaki en yakın alan ve Asya ile ",
|
||||
"birleşen ülkelerin büyük bir Archipelago. Her şeyin nerede ",
|
||||
"olduğunu biliyor musunuz?"
|
||||
],
|
||||
"paises_africa" : "Afrika ülkeleri",
|
||||
"paises_africa_descripcion" : "Afrika, insanlığın başladığı yerde, Orta Doğu ile nexus, insan uygarlığının cradle. Orada ne biliyorsunuz?",
|
||||
"paises_oceania" : "Asya ülkeleri",
|
||||
"paises_oceania_descripcion" : "Kangaroos, kömürler ve lezzet deminler gibi diğer hayvanlar. Krakatoa'yı içeren yer. Bunun nerede olduğunu biliyor musunuz?",
|
||||
"paises_america" : "Amerika Birleşik Devletleri",
|
||||
"paises_america_descripcion" : "Amerika o kadar büyük ki iki kıtayı içeriyor. Her ikisi hakkında ne kadar bildiğinizi görün...",
|
||||
"paises_norteamerica" : "Kuzey Amerika ülkeleri",
|
||||
"paises_norteamerica_descripcion" : "Hollywood'un vatanı, Silikon Vadisi'nin bilgisayar gücü ve Grizzly ayılarla. Orada ne biliyorsunuz?",
|
||||
"paises_centroamerica" : "Orta Amerika Ülkeleri",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztekas. Bu alanda birçok mikro ülke olduğunu biliyor muydunuz?",
|
||||
"paises_suramerica" : "Güney Amerika ülkeleri",
|
||||
"paises_suramerica_descripcion" : "Şimdiye kadar Incas geldi, güney Magellan boyunca büyük ormanlar ve ormanlar için barışa geçti. Güney Amerika hakkında ne biliyorsunuz?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -118,6 +140,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea'nin uygulama haritası yönetim modülü başlıyor...",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea'nin uygulama haritası yönetim modülü zaten başlatılmıştır.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea'nun uygulamasının harita yönetimi modülü tamamen başladı.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Bir hedef seçin",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Lütfen haritada bir hedef seçin.",
|
||||
"mapeate_mapas_ganaste" : "kazandın!",
|
||||
"mapeate_mapas_ganaste_texto" : "Tebrikler!",
|
||||
"mapeate_mapas_mal_elegido" : "Yanlış seçtin...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Seçilmiş element doğru değildir. Lütfen seçilmiş başka bir öğe deneyin.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -147,6 +175,8 @@
|
||||
"mapa_texto" : "Oyun haritasının Sampling ekranı.",
|
||||
"consola" : "Konsol Konsol",
|
||||
"consola_texto" : "Konsoldan ayrıl.",
|
||||
"temporizador" : "Chronometer",
|
||||
"temporizador_texto" : "İşte oyunun sizi ne kadar uzun aldığını görebilirsiniz.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,36 @@
|
||||
"nivel_1" : "Маленькі предмети",
|
||||
"nivel_2" : "Елементи на рівні точки",
|
||||
"nivel_3" : "Підтвердження",
|
||||
"aceptar" : "Приват",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "Країни світу",
|
||||
"paises_mundo_descripcion" : "Якщо ви можете побачити, де ці країни світу, які пропонуються вам у цьому викликі...",
|
||||
"paises_europa" : "Країни Європи",
|
||||
"paises_europa_descripcion" : "Ось всі країни старого континенту. Бачити скільки ви знаєте про нього...",
|
||||
"paises_asia" : "Країни Азії",
|
||||
"paises_asia_descripcion" : [
|
||||
"Ми йдемо на схід, місце підйому Сонце, найближча територія між ",
|
||||
"Росією та Сполученими Штатами та великим архіпелагою країн, які ",
|
||||
"об'єднуються з Океанією. Ви знаєте, куди все?"
|
||||
],
|
||||
"paises_africa" : "Країни Африки",
|
||||
"paises_africa_descripcion" : "Африка, де почався людство, нексус з Близьким Сходом, люка людської цивілізації. Що ви знаєте про це?",
|
||||
"paises_oceania" : "Країни Океанії",
|
||||
"paises_oceania_descripcion" : "Земельна ділянка кенгуру, вугілля та інших тварин, таких як tasmania demins. Місце, що включає Кракато. Ви знаєте, де це?",
|
||||
"paises_america" : "Країни Америки",
|
||||
"paises_america_descripcion" : "Америка дуже велика, що вона складається з двох континентів. Дізнайтеся, скільки ви знаєте про ...",
|
||||
"paises_norteamerica" : "Північноамериканські країни",
|
||||
"paises_norteamerica_descripcion" : "Голлівудська Батьківщина, з комп'ютерною потужністю Кремнієва долиною та ведмедями Grizzly. Що ви знаєте про це?",
|
||||
"paises_centroamerica" : "Країни Центральної Америки",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. Чи знаєте ви, що в цій області багато мікро-лічників?",
|
||||
"paises_suramerica" : "Південноамериканські країни",
|
||||
"paises_suramerica_descripcion" : [
|
||||
"На сьогоднішній день Інкас прибув, вздовж південного Магеллана ",
|
||||
"перехрестився на мирний, місце великих джунглів і джунглів. Що ",
|
||||
"ви знаєте про Південна Америка?"
|
||||
],
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +87,12 @@
|
||||
"mapeate_mapas_iniciando" : "Модуль управління картою програми 'Mapeatea починає...",
|
||||
"mapeate_mapas_ya_iniciado" : "Модуль керування картою 'Mapeatea вже ініційований.",
|
||||
"mapeate_mapas_iniciado" : "Модуль управління картою програми 'Mapeatea.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "Виберіть ціль",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "Будь ласка, оберіть ціль на карті.",
|
||||
"mapeate_mapas_ganaste" : "Виграєте!",
|
||||
"mapeate_mapas_ganaste_texto" : "Вітаємо!",
|
||||
"mapeate_mapas_mal_elegido" : "Ви вибрали неправильно...",
|
||||
"mapeate_mapas_mal_elegido_texto" : "Вибраний елемент не правильний. Будь ласка, спробуйте інший пункт вибрано.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +122,8 @@
|
||||
"mapa_texto" : "Sampling екран ігрової карти.",
|
||||
"consola" : "Консоль",
|
||||
"consola_texto" : "Відправлення з консолі.",
|
||||
"temporizador" : "Хронометр",
|
||||
"temporizador_texto" : "Тут ви можете побачити, як довго гра бере вас.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -21,11 +21,28 @@
|
||||
"nivel_1" : "小型项目",
|
||||
"nivel_2" : "点级要素",
|
||||
"nivel_3" : "补贴",
|
||||
"aceptar" : "接受",
|
||||
"Mapeate_comun_end" : null,
|
||||
|
||||
"Mapeate_mapas_start" : null,
|
||||
"paises_mundo" : "世界各国",
|
||||
"paises_mundo_descripcion" : "参看你能否看到,在这一挑战中,向你们提出了世界的这些国家。.",
|
||||
"paises_europa" : "欧洲国家",
|
||||
"paises_europa_descripcion" : "这里是老大陆所有国家。 你们知道他的情况如何.",
|
||||
"paises_asia" : "亚洲国家",
|
||||
"paises_asia_descripcion" : "我们即将到东,太阳不断上升,这是俄罗斯与美国之间最接近的地区,也是与大洋洲团结在一起的国家的大片群岛。 你们知道什么?",
|
||||
"paises_africa" : "非洲国家",
|
||||
"paises_africa_descripcion" : "人类开始的非洲与中东的关系,是人类文明的摇篮。 你们知道什么?",
|
||||
"paises_oceania" : "大洋洲国家",
|
||||
"paises_oceania_descripcion" : "牧场、煤炭和其他动物,如塔斯马尼亚德明。 地点包括克拉卡托亚。 你们是否知道这一点?",
|
||||
"paises_america" : "美利坚合众国",
|
||||
"paises_america_descripcion" : "美国如此庞大,它由两个大陆组成。 参见你们对这两个方面的认识程度。.",
|
||||
"paises_norteamerica" : "北美国家",
|
||||
"paises_norteamerica_descripcion" : "盖莱的家园,斯利科河谷的计算机动力和Grigly有。 你们知道什么?",
|
||||
"paises_centroamerica" : "中美洲国家",
|
||||
"paises_centroamerica_descripcion" : "Centro América, de los Mallas, los Incas y los Aztecas. 你们是否知道这方面有许多微观国家?",
|
||||
"paises_suramerica" : "南美洲国家",
|
||||
"paises_suramerica_descripcion" : "迄今为止,印卡人沿Magellan南部穿过大 j和 j子的和平地点。 你们知道南美洲是什么?",
|
||||
"Mapeate_mapas_end" : null,
|
||||
|
||||
"Mapeate_start" : null,
|
||||
@ -62,6 +79,12 @@
|
||||
"mapeate_mapas_iniciando" : "'Mapeatea的申请地图管理模块正在启动......",
|
||||
"mapeate_mapas_ya_iniciado" : "'Mapeatea'应用地图管理模块已经启动。.",
|
||||
"mapeate_mapas_iniciado" : "'Mapeatea'应用地图管理模块已完全启用。.",
|
||||
"mapeate_mapas_seleccionar_objetivo" : "选择目标",
|
||||
"mapeate_mapas_seleccionar_objetivo_texto" : "请选择地图上的具体目标。.",
|
||||
"mapeate_mapas_ganaste" : "你们!",
|
||||
"mapeate_mapas_ganaste_texto" : "!!",
|
||||
"mapeate_mapas_mal_elegido" : "你选择错误......",
|
||||
"mapeate_mapas_mal_elegido_texto" : "部分内容不正确。 请审判另一个选定的项目。.",
|
||||
"Mapeate_Mapas_end" : null,
|
||||
|
||||
"Mapeate_Mapas_Selector_start" : null,
|
||||
@ -91,6 +114,8 @@
|
||||
"mapa_texto" : "绘制游戏地图。.",
|
||||
"consola" : "青少年",
|
||||
"consola_texto" : "离开青少年。.",
|
||||
"temporizador" : "温度计",
|
||||
"temporizador_texto" : "在这里,你可以看到游戏时间过长。.",
|
||||
"Mapeate_Base_end" : null,
|
||||
|
||||
"Mapeate_Continentes_start" : null,
|
||||
|
@ -10,7 +10,7 @@
|
||||
overflow : hidden;
|
||||
|
||||
&,h1,h2,h3,h4,h5,h6{font-size : 1em;}
|
||||
&,entrada,textarea,button{font-family : $fuente-principal;}
|
||||
&,input,textarea,button{font-family : $fuente-principal;}
|
||||
|
||||
[data-visible=false]{display : none !important;}
|
||||
|
||||
@ -55,6 +55,12 @@
|
||||
}
|
||||
&[disabled]{color : $color-gris;}
|
||||
}}
|
||||
label[for]{
|
||||
padding : 0em .3em;
|
||||
color :$color-delante;
|
||||
border : .1em solid $color-delante;
|
||||
box-shadow : 0em 0em $tamano-curvatura inset $color-gris;
|
||||
}
|
||||
|
||||
[data-icon]::before{
|
||||
margin : 0em .4em;
|
||||
@ -79,10 +85,21 @@
|
||||
|
||||
.grupo{
|
||||
display : table;
|
||||
&>*{display : table-cell;}
|
||||
// &>span{height : 100%;}
|
||||
// &>span{&,input,button,textarea{height : 100%;}}
|
||||
&>*{
|
||||
display : table-cell;
|
||||
box-sizing : border-box;
|
||||
}
|
||||
*{border-radius : 0em;}
|
||||
&>:first-child{&,button,input,textarea{border-radius : $tamano-curvatura 0em 0em $tamano-curvatura;}}
|
||||
&>:last-child{&,button,input,textarea{border-radius : 0em $tamano-curvatura $tamano-curvatura 0em;}}
|
||||
&>:first-child{&,button,input,textarea,label{
|
||||
border-top-left-radius : $tamano-curvatura;
|
||||
border-bottom-left-radius : $tamano-curvatura;
|
||||
}}
|
||||
&>:last-child{&,button,input,textarea,label{
|
||||
border-top-right-radius : $tamano-curvatura;
|
||||
border-bottom-right-radius : $tamano-curvatura;
|
||||
}}
|
||||
}
|
||||
|
||||
.posicionador{
|
||||
@ -117,6 +134,17 @@
|
||||
}
|
||||
}
|
||||
|
||||
.imagen{
|
||||
display : inline-block;
|
||||
span{
|
||||
display : inline-block;
|
||||
width : 100%;
|
||||
height : 100%;
|
||||
background-position : center center;
|
||||
background-size : cover;
|
||||
}
|
||||
}
|
||||
|
||||
header,main,footer{
|
||||
position : absolute;
|
||||
left : 0em;
|
||||
@ -235,7 +263,10 @@
|
||||
overflow : auto;
|
||||
&>ul>li{
|
||||
display : block;
|
||||
position : relative;
|
||||
width : 100%;
|
||||
min-height : 8em;
|
||||
margin : .5em 0em;
|
||||
overflow : hidden;
|
||||
border-radius : 1em;
|
||||
ul{
|
||||
@ -245,19 +276,31 @@
|
||||
}
|
||||
}
|
||||
.imagen{
|
||||
float : left;
|
||||
position : absolute;
|
||||
width : 8em;
|
||||
height : 100%;
|
||||
margin-right : 1em;
|
||||
&+[data-i18n]{
|
||||
opacity : .4;
|
||||
transition-duration : $transicion-salida;
|
||||
transition-property : opacity;
|
||||
&~*{
|
||||
display : block;
|
||||
margin-left : 8.5em;
|
||||
}
|
||||
&+span>span{
|
||||
display : block;
|
||||
margin-bottom : .5em;
|
||||
font-size : 1.3em;
|
||||
font-weight : 900;
|
||||
}
|
||||
}
|
||||
img{
|
||||
width : 8em;
|
||||
height : 8em;
|
||||
li{
|
||||
&:hover .imagen{
|
||||
opacity : 1;
|
||||
transition-duration : $transicion-entrada;
|
||||
}
|
||||
}
|
||||
img{display : none}
|
||||
[data-icon]+[data-i18n]{
|
||||
font-weight : 900;
|
||||
&::after{
|
||||
@ -331,34 +374,9 @@
|
||||
left : 50%;
|
||||
// box-shadow : 0em 0em .4em inset $color-gris;
|
||||
}
|
||||
.puntos,.elemento,.objetivos,.consola{
|
||||
width : 10em;
|
||||
padding : .5em;
|
||||
// margin : 0em;
|
||||
background-color : $color-detras;
|
||||
border : .1em solid $color-gris;
|
||||
border-radius : $tamano-curvatura;
|
||||
box-shadow :
|
||||
0em 0em .4em inset $color-gris,
|
||||
.1em .1em .2em $color-delante;
|
||||
legend{
|
||||
float : left;
|
||||
width : 10em;
|
||||
height : 1.2em;
|
||||
margin : .4em 0em;
|
||||
font-weight : 900;
|
||||
cursor : move;
|
||||
text-wrap : nowrap;
|
||||
text-overflow : ellipsis;
|
||||
overflow : hidden;
|
||||
-webkit-user-select : none;
|
||||
-ms-user-select : none;
|
||||
user-select : none;
|
||||
&+p{
|
||||
display : none;
|
||||
clear : both;
|
||||
}
|
||||
}
|
||||
.puntos,.elemento,.objetivos,.consola,.temporizador{
|
||||
@include ventana(10em);
|
||||
legend{cursor : move;}
|
||||
}
|
||||
.puntos{
|
||||
height : 3.5em;
|
||||
@ -386,7 +404,14 @@
|
||||
font-size : .85em;
|
||||
}
|
||||
}
|
||||
.elemento,.puntos{section{
|
||||
.temporizador{
|
||||
right : 0em;
|
||||
margin-top : 1em;
|
||||
margin-right : 1em;
|
||||
z-index : 60;
|
||||
legend{text-align : right;}
|
||||
}
|
||||
.elemento,.puntos,.temporizador{section{
|
||||
font-weight : 900;
|
||||
text-align : center;
|
||||
}}
|
||||
@ -473,4 +498,47 @@
|
||||
// bottom : 0em;
|
||||
// }
|
||||
|
||||
.dialogo{
|
||||
z-index : 9000;
|
||||
&,.fondo{
|
||||
position : absolute;
|
||||
top : 0em;
|
||||
left : 0em;
|
||||
width : 100%;
|
||||
height : 100%;
|
||||
overflow : hidden;
|
||||
}
|
||||
.fondo{
|
||||
background-color : mix(rgba(0, 0, 0, 0), $color-delante, 20%);
|
||||
z-index : 10;
|
||||
}
|
||||
fieldset{
|
||||
position : absolute;
|
||||
top : 50%;
|
||||
left : 50%;
|
||||
height : 20em;
|
||||
margin-top : -10em;
|
||||
margin-left : -16em;
|
||||
z-index : 20;
|
||||
@include ventana(32em);
|
||||
}
|
||||
section{
|
||||
position : absolute;
|
||||
top : 2em;
|
||||
left : 0em;
|
||||
right : 0em;
|
||||
bottom : 2em;
|
||||
margin : 1em;
|
||||
overflow : auto;
|
||||
}
|
||||
.grupo{
|
||||
position : absolute;
|
||||
bottom : 0em;
|
||||
left : 0em;
|
||||
width : 100%;
|
||||
margin-bottom : .5em;
|
||||
text-align : center;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -21,3 +21,32 @@ $fuente-iconificada : "FA5FS";
|
||||
$transicion-entrada : .2s;
|
||||
$transicion-salida : 1s;
|
||||
$transicion : .5s;
|
||||
|
||||
@mixin ventana($ancho){
|
||||
width : $ancho;
|
||||
padding : .5em;
|
||||
// margin : 0em;
|
||||
background-color : $color-detras;
|
||||
border : .1em solid $color-gris;
|
||||
border-radius : $tamano-curvatura;
|
||||
box-shadow :
|
||||
0em 0em .4em inset $color-gris,
|
||||
.1em .1em .2em $color-delante;
|
||||
legend{
|
||||
float : left;
|
||||
width : $ancho;
|
||||
height : 1.2em;
|
||||
margin : .4em 0em;
|
||||
font-weight : 900;
|
||||
text-wrap : nowrap;
|
||||
text-overflow : ellipsis;
|
||||
overflow : hidden;
|
||||
-webkit-user-select : none;
|
||||
-ms-user-select : none;
|
||||
user-select : none;
|
||||
&+p{
|
||||
display : none;
|
||||
clear : both;
|
||||
}
|
||||
}
|
||||
}
|
@ -9,7 +9,7 @@
|
||||
overflow: hidden; }
|
||||
.mapeate, .mapeate h1, .mapeate h2, .mapeate h3, .mapeate h4, .mapeate h5, .mapeate h6 {
|
||||
font-size: 1em; }
|
||||
.mapeate, .mapeate entrada, .mapeate textarea, .mapeate button {
|
||||
.mapeate, .mapeate input, .mapeate textarea, .mapeate button {
|
||||
font-family: "Roboto"; }
|
||||
.mapeate [data-visible=false] {
|
||||
display: none !important; }
|
||||
@ -51,6 +51,11 @@
|
||||
transition-duration: 0.2s; }
|
||||
.mapeate a[href]:not([rol=button], button, input, textarea, path, g, circle)[disabled], .mapeate [onclick]:not([rol=button], button, input, textarea, path, g, circle)[disabled], .mapeate [onmousedown]:not([rol=button], button, input, textarea, path, g, circle)[disabled], .mapeate [onmouseup]:not([rol=button], button, input, textarea, path, g, circle)[disabled] {
|
||||
color: #898989; }
|
||||
.mapeate label[for] {
|
||||
padding: 0em .3em;
|
||||
color: #222;
|
||||
border: 0.1em solid #222;
|
||||
box-shadow: 0em 0em 0.4em inset #898989; }
|
||||
.mapeate [data-icon]::before {
|
||||
margin: 0em .4em;
|
||||
font-family: "FA5FS";
|
||||
@ -68,13 +73,16 @@
|
||||
.mapeate .grupo {
|
||||
display: table; }
|
||||
.mapeate .grupo > * {
|
||||
display: table-cell; }
|
||||
display: table-cell;
|
||||
box-sizing: border-box; }
|
||||
.mapeate .grupo * {
|
||||
border-radius: 0em; }
|
||||
.mapeate .grupo > :first-child, .mapeate .grupo > :first-child button, .mapeate .grupo > :first-child input, .mapeate .grupo > :first-child textarea {
|
||||
border-radius: 0.4em 0em 0em 0.4em; }
|
||||
.mapeate .grupo > :last-child, .mapeate .grupo > :last-child button, .mapeate .grupo > :last-child input, .mapeate .grupo > :last-child textarea {
|
||||
border-radius: 0em 0.4em 0.4em 0em; }
|
||||
.mapeate .grupo > :first-child, .mapeate .grupo > :first-child button, .mapeate .grupo > :first-child input, .mapeate .grupo > :first-child textarea, .mapeate .grupo > :first-child label {
|
||||
border-top-left-radius: 0.4em;
|
||||
border-bottom-left-radius: 0.4em; }
|
||||
.mapeate .grupo > :last-child, .mapeate .grupo > :last-child button, .mapeate .grupo > :last-child input, .mapeate .grupo > :last-child textarea, .mapeate .grupo > :last-child label {
|
||||
border-top-right-radius: 0.4em;
|
||||
border-bottom-right-radius: 0.4em; }
|
||||
.mapeate .posicionador {
|
||||
display: none;
|
||||
position: absolute;
|
||||
@ -101,6 +109,14 @@
|
||||
.mapeate .posicionador .abajo-derecha {
|
||||
margin-top: 1em;
|
||||
border-radius: 0em .2em 1em .2em; }
|
||||
.mapeate .imagen {
|
||||
display: inline-block; }
|
||||
.mapeate .imagen span {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-position: center center;
|
||||
background-size: cover; }
|
||||
.mapeate header, .mapeate main, .mapeate footer {
|
||||
position: absolute;
|
||||
left: 0em;
|
||||
@ -201,23 +217,36 @@
|
||||
overflow: auto; }
|
||||
.mapeate .menu-mapas nav > ul > li {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-height: 8em;
|
||||
margin: .5em 0em;
|
||||
overflow: hidden;
|
||||
border-radius: 1em; }
|
||||
.mapeate .menu-mapas nav > ul > li ul {
|
||||
display: inline-block;
|
||||
width: 25em; }
|
||||
.mapeate .menu-mapas .imagen {
|
||||
float: left;
|
||||
margin-right: 1em; }
|
||||
.mapeate .menu-mapas .imagen + [data-i18n] {
|
||||
position: absolute;
|
||||
width: 8em;
|
||||
height: 100%;
|
||||
margin-right: 1em;
|
||||
opacity: .4;
|
||||
transition-duration: 1s;
|
||||
transition-property: opacity; }
|
||||
.mapeate .menu-mapas .imagen ~ * {
|
||||
display: block;
|
||||
margin-left: 8.5em; }
|
||||
.mapeate .menu-mapas .imagen + span > span {
|
||||
display: block;
|
||||
margin-bottom: .5em;
|
||||
font-size: 1.3em;
|
||||
font-weight: 900; }
|
||||
.mapeate .menu-mapas li:hover .imagen {
|
||||
opacity: 1;
|
||||
transition-duration: 0.2s; }
|
||||
.mapeate .menu-mapas img {
|
||||
width: 8em;
|
||||
height: 8em; }
|
||||
display: none; }
|
||||
.mapeate .menu-mapas [data-icon] + [data-i18n] {
|
||||
font-weight: 900; }
|
||||
.mapeate .menu-mapas [data-icon] + [data-i18n]::after {
|
||||
@ -283,29 +312,30 @@
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%; }
|
||||
.mapeate .juego .puntos, .mapeate .juego .elemento, .mapeate .juego .objetivos, .mapeate .juego .consola {
|
||||
.mapeate .juego .puntos, .mapeate .juego .elemento, .mapeate .juego .objetivos, .mapeate .juego .consola, .mapeate .juego .temporizador {
|
||||
width: 10em;
|
||||
padding: .5em;
|
||||
background-color: #EFEFEF;
|
||||
border: 0.1em solid #898989;
|
||||
border-radius: 0.4em;
|
||||
box-shadow: 0em 0em 0.4em inset #898989, 0.1em 0.1em 0.2em #222; }
|
||||
.mapeate .juego .puntos legend, .mapeate .juego .elemento legend, .mapeate .juego .objetivos legend, .mapeate .juego .consola legend {
|
||||
.mapeate .juego .puntos legend, .mapeate .juego .elemento legend, .mapeate .juego .objetivos legend, .mapeate .juego .consola legend, .mapeate .juego .temporizador legend {
|
||||
float: left;
|
||||
width: 10em;
|
||||
height: 1.2em;
|
||||
margin: .4em 0em;
|
||||
font-weight: 900;
|
||||
cursor: move;
|
||||
text-wrap: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none; }
|
||||
.mapeate .juego .puntos legend + p, .mapeate .juego .elemento legend + p, .mapeate .juego .objetivos legend + p, .mapeate .juego .consola legend + p {
|
||||
.mapeate .juego .puntos legend + p, .mapeate .juego .elemento legend + p, .mapeate .juego .objetivos legend + p, .mapeate .juego .consola legend + p, .mapeate .juego .temporizador legend + p {
|
||||
display: none;
|
||||
clear: both; }
|
||||
.mapeate .juego .puntos legend, .mapeate .juego .elemento legend, .mapeate .juego .objetivos legend, .mapeate .juego .consola legend, .mapeate .juego .temporizador legend {
|
||||
cursor: move; }
|
||||
.mapeate .juego .puntos {
|
||||
height: 3.5em;
|
||||
margin: 1em .5em;
|
||||
@ -328,7 +358,14 @@
|
||||
color: #EFEFEF;
|
||||
font-family: "Roboto Mono";
|
||||
font-size: .85em; }
|
||||
.mapeate .juego .elemento section, .mapeate .juego .puntos section {
|
||||
.mapeate .juego .temporizador {
|
||||
right: 0em;
|
||||
margin-top: 1em;
|
||||
margin-right: 1em;
|
||||
z-index: 60; }
|
||||
.mapeate .juego .temporizador legend {
|
||||
text-align: right; }
|
||||
.mapeate .juego .elemento section, .mapeate .juego .puntos section, .mapeate .juego .temporizador section {
|
||||
font-weight: 900;
|
||||
text-align: center; }
|
||||
.mapeate .juego .objetivos {
|
||||
@ -382,6 +419,62 @@
|
||||
content: "["; }
|
||||
.mapeate .niveles .elementos > span + span:after {
|
||||
content: "]"; }
|
||||
.mapeate .dialogo {
|
||||
z-index: 9000; }
|
||||
.mapeate .dialogo, .mapeate .dialogo .fondo {
|
||||
position: absolute;
|
||||
top: 0em;
|
||||
left: 0em;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden; }
|
||||
.mapeate .dialogo .fondo {
|
||||
background-color: rgba(34, 34, 34, 0.8);
|
||||
z-index: 10; }
|
||||
.mapeate .dialogo fieldset {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
height: 20em;
|
||||
margin-top: -10em;
|
||||
margin-left: -16em;
|
||||
z-index: 20;
|
||||
width: 32em;
|
||||
padding: .5em;
|
||||
background-color: #EFEFEF;
|
||||
border: 0.1em solid #898989;
|
||||
border-radius: 0.4em;
|
||||
box-shadow: 0em 0em 0.4em inset #898989, 0.1em 0.1em 0.2em #222; }
|
||||
.mapeate .dialogo fieldset legend {
|
||||
float: left;
|
||||
width: 32em;
|
||||
height: 1.2em;
|
||||
margin: .4em 0em;
|
||||
font-weight: 900;
|
||||
text-wrap: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none; }
|
||||
.mapeate .dialogo fieldset legend + p {
|
||||
display: none;
|
||||
clear: both; }
|
||||
.mapeate .dialogo section {
|
||||
position: absolute;
|
||||
top: 2em;
|
||||
left: 0em;
|
||||
right: 0em;
|
||||
bottom: 2em;
|
||||
margin: 1em;
|
||||
overflow: auto; }
|
||||
.mapeate .dialogo .grupo {
|
||||
position: absolute;
|
||||
bottom: 0em;
|
||||
left: 0em;
|
||||
width: 100%;
|
||||
margin-bottom: .5em;
|
||||
text-align: center; }
|
||||
|
||||
[data-clase=global] {
|
||||
/*
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user