| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153 |
- const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
- module.exports = {
- es: {
- languageName: "Castellano",
- extended: "Multiverso",
- extendedDescription: [
- "Cuando apoyas a alguien, puedes descargar las publicaciones de habitantes que apoya, y esas publicaciones aparecerán aquí, ordenadas por la más reciente.",
- ],
- popular: "Destacadas",
- popularDescription: [
- "Publicaciones de habitantes en tu red, ",
- strong("ordenadas por apoyos"),
- ". Selecciona el período de tiempo para obtener una lista.",
- ],
- day: "Día",
- week: "Semana",
- month: "Mes",
- year: "Año",
- latest: "Últimos",
- latestDescription: [
- strong("Publicaciones"),
- " tuyas y de habitantes que apoyas, ordenadas por las más recientes.",
- ],
- topics: "Temas",
- topicsDescription: [
- strong("Temas"),
- " tuyos y de habitantes que apoyas, ordenados por los más recientes.",
- ],
- summaries: "Resúmenes",
- summariesDescription: [
- strong("Temas y algunos comentarios"),
- " tuyos y de habitantes que apoyas, ordenados por los más recientes.",
- ],
- threads: "Hilos",
- threadsDescription: [
- strong("Publicaciones que tienen comentarios"),
- " de habitantes que apoyas y de tu multiverso, ordenadas por las más recientes.",
- ],
- profile: "Avatar",
- inhabitants: "Habitantes",
- manualMode: "Modo Manual",
- mentions: "Menciones",
- mentionsDescription: [
- strong("Publicaciones que te @mencionan"),
- ", ordenadas por las más recientes.",
- ],
- nextPage: "Siguiente",
- previousPage: "Anterior",
- noMentions: "No has recibido @menciones, aún.",
- private: "Buzón",
- privateDescription: "Ver y organizar tus mensajes privados.",
- privateInbox: "BUZÓN",
- privateSent: "ENVIADOS",
- privateFrom: "De",
- privateTo: "Para",
- privateDate: "Fecha",
- privateDelete: "Borrar",
- pmCreateButton: "Escribe un MP",
- noPrivateMessages: "No has recibido ninún mensaje privado, aún.",
- peers: "Nodos",
- privateDescription: ["Los mensajes privados están ",strong("cifrados con tu llave pública")," y tienen un máximo de 7 receptores."],
- search: "Buscar",
- searchDescription: "Descripición",
- imageSearch: "Buscar Imágenes",
- searchPlaceholder: "Encuentra @habitantes, #etiquetas y palabras clave...",
- settings: "Configuración",
- continueReading: "Continuar leyendo",
- moreComments: "más comentarios",
- readThread: "leer el resto del hilo",
- pixeliaTitle: 'Pixelia',
- pixeliaDescription: 'Dibuja pixeles en un grid y colabor-ART con habitantes en tu red.',
- coordLabel: 'Coordenadas (e.g., A3)',
- coordPlaceholder: 'Introduce coordenada',
- contributorsTitle: "Contribuciones",
- pixeliaBy: "por",
- colorLabel: 'Elige un color',
- paintButton: 'Dibujar!',
- invalidCoordinate: 'Coordenada incorrecta',
- goToMuralButton: "Ver Mural",
- totalPixels: 'Total Pixeles',
- modules: "Módulos",
- modulesViewTitle: "Módulos",
- modulesViewDescription: "Define tu entorno ideal activando y desactivando módulos.",
- inbox: "Buzón",
- multiverse: "Multiverso",
- popularLabel: "Destacadas",
- topicsLabel: "Tópicos",
- latestLabel: "Últimas",
- summariesLabel: "Resúmenes",
- threadsLabel: "Hilos",
- multiverseLabel: "Multiverso",
- inboxLabel: "Buzón",
- invitesLabel: "Invitaciones",
- walletLabel: "Cartera",
- legacyLabel: "Llaves",
- cipherLabel: "Cifrador",
- bookmarksLabel: "Marcadores",
- videosLabel: "Vídeos",
- torrentsLabel: "Torrents",
- docsLabel: "Documentos",
- audiosLabel: "Audios",
- tagsLabel: "Etiquetas",
- imagesLabel: "Imágenes",
- inhabitantsLabel: "Habitantes",
- trendingLabel: "Tendencias",
- eventsLabel: "Eventos",
- tasksLabel: "Tareas",
- transfersTitle: "Transferencias",
- marketTitle: "Mercado",
- opinionsTitle: "Opiniones",
- saveSettings: "Guardar configuración",
- apply: "Aplicar",
- menuPersonal: "Personal",
- menuContent: "Contenido",
- menuGovernance: "Gobernanza",
- menuOffice: "Oficina",
- menuMultiverse: "Multiverso",
- menuNetwork: "Red",
- menuCreative: "Creativo",
- menuEconomy: "Economía",
- menuMedia: "Multimedia",
- menuTools: "Herramientas",
- comment: "Comentar",
- subtopic: "Subtema",
- json: "JSON",
- createdAt: "Creado el",
- createdBy: "por",
- unfollow: "Dejar de soportar",
- follow: "Soportar",
- block: "Bloquear",
- unblock: "Desbloquear",
- newerPosts: "Nuevos posts",
- olderPosts: "Viejos posts",
- feedRangeEmpty: "El rango aplicado está vación para éste feed. Trata de ver el ",
- seeFullFeed: "feed completo",
- feedEmpty: "La red Oasis no ha visto nunca posts desde ésta cuenta.",
- beginningOfFeed: "Éste es el comienzo del feed",
- noNewerPosts: "No se han recibido posts nuevos, aún.",
- relationshipNotFollowing: "No te da soporte",
- relationshipTheyFollow: "Te da soporte",
- relationshipMutuals: "Soporte mútuo",
- relationshipFollowing: "Estás dando soporte",
- relationshipYou: "Tú",
- relationshipBlocking: "Estás bloqueando",
- relationshipBlockedBy: "Te bloquea",
- relationshipMutualBlock: "Bloqueo mutuo",
- relationshipNone: "No estás dando soporte",
- relationshipConflict: "Conflicto",
- relationshipBlockingPost: "Post bloqueado",
- viewLikes: "Ver replicas",
- spreadedDescription: "Lista de posts replicados por habitante.",
- totalspreads: "Replicas totales",
- attachFiles: "Adjuntar ficheros",
- preview: "Previsualizar",
- publish: "Publicar",
- contentWarningPlaceholder: "Añade un título a tu post (opcional)",
- privateWarningPlaceholder: "Añade habitantes para enviar un post privado (opcional)",
- publishWarningPlaceholder: "...",
- publishCustomDescription: [
- "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
- ],
- commentWarning: [
- "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
- ],
- commentPublic: "público",
- commentPrivate: "privado",
- commentLabel: ({ publicOrPrivate, markdownUrl }) => [
- ],
- publishLabel: ({ markdownUrl, linkTarget }) => [
- "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
- ],
- replyLabel: ({ markdownUrl }) => [
- "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
- ],
- publishCustomInfo: ({ href }) => [
- "Si tienes experiencia, también puedes ",
- a({ href }, "escribir un post avanzado"),
- ".",
- ],
- publishBasicInfo: ({ href }) => [
- "Si no tienes experiencia, deberías ",
- a({ href }, "escribir un post normal"),
- ".",
- ],
- publishCustom: "Escribir un post avanzado",
- subtopicLabel: "Crea un subtopic para éste post",
- messagePreview: "Previsualización",
- mentionsMatching: "Menciones",
- mentionsName: "Nombre",
- mentionsRelationship: "Relación",
- updateit: "OBTENER ACTUALIZACIONES!",
- updateBannerText: "Hay una nueva versión de Oasis disponible.",
- updateBannerAction: "Actualizar ahora →",
- info: "Info",
- settingsIntro: ({ version }) => [
- `[SNH] ꖒ OASIS [ v.${version} ]`,
- ],
- timeAgo: "hace",
- sendTime: "escrito ",
- theme: "Tema",
- legacy: "Llaves",
- legacyTitle: "Llaves",
- legacyDescription: "Maneja tu secreto (llave privada) de forma rápida y segura.",
- legacyExportButton: "Exportar",
- legacyImportButton: "Importar",
- ssbLogStream: "Blockchain",
- ssbLogStreamDescription: "Configura el límite de mensajes para los flujos de la blockchain.",
- saveSettings: "Guardar configuración",
- exportTitle: "Exportar datos",
- exportDescription: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu secreto",
- exportDataTitle: "Copia de Seguridad",
- exportDataDescription: "Descargar tu blockchain (llave privada excluida!)",
- exportDataButton: "Descargar blockchain",
- pubWallet: "Cartera del PUB",
- pubWalletDescription: "Establece la URL del wallet del PUB. Esta se utilizará para las transacciones del PUB (incluída la RBU).",
- pubWalletConfiguration: "Guardar Configuración",
- importTitle: "Importar datos",
- importDescription: "Importa tu secreto cifrado (llave privada) para activar tu avatar",
- importAttach: "Adjuntar fichero cifrado (.enc)",
- passwordLengthInfo: "La contraseña debe tener mínimo 32 caracteres de longitud.",
- passwordImport: "Escribe tu contraseña para descifrar los datos que serán guardados en tu sistema (nombre: secret)",
- randomPassword: "Contraseña aleatoria",
- exportPasswordPlaceholder: "Utiliza minúsculas, mayúsculas, números y símbolos",
- fileInfo: "Tu secreto cifrado será guardado en tu sistema (nombre: oasis.enc)",
- themeIntro:
- "Elige un tema.",
- setTheme: "Establecer tema",
- language: "Lenguaje",
- languageDescription:
- "Si quieres utilizar otro idioma, seleccionalo aquí.",
- setLanguage: "Establecer lenguaje",
- status: "Estado",
- peerConnections: "Nodos",
- peerConnectionsIntro: "Maneja todas tus conexiones con otros nodos.",
- online: "Conectado",
- offline: "Desconectado",
- discovered: 'Descubiertos',
- unknown: 'Desconocidos',
- pub: 'PUB',
- supported: "Soportado",
- recommended: "Recomendado",
- blocked: "Bloqueado",
- noConnections: "No hay nodos conectados.",
- noDiscovered: "No has descubierto nodos.",
- noSupportedConnections: "No soportas nodos.",
- noBlockedConnections: "No bloqueas nodos.",
- noRecommendedConnections: "No recomiendas nodos.",
- connectionActionIntro:
- "",
- startNetworking: "Iniciar red",
- stopNetworking: "Parar red",
- restartNetworking: "Reiniciar red",
- sync: "Sincronizar red",
- indexes: "Índices",
- indexesDescription:
- "Reconstruir índices es seguro, y puede arreglar algunos errores en tu blockchain.",
- homePageTitle: "Página de inicio",
- homePageDescription: "Selecciona qué módulo quieres como tu página de inicio.",
- saveHomePage: "Establecer página de inicio",
- invites: "Invitaciones",
- invitesTitle: "Invitaciones",
- invitesInvites: "Invitaciones",
- invitesDescription: "Maneja y aplica códigos de invitación en tu red.",
- invitesTribesTitle: "Tribus",
- invitesTribeInviteCodePlaceholder: "Introduce el código de la tribu",
- invitesTribeJoinButton: "Entrar en la tribu",
- invitesPubsTitle: "PUBs",
- invitesPubInviteCodePlaceholder: "Introduce el código de invitación del PUB",
- invitesAcceptInvite: "Entrar en el PUB",
- invitesAcceptedInvites: "Redes Federadas",
- invitesNoInvites: "No hay invitaciones aceptadas, aún.",
- invitesUnfollow: 'Dejar de seguir',
- invitesFollow: 'Seguir',
- invitesUnfollowedInvites: 'Invitaciones no seguidas',
- invitesNoFederatedPubs: "No hay redes federadas.",
- invitesNoUnfollowed: 'Sin invitaciones no seguidas.',
- invitesUnreachablePubs: "Redes Inalcanzables",
- invitesNoUnreachablePubs: "No hay redes inalcanzables.",
- currentlyUnreachable: "¡ERROR!",
- errorDetails: "Detalles del error",
- genericError: "A ocurrido un error.",
- panicMode: "Modo Pánico!",
- encryptData: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu blockchain",
- decryptData: "Introduce contraseña para descifrar tu blockchain",
- panicModeDescription: "Cifrar/Descifrar o BORRAR tu blockchain",
- removeDataDescription: "CUIDADO: Éste proceso no puede ser revocado.",
- encryptPanicButton: "Cifrar blockchain",
- decryptPanicButton: "Descifrar blockchain",
- removePanicButton: "BORRAR TODOS TUS DATOS!",
- searchTitle: "Buscar",
- searchDescriptionLabel: "Buscar contenido en tu red.",
- searchLanguagesLabel: "Lenguajes",
- searchSkillsLabel: "Habilidades",
- searchPlaceholder:"Buscar contenido...",
- searchSubmit:"Buscar!",
- tribeLocationLabel:"Localización",
- tribeModeLabel:"Modo de Invitación",
- tribeMembersCount:"Número de Miembros",
- searchDateLabel:"Fecha",
- searchLocationLabel:"Localización",
- searchPriceLabel:"Precio",
- searchUrlLabel:"URL",
- searchCategoryLabel:"Categoría",
- searchStartLabel:"Fecha de comienzo",
- searchEndLabel:"Fecha de fin",
- searchPriorityLabel:"Prioridad",
- searchStatusLabel:"Estado",
- statusLabel:"Estado",
- totalVotesLabel:"Votos Totales",
- votesLabel:"Votaciones",
- noResultsFound:"No se han encontrado resultados.",
- author:"Autoría",
- createdAtLabel:"Creado el",
- hashtagDescription:"Explora el contenido asociado con ésta etiqueta",
- votesOption:"Opiniones Votadas",
- voteYesLabel:"Si",
- voteNoLabel:"No",
- allTypesLabel: "SIN LÍMITES",
- ABSTENTIONLabel:"ABSTENCIÓN",
- YESLabel:"SI",
- NOLabel:"NO",
- FOLLOW_MAJORITYLabel: "SEGUIR MAYORIA",
- CONFUSEDLabel: "CONFUSO",
- NOT_INTERESTEDLabel: "SIN INTERÉS",
- voteOptionYes:"Si",
- voteOptionNo:"No",
- voteOptionAbstention:"Abstención",
- StatusLabel:"Estado",
- votesOptionYesLabel:"Si",
- votesOptionNoLabel:"No",
- votesOptionAbstentionLabel:"Abstención",
- votesQuestionLabel:"Pregunta",
- votesCreatedByLabel:"Creado el",
- voteStatusOpen:"ABIERTO",
- voteStatusClosed:"CERRADO",
- imageSearchLabel: "Introduce palabras para buscar las imagenes que hayan sido etiquetadas con ellas.",
- commentDescription: ({ parentUrl }) => [
- " ha comentado en ",
- a({ href: parentUrl }, " hilo"),
- ],
- commentTitle: ({ authorName }) => [`Ha comentado en el post de @${authorName}`],
- subtopicDescription: ({ parentUrl }) => [
- " creado un subtopic desde ",
- a({ href: parentUrl }, " un post"),
- ],
- subtopicTitle: ({ authorName }) => [`Ha creado un subtopic en el post de @${authorName}`],
- mysteryDescription: "publicado un post misterioso",
- oasisDescription: "OASIS Red de Proyectos",
- searchSubmit: "Buscar...",
- hashtagDescription: "Posts etiquetados con éste hashtag.",
- postLabel: "POSTS",
- aboutLabel: "HABITANTES",
- feedLabel: "FEEDS",
- votesLabel: "GOBIERNO",
- reportLabel: "REPORTES",
- imageLabel: "IMAGENES",
- videoLabel: "VIDEOS",
- audioLabel: "AUDIOS",
- documentLabel: "DOCUMENTOS",
- torrentLabel: "TORRENTS",
- pdfFallbackLabel: "Documento PDF",
- eventLabel: "EVENTOS",
- taskLabel: "TAREAS",
- transferLabel: "TRANSFERENCIAS",
- curriculumLabel: "CURRÍCULUM",
- bookmarkLabel: "ENLACES",
- tribeLabel: "TRIBUS",
- marketLabel: "MERCADO",
- shopLabel: "SHOPS",
- shopProductLabel: "SHOP PRODUCTS",
- mapLabel: "MAPS",
- jobLabel: "JOBS",
- forumLabel: "FORUMS",
- projectLabel: "PROJECTS",
- bankWalletLabel: "CARTERAS",
- bankClaimLabel: "UBI CLAIMS",
- voteLabel: "VOTES",
- contactLabel: "CONTACTS",
- pubLabel: "PUBS",
- cvLabel: "CVs",
- submit: "Aplicar",
- subjectLabel: "Asunto",
- editProfile: "Editar Avatar",
- editProfileDescription:
- "",
- profileName: "Nombre",
- profileImage: "Imágen Avatar",
- profileDescription: "Descripción",
- hashtagDescription:
- "Posts de habitantes de tu red que referencian éste #hashtag, ordenados por el más reciente.",
- rebuildName: "Reconstruir blockchain",
- wallet: "Cartera",
- walletAddress: "Dirección",
- walletAmount: "Cantidad",
- walletAddressLine: ({ address }) => `Dirección: ${address}`,
- walletAmountLine: ({ amount }) => `Cantidad: ${amount} ECO`,
- walletBack: "Volver",
- walletBalanceTitle: "Saldo",
- walletWalletSendTitle: "Enviar",
- walletReceiveTitle: "Recibir",
- walletHistoryTitle: "Historial",
- walletBalanceLine: ({ balance }) => `${balance} ECO`,
- walletCnfrs: "Conf.",
- walletConfirm: "Confirmar",
- walletDescription: "Administra tus activos digitales, incluido el envío y la recepción de ECOin, la visualización del saldo y el acceso al historial de transacciones.",
- walletDate: "Fecha",
- walletFee: "Tasa (Cuanto mayor sea la tasa, más rápido se procesará tu transacción)",
- walletFeeLine: ({ fee }) => `Tasa: ECO ${fee}`,
- walletHistory: "Historial",
- walletReceive: "Recibir",
- walletReset: "Resetear",
- walletSend: "Enviar",
- walletStatus: "Estado",
- walletDisconnected: [
- "Tienes la ",
- strong("cartera de ECOin desconectada"),
- ". Revisa ",
- a({ href: '/settings' }, "tu configuración"),
- " o el estado de tu conexión.",
- ],
- walletSentToLine: ({ destination, amount }) => `Enviar ECO ${amount} a ${destination}`,
- walletSettingsTitle: "Cartera",
- walletSettingsDescription: "Integrar Oasis con tu cartera de ECOin.",
- walletSettingsDocLink: "Guía de instalación de ECOin",
- walletStatusMessages: {
- invalid_amount: "Cantidad inválida",
- invalid_dest: "Dirección de destino inválida",
- invalid_fee: "Tasa inválida",
- validation_errors: "Errores en la validación",
- send_tx_success: "Transacción realizada",
- },
- walletTitle: "Cartera",
- walletTotalCostLine: ({ totalCost }) => `Coste total: ECO ${totalCost}`,
- walletTransactionId: "ID de transacción",
- walletTxId: "ID Tx",
- walletType: "Tipo",
- walletUser: "Usuario",
- walletPass: "Contraseña",
- walletConfiguration: "Configurar cartera",
- cipher: "Cifrador",
- cipherTitle: "Cifrador",
- cipherDescription: "Encripta y desencripta tu texto de forma simétrica (usando una contraseña compartida).",
- randomPassword: "Contraseña Aleatoria",
- cipherEncryptTitle: "Encriptar Texto",
- cipherEncryptDescription: "Introduce el texto para encriptar",
- cipherTextLabel: "Texto para Encriptar",
- cipherTextPlaceholder: "Introduce el texto para encriptar...",
- cipherPasswordLabel: "Establece una contraseña (mínimo 32 caracteres) para encriptar tu texto",
- cipherPasswordDecryptLabel: "Establece una contraseña (mínimo 32 caracteres) para desencriptar tu texto",
- cipherPasswordPlaceholder: "Introduce una contraseña...",
- cipherEncryptButton: "Encriptar",
- cipherDecryptTitle: "Desencriptar Texto",
- cipherDecryptDescription: "Introduce el texto para desencriptar",
- cipherEncryptedMessageLabel: "Texto Encriptado",
- cipherDecryptedMessageLabel: "Texto Desencriptado",
- cipherPasswordUsedLabel: "Contraseña usada para encriptar (guárdala!)",
- cipherEncryptedTextPlaceholder: "Introduce el texto encriptado...",
- cipherIvLabel: "IV",
- cipherIvPlaceholder: "Introduce el vector de inicialización...",
- cipherDecryptButton: "Desencriptar",
- password: "Contraseña",
- text: "Texto",
- encryptedText: "Texto Encriptado",
- iv: "Vector de Inicialización (IV)",
- encryptTitle: "Encripta tu texto",
- encryptDescription: "Introduce el texto que deseas encriptar y proporciona una contraseña.",
- encryptButton: "Encriptar",
- decryptTitle: "Desencripta tu texto",
- decryptDescription: "Introduce el texto encriptado y proporciona la misma contraseña utilizada para la encriptación.",
- decryptButton: "Desencriptar",
- passwordLengthError: "La contraseña debe tener al menos 32 caracteres.",
- missingFieldsError: "Texto, contraseña o IV no proporcionados.",
- encryptionError: "Error al encriptar el texto.",
- decryptionError: "Error al desencriptar el texto.",
- bookmarkTitle: "Marcadores",
- bookmarkDescription: "Descubre y gestiona marcadores en tu red.",
- bookmarkAllSectionTitle: "Marcadores",
- bookmarkMineSectionTitle: "Tus Marcadores",
- bookmarkRecentSectionTitle: "Marcadores recientes",
- bookmarkTopSectionTitle: "Marcadores top",
- bookmarkFavoritesSectionTitle: "Favoritos",
- bookmarkCreateSectionTitle: "Crear marcador",
- bookmarkUpdateSectionTitle: "Actualizar marcador",
- bookmarkFilterAll: "TODOS",
- bookmarkFilterMine: "MÍOS",
- bookmarkFilterTop: "TOP",
- bookmarkFilterFavorites: "FAVORITOS",
- bookmarkFilterRecent: "RECIENTES",
- bookmarkCreateButton: "Crear marcador",
- bookmarkUpdateButton: "Actualizar",
- bookmarkDeleteButton: "Eliminar",
- bookmarkAddFavoriteButton: "Añadir favorito",
- bookmarkRemoveFavoriteButton: "Quitar favorito",
- bookmarkUrlLabel: "Enlace",
- bookmarkUrlPlaceholder: "https://ejemplo.com",
- bookmarkDescriptionLabel: "Descripción",
- bookmarkDescriptionPlaceholder: "Opcional",
- bookmarkTagsLabel: "Etiquetas",
- bookmarkTagsPlaceholder: "Introduce tags separadas por comas",
- bookmarkCategoryLabel: "Categoría",
- bookmarkCategoryPlaceholder: "Opcional",
- bookmarkLastVisitLabel: "Última visita",
- bookmarkSearchPlaceholder: "Buscar URL, tags, categoría, autor...",
- bookmarkSortRecent: "Más recientes",
- bookmarkSortOldest: "Más antiguos",
- bookmarkSortTop: "Más votados",
- bookmarkSearchButton: "Buscar",
- bookmarkUpdatedAt: "Actualizado",
- bookmarkNoMatch: "No hay marcadores que coincidan con tu búsqueda.",
- noBookmarks: "No hay marcadores disponibles.",
- noUrl: "Sin enlace",
- noCategory: "Sin categoría",
- noLastVisit: "Sin última visita",
- videoTitle: "Vídeos",
- videoDescription: "Explora y gestiona contenido de vídeo en tu red.",
- videoPluginTitle: "Título",
- videoPluginDescription: "Descripción",
- videoMineSectionTitle: "Tus vídeos",
- videoCreateSectionTitle: "Subir vídeo",
- videoUpdateSectionTitle: "Actualizar vídeo",
- videoAllSectionTitle: "Vídeos",
- videoRecentSectionTitle: "Vídeos recientes",
- videoTopSectionTitle: "Vídeos más votados",
- videoFavoritesSectionTitle: "Favoritos",
- videoFilterAll: "TODOS",
- videoFilterMine: "MÍOS",
- videoFilterRecent: "RECIENTES",
- videoFilterTop: "TOP",
- videoFilterFavorites: "FAVORITOS",
- videoCreateButton: "Subir vídeo",
- videoUpdateButton: "Actualizar",
- videoDeleteButton: "Eliminar",
- videoAddFavoriteButton: "Añadir a favoritos",
- videoRemoveFavoriteButton: "Quitar de favoritos",
- videoFileLabel: "Selecciona un archivo de vídeo (.mp4, .webm, .ogv, .mov)",
- videoTagsLabel: "Etiquetas",
- videoTagsPlaceholder: "Introduce etiquetas separadas por comas",
- videoTitleLabel: "Título",
- videoTitlePlaceholder: "Opcional",
- videoDescriptionLabel: "Descripción",
- videoDescriptionPlaceholder: "Opcional",
- videoNoFile: "No se ha proporcionado ningún archivo de vídeo",
- noVideos: "No hay vídeos disponibles.",
- videoSearchPlaceholder: "Buscar por título, etiquetas, autor...",
- videoSortRecent: "Más recientes",
- videoSortOldest: "Más antiguos",
- videoSortTop: "Más votados",
- videoSearchButton: "Buscar",
- videoMessageAuthorButton: "MP",
- videoUpdatedAt: "Actualizado",
- videoNoMatch: "Ningún vídeo coincide con tu búsqueda.",
- documentTitle: "Documentos",
- documentDescription: "Descubre y gestiona documentos en tu red.",
- documentAllSectionTitle: "Documentos",
- documentMineSectionTitle: "Tus documentos",
- documentRecentSectionTitle: "Documentos recientes",
- documentTopSectionTitle: "Documentos top",
- documentFavoritesSectionTitle: "Favoritos",
- documentCreateSectionTitle: "Subir documento",
- documentUpdateSectionTitle: "Editar documento",
- documentFilterAll: "TODO",
- documentFilterMine: "MÍOS",
- documentFilterRecent: "RECIENTES",
- documentFilterTop: "TOP",
- documentFilterFavorites: "FAVORITOS",
- documentCreateButton: "Subir documento",
- documentUpdateButton: "Actualizar",
- documentDeleteButton: "Eliminar",
- documentAddFavoriteButton: "Añadir a favoritos",
- documentRemoveFavoriteButton: "Quitar de favoritos",
- documentMessageAuthorButton: "MP",
- documentFileLabel: "Subir documento (.pdf)",
- documentTagsLabel: "Etiquetas",
- documentTagsPlaceholder: "Introduce etiquetas separadas por comas",
- documentTitleLabel: "Título",
- documentTitlePlaceholder: "Opcional",
- documentDescriptionLabel: "Descripción",
- documentDescriptionPlaceholder: "Opcional",
- documentNoFile: "Sin archivo.",
- noDocuments: "No hay documentos disponibles.",
- documentSearchPlaceholder: "Buscar título, etiquetas, descripción, autor...",
- documentSortRecent: "Más recientes",
- documentSortOldest: "Más antiguos",
- documentSortTop: "Más votados",
- documentSearchButton: "Buscar",
- documentNoMatch: "No hay documentos que coincidan con tu búsqueda.",
- documentUpdatedAt: "Actualizado",
- audioTitle: "Audios",
- audioDescription: "Explora y gestiona contenido de audio en tu red.",
- audioPluginTitle: "Título",
- audioPluginDescription: "Descripción",
- audioMineSectionTitle: "Tus audios",
- audioCreateSectionTitle: "Subir audio",
- audioUpdateSectionTitle: "Actualizar audio",
- audioAllSectionTitle: "Audios",
- audioRecentSectionTitle: "Audios recientes",
- audioTopSectionTitle: "Audios más votados",
- audioFilterAll: "TODOS",
- audioFilterMine: "MÍOS",
- audioFilterRecent: "RECIENTES",
- audioFilterTop: "TOP",
- audioCreateButton: "Subir audio",
- audioUpdateButton: "Actualizar",
- audioDeleteButton: "Eliminar",
- audioAddFavoriteButton: "Añadir a favoritos",
- audioRemoveFavoriteButton: "Quitar de favoritos",
- audioFileLabel: "Selecciona un archivo de audio (.mp3, .wav, .ogg)",
- audioTagsLabel: "Etiquetas",
- audioTagsPlaceholder: "Introduce etiquetas separadas por comas",
- audioTitleLabel: "Título",
- audioTitlePlaceholder: "Opcional",
- audioDescriptionLabel: "Descripción",
- audioDescriptionPlaceholder: "Opcional",
- audioNoFile: "No se ha proporcionado ningún archivo de audio",
- noAudios: "No hay audios disponibles.",
- audioSearchPlaceholder: "Buscar por título, etiquetas, autor...",
- audioSortRecent: "Más recientes",
- audioSortOldest: "Más antiguos",
- audioSortTop: "Más votados",
- audioSearchButton: "Buscar",
- audioMessageAuthorButton: "MP",
- audioUpdatedAt: "Actualizado",
- audioNoMatch: "Ningún audio coincide con tu búsqueda.",
- audioFavoritesSectionTitle: "Favoritos",
- audioFilterFavorites: "FAVORITOS",
- favoritesTitle: "Favoritos",
- favoritesDescription: "Todos tus elementos marcados como favoritos en un solo lugar.",
- favoritesFilterAll: "TODOS",
- favoritesFilterRecent: "RECIENTES",
- favoritesFilterAudios: "AUDIOS",
- favoritesFilterBookmarks: "MARCADORES",
- favoritesFilterDocuments: "DOCUMENTOS",
- favoritesFilterImages: "IMÁGENES",
- favoritesFilterMaps: "MAPAS",
- favoritesFilterPads: "PADS",
- favoritesFilterChats: "CHATS",
- favoritesFilterCalendars: "CALENDARIOS",
- favoritesFilterVideos: "VÍDEOS",
- favoritesRemoveButton: "Quitar de favoritos",
- favoritesNoItems: "Todavía no hay favoritos.",
- yourContacts: "Tus Contactos",
- allInhabitants: "Habitantes",
- allCVs: "Todos los CVs",
- discoverPeople: "Descubre habitantes en tu red.",
- allInhabitantsButton: "TODOS",
- contactsButton: "SOPORTES",
- CVsButton: "CVs",
- matchSkills: "Coincidir Habilidades",
- matchSkillsButton: "COINCIDIR HABILIDADES",
- suggestedButton: "SUGERIDOS",
- searchInhabitantsPlaceholder: "FILTRAR habitantes POR NOMBRE …",
- filterLocation: "FILTRAR habitantes POR UBICACIÓN …",
- filterLanguage: "FILTRAR habitantes POR IDIOMA …",
- filterSkills: "FILTRAR habitantes POR HABILIDADES …",
- applyFilters: "Aplicar Filtros",
- locationLabel: "Ubicación",
- languagesLabel: "Idiomas",
- skillsLabel: "Habilidades",
- commonSkills: "Habilidades Comunes",
- mutualFollowers: "Seguidores Mutuos",
- latestInteractions: "Últimas Interacciones",
- viewAvatar: "Ver Avatar",
- viewCV: "Ver CV",
- suggestedSectionTitle: "Sugeridos",
- topkarmaSectionTitle: "Mejor Karma",
- topactivitySectionTitle: "Top Actividad",
- blockedSectionTitle: "Bloqueados",
- gallerySectionTitle: "GALERÍA",
- blockedButton: "BLOQUEADOS",
- blockedLabel: "Usuario Bloqueado",
- inhabitantviewDetails: "Ver Detalles",
- viewDetails: "Ver Detalles",
- keepReading: "Seguir leyendo...",
- oasisId: "ID",
- noInhabitantsFound: "No se encontraron habitantes, aún.",
- inhabitantActivityLevel: "Nivel Actividad",
- deviceLabel: "Dispositivo",
- parliamentTitle: "Parlamento",
- parliamentDescription: "Explora formas de gobierno y políticas de gestión colectiva.",
- parliamentFilterGovernment: "GOBIERNO",
- parliamentFilterCandidatures: "CANDIDATURAS",
- parliamentFilterProposals: "PROPUESTAS",
- parliamentFilterLaws: "LEYES",
- parliamentFilterHistorical: "HISTÓRICO",
- parliamentFilterLeaders: "LÍDERES",
- parliamentFilterRules: "REGLAS",
- parliamentGovernmentCard: "Gobierno actual",
- parliamentGovMethod: "MÉTODO DE GOBIERNO",
- parliamentActorInPowerInhabitant: 'HABITANTE EN EL PODER',
- parliamentActorInPowerTribe: 'TRIBU EN EL PODER',
- parliamentHistoricalGovernmentsTitle: 'GOBIERNOS',
- parliamentHistoricalElectionsTitle: 'CICLOS ELECTORALES',
- parliamentHistoricalLawsTitle: 'HISTÓRICO',
- parliamentHistoricalLeadersTitle: 'LÍDERES',
- parliamentThCycles: 'CICLOS',
- parliamentThTimesInPower: 'MANDATOS',
- parliamentThTotalCandidatures: 'CANDIDATURAS',
- parliamentThProposed: 'LEYES PROPUESTAS',
- parliamentThApproved: 'LEYES APROBADAS',
- parliamentThDeclined: 'LEYES RECHAZADAS',
- parliamentThDiscarded: 'LEYES DESCARTADAS',
- parliamentVotesReceived: "VOTOS RECIBIDOS",
- parliamentMembers: "MIEMBROS",
- parliamentLegSince: "INICIO DEL CICLO",
- parliamentLegEnd: "FIN DEL CICLO",
- parliamentPoliciesProposal: "PROPUESTAS DE LEYES",
- parliamentPoliciesApproved: "LEYES APROBADAS",
- parliamentPoliciesDeclined: "LEYES RECHAZADAS",
- parliamentPoliciesDiscarded: "LEYES DESCARTADAS",
- parliamentEfficiency: "% EFICIENCIA",
- parliamentFilterRevocations: 'REVOCACIONES',
- parliamentRevocationFormTitle: 'Revocar Ley',
- parliamentRevocationLaw: 'Ley',
- parliamentRevocationTitle: 'Título',
- parliamentRevocationReasons: 'Motivos',
- parliamentRevocationPublish: 'Publicar Revocación',
- parliamentCurrentRevocationsTitle: 'Revocaciones Actuales',
- parliamentFutureRevocationsTitle: 'Revocaciones Futuras',
- parliamentPoliciesRevocated: 'LEYES REVOCADAS',
- parliamentPoliciesTitle: 'HISTÓRICO',
- parliamentLawsTitle: 'LEYES APROBADAS',
- parliamentRulesRevocations: 'Cualquier ley aprobada puede ser revocada utilizando el método de gobierno vigente.',
- parliamentNoStableGov: "Aún no hay un gobierno elegido.",
- parliamentNoGovernments: "Todavía no hay gobiernos en el histórico.",
- parliamentCandidatureFormTitle: "Proponer Candidatura",
- parliamentCandidatureId: "Candidatura",
- parliamentCandidatureIdPh: "Oasis ID (@...) o nombre de la tribu",
- parliamentCandidatureSlogan: "Lema (máx. 140 car.)",
- parliamentCandidatureSloganPh: "Un lema corto",
- parliamentCandidatureMethod: "Método",
- parliamentCandidatureProposeBtn: "Publicar Candidatura",
- parliamentThType: "Tipo",
- parliamentThId: "ID",
- parliamentThDate: "Fecha de propuesta",
- parliamentThSlogan: "Lema",
- parliamentThMethod: "Método",
- parliamentThKarma: "Karma",
- parliamentThSince: "Perfil desde",
- parliamentThVotes: "Votos recibidos",
- parliamentThVoteAction: "Votar",
- parliamentTypeUser: "Habitante",
- parliamentTypeTribe: "Tribu",
- parliamentVoteBtn: "Votar",
- parliamentProposalFormTitle: "Proponer Ley",
- parliamentProposalTitle: "Título",
- parliamentProposalDescription: "Descripción (≤1000)",
- parliamentProposalPublish: "Publicar Propuesta",
- parliamentOpenVote: "Votación abierta",
- parliamentFinalize: "Finalizar",
- parliamentDeadline: "Fecha límite",
- parliamentStatus: "Estado",
- parliamentNoProposals: "Aún no hay propuestas de ley.",
- parliamentNoLaws: "Aún no hay leyes aprobadas.",
- parliamentLawMethod: "Método",
- parliamentLawProposer: "Propuesta por",
- parliamentLawVotes: "SÍ/Total",
- parliamentLawEnacted: "Promulgada el",
- parliamentMethodDEMOCRACY: "Democracia",
- parliamentMethodMAJORITY: "Mayoría (80%)",
- parliamentMethodMINORITY: "Minoría (20%)",
- parliamentMethodDICTATORSHIP: "Dictadura",
- parliamentMethodKARMATOCRACY: "Karmatocracia",
- parliamentMethodANARCHY: "Anarquía",
- parliamentThId: "ID",
- parliamentThProposalDate: "Fecha de propuesta",
- parliamentThMethod: "Método",
- parliamentThKarma: "Karma",
- parliamentThSupports: "Apoyos",
- parliamentThVote: "Votar",
- parliamentCurrentProposalsTitle: "Propuestas actuales",
- parliamentVotesSlashTotal: "Votos/Total",
- parliamentVotesNeeded: "Votos Necesarios",
- parliamentFutureLawsTitle: "Futuras leyes",
- parliamentNoFutureLaws: "Aún no hay futuras leyes.",
- parliamentVoteAction: "Votar",
- parliamentLeadersTitle: "Líderes",
- parliamentThLeader: "AVATAR",
- parliamentPopulation: "Población",
- parliamentThType: "Tipo",
- parliamentThInPower: "Gobiernos",
- parliamentThPresented: "CANDIDATURAS",
- parliamentNoLeaders: "Aún no hay líderes.",
- typeParliament: "PARLAMENTO",
- typeParliamentCandidature: "Parlamento · Candidatura",
- typeParliamentTerm: "Parlamento · Ciclo",
- typeParliamentProposal: "Parlamento · Propuesta",
- typeParliamentLaw: "Parlamento · Nueva Ley",
- parliamentLawQuestion: "Pregunta",
- parliamentStatus: "Estado",
- parliamentCandidaturesListTitle: "Lista de Candidaturas",
- parliamentElectionsEnd: "Fin de las elecciones",
- parliamentTimeRemaining: "Tiempo restante",
- parliamentCurrentLeader: "Candidatura ganadora",
- parliamentNoLeader: "Aún no hay candidatura ganadora.",
- parliamentElectionsStatusTitle: "Próximo Gobierno",
- parliamentElectionsStart: "Inicio de las Elecciones",
- parliamentProposalDeadlineLabel: "Fecha límite",
- parliamentProposalTimeLeft: "Tiempo restante",
- parliamentProposalOnTrack: "Con apoyo suficiente",
- parliamentProposalOffTrack: "Apoyo insuficiente",
- parliamentRulesTitle: "Cómo funciona el Parlamento",
- parliamentRulesIntro: "Las elecciones se resuelven cada 2 meses; las candidaturas son continuas y se reinician cuando se elige un gobierno.",
- parliamentRulesCandidates: "Cualquier habitante puede proponerse a sí mismo, a otro habitante o a cualquier tribu. Cada habitante puede proponer hasta 3 candidaturas por ciclo; se rechazan duplicados en el mismo ciclo.",
- parliamentRulesElection: "Gana la candidatura con más votos en el momento de la resolución.",
- parliamentRulesTies: "Desempate: mayor karma del habitante; si persiste, perfil más antiguo; si persiste, propuesta más temprana; después, orden lexicográfico por ID.",
- parliamentRulesFallback: "Si nadie vota, gana la última candidatura propuesta. Si no hay candidaturas, se selecciona una tribu al azar.",
- parliamentRulesTerm: "La pestaña Gobierno muestra el gobierno actual y sus estadísticas.",
- parliamentRulesMethods: "Formas: Anarquía (mayoría simple), Democracia (50%+1), Mayoría (80%), Minoría (20%), Karmatocracia (propuestas con mayor karma), Dictadura (aprobación instantánea).",
- parliamentRulesAnarchy: "Anarquía es el modo por defecto: si al resolver no se elige ninguna candidatura, se proclama la Anarquía. En Anarquía, cualquier habitante puede proponer leyes.",
- parliamentRulesProposals: "Si eres el habitante gobernante o miembro de la tribu gobernante, puedes publicar propuestas de ley. Los métodos no dictatoriales crean una votación pública.",
- parliamentRulesLimit: "Cada habitante puede publicar como máximo 3 propuestas de ley por ciclo.",
- parliamentRulesLaws: "Cuando una propuesta alcanza su umbral, se convierte en Ley y aparece en la pestaña Leyes con su fecha de entrada en vigor.",
- parliamentRulesHistorical: "En Histórico se puede ver cada ciclo de gobierno que ha habido y datos sobre su gestión.",
- parliamentRulesLeaders: "En Líderes se puede ver un ranking de habitantes/tribus que han gobernado (o se han presentado), ordenados por eficacia.",
- parliamentProposalVoteStatusLabel: "Estado de la votación",
- parliamentProposalOnTrackYes: "Umbral alcanzado",
- parliamentProposalOnTrackNo: "Por debajo del umbral",
- courtsTitle: "Tribunales",
- courtsDescription: "Explora formas de resolución de conflictos y de gestión colectiva de la justicia.",
- courtsFilterCases: "CASOS",
- courtsFilterMyCases: "MÍOS",
- courtsFilterJudges: "JUECES",
- courtsFilterHistory: "HISTORIAL",
- courtsFilterRules: "REGLAS",
- courtsFilterOpenCase: "NUEVO CASO",
- courtsCaseFormTitle: "Abrir caso",
- courtsCaseTitle: "Título",
- courtsCaseRespondent: "Acusado / Parte demandada",
- courtsCaseRespondentPh: "ID de Oasis (@...) o nombre de Tribu",
- courtsCaseMediatorsAccuser: "Mediadores (acusación)",
- courtsCaseMediatorsPh: "ID de Oasis, separados por comas",
- courtsCaseMethod: "Método de resolución",
- courtsCaseDescription: "Descripción (máx. 1000 caracteres)",
- courtsCaseEvidenceTitle: "Pruebas del caso",
- courtsCaseEvidenceHelp: "Adjunta imágenes, audios, documentos (PDF) o vídeos que apoyen tu caso.",
- courtsCaseSubmit: "Presentar caso",
- courtsNominateJudge: "Nominar juez",
- courtsJudgeId: "Juez",
- courtsJudgeIdPh: "ID de Oasis (@...) o nombre de Habitante",
- courtsNominateBtn: "Nominar",
- courtsAddEvidence: "Añadir pruebas",
- courtsEvidenceText: "Texto",
- courtsEvidenceLink: "Enlace",
- courtsEvidenceLinkPh: "https://…",
- courtsEvidenceSubmit: "Adjuntar",
- courtsAnswerTitle: "Responder a la reclamación",
- courtsAnswerText: "Resumen de la respuesta",
- courtsAnswerSubmit: "Enviar respuesta",
- courtsStanceDENY: "Negar",
- courtsStanceADMIT: "Admitir",
- courtsStancePARTIAL: "Parcial",
- courtsVerdictTitle: "Emitir veredicto",
- courtsVerdictResult: "Resultado",
- courtsVerdictOrders: "Órdenes",
- courtsVerdictOrdersPh: "Acciones, plazos, pasos restaurativos...",
- courtsIssueVerdict: "Emitir veredicto",
- courtsMediationPropose: "Proponer acuerdo",
- courtsSettlementText: "Términos",
- courtsSettlementProposeBtn: "Proponer",
- courtsNominationsTitle: "Nominaciones a la judicatura",
- courtsThJudge: "Juez",
- courtsThSupports: "Apoyos",
- courtsThDate: "Fecha",
- courtsThVote: "Votar",
- courtsNoNominations: "Todavía no hay nominaciones.",
- courtsAccuser: "Acusación",
- courtsRespondent: "Defensa",
- courtsRespondentInvalid: "Debe ser un ID SSB válido (@...ed25519)",
- courtsThStatus: "Estado",
- courtsThAnswerBy: "Responder antes de",
- courtsThEvidenceBy: "Aportar pruebas antes de",
- courtsThDecisionBy: "Decisión antes de",
- courtsThCase: "Caso",
- courtsThCreatedAt: "Fecha de inicio",
- courtsThActions: "Acciones",
- courtsCaseMediatorsRespondentTitle: "Añadir mediadores de la defensa",
- courtsCaseMediatorsRespondent: "Mediadores (defensa)",
- courtsMediatorsAccuserLabel: "Mediadores (acusación)",
- courtsMediatorsRespondentLabel: "Mediadores (defensa)",
- courtsMediatorsSubmit: "Guardar mediadores",
- courtsVotesNeeded: "Votos necesarios",
- courtsVotesSlashTotal: "SÍ / TOTAL",
- courtsOpenVote: "Abrir votación",
- courtsPublicPrefLabel: "Visibilidad tras la resolución",
- courtsPublicPrefYes: "Acepto que este caso sea totalmente público",
- courtsPublicPrefNo: "Prefiero mantener los detalles en privado",
- courtsPublicPrefSubmit: "Guardar preferencia de visibilidad",
- courtsNoCases: "Sin casos.",
- courtsNoMyCases: "Aún no tienes conflictos.",
- courtsNoHistory: "Todavía no hay juicios registrados.",
- courtsMethodJUDGE: "Juez",
- courtsMethodDICTATOR: "Dictador",
- courtsMethodPOPULAR: "Popular",
- courtsMethodMEDIATION: "Mediación",
- courtsMethodKARMATOCRACY: "Karmatocracia",
- courtsMethod: "Método",
- courtsRulesTitle: "Cómo funcionan los Tribunales",
- courtsRulesIntro: "Los Tribunales son un proceso gestionado por la comunidad para resolver conflictos y promover la justicia restaurativa. Se priorizan el diálogo, las pruebas claras y los remedios proporcionales.",
- courtsRulesLifecycle: "Proceso: 1) Abrir caso 2) Seleccionar método 3) Presentar pruebas 4) Audiencia y deliberación 5) Veredicto y remedio 6) Cumplimiento y cierre 7) Apelación (si procede).",
- courtsRulesRoles: "Acusación: abre el caso. Defensa: persona o tribu acusada. Método: mecanismo elegido por la comunidad para facilitar, evaluar las pruebas y emitir veredicto. Testigo: aporta testimonio o pruebas. Mediadores: personas neutrales invitadas por la acusación y/o la defensa, con acceso a todos los detalles, que ayudan a desescalar el conflicto y co-crear acuerdos.",
- courtsRulesEvidence: "Descripción de hasta 1000 caracteres. Adjunta imágenes, audio, vídeo y documentos PDF relevantes y legales. No compartas datos privados sensibles sin consentimiento.",
- courtsRulesDeliberation: "Las audiencias pueden ser públicas o privadas. Los jueces garantizan el respeto, piden aclaraciones y pueden descartar material irrelevante o ilegal.",
- courtsRulesVerdict: "Se prioriza la restauración: disculpas, acuerdos de mediación, moderación de contenido, restricciones temporales u otras medidas proporcionales. El razonamiento debe quedar registrado.",
- courtsRulesAppeals: "Apelación: permitida cuando hay nuevas pruebas o un error procesal claro. Debe presentarse en un plazo de 7 días salvo que se indique lo contrario.",
- courtsRulesPrivacy: "Respeta la privacidad y la seguridad. El doxing, el odio o las amenazas se eliminan. Los jueces pueden editar o sellar partes del expediente para proteger a personas en riesgo.",
- courtsRulesMisconduct: "El acoso, la manipulación o las pruebas fabricadas pueden llevar a una resolución negativa inmediata.",
- courtsRulesGlossary: "Caso: registro de un conflicto. Pruebas: materiales que respaldan las afirmaciones. Veredicto: decisión con remedio. Apelación: solicitud para revisar el veredicto.",
- courtsFilterActions: "ACCIONES",
- courtsNoActions: "No hay acciones pendientes para tu rol.",
- courtsCaseTitlePlaceholder: "Breve descripción del conflicto",
- courtsCaseSeverity: "Severidad",
- courtsCaseSeverityNone: "Sin etiqueta de severidad",
- courtsCaseSeverityLOW: "Baja",
- courtsCaseSeverityMEDIUM: "Media",
- courtsCaseSeverityHIGH: "Alta",
- courtsCaseSeverityCRITICAL: "Crítica",
- courtsCaseSubject: "Tema",
- courtsCaseSubjectNone: "Sin etiqueta de tema",
- courtsCaseSubjectBEHAVIOUR: "Comportamiento",
- courtsCaseSubjectCONTENT: "Contenido",
- courtsCaseSubjectGOVERNANCE: "Gobernanza / normas",
- courtsCaseSubjectFINANCIAL: "Finanzas / recursos",
- courtsCaseSubjectOTHER: "Otro",
- courtsHiddenRespondent: "Oculto (solo visible para los roles implicados).",
- courtsThRole: "Rol",
- courtsRoleAccuser: "Acusación",
- courtsRoleDefence: "Defensa",
- courtsRoleMediator: "Mediador",
- courtsRoleJudge: "Juez",
- courtsRoleDictator: "Dictador",
- courtsAssignJudgeTitle: "Elegir juez",
- courtsAssignJudgeBtn: "Elegir juez",
- trendingTitle: "Tendencias",
- exploreTrending: "Explora el contenido más popular en tu red.",
- ALLButton: "TODOS",
- MINEButton: "MÍAS",
- RECENTButton: "RECIENTES",
- TOPButton: "TOP",
- bookmarkButton: "MARCADORES",
- transferButton: "TRANSFERENCIAS",
- eventButton: "EVENTOS",
- taskButton: "TAREAS",
- votesButton: "GOBIERNO",
- reportButton: "INFORMES",
- feedButton: "FEED",
- marketButton: "MERCADO",
- imageButton: "IMÁGENES",
- audioButton: "AUDIOS",
- videoButton: "VIDEOS",
- documentButton: "DOCUMENTOS",
- torrentButton: "TORRENTS",
- author: "Por",
- createdAtLabel: "Creado el",
- totalVotes: "Total de Votos",
- noTrendingFound: "No se encontraron contenidos populares.",
- noContentMessage: "No hay contenido popular disponible, aún.",
- trendingDescription: "Descripción",
- trendingDate: "Fecha",
- trendingLocation: "Ubicación",
- trendingPrice: "Precio",
- trendingUrl: "URL",
- trendingCategory: "Categoría",
- trendingStart: "Inicio",
- trendingEnd: "Fin",
- trendingPriority: "Prioridad",
- trendingStatus: "Estado",
- trendingFrom: "Desde",
- trendingTo: "Hasta",
- trendingConcept: "Concepto",
- trendingAmount: "Cantidad",
- trendingDeadline: "Plazo",
- trendingItemStatus: "Estado del Artículo",
- trendingTotalVotes: "Total de Votos",
- trendingTotalOpinions: "Total de Opiniones",
- trendingNoContentMessage: "No hay tendencias disponibles, aún.",
- trendingAuthor: "Por",
- trendingCreatedAtLabel: "Creado el",
- trendingTotalCount: "Total de Contadores",
- tasksTitle: "Tareas",
- tasksDescription: "Descubre y gestiona tareas en tu red.",
- taskTitleLabel: "Título",
- taskDescriptionLabel: "Descripción",
- taskStartTimeLabel: "Fecha de Inicio",
- taskEndTimeLabel: "Fecha de Fin",
- taskPriorityLabel: "Prioridad",
- taskPrioritySelect: "Seleccionar prioridad",
- taskPriorityUrgent: "Urgente",
- taskPriorityHigh: "Alta",
- taskPriorityMedium: "Media",
- taskPriorityLow: "Baja",
- taskLocationLabel: "Ubicación",
- taskTagsLabel: "Etiquetas",
- taskVisibilityLabel: "Visibilidad",
- taskPublic: "público",
- taskPrivate: "privado",
- taskCreatedAt: "Creado el",
- taskBy: "Por",
- taskStatus: "Estado",
- taskStatusOpen: "Abierta",
- taskStatusInProgress: "En Progreso",
- taskStatusClosed: "Cerrada",
- taskAssignedTo: "Asignada a",
- taskAssignees: "Asignados",
- taskAssignButton: "Asignar a Mí",
- taskUnassignButton: "Desasignar",
- taskCreateButton: "Crear Tarea",
- taskUpdateButton: "Actualizar",
- taskDeleteButton: "Eliminar",
- taskFilterAll: "TODOS",
- taskFilterMine: "MÍAS",
- taskFilterOpen: "ABIERTAS",
- taskFilterInProgress: "EN-PROCESO",
- taskFilterClosed: "CERRADAS",
- taskFilterAssigned: "ASIGNADAS",
- taskFilterArchived: "ARCHIVADAS",
- taskFilterUrgent: "URGENTES",
- taskFilterHigh: "ALTAS",
- taskFilterMedium: "MEDIAS",
- taskFilterLow: "BAJAS",
- taskAllSectionTitle: "Tareas",
- taskMineSectionTitle: "Tus Tareas",
- taskCreateSectionTitle: "Crear Tarea",
- taskUpdateSectionTitle: "Actualizar",
- taskOpenTitle: "Tareas Abiertas",
- taskInProgressTitle: "Tareas en Progreso",
- taskClosedTitle: "Tareas Cerradas",
- taskAssignedTitle: "Tareas Asignadas",
- taskArchivedTitle: "Tareas Archivadas",
- taskPublicTitle: "Tareas Públicas",
- taskPrivateTitle: "Tareas Privadas",
- notasks: "No hay tareas disponibles.",
- noLocation: "No se especificó ubicación",
- taskSetStatus: "Establecer estado",
- eventTitle: "Eventos",
- eventDateLabel: "Fecha",
- eventsTitle: "Eventos",
- eventsDescription: "Descubre y gestiona eventos en tu red.",
- eventDescription: "Descripción",
- eventPrice: "Precio",
- eventStatus: "Estado",
- eventOrganizer: "Organizador",
- eventAllSectionTitle: "Eventos",
- eventMineSectionTitle: "Tus Eventos",
- eventArchivedTitle: "Eventos Archivados",
- eventCreateSectionTitle: "Crear Evento",
- eventUpdateSectionTitle: "Actualizar Evento",
- eventDeleteButton: "Eliminar",
- eventCreateButton: "Crear Evento",
- eventTitleLabel: "Título",
- eventDescriptionLabel: "Descripción",
- eventDescriptionPlaceholder: "Introduce la descripción del evento...",
- eventUpdateButton: "Actualizar",
- eventAttendeesLabel: "Asistentes",
- eventAttendeesPlaceholder: "Introduce los asistentes, separados por comas...",
- eventTagsLabel: "Etiquetas",
- eventTagsPlaceholder: "Introduce las etiquetas del evento, separadas por comas...",
- eventTags: "Etiquetas",
- eventPriceLabel: "Precio",
- eventUrlLabel: "URL",
- eventAttendees: "Asistentes",
- noAttendees: "Aún no hay asistentes",
- eventCreatedAt: "Creado el",
- eventLocation: "Ubicación",
- eventLocationLabel: "Ubicación",
- eventNoLocation: "No se especificó ubicación",
- eventNoURL: "No se especificó URL",
- eventBy: "Por",
- noevents: "No hay eventos disponibles.",
- eventDate: "Fecha",
- eventDateFormat: "DD:MM:YYYY HH:mm",
- eventAttendButton: "Asistir al Evento",
- eventUnattendButton: "Dejar de asistir al Evento",
- eventCreatedBy: "Creado por",
- eventAttendeesCount: "Número de Asistentes",
- eventCreatedByYou: "Tú creaste este evento",
- eventAttendConfirmation: "Ahora estás asistiendo a este evento",
- eventUnattendConfirmation: "Ya no estás asistiendo a este evento",
- eventFilterAll: "TODOS",
- eventFilterMine: "MIOS",
- eventFilterToday: "HOY",
- eventFilterWeek: "ESTA SEMANA",
- eventFilterMonth: "ESTE MES",
- eventFilterYear: "ESTE AÑO",
- eventFilterArchived: "ARCHIVADOS",
- eventTodayTitle: "Eventos de Hoy",
- eventThisWeekTitle: "Eventos de Esta Semana",
- eventThisMonthTitle: "Eventos de Este Mes",
- eventThisYearTitle: "Eventos de Este Año",
- eventPrivacyLabel: "Visibilidad",
- eventPublic: "Público",
- eventPrivate: "Privado",
- eventPublicTitle: "Eventos Públicos",
- eventNoPrice: "Evento Gratuito",
- eventNoImage: "No se ha subido ninguna imagen",
- eventAttendConfirmation: "Ahora estás asistiendo a este evento",
- eventUnattendConfirmation: "Ya no estás asistiendo a este evento",
- eventAttended: "Asisto",
- eventUnattended: "No asisto",
- eventStatusOpen: "Abierto",
- eventStatusClosed: "Cerrado",
- tagsTitle: "Etiquetas",
- tagsDescription: "Descubre y explora patrones de taxonomía en tu red.",
- tagsAllSectionTitle: "Etiquetas",
- tagsTopSectionTitle: "Etiquetas Principales",
- tagsCloudSectionTitle: "Nube de Etiquetas",
- tagsFilterAll: "TODOS",
- tagsFilterTop: "TOP",
- tagsFilterCloud: "NUBE",
- tagsNoItems: "No hay etiquetas disponibles.",
- tagsTableHeaderTag: "ETIQUETA/ENLACE:",
- tagsTableHeaderCount: "CONTADOR:",
- transfersTitle: "Transferencias",
- transfersDescription: "Descubre y gestiona transferencias en tu red.",
- transfersFrom: "De",
- transfersTo: "A",
- transfersFilterAll: "TODOS",
- transfersFilterMine: "MÍAS",
- transfersFilterUBI: "RBU",
- transfersFilterMarket: "MERCADO",
- transfersFilterTop: "TOP",
- transfersFilterPending: "PENDIENTES",
- transfersFilterUnconfirmed: "NO CONFIRMADAS",
- transfersFilterClosed: "CERRADAS",
- transfersFilterDiscarded: "DESCARTADAS",
- transfersCreateButton: "Crear Transferencia",
- transfersUpdateButton: "Actualizar",
- transfersDeleteButton: "Eliminar",
- transfersToUser: "ID de Oasis",
- transfersToUserValidation: "ID de Oasis válido, ej. @…=.ed25519",
- transfersConcept: "Concepto",
- transfersAmount: "Cantidad",
- transfersDeadline: "Plazo",
- transfersTags: "Etiquetas",
- transfersStatus: "Estado",
- transfersStatusUnconfirmed: "NO CONFIRMADA",
- transfersStatusClosed: "CERRADA",
- transfersStatusDiscarded: "DESCARTADA",
- transfersCreatedAt: "Creado el",
- transfersConfirmations: "CONFIRMACIONES",
- transfersConfirmButton: "Confirmar Transferencia",
- transfersNoItems: "No se encontraron transferencias.",
- transfersMineSectionTitle: "Tus Transferencias",
- transfersUBISectionTitle: "Transferencias RBU",
- transfersMarketSectionTitle: "Transferencias del Mercado",
- transfersTopSectionTitle: "Transferencias Principales",
- transfersPendingSectionTitle: "Transferencias Pendientes",
- transfersUnconfirmedSectionTitle: "Transferencias No Confirmadas",
- transfersClosedSectionTitle: "Transferencias Cerradas",
- transfersDiscardedSectionTitle: "Transferencias Descartadas",
- transfersCreateSectionTitle: "Crear transferencia",
- transfersAllSectionTitle: "Transferencias",
- transfersFilterFavs: "Favoritos",
- transfersFavsSectionTitle: "Transferencias favoritas",
- transfersSearchLabel: "Buscar",
- transfersSearchPlaceholder: "Buscar por concepto, tags, usuarios...",
- transfersMinAmountLabel: "Importe mín.",
- transfersMaxAmountLabel: "Importe máx.",
- transfersSortLabel: "Ordenar por",
- transfersSortRecent: "Más recientes",
- transfersSortAmount: "Mayor importe",
- transfersSortDeadline: "Deadline más próximo",
- transfersSearchButton: "Buscar",
- transfersFavoriteButton: "Favorito",
- transfersUnfavoriteButton: "Quitar favorito",
- transfersMessageUserButton: "Mensaje",
- transfersExpiringSoonBadge: "CADUCA PRONTO",
- transfersExpiredBadge: "CADUCADA",
- transfersUpdatedAt: "Actualizado",
- transfersNoMatch: "No hay transferencias que coincidan con tu búsqueda.",
- votationsTitle: "Votaciones",
- votationsDescription: "Descubre y gestiona votaciones en tu red.",
- voteMineSectionTitle: "Tus Votaciones",
- voteCreateSectionTitle: "Crear Votación",
- voteUpdateSectionTitle: "Actualizar",
- voteOpenTitle: "Votaciones Abiertas",
- voteClosedTitle: "Votaciones Cerradas",
- voteAllSectionTitle: "Gobierno",
- voteCreateButton: "Crear Votación",
- voteUpdateButton: "Actualizar",
- voteDeleteButton: "Eliminar",
- voteOptionYes: "SÍ",
- voteOptionNo: "NO",
- voteOptionAbstention: "ABSTENCIÓN",
- voteConfused: "CONFUNDIDO",
- voteFollowMajority: "SEGUIR MAYORÍA",
- voteNotInterested: "SIN INTERÉS",
- voteFilterAll: "TODOS",
- voteFilterMine: "MÍAS",
- voteFilterOpen: "ABIERTAS",
- voteFilterClosed: "CERRADAS",
- voteQuestionLabel: "Pregunta",
- voteDeadlineLabel: "Plazo",
- voteOptionsLabel: "Tu voto",
- voteBreakdown: "Desglose",
- voteFinalResult: "RESULTADO",
- voteTagsLabel: "Etiquetas",
- voteDeadline: "Plazo",
- voteStatus: "Estado",
- voteTotalVotes: "Total de Votos",
- voteTags: "Etiquetas",
- voteOpinions: "Opiniones",
- novotes: "No hay propuestas de votación disponibles.",
- voteBy: "Por",
- voteCreatedAt: "Creado el",
- voteNoQuestion: "No se proporcionó pregunta",
- voteUnknownCreator: "Creador Desconocido",
- voteUnknownDate: "Fecha Desconocida",
- errorVoteNotFound: "Votación no encontrada",
- errorAlreadyVoted: "Ya has opnado.",
- errorVoteClosedCannotEdit: "No puedes editar una votación cerrada",
- errorVoteDeadlinePassed: "El plazo para esta votación ha pasado",
- errorRetrievingVote: "Error al recuperar votación",
- errorCreatingVote: "Error al crear votación",
- errorVoteAlreadyVoted: "No se puede editar después de haber opinado",
- errorDeletingOldVote: "Error al eliminar opinión anterior",
- errorCreatingUpdatedVote: "Error al crear opinión actualizada",
- errorCreatingTombstone: "Error al crear lápida",
- voteDetailSectionTitle: 'Detalles de la votación',
- voteCommentsLabel: 'Comentarios',
- voteCommentsForumButton: 'Abrir conversación',
- voteCommentsSectionTitle: 'Conversación abierta',
- voteNoCommentsYet: 'Todavía no hay comentarios. Sé la primera persona en opinar.',
- voteNewCommentPlaceholder: 'Escribe aquí tu comentario…',
- voteNewCommentButton: 'Publicar comentario',
- voteNewCommentLabel: 'Añade un comentario',
- cvTitle: "CV",
- cvLabel: "Currículum Vitae (CV)",
- cvEditSectionTitle: "Editar CV",
- cvCreateSectionTitle: "Crear CV",
- cvDescription: "Gestiona y comparte tus habilidades profesionales e información.",
- cvNameLabel: "Nombre Completo",
- cvDescriptionLabel: "Resumen",
- cvPhotoLabel: "Foto",
- cvPersonalExperiencesLabel: "Experiencias Personales",
- cvPersonalSkillsLabel: "Habilidades Personales (separadas por comas)",
- cvOasisExperiencesLabel: "Experiencias de Contribución en Oasis",
- cvOasisSkillsLabel: "Habilidades de Contribución en Oasis (separadas por comas)",
- cvEducationExperiencesLabel: "Experiencias Educativas",
- cvEducationalSkillsLabel: "Habilidades Educativas (separadas por comas)",
- cvProfessionalExperiencesLabel: "Experiencias Profesionales",
- cvProfessionalSkillsLabel: "Habilidades Profesionales (separadas por comas)",
- cvLanguagesLabel: "Idiomas",
- cvLocationLabel: "Ubicación",
- cvStatusLabel: "Estado",
- cvPreferencesLabel: "Preferencias",
- cvOasisContributorLabel: "Contribuyente de Oasis",
- cvPersonal: "Personal",
- cvOasis: "Contribuyente de Oasis (opcional)",
- cvOasisContributorView: "Contribución en Oasis",
- cvEducational: "Educativo (opcional)",
- cvEducationalView: "Educativo",
- cvProfessional: "Profesional (opcional)",
- cvProfessionalView: "Profesional",
- cvAvailability: "Disponibilidad (opcional)",
- cvAvailabilityView: "Disponibilidad",
- cvUpdateButton: "Actualizar",
- cvCreateButton: "Crear CV",
- cvContactLabel: "Contacto",
- cvCreatedAt: "Creado el",
- cvUpdatedAt: "Actualizado el",
- cvEditButton: "Actualizar",
- cvDeleteButton: "Eliminar",
- cvNoCV: "No se encontró ningún CV.",
- blogSubject: "Asunto",
- blogMessage: "Mensaje",
- blogImage: "Subir contenido multimedia (max: 50MB)",
- blogPublish: "Vista previa",
- noPopularMessages: "No se han publicado mensajes populares, aún",
- forumTitle: "Foros",
- forumCategoryLabel: "Categoría",
- forumTitleLabel: "Título",
- forumTitlePlaceholder: "Título del foro...",
- forumCreateButton: "Crear foro",
- forumCreateSectionTitle: "Crear foro",
- forumDescription: "Habla abiertamente con habitantes de tu red.",
- forumFilterAll: "TODOS",
- forumFilterMine: "MÍAS",
- forumFilterRecent: "RECIENTES",
- forumFilterTop: "TOP",
- forumMineSectionTitle: "Tus Foros",
- forumRecentSectionTitle: "Foros Recientes",
- forumAllSectionTitle: "Foros",
- forumDeleteButton: "Borrar",
- forumParticipants: "participantes",
- forumMessages: "mensajes",
- forumLastMessage: "Último mensaje",
- forumMessageLabel: "Mensaje",
- forumMessagePlaceholder: "Escribe tu mensaje...",
- forumSendButton: "Enviar",
- forumVisitForum: "Visitar Foro",
- noForums: "No hay foros disponibles, aún.",
- forumVisitButton: "Visitar foro",
- forumCatGENERAL: "General",
- forumCatOASIS: "Oasis",
- forumCatLARP: "L.A.R.P.",
- forumCatPOLITICS: "Política",
- forumCatTECH: "Tecnología",
- forumCatSCIENCE: "Ciencia",
- forumCatMUSIC: "Música",
- forumCatART: "Arte",
- forumCatGAMING: "Videojuegos",
- forumCatBOOKS: "Libros",
- forumCatFILMS: "Cine",
- forumCatPHILOSOPHY: "Filosofía",
- forumCatSOCIETY: "Sociedad",
- forumCatPRIVACY: "Privacidad",
- forumCatCYBERWARFARE: "Ciberguerra",
- forumCatSURVIVALISM: "Supervivencia",
- imageTitle: "Imágenes",
- imageDescription: "Explora y gestiona contenido de imágenes en tu red.",
- imagePluginTitle: "Título",
- imagePluginDescription: "Descripción",
- imageMineSectionTitle: "Tus imágenes",
- imageCreateSectionTitle: "Subir imagen",
- imageUpdateSectionTitle: "Actualizar imagen",
- imageAllSectionTitle: "Imágenes",
- imageRecentSectionTitle: "Imágenes recientes",
- imageTopSectionTitle: "Top imágenes",
- imageFavoritesSectionTitle: "Favoritos",
- imageGallerySectionTitle: "Galería",
- imageMemeSectionTitle: "Memes",
- imageFilterAll: "TODAS",
- imageFilterMine: "MÍAS",
- imageFilterRecent: "RECIENTES",
- imageFilterTop: "TOP",
- imageFilterFavorites: "FAVORITOS",
- imageFilterGallery: "GALERÍA",
- imageFilterMeme: "MEMES",
- imageCreateButton: "Subir imagen",
- imageUpdateButton: "Actualizar",
- imageDeleteButton: "Eliminar",
- imageAddFavoriteButton: "Añadir favorito",
- imageRemoveFavoriteButton: "Quitar favorito",
- imageFileLabel: "Selecciona un archivo de imagen (.jpeg, .jpg, .png, .gif)",
- imageTagsLabel: "Etiquetas",
- imageTagsPlaceholder: "Introduce etiquetas separadas por comas",
- imageTitleLabel: "Título",
- imageTitlePlaceholder: "Opcional",
- imageDescriptionLabel: "Descripción",
- imageDescriptionPlaceholder: "Opcional",
- imageMemeLabel: "¿MEME?",
- imageNoFile: "No se ha proporcionado ningún archivo de imagen",
- noImages: "No hay imágenes disponibles.",
- imageSearchPlaceholder: "Buscar por título, etiquetas, descripción, autor...",
- imageSortRecent: "Más recientes",
- imageSortOldest: "Más antiguas",
- imageSortTop: "Más votadas",
- imageSearchButton: "Buscar",
- imageMessageAuthorButton: "Mensaje",
- imageUpdatedAt: "Actualizado",
- imageNoMatch: "Ninguna imagen coincide con tu búsqueda.",
- feedTitle: "Feed",
- feedDetailTitle: "Feed",
- feedOpenDiscussion: "Abrir discusión",
- feedPostComment: "Publicar comentario",
- noComments: "Aún no hay comentarios",
- createFeedTitle: "Crear Feed",
- createFeedButton: "Enviar Feed!",
- feedPlaceholder: "¿Qué está pasando? (máximo 280 caracteres)",
- ALLButton: "Feeds",
- MINEButton: "Tus Feeds",
- TODAYButton: "HOY",
- TOPButton: "Feeds Principales",
- CREATEButton: "Crear Feed",
- totalOpinions: "Total de Opiniones",
- moreVoted: "Más Votado",
- alreadyVoted: "Ya has opinado.",
- noFeedsFound: "No se encontraron feeds.",
- author: "Por",
- createdAtLabel: "Creado el",
- FeedshareYourOpinions: "Descubre y comparte textos breves en tu red.",
- refeedButton: "Realimentar",
- alreadyRefeeded: "Ya has realimentado esto.",
- activityTitle: "Actividad",
- yourActivity: "Tu actividad",
- globalActivity: "Actividad global",
- activityList: "Actividad",
- activityDesc: "Consulta la actividad más reciente de tu red.",
- allButton: "TODO",
- mineButton: "MÍAS",
- noActions: "No hay actividad disponible.",
- performed: "→",
- from: "De",
- to: "A",
- amount: "Cantidad",
- concept: "Concepto",
- description: "Descripción",
- meme: "Meme",
- activityContact: "Contacto",
- activityBy: "Nombre",
- activityPixelia: "Nuevo píxel añadido",
- viewImage: "Ver imagen",
- playAudio: "Reproducir audio",
- playVideo: "Reproducir vídeo",
- typeRecent: "RECIENTE",
- errorActivity: "Error al recuperar la actividad",
- typePost: "PUBLICACIÓN",
- typeTribe: "TRIBUS",
- typeAbout: "HABITANTES",
- typeCurriculum: "CV",
- typeImage: "IMÁGENES",
- typeBookmark: "MARCADORES",
- typeDocument: "DOCUMENTOS",
- typeVotes: "VOTACIONES",
- typeAudio: "AUDIOS",
- typeMarket: "MERCADO",
- typeJob: "TRABAJOS",
- typeProject: "PROYECTOS",
- typeVideo: "VÍDEOS",
- typeVote: "DIFUSIÓN",
- typeEvent: "EVENTOS",
- typeTransfer: "TRANSFERENCIA",
- typeTask: "TAREAS",
- typePixelia: "PIXELIA",
- typeForum: "FORO",
- typeReport: "REPORTES",
- typeFeed: "FEED",
- typeContact: "CONTACTO",
- typePub: "PUB",
- typeTombstone: "ELIMINADO",
- typeBanking: "BANCA",
- typeBankWallet: "BANCA/MONEDERO",
- typeBankClaim: "BANCA/UBI",
- typeKarmaScore: "KARMA",
- typeParliament: "PARLAMENTO",
- typeSpread: "RÉPLICAS",
- typeParliamentCandidature: "Parlamento · Candidatura",
- typeParliamentTerm: "Parlamento · Mandato",
- typeParliamentProposal:"Parlamento · Propuesta",
- typeParliamentRevocation:"Parlamento · Revocación",
- typeParliamentLaw: "Parlamento · Nueva ley",
- typeCourts: "TRIBUNALES",
- typeCourtsCase: "Tribunales · Caso",
- typeCourtsEvidence: "Tribunales · Prueba",
- typeCourtsAnswer: "Tribunales · Respuesta",
- typeCourtsVerdict: "Tribunales · Veredicto",
- typeCourtsSettlement: "Tribunales · Acuerdo",
- typeCourtsSettlementProposal: "Tribunales · Propuesta de acuerdo",
- typeCourtsSettlementAccepted: "Tribunales · Acuerdo aceptado",
- typeCourtsNomination: "Tribunales · Nominación",
- typeCourtsNominationVote: "Tribunales · Votación de nominación",
- activitySupport: "Nueva alianza forjada",
- activityJoin: "Nuevo PUB unido",
- question: "Pregunta",
- deadline: "Fecha límite",
- status: "Estado",
- votes: "Votos",
- totalVotes: "Votos totales",
- voteTotalVotes: "Votos totales",
- name: "Nombre",
- skills: "Habilidades",
- tags: "Etiquetas",
- title: "Título",
- date: "Fecha",
- category: "Categoría",
- attendees: "Asistentes",
- activitySpread: "->",
- visitLink: "Visitar enlace",
- viewDocument: "Ver documento",
- location: "Ubicación",
- contentWarning: "Asunto",
- personName: "Nombre del habitante",
- bankWalletConnected: "Monedero ECOin",
- bankUbiReceived: "UBI recibido",
- bankTx: "Tx",
- bankEpochShort: "Época",
- bankAllocId: "ID de asignación",
- viewDetails: "Ver detalles",
- link: "Enlace",
- aiSnippetsLearned: "Fragmentos aprendidos",
- tribeFeedRefeeds: "Reenvíos",
- activityProjectFollow: "%OASIS% ahora está %ACTION% este proyecto %PROJECT%",
- activityProjectUnfollow: "%OASIS% ahora está %ACTION% este proyecto %PROJECT%",
- activityProjectPledged: "%OASIS% ha %ACTION% %AMOUNT% al proyecto %PROJECT%",
- following: "SIGUIENDO",
- unfollowing: "DEJANDO DE SEGUIR",
- pledged: "APORTADO",
- parliamentCandidatureId: "Candidatura",
- parliamentGovMethod: "Método",
- parliamentVotesReceived: "Votos recibidos",
- parliamentMethodANARCHY: "Anarquía",
- parliamentMethodVOTE: "Votación comunitaria",
- parliamentMethodRANKED: "Voto preferencial",
- parliamentMethodPLURALITY: "Pluralidad",
- parliamentMethodCOUNCIL: "Consejo",
- parliamentMethodJURY: "Jurado",
- parliamentAnarchy: "ANARQUÍA",
- parliamentElectionsStart: "Inicio de elecciones",
- parliamentElectionsEnd: "Fin de elecciones",
- parliamentCurrentLeader: "Candidatura ganadora",
- parliamentProposalTitle: "Título",
- parliamentOpenVote: "Votación abierta",
- parliamentStatus: "Estado",
- parliamentLawQuestion: "Pregunta",
- parliamentLawMethod: "Método",
- parliamentLawProposer: "Proponente",
- parliamentLawEnacted: "Promulgada",
- parliamentLawVotes: "Votos",
- createdAt: "Creado el",
- courtsCaseTitle: "Caso",
- courtsMethod: "Método",
- courtsMethodJUDGE: "Juez",
- courtsMethodJUDGES: "Panel de jueces",
- courtsMethodSINGLE_JUDGE: "Juez único",
- courtsMethodJURY: "Jurado",
- courtsMethodCOUNCIL: "Consejo",
- courtsMethodCOMMUNITY: "Comunidad",
- courtsMethodMEDIATION: "Mediación",
- courtsMethodARBITRATION: "Arbitraje",
- courtsMethodVOTE: "Votación comunitaria",
- courtsAccuser: "Acusación",
- courtsRespondent: "Defensa",
- courtsThStatus: "Estado",
- courtsThAnswerBy: "Responder antes de",
- courtsThEvidenceBy: "Pruebas hasta",
- courtsThDecisionBy: "Decisión antes de",
- courtsVotesNeeded: "Votos necesarios",
- courtsVotesSlashTotal: "SÍ/TOTAL",
- courtsOpenVote: "Votación abierta",
- courtsAnswerTitle: "Respuesta",
- courtsStanceADMIT: "Admite",
- courtsStanceDENY: "Niega",
- courtsStancePARTIAL: "Parcial",
- courtsStanceCOUNTERCLAIM: "Reconvención",
- courtsStanceNEUTRAL: "Neutral",
- courtsVerdictResult: "Resultado",
- courtsVerdictOrders: "Órdenes",
- courtsSettlementText: "Acuerdo",
- courtsSettlementAccepted: "Aceptado",
- courtsSettlementPending: "Pendiente",
- courtsJudge: "Juez",
- courtsThSupports: "Apoyos",
- courtsFilterOpenCase: 'Abrir caso',
- courtsEvidenceFileLabel: 'Archivo de prueba (imagen, audio, vídeo o PDF)',
- courtsCaseMediators: 'Mediadores',
- courtsCaseMediatorsPh: 'IDs de Oasis de mediadores, separados por comas',
- courtsMediatorsLabel: 'Mediadores',
- courtsThCase: 'Caso',
- courtsThCreatedAt: 'Fecha de inicio',
- courtsThActions: 'Acciones',
- courtsPublicPrefLabel: 'Visibilidad tras la resolución',
- courtsPublicPrefYes: 'Acepto que este caso sea totalmente público',
- courtsPublicPrefNo: 'Prefiero mantener privados los detalles',
- courtsPublicPrefSubmit: 'Guardar preferencia de visibilidad',
- courtsMethodMEDIATION: 'Mediación',
- courtsNoCases: 'No hay casos.',
- reportsTitle: "Informes",
- reportsDescription: "Gestiona y realiza un seguimiento de los informes relacionados con problemas, errores, abusos y advertencias de contenido en tu red.",
- reportsFilterAll: "TODOS",
- reportsFilterMine: "MIOS",
- reportsFilterFeatures: "FUNCIONES",
- reportsFilterBugs: "ERRORES",
- reportsFilterAbuse: "ABUSOS",
- reportsFilterContent: "CONTENIDO",
- reportsFilterConfirmed: "CONFIRMADOS",
- reportsFilterResolved: "RESUELTOS",
- reportsFilterOpen: "ABIERTOS",
- reportsFilterUnderReview: "EN REVISIÓN",
- reportsFilterInvalid: "INVALIDOS",
- reportsCreateButton: "Crear Informe",
- reportsTitleLabel: "Título",
- reportsDescriptionLabel: "Descripción",
- reportsDescriptionPlaceholder: "Por favor, proporciona una descripción detallada.",
- reportsCategory: "Categoría",
- reportsCategoryLabel: "Categoría",
- reportsCategoryFeatures: "Funciones",
- reportsCategoryBugs: "Errores",
- reportsCategoryAbuse: "Abuso",
- reportsCategoryContent: "Problemas de Contenido",
- reportsUpdateButton: "Actualizar",
- reportsDeleteButton: "Eliminar",
- reportsDateLabel: "Fecha",
- reportsUploadFile: "Subir contenido multimedia (max: 50MB)",
- reportsCreatedBy: "Por",
- reportsMineSectionTitle: "Tus Informes",
- reportsFeaturesSectionTitle: "Solicitudes de Funciones",
- reportsBugsSectionTitle: "Errores",
- reportsAbuseSectionTitle: "Informes de Abuso",
- reportsContentSectionTitle: "Problemas de Contenido",
- reportsAllSectionTitle: "Informes",
- reportsNoItems: "No hay informes disponibles.",
- reportsValidationTitle: "Por favor, ingresa un título válido.",
- reportsValidationDescription: "La descripción no puede estar vacía.",
- reportsValidationCategory: "Por favor, selecciona una categoría.",
- reportsCreatedAt: "Creado el",
- reportsCreatedBy: "Por",
- reportsSeverity: "Gravedad",
- reportsSeverityLow: "Baja",
- reportsSeverityMedium: "Media",
- reportsSeverityHigh: "Alta",
- reportsSeverityCritical: "Crítica",
- reportsStatus: "Estado",
- reportsStatusOpen: "Abierto",
- reportsStatusUnderReview: "En Revisión",
- reportsStatusResolved: "Resuelto",
- reportsStatusInvalid: "Inválido",
- reportsUpdateStatusButton: "Actualizar Estado",
- reportsAnonymityOption: "Enviar de forma anónima",
- reportsAnonymousAuthor: "Anónimo",
- reportsConfirmButton: "CONFIRMAR INFORME!",
- reportsConfirmations: "Confirmaciones",
- reportsConfirmedSectionTitle: "Informes Confirmados",
- reportsCreateTaskButton: "CREAR TAREA",
- reportsOpenSectionTitle: "Informes Abiertos",
- reportsUnderReviewSectionTitle: "Informes en Revisión",
- reportsResolvedSectionTitle: "Informes Resueltos",
- reportsInvalidSectionTitle: "Informes Inválidos",
- reportsTemplateSectionTitle: 'Plantilla de reporte',
- reportsBugTemplateTitle: 'Datos para reproducir (Bugs)',
- reportsFeatureTemplateTitle: 'Detalles (Features)',
- reportsAbuseTemplateTitle: 'Detalles (Abuso)',
- reportsContentTemplateTitle: 'Detalles (Problemas de Contenido)',
- reportsStepsToReproduceLabel: 'Pasos para reproducir',
- reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
- reportsExpectedBehaviorLabel: 'Resultado esperado',
- reportsExpectedBehaviorPlaceholder: '¿Qué debería pasar?',
- reportsActualBehaviorLabel: 'Resultado actual',
- reportsActualBehaviorPlaceholder: '¿Qué pasa realmente?',
- reportsEnvironmentLabel: 'Entorno',
- reportsEnvironmentPlaceholder: 'Versión, dispositivo, OS, navegador, configuración, logs, etc.',
- reportsReproduceRateLabel: 'Frecuencia',
- reportsReproduceRateAlways: 'Siempre',
- reportsReproduceRateOften: 'A menudo',
- reportsReproduceRateSometimes: 'A veces',
- reportsReproduceRateRarely: 'Rara vez',
- reportsReproduceRateUnable: 'No se puede reproducir',
- reportsReproduceRateUnknown: 'No especificado',
- reportsProblemStatementLabel: 'Problema / necesidad',
- reportsProblemStatementPlaceholder: '¿Qué problema resuelve esta feature?',
- reportsUserStoryLabel: 'Historia de habitante',
- reportsUserStoryPlaceholder: 'Como <habitante>, quiero <acción>, para <beneficio>.',
- reportsAcceptanceCriteriaLabel: 'Criterios de aceptación',
- reportsAcceptanceCriteriaPlaceholder: '- Dado...\n- Cuando...\n- Entonces...',
- reportsWhatHappenedLabel: '¿Qué ocurrió?',
- reportsWhatHappenedPlaceholder: 'Describe el incidente con contexto y fechas aproximadas.',
- reportsReportedUserLabel: 'Habitante / entidad reportada',
- reportsReportedUserPlaceholder: '@habitante, feed, ID, enlace, etc.',
- reportsEvidenceLinksLabel: 'Evidencia / enlaces',
- reportsEvidenceLinksPlaceholder: 'Pega enlaces, IDs de mensajes, capturas (si aplica), etc.',
- reportsContentLocationLabel: 'Dónde está el contenido',
- reportsContentLocationPlaceholder: 'Enlace, ID, canal, hilo, autor, etc.',
- reportsWhyInappropriateLabel: '¿Por qué es inapropiado?',
- reportsWhyInappropriatePlaceholder: 'Explica el motivo y el impacto.',
- reportsRequestedActionLabel: 'Acción solicitada',
- reportsRequestedActionPlaceholder: 'Eliminar, ocultar, marcar, advertir, etc.',
- tribesTitle: "Tribus",
- tribeAllSectionTitle: "Tribus",
- tribeMineSectionTitle: "Tus Tribus",
- tribeCreateSectionTitle: "Crear Tribu",
- tribeUpdateSectionTitle: "Actualizar Tribu",
- tribeGallerySectionTitle: "Galería de Tribus",
- tribeLarpSectionTitle: "L.A.R.P.",
- tribeRecentSectionTitle: "Tribus Recientes",
- tribeTopSectionTitle: "Tribus Populares",
- tribeviewTribeButton: "Visitar Tribu",
- tribeDescription: "Explora o crea tribus en tu red.",
- tribeFilterAll: "TODOS",
- tribeFilterMine: "MÍAS",
- tribeFilterMembership: "MIEMBROS",
- tribeFilterRecent: "RECIENTES",
- tribeFilterLarp: "L.A.R.P.",
- tribeFilterTop: "TOP",
- tribeFilterSubtribes: "SUB-TRIBUS",
- tribeFilterGallery: "GALERÍA",
- tribeMainTribeLabel: "TRIBU PRINCIPAL",
- tribeCreateButton: "Crear Tribu",
- tribeUpdateButton: "Actualizar",
- tribeDeleteButton: "Eliminar",
- tribeImageLabel: "Subir contenido multimedia (max: 50MB)",
- tribeTitleLabel: "Título",
- searchTribesPlaceholder: "FILTRAR tribus POR NOMBRE …",
- tribeTitlePlaceholder: "Nombre de la tribu",
- tribeDescriptionLabel: "Descripción",
- tribeDescriptionPlaceholder: "Describe esta tribu",
- tribeLocationLabel: "Ubicación",
- tribeLocationPlaceholder: "¿Dónde está ubicada esta tribu?",
- tribeTagsLabel: "Etiquetas",
- tribeTagsPlaceholder: "Introduce etiquetas separadas por comas",
- tribeIsLARPLabel: "¿Tribu L.A.R.P.?",
- tribeInviteMode: "Modo de invitación",
- tribeLARPLabel: "L.A.R.P.",
- tribeModeLabel: "MODO",
- tribeIsAnonymousLabel: "ESTADO",
- tribeMembersCount: "Miembros",
- tribeInviteCodePlaceholder: "Introduce el código de invitación",
- tribeJoinByCodeButton: "Unirse con código",
- tribeJoinButton: "UNIRSE",
- tribeLeaveButton: "DEJAR",
- tribeYes: "SÍ",
- tribeNo: "NO",
- tribePublic: "PÚBLICA",
- tribePrivate: "PRIVADA",
- tribeGenerateInvite: "GENERAR CÓDIGO",
- tribeCreatedAt: "Creado el",
- tribeAuthor: "Por",
- tribeAuthorLabel: "AUTOR",
- tribeStrict: "Estricto",
- tribeOpen: "Abierta",
- tribeFeedFilterRECENT: "RECIENTES",
- tribeFeedFilterMINE: "MIOS",
- tribeFeedFilterALL: "TODOS",
- tribeFeedFilterTOP: "TOP",
- tribeFeedRefeeds: "Redifusiones",
- tribeFeedRefeed: "Redifundir",
- tribeFeedMessagePlaceholder: "Escribe un feed…",
- tribeFeedSend: "Enviar",
- tribeFeedEmpty: "No hay mensajes de feed disponibles, aún.",
- noTribes: "No se encontraron tribus, aún.",
- tribeNotFound: "Tribu no encontrada!",
- createTribeTitle: "Crear Tribu",
- updateTribeTitle: "Actualizar Tribu",
- tribeSectionOverview: "Resumen",
- tribeSectionInhabitants: "Habitantes",
- tribeSectionVotations: "VOTACIONES",
- tribeSectionEvents: "EVENTOS",
- tribeSectionReports: "Reportes",
- tribeSectionTasks: "TAREAS",
- tribeSectionFeed: "FEED",
- tribeSectionForum: "FORO",
- tribeSectionMarket: "Mercado",
- tribeSectionJobs: "Empleos",
- tribeSectionProjects: "Proyectos",
- tribeSectionMedia: "Multimedia",
- tribeSectionImages: "IMÁGENES",
- tribeSectionAudios: "AUDIOS",
- tribeSectionVideos: "VÍDEOS",
- tribeSectionDocuments: "DOCUMENTOS",
- tribeSectionBookmarks: "MARCADORES",
- tribeSectionMaps: "MAPS",
- tribeSectionPads: "PADS",
- tribeSectionChats: "CHATS",
- tribeSectionCalendars: "CALENDARS",
- tribePadCreate: "Create Pad",
- tribeChatCreate: "Create Chat",
- tribeCalendarCreate: "Create Calendar",
- tribePadsEmpty: "No pads, yet.",
- tribeChatsEmpty: "No chats, yet.",
- tribeCalendarsEmpty: "No calendars, yet.",
- tribeInhabitantsEmpty: "No hay habitantes en esta tribu, aún.",
- tribeEventCreate: "Crear Evento",
- tribeEventsEmpty: "No hay eventos, aún.",
- tribeEventTitle: "Título",
- tribeEventDescription: "Descripción",
- tribeEventDate: "Fecha",
- tribeEventLocation: "Ubicación",
- tribeEventAttend: "ASISTIR",
- tribeEventUnattend: "NO ASISTIR",
- tribeEventAttendees: "Asistentes",
- tribeTaskCreate: "Crear Tarea",
- tribeTasksEmpty: "No hay tareas, aún.",
- tribeTaskTitle: "Título",
- tribeTaskDescription: "Descripción",
- tribeTaskPriority: "Prioridad",
- tribeTaskDeadline: "Fecha límite",
- tribeTaskAssignees: "Asignados",
- tribeTaskStatusInProgress: "EN PROGRESO",
- tribeTaskStatusClosed: "CERRAR",
- tribeTaskAssign: "ASIGNAR",
- tribeTaskUnassign: "DESASIGNAR",
- tribeReportCreate: "Crear Reporte",
- tribeReportsEmpty: "No hay reportes, aún.",
- tribeReportTitle: "Título",
- tribeReportDescription: "Descripción",
- tribeReportCategory: "Categoría",
- tribeVotationCreate: "Crear Votación",
- tribeVotationsEmpty: "No hay votaciones, aún.",
- tribeVotationTitle: "Título",
- tribeVotationDescription: "Descripción",
- tribeVotationOptions: "Opciones",
- tribeVotationDeadline: "Fecha límite",
- tribeVotationVote: "VOTAR",
- tribeVotationResults: "Votos",
- tribeVotationClose: "CERRAR VOTACIÓN",
- tribeVotationOptionPlaceholder: "Opción",
- tribeForumCreate: "Crear Forum",
- tribeForumEmpty: "No hay hilos, aún.",
- tribeForumTitle: "Título",
- tribeForumText: "Mensaje",
- tribeForumCategory: "Categoría",
- tribeForumReply: "Responder",
- tribeForumReplies: "Respuestas",
- tribeMarketCreate: "Crear Anuncio",
- tribeMarketEmpty: "No hay anuncios, aún.",
- tribeMarketTitle: "Título",
- tribeMarketDescription: "Descripción",
- tribeMarketPrice: "Precio",
- tribeMarketImage: "Imagen",
- tribeMarketCategory: "Categoría",
- tribeJobCreate: "Crear Empleo",
- tribeJobsEmpty: "No hay empleos, aún.",
- tribeJobTitle: "Título",
- tribeJobDescription: "Descripción",
- tribeJobLocation: "Ubicación",
- tribeJobSalary: "Salario",
- tribeJobDeadline: "Fecha límite",
- tribeProjectCreate: "Crear Proyecto",
- tribeProjectsEmpty: "No hay proyectos, aún.",
- tribeProjectTitle: "Título",
- tribeProjectDescription: "Descripción",
- tribeProjectGoal: "Objetivo",
- tribeProjectFunded: "Financiado",
- tribeProjectDeadline: "Fecha límite",
- tribeMediaUpload: "Subir Media",
- readDocument: "Leer Documento",
- tribeCreateImage: "Crear Imagen",
- tribeCreateAudio: "Crear Audio",
- tribeCreateVideo: "Crear Video",
- tribeCreateDocument: "Crear Documento",
- tribeCreateBookmark: "Crear Marcador",
- tribeMediaEmpty: "No hay media, aún.",
- tribeMediaTitle: "Título",
- tribeMediaDescription: "Descripción",
- tribeMediaType: "Tipo",
- tribeMediaTypeImage: "Imagen",
- tribeMediaTypeVideo: "Vídeo",
- tribeMediaTypeAudio: "Audio",
- tribeMediaTypeDocument: "Documento",
- tribeMediaTypeBookmark: "Marcador",
- tribeContentDelete: "ELIMINAR",
- tribeInviteCodeText: "Código de invitación: ",
- tribeGroupTribe: "Tribu",
- tribeGroupOffice: "Oficina",
- tribeGroupNetwork: "Red",
- tribeGroupEconomy: "Economía",
- tribeGroupMedia: "Multimedia",
- tribeStatusOpen: "ABIERTO",
- tribeStatusClosed: "CERRADO",
- tribeStatusInProgress: "EN PROGRESO",
- tribePriorityLow: "BAJA",
- tribePriorityMedium: "MEDIA",
- tribePriorityHigh: "ALTA",
- tribePriorityCritical: "CRÍTICA",
- tribeTaskFilterAll: "TODOS",
- tribeMediaFilterAll: "TODOS",
- tribeReportCatBug: "ERROR",
- tribeReportCatAbuse: "ABUSO",
- tribeReportCatContent: "CONTENIDO",
- tribeReportCatOther: "OTRO",
- tribeForumCatGeneral: "GENERAL",
- tribeForumCatProposal: "PROPUESTA",
- tribeForumCatQuestion: "PREGUNTA",
- tribeForumCatAnnouncement: "ANUNCIO",
- tribeMarketCatGoods: "BIENES",
- tribeMarketCatServices: "SERVICIOS",
- tribeMarketCatFood: "ALIMENTACIÓN",
- tribeMarketCatOther: "OTRO",
- tribeStatusLabel: "Estado",
- tribeSubTribes: "SUB-TRIBUS",
- tribeSubTribesCreate: "Crear Sub-Tribu",
- tribeSubTribesEmpty: "No se han creado sub-tribus, aún.",
- tribeLarpCreateForbidden: "No se pueden crear tribus L.A.R.P.",
- tribeLarpUpdateForbidden: "No se pueden actualizar tribus L.A.R.P.",
- tribeActivityJoined: "UNIDO",
- tribeActivityLeft: "SALIDO",
- tribeActivityFeed: "FEED",
- tribeActivityRefeed: "REFEED",
- tribeGroupAnalytics: "Analíticas",
- tribeGroupCreative: "Creativo",
- tribeSectionActivity: "ACTIVIDAD",
- tribeSectionTrending: "TENDENCIAS",
- tribeSectionOpinions: "OPINIONES",
- tribeSectionPixelia: "PIXELIA",
- tribeSectionTags: "ETIQUETAS",
- tribeSectionSearch: "BUSCAR",
- tribeActivityEmpty: "Sin actividad aún.",
- tribeActivityCreated: "creó",
- tribeActivityPosted: "publicó",
- tribeActivityReplied: "respondió",
- tribeTrendingEmpty: "Sin contenido en tendencia aún.",
- tribeTrendingPeriodDay: "Hoy",
- tribeTrendingPeriodWeek: "Esta Semana",
- tribeTrendingPeriodAll: "Todo",
- tribeTrendingEngagement: "interacción",
- tribeOpinionsEmpty: "Sin opiniones aún.",
- tribeOpinionsCast: "Votar",
- tribeOpinionsRankings: "Clasificaciones",
- tribeOpinionsAlreadyVoted: "Ya has votado",
- tribeTopCategory: "Más votado",
- tribePixeliaTitle: "Pixelia",
- tribePixeliaDescription: "Lienzo colaborativo de pixel art.",
- tribePixeliaPaint: "Pintar",
- tribePixeliaContributors: "contribuidores",
- tribePixeliaTotalPixels: "píxeles pintados",
- tribeTagsEmpty: "No se encontraron etiquetas.",
- tribeTagsCloud: "Nube de Etiquetas",
- tribeTagsContentWith: "Contenido con etiqueta",
- tribeSearchPlaceholder: "Buscar contenido de la tribu...",
- tribeSearchEmpty: "Sin resultados.",
- tribeSearchResults: "Resultados",
- tribeSearchMinChars: "Introduce al menos 2 caracteres para buscar.",
- agendaTitle: "Agenda",
- agendaDescription: "Aquí puedes encontrar todos tus elementos asignados.",
- agendaFilterAll: "TODOS",
- agendaFilterOpen: "ABIERTOS",
- agendaFilterClosed: "CERRADOS",
- agendaFilterTasks: "TAREAS",
- agendaFilterMarket: "MERCADO",
- agendaFilterTribes: "TRIBUS",
- agendaFilterEvents: "EVENTOS",
- agendaFilterReports: "INFORMES",
- agendaFilterTransfers: "TRANSFERENCIAS",
- agendaFilterJobs: "TRABAJOS",
- agendaFilterProjects: "PROYECTOS",
- agendaFilterCalendars: "CALENDARIOS",
- agendaNoItems: "No se encontraron asignaciones.",
- agendaDiscardButton: "Descartar",
- agendaRestoreButton: "Restaurar",
- agendaAuthor: "Por",
- agendaCreatedAt: "Creado el",
- agendaTitleLabel: "Título",
- agendaMembersCount: "Miembros",
- agendaDescriptionLabel: "Descripción",
- agendaStatus: "Estado",
- agendaVisibility: "Visibilidad",
- agendaEventDate: "Fecha del Evento",
- agendaEventLocation: "Ubicación",
- agendaEventPrice: "Precio",
- agendaEventUrl: "URL",
- agendaTaskStart: "Hora de Inicio",
- agendaLocationLabel: "Ubicación",
- agendaLARPLabel: "L.A.R.P.",
- agendaYes: "SÍ",
- agendaNo: "NO",
- agendaInviteModeLabel: "Modo de invitación",
- agendaAnonymousLabel: "Modo Anónimo",
- agendaMembersLabel: "Miembros",
- agendareportCategory: "Categoría",
- agendareportSeverity: "Gravedad",
- agendareportStatus: "Estado",
- agendareportDescription: "Descripción",
- agendaTaskEnd: "Hora de Fin",
- agendaTaskPriority: "Prioridad",
- agendaTransferFrom: "De",
- agendaTransferTo: "A",
- agendaTransferConcept: "Concepto",
- agendaTransferAmount: "Cantidad",
- agendaTransferDeadline: "Plazo",
- agendaTransferFrom: "De",
- agendaTransferTo: "A",
- agendaTransferConcept: "Concepto",
- agendaTransferAmount: "Cantidad",
- agendaTransferDeadline: "Plazo",
- opinionsTitle: "Opiniones",
- shareYourOpinions: "Descubre y vota por opiniones en tu red.",
- author: "Por",
- voteNow: "Vota ahora",
- alreadyVoted: "Ya has opinado.",
- noOpinionsFound: "No se encontraron opiniones.",
- ALLButton: "TODOS",
- MINEButton: "MIOS",
- RECENTButton: "RECIENTES",
- TOPButton: "TOP",
- interestingButton: "INTERESANTE",
- necessaryButton: "NECESARIO",
- funnyButton: "DIVERTIDO",
- disgustingButton: "ASQUEROSO",
- sensibleButton: "SENSIBLE",
- propagandaButton: "PROPAGANDA",
- adultOnlyButton: "SOLO ADULTOS",
- boringButton: "ABURRIDO",
- confusingButton: "CONFUSO",
- inspiringButton: "INSPIRADOR",
- spamButton: "SPAM",
- usefulButton: "UTIL",
- informativeButton: "INFORMATIVO",
- wellResearchedButton: "BIEN INVESTIGADO",
- accurateButton: "CONCISO",
- needsSourcesButton: "NECESITA FUENTES",
- wrongButton: "INCORRECTO",
- lowQualityButton: "BAJA CALIDAD",
- creativeButton: "CREATIVO",
- insightfulButton: "PERSPECTIVO",
- actionableButton: "ACCIONABLE",
- inspiringButton: "INSPIRADOR",
- loveButton: "AMOR",
- clearButton: "CLARO",
- upliftingButton: "EMPODERANTE",
- unnecessaryButton: "INNECESARIO",
- rejectedButton: "RECHAZADO",
- misleadingButton: "ENGAÑOSO",
- offTopicButton: "FUERA DE TEMA",
- duplicateButton: "DUPLICADO",
- clickbaitButton: "CEBO DE CLICS",
- spamButton: "SPAM",
- trollButton: "TROLL",
- nsfwButton: "NSFW",
- violentButton: "VIOLENTO",
- toxicButton: "TOXICO",
- harassmentButton: "ACOSO",
- hateButton: "ODIO",
- scamButton: "ESTAFA",
- triggeringButton: "PROVOCADOR",
- opinionsCreatedAt: "Creado en",
- opinionsTotalCount: "Total de opiniones",
- voteInteresting: "Interesante",
- voteNecessary: "Necesario",
- voteUseful: "Útil",
- voteInformative: "Informativo",
- voteWellResearched: "Bien investigado",
- voteNeedsSources: "Necesita fuentes",
- voteWrong: "Incorrecto",
- voteLowQuality: "Baja calidad",
- voteLove: "Amor",
- voteClear: "Claro",
- voteMisleading: "Engañoso",
- voteOffTopic: "Fuera de tema",
- voteDuplicate: "Duplicado",
- voteClickbait: "Cebo de clics",
- votePropaganda: "Propaganda",
- voteFunny: "Divertido",
- voteInspiring: "Inspirador",
- voteUplifting: "Empoderante",
- voteUnnecessary: "Innecesario",
- voteRejected: "Rechazado",
- voteConfusing: "Confuso",
- voteTroll: "Troll",
- voteNsfw: "NSFW",
- voteViolent: "Violento",
- voteToxic: "Tóxico",
- voteHarassment: "Acoso",
- voteHate: "Odio",
- voteScam: "Estafa",
- voteTriggering: "Provocador",
- voteInsightful: "Perspicaz",
- voteAccurate: "Conciso",
- voteActionable: "Accionable",
- voteCreative: "Creativo",
- voteSpam: "Spam",
- voteAdultOnly: "Solo adultos",
- publishBlog: "Publicar Blog",
- privateMessage: "MP",
- pmSendTitle: "Mensajes Privados",
- pmSend: "Enviar!",
- pmDescription: "Usa este formulario para enviar un mensaje cifrado a otros habitantes.",
- pmRecipients: "Destinatarios",
- pmRecipientsHint: "Introduce los IDs de Oasis separados por comas",
- pmSubject: "Asunto",
- pmSubjectHint: "Introduce el asunto del mensaje",
- pmText: "Mensaje",
- pmFile: "Archivo adjunto",
- private: "Privados",
- privateDescription: "Tus mensajes cifrados.",
- privateInbox: "Bandeja",
- privateSent: "Enviados",
- privateDelete: "Borrar",
- pmCreateButton: "Escribir MP",
- noPrivateMessages: "No hay mensajes privados.",
- pmReply: "Responder",
- pmReplies: "respuestas",
- pmNew: "nuevas",
- pmMarkRead: "Marcar como leido",
- inReplyTo: "EN RESPUESTA A",
- pmPreview: "Previsualizar",
- pmPreviewTitle: "Vista previa",
- performed: "→",
- pmFromLabel: "De:",
- pmToLabel: "Para:",
- pmInvalidMessage: "Mensaje no válido",
- pmNoSubject: "(sin asunto)",
- pmSubjectLabel: "Asunto:",
- pmBodyLabel: "Cuerpo",
- pmBotJobs: "42-EmpleosBOT",
- pmBotProjects: "42-ProyectosBOT",
- pmBotMarket: "42-MercadoBOT",
- inboxJobSubscribedTitle: "Nueva suscripción a tu oferta de trabajo",
- pmInhabitantWithId: "Habitante con ID OASIS:",
- pmHasSubscribedToYourJobOffer: "se ha suscrito a tu oferta de trabajo",
- inboxProjectCreatedTitle: "Nuevo proyecto creado",
- pmHasCreatedAProject: "ha creado un proyecto",
- inboxMarketItemSoldTitle: "Artículo vendido",
- pmYourItem: "Tu artículo",
- pmHasBeenSoldTo: "se ha vendido a",
- pmFor: "por",
- inboxProjectPledgedTitle: "Nueva aportación a tu proyecto",
- pmHasPledged: "ha aportado",
- pmToYourProject: "a tu proyecto",
- blockchain: 'Explorador',
- blockchainTitle: 'Explorador',
- blockchainDescription: 'Explora y visualiza los bloques de la cadena.',
- blockchainNoBlocks: 'No se encontraron bloques en la cadena.',
- blockchainBlockID: 'ID del Bloque',
- blockchainBlockAuthor: 'Autoría',
- blockchainBlockType: 'Tipo',
- blockchainBlockTimestamp: 'Marca de tiempo',
- blockchainBlockContent: 'Bloque',
- blockchainBlockURL: 'URL:',
- blockchainContent: 'Bloque',
- blockchainContentPreview: 'Vista previa del contenido del bloque',
- blockchainLatestDatagram: 'Último Datagrama',
- blockchainDatagram: 'Datagrama',
- blockchainDetails: 'Ver detalles del bloque',
- blockchainBlockInfo: 'Información del Bloque',
- blockchainBlockDetails: 'Detalles del bloque seleccionado',
- blockchainBack: 'Volver al Blockexplorer',
- blockchainContentDeleted: 'Contenido eliminado',
- visitContent: 'Visitar contenido',
- banking: 'Banking',
- bankingTitle: 'Banking',
- bankingDescription: 'Explora el valor actual de ECOin y la asignación de RBU correspondiente, distribuida semanalmente en función de la participación y la confianza.',
- bankOverview: 'Resumen',
- bankEpochs: 'Épocas',
- bankRules: 'Reglas',
- pending: 'Pendientes',
- closed: 'Cerradas',
- bankBack: 'Volver a Banking',
- bankViewTx: 'Ver Tx',
- bankClaimNow: 'Reclamar',
- bankClaimUBI: '¡Reclamar RBU!',
- bankClaimAndPay: 'Claim & Pay',
- bankClaimedPending: 'Claim pending...',
- bankStatusUnclaimed: 'Unclaimed',
- bankStatusClaimed: 'Claimed',
- bankStatusExpired: 'Expired',
- bankPubOnly: 'PUB-only operation',
- bankNoPendingUBI: 'No hay asignaciones RBU pendientes para esta época.',
- bankPubBalance: 'Saldo del PUB',
- bankEpoch: 'Época',
- bankPool: 'Fondo (esta época)',
- bankWeightsSum: 'Suma de pesos',
- bankAllocations: 'Asignaciones',
- bankNoAllocations: 'No se encontraron asignaciones.',
- bankNoEpochs: 'No se encontraron épocas.',
- bankEpochAllocations: 'Asignaciones de la época',
- bankAllocId: 'ID de asignación',
- bankAllocDate: 'Fecha',
- bankAllocConcept: 'Concepto',
- bankAllocFrom: 'De',
- bankAllocTo: 'Para',
- bankAllocAmount: 'Cantidad',
- bankAllocStatus: 'Estado',
- bankEpochId: 'ID de época',
- bankRuleHash: 'Hash del snapshot de reglas',
- bankViewEpoch: 'Ver época',
- bankUserBalance: 'Tu saldo',
- ecoWalletNotConfigured: 'Cartera de ECOin no configurada',
- editWallet: 'Editar cartera',
- addWallet: 'Añadir cartera',
- bankAddresses: 'Direcciones',
- bankNoAddresses: 'No se encontraron direcciones.',
- bankUser: 'ID de Oasis',
- bankAddress: 'Dirección',
- bankAddAddressTitle: 'Añadir dirección de ECOIN',
- bankAddAddressUser: 'ID de Oasis',
- bankAddAddressAddress: 'Dirección de ECOIN',
- bankAddAddressSave: 'Guardar',
- bankAddressAdded: 'Dirección añadida',
- bankAddressUpdated: 'Dirección actualizada',
- bankAddressExists: 'La dirección ya existe',
- bankAddressInvalid: 'Dirección no válida',
- bankAddressDeleted: 'Dirección eliminada',
- bankAddressNotFound: 'Dirección no encontrada',
- bankAddressTotal: 'Total de Direcciones',
- bankAddressSearch: 'Buscar @habitante o dirección',
- bankAddressActions: 'Acciones',
- bankAddressDelete: 'Eliminar',
- bankAddressSource: 'Fuente',
- bankAddressDeleteConfirm: 'Eliminar esta dirección?',
- search: 'Buscar!',
- bankLocal: 'Local',
- bankFromOasis: 'Oasis',
- bankMyAddress: 'Tu dirección',
- bankRemoveMyAddress: 'Eliminar mi dirección',
- bankNotRemovableOasis: 'Las direcciones no se pueden eliminar localmente',
- bankingFutureUBI: "UBI",
- pubIdTitle: "PUB Wallet",
- pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).",
- pubIdLabel: "PUB ID",
- pubIdSave: "Save configuration",
- pubIdPlaceholder: "@PUB_ID.ed25519",
- bankUbiAvailability: "Disponibilidad UBI",
- bankUbiAvailableOk: "OK",
- bankUbiAvailableNo: "SIN FONDOS!",
- bankAlreadyClaimedThisMonth: "Ya reclamado este mes",
- bankUbiThisMonth: "UBI (este mes)",
- bankUbiLastClaimed: "UBI (última reclamada)",
- bankUbiNeverClaimed: "Nunca reclamado",
- bankUbiTotalClaimed: "UBI (total reclamado)",
- bankUbiPub: "PUB",
- bankUbiInhabitant: "HABITANTE",
- bankUbiClaimedAmount: "RECLAMADO (ECO)",
- typeBankUbiResult: "BANCARIO - UBI",
- bankNoPubConfigured: "Sin PUB configurado. Establece tu ID de PUB en Ajustes.",
- shopsTitle: "Tiendas",
- shopDescription: "Descubre y gestiona tiendas en la red.",
- shopTitle: "Tienda",
- shopFilterAll: "TODAS",
- shopFilterMine: "MÍAS",
- shopFilterRecent: "RECIENTES",
- shopFilterTop: "TOP",
- shopFilterProducts: "PRODUCTOS",
- shopFilterPrices: "PRECIOS",
- shopFilterFavorites: "FAVORITAS",
- shopUpload: "Crear Tienda",
- shopAllSectionTitle: "Tiendas",
- shopMineSectionTitle: "Mis Tiendas",
- shopRecentSectionTitle: "Tiendas Recientes",
- shopTopSectionTitle: "Tiendas Destacadas",
- shopProductsSectionTitle: "Productos Destacados",
- shopPricesSectionTitle: "Productos por Precio",
- shopFavoritesSectionTitle: "Favoritas",
- shopCreateSectionTitle: "Crear Tienda",
- shopUpdateSectionTitle: "Actualizar Tienda",
- shopCreate: "Crear",
- shopUpdate: "Actualizar",
- shopDelete: "Eliminar",
- shopAddFavorite: "Añadir Favorito",
- shopRemoveFavorite: "Quitar Favorito",
- shopOpen: "ABIERTA",
- shopClosed: "CERRADA",
- shopOpenShop: "Abrir Tienda",
- shopCloseShop: "Cerrar Tienda",
- shopProducts: "Productos",
- shopProductAdd: "Añadir Producto",
- shopProductTitle: "Producto",
- shopProductUpdate: "Actualizar Producto",
- shopProductPrice: "Precio (ECO)",
- shopProductStock: "Stock",
- shopProductUntitled: "Producto sin título",
- shopUntitled: "Tienda sin título",
- shopNoItems: "No se encontraron tiendas.",
- shopNoProducts: "Aún no hay productos.",
- shopOutOfStock: "Agotado",
- shopBuy: "Comprar",
- shopBackToShop: "Volver a la Tienda",
- shopShareUrl: "URL para compartir",
- shopVisitShop: "VISITAR TIENDA",
- shopStatus: "ESTADO",
- shopCreatedAt: "CREADO",
- shopSearchPlaceholder: "Buscar tiendas...",
- shopUrl: "URL",
- shopLocation: "Ubicación",
- shopTags: "Etiquetas",
- shopVisibility: "Visibilidad",
- shopImage: "Imagen",
- shopShortDescription: "Descripcion Corta",
- shopShortDescriptionPlaceholder: "Descripcion breve para las tarjetas (max 160 caracteres)",
- shopTitlePlaceholder: "Nombre de tu tienda",
- shopDescriptionPlaceholder: "Descripcion detallada de tu tienda",
- shopUrlPlaceholder: "https://url-de-tu-tienda.com",
- shopLocationPlaceholder: "Ciudad, Pais",
- shopTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3",
- mapTitlePlaceholder: "Titulo del mapa",
- shopProductFeatured: "Producto Destacado",
- shopSendToMarket: "Send to Market",
- typeShop: "TIENDA",
- typeShopProduct: "PRODUCTO DE TIENDA",
- bankExchange: 'Intercambio',
- bankExchangeCurrentValue: 'Valor de ECOin (1h)',
- bankTotalSupply: 'Suministro Total de ECOin',
- bankEcoinHours: 'Horas ECOin',
- bankHoursOfWork: 'horas',
- bankUnitMs: "ms",
- bankUnitSeconds: "segundos",
- bankUnitMinutes: "minutos",
- bankUnitDays: "días",
- bankExchangeNoData: 'No hay datos disponibles',
- bankExchangeIndex: 'Valor de ECOin (1h)',
- bankInflation: 'Inflación de ECOin (anual)',
- bankInflationMonthly: 'Inflación de ECOin (mensual)',
- bankCurrentSupply: 'Suministro Actual de ECOin',
- bankingSyncStatus: 'Estado de ECOin',
- bankingSyncStatusSynced: 'Sincronizado',
- bankingSyncStatusOutdated: 'Desactualizado',
- statsTitle: 'Estadísticas',
- statistics: "Estadísticas",
- statsInhabitant: "Estadísticas del Habitante",
- statsDescription: "Descubre estadísticas sobre tu red.",
- ALLButton: "TODO",
- MINEButton: "MÍAS",
- TOMBSTONEButton: "ELIMINADOS",
- statsYou: "Tú",
- statsUserId: "ID de Oasis",
- statsCreatedAt: "Creado el",
- statsYourContent: "Contenido",
- statsYourOpinions: "Opiniones",
- statsYourTombstone: "Eliminados",
- statsNetwork: "Red",
- statsTotalInhabitants: "Habitantes",
- statsDiscoveredTribes: "Tribus (Públicas)",
- statsPrivateDiscoveredTribes: "Tribus (Privadas)",
- statsNetworkContent: "Contenido",
- statsYourMarket: "Mercado",
- statsYourJob: "Empleos",
- statsYourProject: "Proyectos",
- statsYourTransfer: "Transferencias",
- statsYourForum: "Foros",
- statsNetworkOpinions: "Opiniones",
- statsDiscoveredMarket: "Mercado",
- statsDiscoveredJob: "Empleos",
- statsDiscoveredProject: "Proyectos",
- statsBankingTitle: "Banca",
- statsEcoWalletLabel: "Billetera ECOIN",
- statsEcoWalletNotConfigured: "¡No configurada!",
- statsTotalEcoAddresses: "Direcciones totales",
- statsDiscoveredTransfer: "Transferencias",
- statsDiscoveredForum: "Foros",
- statsNetworkTombstone: "Eliminados",
- statsBookmark: "Marcadores",
- statsEvent: "Eventos",
- statsTask: "Tareas",
- statsVotes: "Votos",
- statsMarket: "Mercado",
- statsForum: "Foros",
- statsJob: "Empleos",
- statsProject: "Proyectos",
- statsReport: "Reportes",
- statsFeed: "Publicaciones",
- statsTribe: "Tribus",
- statsImage: "Imágenes",
- statsAudio: "Audios",
- statsVideo: "Vídeos",
- statsDocument: "Documentos",
- statsMap: "Mapas",
- statsShop: "Tiendas",
- statsShopProduct: "Productos de tienda",
- statsTransfer: "Transferencias",
- statsAiExchange: "IA",
- statsPUBs: 'PUBs',
- statsPost: "Publicaciones",
- statsOasisID: "ID de Oasis",
- statsSize: "Total (tamaño)",
- statsBlockchainSize: "Blockchain (tamaño)",
- statsBlobsSize: "Blobs (tamaño)",
- statsActivity7d: "Actividad (últimos 7 días)",
- statsActivity7dTotal: "Total 7 días",
- statsActivity30dTotal: "Total 30 días",
- statsKarmaScore: "Puntuación KARMA",
- statsPublic: "Público",
- statsPrivate: "Privado",
- day: "Día",
- messages: "Mensajes",
- statsProject: "Proyectos",
- statsProjectsTitle: "Proyectos",
- statsProjectsTotal: "Total de proyectos",
- statsProjectsActive: "Activos",
- statsProjectsCompleted: "Completados",
- statsProjectsPaused: "Pausados",
- statsProjectsCancelled: "Cancelados",
- statsProjectsGoalTotal: "Meta total",
- statsProjectsPledgedTotal: "Aportación total",
- statsProjectsSuccessRate: "Tasa de éxito",
- statsProjectsAvgProgress: "Progreso medio",
- statsProjectsMedianProgress: "Progreso mediano",
- statsProjectsActiveFundingAvg: "Financiación activa media",
- statsJobsTitle: "Empleos",
- statsJobsTotal: "Total de empleos",
- statsJobsOpen: "Abiertos",
- statsJobsClosed: "Cerrados",
- statsJobsOpenVacants: "Vacantes abiertas",
- statsJobsSubscribersTotal: "Suscriptores totales",
- statsJobsAvgSalary: "Salario medio",
- statsJobsMedianSalary: "Salario mediano",
- statsMarketTitle: "Mercado",
- statsMarketTotal: "Artículos totales",
- statsMarketForSale: "En venta",
- statsMarketReserved: "Reservados",
- statsMarketClosed: "Cerrados",
- statsMarketSold: "Vendidos",
- statsMarketRevenue: "Ingresos",
- statsMarketAvgSoldPrice: "Precio medio vendido",
- statsUsersTitle: "Habitantes",
- user: "Habitante",
- statsTombstoneTitle: "Eliminados",
- statsNetworkTombstones: "Eliminados en la red",
- statsTombstoneRatio: "Ratio de eliminados (%)",
- statsAITraining: "Entrenamiento de IA",
- statsAIExchanges: "Intercambios",
- bankingUserEngagementScore: "Puntuación de KARMA",
- statsParliamentCandidature: "Candidaturas de parlamento",
- statsParliamentTerm: "Mandatos de parlamento",
- statsParliamentProposal: "Propuestas de parlamento",
- statsParliamentRevocation: "Revocaciones de parlamento",
- statsParliamentLaw: "Leyes de parlamento",
- statsCourtsCase: "Casos judiciales",
- statsCourtsEvidence: "Evidencias judiciales",
- statsCourtsAnswer: "Respuestas judiciales",
- statsCourtsVerdict: "Veredictos judiciales",
- statsCourtsSettlement: "Acuerdos judiciales",
- statsCourtsSettlementProposal: "Propuestas de acuerdo",
- statsCourtsSettlementAccepted: "Acuerdos aceptados",
- statsCourtsNomination: "Nominaciones de jueces",
- statsCourtsNominationVote: "Votos de nominación",
- ai: "IA",
- aiTitle: "IA",
- aiDescription: "Una Inteligencia Artificial Colectiva (IAC) llamada '42' que aprende de tu red.",
- aiInputPlaceholder: "Qué quieres saber?",
- aiUserQuestion: "Pregunta",
- aiResponseTitle: "Respuesta",
- aiSubmitButton: "Enviar!",
- aiSettingsDescription: "Configura tu prompt (máx 128 caracteres) para el modelo de IA.",
- aiPrompt: "Proporciona una respuesta informativa y precisa.",
- aiConfiguration: "Configurar prompt",
- aiPromptUsed: "Indicación",
- aiClearHistory: "Borrar historial de chat",
- aiSharePrompt: "Añadir esta respuesta al entrenamiento colectivo?",
- aiShareYes: "Sí",
- aiShareNo: "No",
- aiSharedLabel: "Añadida al entrenamiento",
- aiRejectedLabel: "No añadida al entrenamiento",
- aiServerError: "La IA no ha podido responder. Inténtalo de nuevo.",
- aiInputPlaceholder: "¿Qué es Oasis?",
- typeAiExchange: "IA",
- aiApproveTrain: "Añadir al entrenamiento colectivo",
- aiRejectTrain: "No entrenar",
- aiTrainPending: "Pendiente de aprobación",
- aiTrainApproved: "Aprobado para entrenamiento",
- aiTrainRejected: "Rechazado para entrenamiento",
- aiSnippetsUsed: "Fragmentos usados",
- aiSnippetsLearned: "Fragmentos aprendidos",
- statsAITraining: "Entrenamiento de IA",
- aiApproveCustomTrain: "Entrenar con esta respuesta personalizada",
- aiCustomAnswerPlaceholder: "Escribe tu respuesta personalizada…",
- statsAIExchanges: "Intercambio de Modelos",
- marketMineSectionTitle: "Tus artículos",
- marketCreateSectionTitle: "Crear artículo",
- marketUpdateSectionTitle: "Actualizar",
- marketAllSectionTitle: "Mercado",
- marketRecentSectionTitle: "Mercado reciente",
- marketTitle: "Mercado",
- marketDescription: "Un mercado para intercambiar bienes o servicios en tu red.",
- marketFilterAll: "TODOS",
- marketFilterMine: "MÍOS",
- marketFilterAuctions: "SUBASTAS",
- marketFilterItems: "INTERCAMBIO",
- marketFilterNew: "NUEVO",
- marketFilterUsed: "USADO",
- marketFilterBroken: "ROTO",
- marketFilterForSale: "EN VENTA",
- marketFilterSold: "VENDIDO",
- marketFilterDiscarded: "DESCARTADO",
- marketFilterRecent: "RECIENTE",
- marketFilterMyBids: "PUJAS",
- marketCreateButton: "Crear artículo",
- marketItemType: "Tipo",
- marketItemTitle: "Título",
- marketItemAvailable: "Fecha límite",
- marketItemDescription: "Descripción",
- marketItemDescriptionPlaceholder: "Describe el artículo que estás vendiendo",
- marketItemStatus: "Estado",
- marketShopLabel: "Tienda",
- marketItemCondition: "Condición",
- marketItemPrice: "Precio",
- marketItemTags: "Etiquetas",
- marketItemTagsPlaceholder: "Introduce etiquetas separadas por comas",
- marketItemDeadline: "Fecha límite",
- marketItemIncludesShipping: "¿Incluye envío?",
- marketItemHighestBid: "Puja más alta",
- marketItemHighestBidder: "Mejor postor",
- marketItemStock: "Existencias",
- marketOutOfStock: "Sin stock",
- marketItemBidTime: "Fecha de la puja",
- marketActionsUpdate: "Actualizar",
- marketUpdateButton: "¡Actualizar artículo!",
- marketActionsDelete: "Eliminar",
- marketActionsSold: "Marcar como vendido",
- marketActionsChangeStatus: "CAMBIAR ESTADO",
- marketActionsBuy: "¡COMPRAR!",
- marketAuctionBids: "Pujas actuales",
- marketPlaceBidButton: "Pujar",
- marketItemSeller: "Vendedor",
- marketNoItems: "Aún no hay artículos disponibles.",
- marketYourBid: "Tu puja",
- marketCreateFormImageLabel: "Subir contenido multimedia (max: 50MB)",
- marketSearchLabel: "Buscar",
- marketSearchPlaceholder: "Buscar por título o etiquetas",
- marketMinPriceLabel: "Precio mínimo",
- marketMaxPriceLabel: "Precio máximo",
- marketSortLabel: "Ordenar por",
- marketSortRecent: "Más recientes",
- marketSortPrice: "Precio",
- marketSortDeadline: "Fecha límite",
- marketSearchButton: "Buscar",
- marketAuctionEndsIn: "Termina",
- marketAuctionEnded: "Terminó",
- marketMyBidBadge: "Has pujado",
- marketNoItemsMatch: "No hay artículos que coincidan con tu búsqueda.",
- jobsTitle: "Laboral",
- jobsDescription: "Descubre y gestiona ofertas de trabajo en tu red.",
- jobsFilterRecent: "RECIENTES",
- jobsFilterMine: "MIOS",
- jobsFilterAll: "TODOS",
- jobsFilterRemote: "REMOTOS",
- jobsFilterOpen: "ABIERTOS",
- jobsFilterClosed: "CERRADOS",
- jobsCV: "CVs",
- jobsCreateJob: "Publicar Trabajo",
- jobsRecentTitle: "Trabajos Recientes",
- jobsMineTitle: "Tus Trabajos",
- jobsAllTitle: "Ofertas de Trabajo",
- jobsRemoteTitle: "Trabajos Remotos",
- jobsOpenTitle: "Trabajos Abiertos",
- jobsClosedTitle: "Trabajos Cerrados",
- jobsCVTitle: "CVs",
- jobsFilterPresencial: "PRESENCIAL",
- jobsFilterFreelancer: "FREELANCE",
- jobsFilterEmployee: "EMPLEADO",
- jobsPresencialTitle: "Trabajos Presenciales",
- jobsFreelancerTitle: "Trabajos Freelance",
- jobsEmployeeTitle: "Trabajos de Empleado",
- jobTitle: "Título",
- jobLocation: "Ubicación",
- jobSalary: "Salario (ECO/1h)",
- jobVacants: "Vacantes",
- jobDescription: "Descripción",
- jobRequirements: "Requisitos",
- jobLanguages: "Idiomas",
- jobStatus: "Estado",
- jobStatusOPEN: "ABIERTA",
- jobStatusCLOSED: "CERRADA",
- jobSetOpen: "Marcar como ABIERTA",
- jobSetClosed: "Marcar como CERRADA",
- jobSubscribeButton: "Unirse a esta oferta!",
- jobUnsubscribeButton: "Salir de esta oferta!",
- jobTitlePlaceholder: "Introduce el título del trabajo",
- jobDescriptionPlaceholder: "Describe el puesto",
- jobRequirementsPlaceholder: "Introduce los requisitos",
- jobLanguagesPlaceholder: "Inglés, Francés, Español, Euskera...",
- jobTasksPlaceholder: "Lista de tareas",
- jobLocationPresencial: "Presencial",
- jobLocationRemote: "Remoto",
- jobVacantsPlaceholder: "Número de vacantes",
- jobSalaryPlaceholder: "Salario en ECO por 1 hora dedicada",
- jobImage: "Subir contenido multimedia (max: 50MB)",
- jobTasks: "Tareas",
- jobType: "Tipo de Trabajo",
- jobTime: "Tiempo de Trabajo",
- jobSubscribers: "Suscriptores",
- noSubscribers: "Sin suscriptores",
- jobsFilterTop: "TOP",
- jobsTopTitle: "Trabajos Mejor Pagados",
- createJobButton: "Publicar Trabajo",
- viewDetailsButton: "Ver Detalles",
- noJobsFound: "No se encontraron ofertas de trabajo.",
- jobAuthor: "Por",
- jobTypeFreelance: "Autónomo",
- jobTypeSalary: "Empleado",
- jobTimePartial: "Parcial",
- jobTimeComplete: "Completo",
- jobsDeleteButton: "ELIMINAR",
- jobsUpdateButton: "ACTUALIZAR",
- jobsFilterApplied: "CANDIDATURA",
- jobsAppliedTitle: "Mis candidaturas",
- jobsAppliedBadge: "Inscrito",
- jobsFilterFavs: "Favoritos",
- jobsFavsTitle: "Favoritos",
- jobsFilterNeeds: "Necesita ayuda",
- jobsNeedsTitle: "Necesita ayuda",
- jobsSearchLabel: "Buscar",
- jobsSearchPlaceholder: "Buscar por título, tags, descripción...",
- jobsMinSalaryLabel: "Salario mín.",
- jobsMaxSalaryLabel: "Salario máx.",
- jobsSortLabel: "Ordenar por",
- jobsSortRecent: "Más recientes",
- jobsSortSalary: "Mayor salario",
- jobsSortSubscribers: "Más candidatos",
- jobsSearchButton: "Buscar",
- jobsFavoriteButton: "Favorito",
- jobsUnfavoriteButton: "Quitar favorito",
- jobsMessageAuthorButton: "MP",
- jobsApplicants: "Candidatos",
- jobsUpdatedAt: "Actualizado",
- jobSetOpen: "Marcar abierto",
- jobNewBadge: "NUEVO",
- jobsTagsLabel: "Etiquetas",
- jobsTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3",
- noJobsMatch: "No hay ofertas que coincidan con tu búsqueda.",
- projectsTitle: "Proyectos",
- projectsDescription: "Crea, financia y sigue proyectos impulsados por la comunidad en tu red.",
- projectCreateProject: "Crear Proyecto",
- projectCreateButton: "Crear Proyecto",
- projectUpdateButton: "ACTUALIZAR",
- projectDeleteButton: "ELIMINAR",
- projectNoProjectsFound: "No se encontraron proyectos.",
- projectFilterAll: "TODOS",
- projectFilterMine: "MIS PROYECTOS",
- projectFilterActive: "ACTIVOS",
- projectFilterPaused: "PONDERADOS",
- projectFilterCompleted: "COMPLETADOS",
- projectFilterFollowing: "SEGUIDOS",
- projectFilterRecent: "RECIENTES",
- projectFilterTop: "TOP",
- projectAllTitle: "Proyectos",
- projectMineTitle: "Tus Proyectos",
- projectActiveTitle: "Proyectos Activos",
- projectPausedTitle: "Proyectos Pausados",
- projectCompletedTitle: "Proyectos Completados",
- projectFollowingTitle: "Proyectos Seguidos",
- projectRecentTitle: "Proyectos Recientes",
- projectTopTitle: "Mejor Financiados",
- projectTitlePlaceholder: "Nombre del proyecto",
- projectImage: "Subir contenido multimedia (max: 50MB)",
- projectDescription: "Descripción",
- projectDescriptionPlaceholder: "Cuenta la historia y los objetivos…",
- projectGoal: "Meta (ECO)",
- projectGoalPlaceholder: "50000",
- projectDeadline: "Fecha límite",
- projectProgress: "Progreso inicial (%)",
- projectStatus: "Estado",
- projectFunding: "Financiamiento",
- projectPledged: "Prometido",
- projectSetStatus: "Establecer estado",
- projectSetProgress: "Actualizar progreso",
- projectFollowButton: "SEGUIR",
- projectUnfollowButton: "DEJAR DE SEGUIR",
- projectStatusACTIVE: "ACTIVO",
- projectStatusPAUSED: "PAUSADO",
- projectStatusCOMPLETED: "COMPLETADO",
- projectStatusCANCELLED: "CANCELADO",
- projectPledgeTitle: "Apoya este proyecto",
- projectPledgePlaceholder: "Cantidad en ECO",
- projectBounties: "Recompensas",
- projectBountiesInputLabel: "Recompensas (una por línea: Título|Cantidad [ECO]|Descripción)",
- projectBountiesPlaceholder: "Arreglar error en UI|100|Enlace al problema\nEscribir documentación|250|Ejemplos de uso",
- projectNoBounties: "No se encontraron recompensas.",
- projectTitle: "Título",
- projectAddBountyTitle: "Añadir nueva recompensa",
- projectBountyTitle: "Título de la recompensa",
- projectBountyAmount: "Cantidad (ECO)",
- projectBountyDescription: "Descripción",
- projectMilestoneSelect: "Seleccionar hito",
- projectBountyCreateButton: "Crear recompensa",
- projectBountyStatus: "Estado de la recompensa",
- projectBountyOpen: "abierta",
- projectBountyClaimed: "reclamada",
- projectBountyDone: "completada",
- projectBountyClaimedBy: "reclamada por",
- projectBountyClaimButton: "reclamar",
- projectBountyCompleteButton: "Marcar como completada",
- projectMilestones: "Hitos",
- projectAddMilestoneTitle: "Nuevo hito",
- projectMilestoneTitle: "Título del hito",
- projectMilestoneTargetPercent: "Porcentaje (%)",
- projectMilestoneDueDate: "Fecha",
- projectMilestoneCreateButton: "Crear hito",
- projectMilestoneStatus: "Estado del hito",
- projectMilestoneOpen: "abierto",
- projectMilestoneDone: "completado",
- projectMilestoneMarkDone: "Marcar como completado",
- projectMilestoneDue: "debido",
- projectNoMilestones: "No se encontraron hitos.",
- projectMilestoneMarkDone: "Marcar como hecho",
- projectMilestoneTitlePlaceholder: "Ingresa el título del hito",
- projectMilestoneDescriptionPlaceholder: "Ingresa la descripción de este hito",
- projectMilestoneDescription: "Descripción del hito",
- projectBudgetGoal: "Presupuesto (Objetivo)",
- projectBudgetAssigned: "Asignado a recompensas",
- projectBudgetRemaining: "Restante",
- projectBudgetOver: "⚠ Presupuesto excedido: lo asignado supera el objetivo",
- projectFollowers: "Seguidores",
- projectFollowersTitle: "Seguidores",
- projectFollowersNone: "Aún no hay seguidores.",
- projectMore: "más",
- projectYouFollowHint: "Sigues este proyecto",
- projectBackers: "Patrocinadores",
- projectBackersTitle: "Patrocinadores",
- projectBackersTotal: "Total de patrocinadores",
- projectBackersTotalPledged: "Total aportado",
- projectBackersYourPledge: "Tu aportación",
- projectBackersNone: "Aún no hay aportaciones.",
- projectNoRemainingBudget: "No queda presupuesto.",
- projectFilterBackers: "MECENAS",
- projectFilterApplied: "APORTANDO",
- projectAppliedTitle: "APORTANDO",
- projectBackersLeaderboardTitle: "Mecenas destacados",
- projectNoBackersFound: "No hay mecenas.",
- projectBackerAmount: "Total aportado",
- projectBackerPledges: "Aportaciones",
- projectBackerProjects: "Proyectos",
- projectPledgeAmount: "Cantidad",
- projectSelectMilestoneOrBounty: "Seleccionar Hito o Recompensa",
- projectPledgeButton: "Aportar",
- footerLicense: "GPLv3",
- footerPackage: "Paquete",
- footerVersion: "Versión",
- modulesModuleName: "Nombre",
- modulesModuleDescription: "Descripción",
- modulesModuleStatus: "Estado",
- modulesTotalModulesLabel: "Módulos Cargados",
- modulesEnabledModulesLabel: "Habilitados",
- modulesDisabledModulesLabel: "Deshabilitados",
- modulesPopularLabel: "Popular",
- modulesPopularDescription: "Módulo para recibir publicaciones que son tendencia, más vistas o más comentadas.",
- modulesTopicsLabel: "Temas",
- modulesTopicsDescription: "Módulo para recibir categorías de discusión basadas en intereses compartidos.",
- modulesSummariesLabel: "Resúmenes",
- modulesSummariesDescription: "Módulo para recibir resúmenes de discusiones o publicaciones largas.",
- modulesLatestLabel: "Últimos",
- modulesLatestDescription: "Módulo para recibir las publicaciones y discusiones más recientes.",
- modulesThreadsLabel: "Hilos",
- modulesThreadsDescription: "Módulo para recibir conversaciones agrupadas por tema o pregunta.",
- modulesMultiverseLabel: "Multiverso",
- modulesMultiverseDescription: "Módulo para recibir contenido de otros pares federados.",
- modulesInvitesLabel: "Invitaciones",
- modulesInvitesDescription: "Módulo para gestionar y aplicar códigos de invitación.",
- modulesWalletLabel: "Cartera",
- modulesWalletDescription: "Módulo para gestionar tus activos digitales (ECOin).",
- modulesLegacyLabel: "Legado",
- modulesLegacyDescription: "Módulo para gestionar tu secreto (clave privada) de forma rápida y segura.",
- modulesCipherLabel: "Cifrado",
- modulesCipherDescription: "Módulo para encriptar y desencriptar tu texto de forma simétrica (usando una contraseña compartida).",
- modulesBookmarksLabel: "Marcadores",
- modulesBookmarksDescription: "Módulo para descubrir y gestionar marcadores.",
- modulesVideosLabel: "Videos",
- modulesVideosDescription: "Módulo para descubrir y gestionar videos.",
- modulesDocsLabel: "Documentos",
- modulesDocsDescription: "Módulo para descubrir y gestionar documentos.",
- modulesAudiosLabel: "Audios",
- modulesAudiosDescription: "Módulo para descubrir y gestionar audios.",
- modulesTagsLabel: "Etiquetas",
- modulesTagsDescription: "Módulo para descubrir y explorar patrones de taxonomía (etiquetas).",
- modulesImagesLabel: "Imágenes",
- modulesImagesDescription: "Módulo para descubrir y gestionar imágenes.",
- modulesTrendingLabel: "Tendencias",
- modulesTrendingDescription: "Módulo para explorar el contenido más popular.",
- modulesEventsLabel: "Eventos",
- modulesEventsDescription: "Módulo para descubrir y gestionar eventos.",
- modulesTasksLabel: "Tareas",
- modulesTasksDescription: "Módulo para descubrir y gestionar tareas.",
- modulesMarketLabel: "Mercado",
- modulesMarketDescription: "Módulo para intercambiar bienes o servicios.",
- modulesShopsLabel: "Tiendas",
- modulesShopsDescription: "Módulo para gestionar y descubrir tiendas.",
- modulesTribesLabel: "Tribus",
- modulesTribesDescription: "Módulo para explorar o crear tribus (grupos).",
- modulesVotationsLabel: "Votaciones",
- modulesVotationsDescription: "Módulo para descubrir y gestionar votaciones.",
- modulesParliamentLabel: "Parlamento",
- modulesParliamentDescription: "Módulo para elegir gobiernos y votar leyes.",
- modulesCourtsLabel: "Juzgados",
- modulesCourtsDescription: "Módulo para resolver conflictos y emitir veredictos.",
- modulesReportsLabel: "Informes",
- modulesReportsDescription: "Módulo para gestionar y hacer un seguimiento de informes relacionados con problemas, errores, abusos y advertencias de contenido.",
- modulesOpinionsLabel: "Opiniones",
- modulesOpinionsDescription: "Módulo para descubrir y votar opiniones.",
- modulesTransfersLabel: "Transferencias",
- modulesTransfersDescription: "Módulo para descubrir y gestionar contratos inteligentes (transferencias).",
- modulesFeedLabel: "Feed",
- modulesFeedDescription: "Módulo para descubrir y compartir textos breves (feeds).",
- modulesPixeliaLabel: "Pixelia",
- modulesPixeliaDescription: "Módulo para dibujar en una cuadrícula colaborativa.",
- modulesAgendaLabel: "Agenda",
- modulesAgendaDescription: "Módulo para gestionar todos tus elementos asignados.",
- modulesAILabel: "AI",
- modulesAIDescription: "Módulo para hablar con un LLM llamado '42'.",
- modulesForumLabel: "Foros",
- modulesForumDescription: "Módulo para descubrir y gestionar foros.",
- modulesJobsLabel: "Trabajos",
- modulesJobsDescription: "Modulo para descubrir y gestionar ofertas de trabajo.",
- modulesProjectsLabel: "Proyectos",
- modulesProjectsDescription: "Módulo para explorar, financiar y gestionar proyectos.",
- modulesBankingLabel: "Banca",
- modulesBankingDescription: "Módulo para conocer el valor real de ECOIN y distribuir una RBU utilizando la tesorería común.",
- modulesFavoritesLabel: "Favoritos",
- modulesFavoritesDescription: "Módulo para gestionar tu contenido favorito.",
- fileTooLargeTitle: "Archivo demasiado grande",
- fileTooLargeMessage: "El archivo supera el tamaño máximo permitido (50 MB). Por favor, selecciona un archivo más pequeño.",
- goBack: "Volver",
- directConnect: "Conexión Directa",
- directConnectDescription: "Conéctate directamente a un nodo introduciendo su dirección IP, puerto y clave pública. El nodo se añadirá como conexión seguida.",
- peerHost: "IP / Nombre de host",
- peerPort: "Puerto (por defecto: 8008)",
- peerPublicKey: "Clave Pública (@...ed25519)",
- connectAndFollow: "Conectar",
- deviceSourceLabel: "Dispositivo",
- modulesPresetTitle: "Configuraciones Comunes",
- modulesPreset_minimal: "Mínimo",
- modulesPreset_basic: "Básico",
- modulesPreset_social: "Social",
- modulesPreset_economy: "Economía",
- modulesPreset_full: "Completo",
- statsCarbonFootprintTitle: "Huella de Carbono",
- statsCarbonFootprintNetwork: "Huella de carbono de la red",
- statsCarbonFootprintYours: "Tu huella de carbono",
- statsCarbonTombstone: "Huella del tombstoning",
- feedSuccessMsg: "¡Feed publicado correctamente!",
- dominantOpinionLabel: "Opinión predominante",
- uploadMedia: "Subir contenido multimedia (max: 50MB)",
- invitesUnfollow: "Dejar de seguir",
- invitesFollow: "Seguir",
- invitesUnfollowedInvites: "Redes no federadas",
- invitesNoUnfollowed: "Sin redes no federadas.",
- reportsWhyInappropriateLabel: "¿Por qué es inapropiado?",
- blockchainContentDeleted: "Este contenido ha sido eliminado",
- visitContent: "Visitar contenido",
- bankEcoinHours: "Equivalencia ECOin en tiempo",
- mapsLabel: "Mapas",
- mapTitle: "Mapas",
- mapDescription: "Explora y gestiona mapas offline en tu red.",
- mapMineSectionTitle: "Tus Mapas",
- mapCreateSectionTitle: "Crear Mapa",
- mapUpdateSectionTitle: "Actualizar Mapa",
- mapAllSectionTitle: "Mapas",
- mapRecentSectionTitle: "Mapas Recientes",
- mapFavoritesSectionTitle: "Favoritos",
- mapFilterAll: "TODOS",
- mapFilterMine: "MÍOS",
- mapFilterRecent: "RECIENTES",
- mapFilterFavorites: "FAVORITOS",
- mapUploadButton: "Crear Mapa",
- mapCreateButton: "Crear Mapa",
- mapUpdateButton: "Actualizar",
- mapDeleteButton: "Eliminar",
- mapAddFavoriteButton: "Añadir favorito",
- mapRemoveFavoriteButton: "Quitar favorito",
- mapLatLabel: "Latitud",
- mapLatPlaceholder: "ej. 40.4168",
- mapLngLabel: "Longitud",
- mapLngPlaceholder: "ej. -3.7038",
- mapDescriptionLabel: "Descripción",
- mapDescriptionPlaceholder: "Describe el mapa o ubicación...",
- mapTypeLabel: "Tipo de mapa",
- mapTypeSingle: "ÚNICO (solo ubicación inicial)",
- mapTypeOpen: "ABIERTO (cualquiera añade marcadores)",
- mapTypeClosed: "CERRADO (solo el creador añade marcadores)",
- mapTagsLabel: "Etiquetas",
- mapTagsPlaceholder: "Introduce etiquetas separadas por comas",
- mapUrlLabel: "URL del mapa",
- mapPickCoordLabel: "O selecciona una ubicación en la cuadrícula:",
- mapMarkersLabel: "marcadores",
- mapMarkersTitle: "Marcadores",
- mapMarkerDefault: "Marcador",
- mapMarkerLatLabel: "Latitud del marcador",
- mapMarkerLngLabel: "Longitud del marcador",
- mapMarkerLabelField: "Etiqueta del marcador",
- mapMarkerLabelPlaceholder: "Describe este marcador...",
- markerImageLabel: "Imagen del Marker",
- mapAddMarkerTitle: "Añadir Marcador",
- mapAddMarkerButton: "Añadir Marcador",
- mapCleanMarkerButton: "Clean Marker",
- mapApplyZoom: "Aplicar Zoom",
- mapSearchPlaceholder: "Buscar descripción, etiquetas, autor...",
- mapSearchButton: "Buscar",
- mapClickToCreate: "Haz click en el mapa para seleccionar ubicación",
- mapClickToAddMarker: "Haz click en el mapa para añadir un marcador",
- mapUpdatedAt: "Actualizado",
- mapNoMatch: "Ningún mapa coincide con tu búsqueda.",
- noMaps: "No hay mapas disponibles.",
- mapLocationTitle: "Ubicación",
- mapVisitLabel: "Visitar mapa",
- typeMap: "MAPAS",
- typeMapMarker: "MARCADOR DE MAPA",
- modulesMapLabel: "Mapas",
- modulesMapDescription: "Módulo para gestionar y compartir mapas offline.",
- padsTitle: "Pads",
- padTitle: "Pad",
- modulesPadsLabel: "Pads",
- modulesPadsDescription: "Módulo para gestionar editores de texto colaborativos.",
- padFilterAll: "TODOS",
- padFilterMine: "MÍO",
- padFilterRecent: "RECIENTE",
- padFilterOpen: "ABIERTO",
- padFilterClosed: "CERRADO",
- padCreate: "Crear Pad",
- padUpdate: "Actualizar Pad",
- padDelete: "Eliminar Pad",
- padTitleLabel: "Título",
- padTitlePlaceholder: "Escribe el título del pad...",
- padStatusLabel: "Estado",
- padStatusOpen: "ABIERTO",
- padStatusInviteOnly: "SOLO INVITADOS",
- padStatusClosed: "CERRADO",
- padDeadlineLabel: "Fecha límite",
- padTagsLabel: "Etiquetas",
- padTagsPlaceholder: "etiqueta1, etiqueta2, ...",
- padMembersLabel: "Miembros",
- padVisitPad: "Visitar Pad",
- padShareUrl: "Compartir URL",
- padCreated: "Creado",
- padAuthor: "Autor",
- padGenerateCode: "Generar Código",
- padInviteCodeLabel: "Código de Invitación",
- padInviteCodePlaceholder: "Introduce el código de invitación...",
- padValidateInvite: "Validar",
- padStartEditing: "¡EMPEZAR A EDITAR!",
- padEditorPlaceholder: "Empieza a escribir...",
- padSubmitEntry: "Enviar",
- padNoEntries: "Sin entradas aún.",
- padAllSectionTitle: "Todos los Pads",
- padMineSectionTitle: "Mis Pads",
- padRecentSectionTitle: "Pads Recientes",
- padOpenSectionTitle: "Pads Abiertos",
- padClosedSectionTitle: "Pads Cerrados",
- padCreateSectionTitle: "Crear Nuevo Pad",
- padUpdateSectionTitle: "Actualizar Pad",
- padInviteGenerated: "Código de Invitación Generado",
- typePad: "PAD",
- padNew: "NUEVO",
- padAddFavorite: "Añadir a Favoritos",
- padRemoveFavorite: "Quitar de Favoritos",
- padClose: "Cerrar Pad",
- padBackToEditor: "Volver al editor",
- padSearchPlaceholder: "Buscar pads...",
- calendarsTitle: "Calendarios",
- calendarTitle: "Calendario",
- modulesCalendarsLabel: "Calendarios",
- modulesCalendarsDescription: "Módulo para descubrir y gestionar calendarios.",
- typeCalendar: "CALENDARIO",
- calendarFilterAll: "TODOS",
- calendarFilterMine: "MÍOs",
- calendarFilterOpen: "ABIERTOS",
- calendarFilterClosed: "CERRADOS",
- calendarFilterRecent: "RECIENTES",
- calendarFilterFavorites: "FAVORITOS",
- calendarCreate: "Crear Calendario",
- calendarUpdate: "Actualizar",
- calendarDelete: "Eliminar",
- calendarTitleLabel: "Título",
- calendarTitlePlaceholder: "Título del calendario...",
- calendarStatusLabel: "Estado",
- calendarStatusOpen: "ABIERTO",
- calendarStatusClosed: "CERRADO",
- calendarDeadlineLabel: "Deadline",
- calendarTagsLabel: "Etiquetas",
- calendarTagsPlaceholder: "etiqueta1, etiqueta2...",
- calendarParticipantsLabel: "Participantes",
- calendarParticipantsCount: "Participantes",
- calendarVisitCalendar: "Ver Calendario",
- calendarCreated: "Creado",
- calendarAuthor: "Autor",
- calendarJoin: "Unirse al Calendario",
- calendarJoined: "Unido",
- calendarAddDate: "Añadir Fecha",
- calendarAddNote: "Añadir Nota",
- calendarDateLabel: "Fecha",
- calendarDatePlaceholder: "Describe esta fecha...",
- calendarNoteLabel: "Nota",
- calendarNotePlaceholder: "Añadir una nota...",
- calendarFirstDateLabel: "Fecha",
- calendarFirstNoteLabel: "Notas",
- calendarIntervalLabel: "Interval",
- calendarIntervalWeekly: "Weekly",
- calendarIntervalMonthly: "Monthly",
- calendarIntervalYearly: "Yearly",
- calendarFormDescription: "Descripción",
- calendarNoDates: "No hay fechas añadidas.",
- calendarNoNotes: "Sin notas.",
- calendarsNoItems: "No se encontraron calendarios.",
- calendarsDescription: "Descubre y gestiona calendarios en tu red.",
- calendarMonthPrev: "\u2190 Anterior",
- calendarMonthNext: "Siguiente \u2192",
- calendarMonthLabel: "Fechas",
- calendarsShareUrl: "URL para compartir",
- calendarAllSectionTitle: "Calendarios",
- calendarRecentSectionTitle: "Calendarios Recientes",
- calendarFavoritesSectionTitle: "Favoritos",
- calendarMineSectionTitle: "Tus Calendarios",
- calendarOpenSectionTitle: "Calendarios Abiertos",
- calendarClosedSectionTitle: "Calendarios Cerrados",
- calendarCreateSectionTitle: "Crear Nuevo Calendario",
- calendarUpdateSectionTitle: "Actualizar Calendario",
- calendarAddFavorite: "Añadir a Favoritos",
- calendarDeleteNote: "Delete",
- calendarRemoveFavorite: "Quitar de Favoritos",
- calendarSearchPlaceholder: "Buscar calendarios...",
- calendarAddEntry: "Añadir Entrada",
- calendarLeave: "Salir del Calendario",
- statsCalendar: "Calendarios",
- statsCalendarDate: "Fechas de Calendario",
- statsCalendarNote: "Notas de Calendario",
- modulesChatsLabel: "Chats",
- modulesChatsDescription: "Módulo para descubrir y gestionar chats cifrados.",
- typeChat: "CHAT",
- typeChatMessage: "MENSAJE DE CHAT",
- chatLabel: "CHATS",
- chatMessageLabel: "MENSAJES DE CHAT",
- chatsTitle: "Chats",
- chatMineSectionTitle: "Your Chats",
- chatRecentTitle: "Recent Chats",
- chatFavoritesTitle: "Favoritos",
- chatOpenTitle: "Open Chats",
- chatClosedTitle: "Closed Chats",
- chatDescription: "Descripción",
- chatCategory: "Categoría",
- chatStatus: "ESTADO",
- chatFilterAll: "TODOS",
- chatFilterMine: "MÍO",
- chatFilterRecent: "RECIENTE",
- chatFilterFavorites: "FAVORITOS",
- chatFilterOpen: "ABIERTO",
- chatFilterClosed: "CERRADO",
- chatCreate: "Crear Chat",
- chatUpdate: "Actualizar Chat",
- chatDelete: "Eliminar Chat",
- chatClose: "Cerrar Chat",
- chatVisitChat: "VER CHAT",
- chatUntitled: "Chat sin título",
- chatNoItems: "No se encontraron chats.",
- chatParticipants: "Participantes",
- chatStartChatting: "¡EMPEZAR A CHATEAR!",
- chatGenerateCode: "Generar Código",
- chatShareUrl: "Compartir URL",
- chatCreatedAt: "CREADO",
- chatSearchPlaceholder: "Buscar chats...",
- chatStatusOpen: "ABIERTO",
- chatStatusInviteOnly: "SOLO INVITADOS",
- chatStatusClosed: "CERRADO",
- chatSendMessage: "Enviar",
- chatMessagePlaceholder: "Escribe tu mensaje...",
- chatNoMessages: "Sin mensajes aún.",
- chatLeave: "Salir del Chat",
- chatInviteCodeLabel: "Introduce el código de invitación",
- chatJoinByInvite: "Unirse",
- chatTitlePlaceholder: "Título del chat",
- chatDescriptionPlaceholder: "Descripción del chat",
- chatTagsPlaceholder: "etiqueta1, etiqueta2",
- chatImageLabel: "Selecciona un archivo de imagen (.jpeg, .jpg, .png, .gif)",
- chatInviteCode: "Código de Invitación",
- chatAuthor: "Autor",
- chatCreated: "Creado",
- chatAddFavorite: "Añadir a Favoritos",
- chatRemoveFavorite: "Quitar de Favoritos",
- chatPM: "MP",
- chatStatusLabel: "Estado",
- chatCategoryLabel: "Categoría",
- chatParticipantsLabel: "Participantes",
- gamesTitle: "Juegos",
- gamesDescription: "Descubre y juega algunos juegos.",
- gamesFilterAll: "TODOS",
- gamesPlayButton: "¡JUGAR!",
- gamesBackToGames: "Volver a Juegos",
- modulesGamesLabel: "Juegos",
- modulesGamesDescription: "Módulo para descubrir y jugar algunos juegos.",
- gamesCocolandTitle: "Cocoland",
- gamesCocolandDesc: "Un coco con ojos saltando palmeras y coleccionando ECOins. ¿Hasta dónde puedes llegar?",
- gamesTheFlowTitle: "ECOinflow",
- gamesTheFlowDesc: "Conecta PUBs a habitantes mediante validadores, tiendas y acumuladores. ¡Sobrevive a la amenaza CBDC!",
- gamesNeonInfiltratorTitle: "Neon Infiltrator",
- gamesNeonInfiltratorDesc: "Infiltra la cuadricula, recolecta datos confidenciales, evade los drones de seguridad y escapa. ¿Cuantos niveles puedes superar?",
- gamesSpaceInvadersTitle: "Space Invaders",
- gamesSpaceInvadersDesc: "¡Detén la invasión alienígena! Destruye oleadas de invasores antes de que lleguen al suelo.",
- gamesArkanoidTitle: "Arkanoid",
- gamesArkanoidDesc: "Rompe todos los ladrillos con tu paleta y pelota. Un clásico desafío arcade.",
- gamesPingPongTitle: "PingPong",
- gamesPingPongDesc: "Ping-pong clásico contra una IA. El primero en llegar a 5 puntos gana.",
- gamesOutrunTitle: "Outrun",
- gamesOutrunDesc: "¡Corre contra el tiempo! Esquiva el tráfico y llega a la meta antes de que se acabe el tiempo.",
- gamesAsteroidsTitle: "Asteroids",
- gamesAsteroidsDesc: "Pilota tu nave por un campo de asteroides mortal. Dispárales antes de que te alcancen.",
- gamesRockPaperScissorsTitle: "Piedra Papel Tijeras",
- gamesRockPaperScissorsDesc: "Piedra, papel o tijera contra una IA. Gana el mejor de tres rondas.",
- gamesTikTakToeTitle: "TikTakToe",
- gamesTikTakToeDesc: "Tres en raya clásico contra la IA. Consigue tres en línea para ganar.",
- gamesFlipFlopTitle: "FlipFlop",
- gamesFlipFlopDesc: "Lanza una moneda y apuesta cara o cruz. ¿Cuánta suerte tienes?",
- games8BallTitle: "8Ball Pool",
- games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
- gamesArtilleryTitle: "Artillery",
- gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
- gamesLabyrinthTitle: "Labyrinth",
- gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
- gamesCocomanTitle: "Cocoman",
- gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.",
- gamesTetrisTitle: "Tetris",
- gamesAudioPendulumTitle: "Audio Pendulum",
- gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
- gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
- gamesQuakeTitle: "Quake Arena",
- gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
- gamesFilterScoring: "SCORING",
- gamesHallOfFame: "Hall of Fame",
- gamesHallPlayer: "Player",
- gamesHallScore: "Score",
- gamesNoScores: "No scores yet.",
- chatAccessDenied: "No tienes acceso a este chat. Solicita una invitación para acceder al contenido.",
- padAccessDenied: "No tienes acceso a este pad. Solicita una invitación para acceder al contenido.",
- contentAccessDenied: "No tienes acceso a este contenido.",
- blockAccessRestricted: "Acceso restringido",
- tribeContentAccessDenied: "Acceso Denegado",
- tribeContentAccessDeniedMsg: "Este contenido pertenece a una tribu. Debes ser miembro para acceder.",
- tribeViewTribes: "Ver Tribus",
- torrentsTitle: "Torrents",
- torrentsDescription: "Explora y gestiona torrents en tu red.",
- torrentAllSectionTitle: "Torrents",
- torrentMineSectionTitle: "Tus Torrents",
- torrentRecentSectionTitle: "Torrents Recientes",
- torrentTopSectionTitle: "Torrents Destacados",
- torrentFavoritesSectionTitle: "Favoritos",
- torrentFilterAll: "TODOS",
- torrentFilterMine: "MÍOS",
- torrentFilterRecent: "RECIENTES",
- torrentFilterTop: "DESTACADOS",
- torrentFilterFavorites: "FAVORITOS",
- torrentCreateSectionTitle: "Subir Torrent",
- torrentUpdateSectionTitle: "Actualizar Torrent",
- torrentCreateButton: "Subir Torrent",
- torrentUpdateButton: "Actualizar",
- torrentDeleteButton: "Eliminar",
- torrentAddFavoriteButton: "Añadir Favorito",
- torrentRemoveFavoriteButton: "Quitar Favorito",
- torrentFileLabel: "Seleccionar archivo torrent (.torrent)",
- torrentTitleLabel: "Título",
- torrentTitlePlaceholder: "Título",
- torrentDescriptionLabel: "Descripción",
- torrentDescriptionPlaceholder: "Descripción",
- torrentTagsLabel: "Etiquetas",
- torrentTagsPlaceholder: "Introduce etiquetas separadas por comas",
- torrentSizeLabel: "Tamaño",
- torrentDownloadButton: "DOWNLOAD IT!",
- torrentNoFile: "Sin archivo torrent",
- noTorrents: "No se encontraron torrents.",
- torrentSearchPlaceholder: "Buscar título, etiquetas, autor...",
- torrentSearchButton: "Buscar",
- torrentSortRecent: "Más recientes",
- torrentSortOldest: "Más antiguos",
- torrentSortTop: "Más votados",
- torrentNoMatch: "No se encontraron torrents coincidentes.",
- torrentMessageAuthorButton: "Enviar Mensaje al Autor",
- torrentUpdatedAt: "Actualizado",
- statsTorrent: "Torrents",
- typeTorrent: "TORRENTS",
- modulesTorrentsLabel: "Torrents",
- modulesTorrentsDescription: "Módulo para descubrir y gestionar torrents.",
- favoritesFilterTorrents: "TORRENTS",
- tribeSectionTorrents: "TORRENTS",
- tribeCreateTorrent: "Subir Torrent",
- tribeMediaTypeTorrent: "Torrent",
- settingsWishTitle: "Deseo",
- settingsWishDesc: "Configura el deseo de tu Avatar. Determina cómo accedes a todo el contenido y tu experiencia en la red Oasis.",
- settingsWishWhole: "Multiverse",
- settingsWishMutuals: "Only mutual-support",
- settingsPmVisibilityTitle: "Mensajes Privados",
- settingsPmVisibilityDesc: "Configura el nivel de exposición a mensajes privados que deseas tener en la red.",
- settingsPmVisibilityWhole: "Multiverse",
- settingsPmVisibilityMutuals: "Only mutual-support",
- pmMutualNotice: "El envío es una barrera de UX. La recepción es un filtro de atención (el cifrado ya está replicado).",
- pmBlockedNonMutual: "Solo puedes enviar mensajes privados a habitantes con apoyo mutuo.",
- inhabitantsPendingFollowsTitle: "Solicitudes de apoyo pendientes",
- inhabitantsPendingAccept: "Aceptar",
- inhabitantsPendingReject: "Rechazar",
- bxEncrypted: "CIFRADO",
- bxEncryptedHexLabel: "Texto cifrado (vista previa)",
- tribeSectionGovernance: "GOBIERNO",
- tribeSubStatusPublic: "PÚBLICA",
- tribeSubStatusPrivate: "PRIVADA",
- tribeSubInheritedPrivate: "PRIVADA (heredada de la tribu principal)",
- tribePadInviteRequired: "No tienes acceso al pad. Pide una invitación para acceder al contenido.",
- tribeChatInviteRequired: "No tienes acceso al chat. Pide una invitación para acceder al contenido.",
- tribeGovernanceDesc: "Gobierno interno de esta tribu.",
- tribeGovernanceNoGov: "Sin gobierno activo",
- tribeGovernanceNoGovDesc: "Esta tribu aún no tiene gobierno. Propón candidaturas para iniciar el proceso.",
- tribeGovernanceAlreadyPublished: "Esta tribu ya tiene una candidatura abierta en el ciclo actual del parlamento global.",
- tribeGovernanceProposeInternal: "Proponer candidatura interna",
- tribeGovernanceInternalCandidatures: "Candidaturas internas",
- tribeGovernanceNoCandidatures: "Sin candidaturas abiertas.",
- tribeGovernanceAddRule: "Añadir regla",
- tribeGovernanceNoRules: "Sin reglas todavía.",
- tribeGovernanceNoLeaders: "Sin líderes elegidos todavía.",
- tribeGovernanceComingSoon: "Próximamente en el módulo de gobierno de esta tribu."
- }
- };
|