oasis_es.js 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153
  1. const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
  2. module.exports = {
  3. es: {
  4. languageName: "Castellano",
  5. extended: "Multiverso",
  6. extendedDescription: [
  7. "Cuando apoyas a alguien, puedes descargar las publicaciones de habitantes que apoya, y esas publicaciones aparecerán aquí, ordenadas por la más reciente.",
  8. ],
  9. popular: "Destacadas",
  10. popularDescription: [
  11. "Publicaciones de habitantes en tu red, ",
  12. strong("ordenadas por apoyos"),
  13. ". Selecciona el período de tiempo para obtener una lista.",
  14. ],
  15. day: "Día",
  16. week: "Semana",
  17. month: "Mes",
  18. year: "Año",
  19. latest: "Últimos",
  20. latestDescription: [
  21. strong("Publicaciones"),
  22. " tuyas y de habitantes que apoyas, ordenadas por las más recientes.",
  23. ],
  24. topics: "Temas",
  25. topicsDescription: [
  26. strong("Temas"),
  27. " tuyos y de habitantes que apoyas, ordenados por los más recientes.",
  28. ],
  29. summaries: "Resúmenes",
  30. summariesDescription: [
  31. strong("Temas y algunos comentarios"),
  32. " tuyos y de habitantes que apoyas, ordenados por los más recientes.",
  33. ],
  34. threads: "Hilos",
  35. threadsDescription: [
  36. strong("Publicaciones que tienen comentarios"),
  37. " de habitantes que apoyas y de tu multiverso, ordenadas por las más recientes.",
  38. ],
  39. profile: "Avatar",
  40. inhabitants: "Habitantes",
  41. manualMode: "Modo Manual",
  42. mentions: "Menciones",
  43. mentionsDescription: [
  44. strong("Publicaciones que te @mencionan"),
  45. ", ordenadas por las más recientes.",
  46. ],
  47. nextPage: "Siguiente",
  48. previousPage: "Anterior",
  49. noMentions: "No has recibido @menciones, aún.",
  50. private: "Buzón",
  51. privateDescription: "Ver y organizar tus mensajes privados.",
  52. privateInbox: "BUZÓN",
  53. privateSent: "ENVIADOS",
  54. privateFrom: "De",
  55. privateTo: "Para",
  56. privateDate: "Fecha",
  57. privateDelete: "Borrar",
  58. pmCreateButton: "Escribe un MP",
  59. noPrivateMessages: "No has recibido ninún mensaje privado, aún.",
  60. peers: "Nodos",
  61. privateDescription: ["Los mensajes privados están ",strong("cifrados con tu llave pública")," y tienen un máximo de 7 receptores."],
  62. search: "Buscar",
  63. searchDescription: "Descripición",
  64. imageSearch: "Buscar Imágenes",
  65. searchPlaceholder: "Encuentra @habitantes, #etiquetas y palabras clave...",
  66. settings: "Configuración",
  67. continueReading: "Continuar leyendo",
  68. moreComments: "más comentarios",
  69. readThread: "leer el resto del hilo",
  70. pixeliaTitle: 'Pixelia',
  71. pixeliaDescription: 'Dibuja pixeles en un grid y colabor-ART con habitantes en tu red.',
  72. coordLabel: 'Coordenadas (e.g., A3)',
  73. coordPlaceholder: 'Introduce coordenada',
  74. contributorsTitle: "Contribuciones",
  75. pixeliaBy: "por",
  76. colorLabel: 'Elige un color',
  77. paintButton: 'Dibujar!',
  78. invalidCoordinate: 'Coordenada incorrecta',
  79. goToMuralButton: "Ver Mural",
  80. totalPixels: 'Total Pixeles',
  81. modules: "Módulos",
  82. modulesViewTitle: "Módulos",
  83. modulesViewDescription: "Define tu entorno ideal activando y desactivando módulos.",
  84. inbox: "Buzón",
  85. multiverse: "Multiverso",
  86. popularLabel: "Destacadas",
  87. topicsLabel: "Tópicos",
  88. latestLabel: "Últimas",
  89. summariesLabel: "Resúmenes",
  90. threadsLabel: "Hilos",
  91. multiverseLabel: "Multiverso",
  92. inboxLabel: "Buzón",
  93. invitesLabel: "Invitaciones",
  94. walletLabel: "Cartera",
  95. legacyLabel: "Llaves",
  96. cipherLabel: "Cifrador",
  97. bookmarksLabel: "Marcadores",
  98. videosLabel: "Vídeos",
  99. torrentsLabel: "Torrents",
  100. docsLabel: "Documentos",
  101. audiosLabel: "Audios",
  102. tagsLabel: "Etiquetas",
  103. imagesLabel: "Imágenes",
  104. inhabitantsLabel: "Habitantes",
  105. trendingLabel: "Tendencias",
  106. eventsLabel: "Eventos",
  107. tasksLabel: "Tareas",
  108. transfersTitle: "Transferencias",
  109. marketTitle: "Mercado",
  110. opinionsTitle: "Opiniones",
  111. saveSettings: "Guardar configuración",
  112. apply: "Aplicar",
  113. menuPersonal: "Personal",
  114. menuContent: "Contenido",
  115. menuGovernance: "Gobernanza",
  116. menuOffice: "Oficina",
  117. menuMultiverse: "Multiverso",
  118. menuNetwork: "Red",
  119. menuCreative: "Creativo",
  120. menuEconomy: "Economía",
  121. menuMedia: "Multimedia",
  122. menuTools: "Herramientas",
  123. comment: "Comentar",
  124. subtopic: "Subtema",
  125. json: "JSON",
  126. createdAt: "Creado el",
  127. createdBy: "por",
  128. unfollow: "Dejar de soportar",
  129. follow: "Soportar",
  130. block: "Bloquear",
  131. unblock: "Desbloquear",
  132. newerPosts: "Nuevos posts",
  133. olderPosts: "Viejos posts",
  134. feedRangeEmpty: "El rango aplicado está vación para éste feed. Trata de ver el ",
  135. seeFullFeed: "feed completo",
  136. feedEmpty: "La red Oasis no ha visto nunca posts desde ésta cuenta.",
  137. beginningOfFeed: "Éste es el comienzo del feed",
  138. noNewerPosts: "No se han recibido posts nuevos, aún.",
  139. relationshipNotFollowing: "No te da soporte",
  140. relationshipTheyFollow: "Te da soporte",
  141. relationshipMutuals: "Soporte mútuo",
  142. relationshipFollowing: "Estás dando soporte",
  143. relationshipYou: "Tú",
  144. relationshipBlocking: "Estás bloqueando",
  145. relationshipBlockedBy: "Te bloquea",
  146. relationshipMutualBlock: "Bloqueo mutuo",
  147. relationshipNone: "No estás dando soporte",
  148. relationshipConflict: "Conflicto",
  149. relationshipBlockingPost: "Post bloqueado",
  150. viewLikes: "Ver replicas",
  151. spreadedDescription: "Lista de posts replicados por habitante.",
  152. totalspreads: "Replicas totales",
  153. attachFiles: "Adjuntar ficheros",
  154. preview: "Previsualizar",
  155. publish: "Publicar",
  156. contentWarningPlaceholder: "Añade un título a tu post (opcional)",
  157. privateWarningPlaceholder: "Añade habitantes para enviar un post privado (opcional)",
  158. publishWarningPlaceholder: "...",
  159. publishCustomDescription: [
  160. "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
  161. ],
  162. commentWarning: [
  163. "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
  164. ],
  165. commentPublic: "público",
  166. commentPrivate: "privado",
  167. commentLabel: ({ publicOrPrivate, markdownUrl }) => [
  168. ],
  169. publishLabel: ({ markdownUrl, linkTarget }) => [
  170. "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
  171. ],
  172. replyLabel: ({ markdownUrl }) => [
  173. "RECUERDA: Debido a la tecnología blockchain, una vez has publicado algo, no puede ser editado ni borrado. Piénsalo bien!.",
  174. ],
  175. publishCustomInfo: ({ href }) => [
  176. "Si tienes experiencia, también puedes ",
  177. a({ href }, "escribir un post avanzado"),
  178. ".",
  179. ],
  180. publishBasicInfo: ({ href }) => [
  181. "Si no tienes experiencia, deberías ",
  182. a({ href }, "escribir un post normal"),
  183. ".",
  184. ],
  185. publishCustom: "Escribir un post avanzado",
  186. subtopicLabel: "Crea un subtopic para éste post",
  187. messagePreview: "Previsualización",
  188. mentionsMatching: "Menciones",
  189. mentionsName: "Nombre",
  190. mentionsRelationship: "Relación",
  191. updateit: "OBTENER ACTUALIZACIONES!",
  192. updateBannerText: "Hay una nueva versión de Oasis disponible.",
  193. updateBannerAction: "Actualizar ahora →",
  194. info: "Info",
  195. settingsIntro: ({ version }) => [
  196. `[SNH] ꖒ OASIS [ v.${version} ]`,
  197. ],
  198. timeAgo: "hace",
  199. sendTime: "escrito ",
  200. theme: "Tema",
  201. legacy: "Llaves",
  202. legacyTitle: "Llaves",
  203. legacyDescription: "Maneja tu secreto (llave privada) de forma rápida y segura.",
  204. legacyExportButton: "Exportar",
  205. legacyImportButton: "Importar",
  206. ssbLogStream: "Blockchain",
  207. ssbLogStreamDescription: "Configura el límite de mensajes para los flujos de la blockchain.",
  208. saveSettings: "Guardar configuración",
  209. exportTitle: "Exportar datos",
  210. exportDescription: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu secreto",
  211. exportDataTitle: "Copia de Seguridad",
  212. exportDataDescription: "Descargar tu blockchain (llave privada excluida!)",
  213. exportDataButton: "Descargar blockchain",
  214. pubWallet: "Cartera del PUB",
  215. pubWalletDescription: "Establece la URL del wallet del PUB. Esta se utilizará para las transacciones del PUB (incluída la RBU).",
  216. pubWalletConfiguration: "Guardar Configuración",
  217. importTitle: "Importar datos",
  218. importDescription: "Importa tu secreto cifrado (llave privada) para activar tu avatar",
  219. importAttach: "Adjuntar fichero cifrado (.enc)",
  220. passwordLengthInfo: "La contraseña debe tener mínimo 32 caracteres de longitud.",
  221. passwordImport: "Escribe tu contraseña para descifrar los datos que serán guardados en tu sistema (nombre: secret)",
  222. randomPassword: "Contraseña aleatoria",
  223. exportPasswordPlaceholder: "Utiliza minúsculas, mayúsculas, números y símbolos",
  224. fileInfo: "Tu secreto cifrado será guardado en tu sistema (nombre: oasis.enc)",
  225. themeIntro:
  226. "Elige un tema.",
  227. setTheme: "Establecer tema",
  228. language: "Lenguaje",
  229. languageDescription:
  230. "Si quieres utilizar otro idioma, seleccionalo aquí.",
  231. setLanguage: "Establecer lenguaje",
  232. status: "Estado",
  233. peerConnections: "Nodos",
  234. peerConnectionsIntro: "Maneja todas tus conexiones con otros nodos.",
  235. online: "Conectado",
  236. offline: "Desconectado",
  237. discovered: 'Descubiertos',
  238. unknown: 'Desconocidos',
  239. pub: 'PUB',
  240. supported: "Soportado",
  241. recommended: "Recomendado",
  242. blocked: "Bloqueado",
  243. noConnections: "No hay nodos conectados.",
  244. noDiscovered: "No has descubierto nodos.",
  245. noSupportedConnections: "No soportas nodos.",
  246. noBlockedConnections: "No bloqueas nodos.",
  247. noRecommendedConnections: "No recomiendas nodos.",
  248. connectionActionIntro:
  249. "",
  250. startNetworking: "Iniciar red",
  251. stopNetworking: "Parar red",
  252. restartNetworking: "Reiniciar red",
  253. sync: "Sincronizar red",
  254. indexes: "Índices",
  255. indexesDescription:
  256. "Reconstruir índices es seguro, y puede arreglar algunos errores en tu blockchain.",
  257. homePageTitle: "Página de inicio",
  258. homePageDescription: "Selecciona qué módulo quieres como tu página de inicio.",
  259. saveHomePage: "Establecer página de inicio",
  260. invites: "Invitaciones",
  261. invitesTitle: "Invitaciones",
  262. invitesInvites: "Invitaciones",
  263. invitesDescription: "Maneja y aplica códigos de invitación en tu red.",
  264. invitesTribesTitle: "Tribus",
  265. invitesTribeInviteCodePlaceholder: "Introduce el código de la tribu",
  266. invitesTribeJoinButton: "Entrar en la tribu",
  267. invitesPubsTitle: "PUBs",
  268. invitesPubInviteCodePlaceholder: "Introduce el código de invitación del PUB",
  269. invitesAcceptInvite: "Entrar en el PUB",
  270. invitesAcceptedInvites: "Redes Federadas",
  271. invitesNoInvites: "No hay invitaciones aceptadas, aún.",
  272. invitesUnfollow: 'Dejar de seguir',
  273. invitesFollow: 'Seguir',
  274. invitesUnfollowedInvites: 'Invitaciones no seguidas',
  275. invitesNoFederatedPubs: "No hay redes federadas.",
  276. invitesNoUnfollowed: 'Sin invitaciones no seguidas.',
  277. invitesUnreachablePubs: "Redes Inalcanzables",
  278. invitesNoUnreachablePubs: "No hay redes inalcanzables.",
  279. currentlyUnreachable: "¡ERROR!",
  280. errorDetails: "Detalles del error",
  281. genericError: "A ocurrido un error.",
  282. panicMode: "Modo Pánico!",
  283. encryptData: "Establece una contraseña (min 32 caracteres de longitud) para cifrar tu blockchain",
  284. decryptData: "Introduce contraseña para descifrar tu blockchain",
  285. panicModeDescription: "Cifrar/Descifrar o BORRAR tu blockchain",
  286. removeDataDescription: "CUIDADO: Éste proceso no puede ser revocado.",
  287. encryptPanicButton: "Cifrar blockchain",
  288. decryptPanicButton: "Descifrar blockchain",
  289. removePanicButton: "BORRAR TODOS TUS DATOS!",
  290. searchTitle: "Buscar",
  291. searchDescriptionLabel: "Buscar contenido en tu red.",
  292. searchLanguagesLabel: "Lenguajes",
  293. searchSkillsLabel: "Habilidades",
  294. searchPlaceholder:"Buscar contenido...",
  295. searchSubmit:"Buscar!",
  296. tribeLocationLabel:"Localización",
  297. tribeModeLabel:"Modo de Invitación",
  298. tribeMembersCount:"Número de Miembros",
  299. searchDateLabel:"Fecha",
  300. searchLocationLabel:"Localización",
  301. searchPriceLabel:"Precio",
  302. searchUrlLabel:"URL",
  303. searchCategoryLabel:"Categoría",
  304. searchStartLabel:"Fecha de comienzo",
  305. searchEndLabel:"Fecha de fin",
  306. searchPriorityLabel:"Prioridad",
  307. searchStatusLabel:"Estado",
  308. statusLabel:"Estado",
  309. totalVotesLabel:"Votos Totales",
  310. votesLabel:"Votaciones",
  311. noResultsFound:"No se han encontrado resultados.",
  312. author:"Autoría",
  313. createdAtLabel:"Creado el",
  314. hashtagDescription:"Explora el contenido asociado con ésta etiqueta",
  315. votesOption:"Opiniones Votadas",
  316. voteYesLabel:"Si",
  317. voteNoLabel:"No",
  318. allTypesLabel: "SIN LÍMITES",
  319. ABSTENTIONLabel:"ABSTENCIÓN",
  320. YESLabel:"SI",
  321. NOLabel:"NO",
  322. FOLLOW_MAJORITYLabel: "SEGUIR MAYORIA",
  323. CONFUSEDLabel: "CONFUSO",
  324. NOT_INTERESTEDLabel: "SIN INTERÉS",
  325. voteOptionYes:"Si",
  326. voteOptionNo:"No",
  327. voteOptionAbstention:"Abstención",
  328. StatusLabel:"Estado",
  329. votesOptionYesLabel:"Si",
  330. votesOptionNoLabel:"No",
  331. votesOptionAbstentionLabel:"Abstención",
  332. votesQuestionLabel:"Pregunta",
  333. votesCreatedByLabel:"Creado el",
  334. voteStatusOpen:"ABIERTO",
  335. voteStatusClosed:"CERRADO",
  336. imageSearchLabel: "Introduce palabras para buscar las imagenes que hayan sido etiquetadas con ellas.",
  337. commentDescription: ({ parentUrl }) => [
  338. " ha comentado en ",
  339. a({ href: parentUrl }, " hilo"),
  340. ],
  341. commentTitle: ({ authorName }) => [`Ha comentado en el post de @${authorName}`],
  342. subtopicDescription: ({ parentUrl }) => [
  343. " creado un subtopic desde ",
  344. a({ href: parentUrl }, " un post"),
  345. ],
  346. subtopicTitle: ({ authorName }) => [`Ha creado un subtopic en el post de @${authorName}`],
  347. mysteryDescription: "publicado un post misterioso",
  348. oasisDescription: "OASIS Red de Proyectos",
  349. searchSubmit: "Buscar...",
  350. hashtagDescription: "Posts etiquetados con éste hashtag.",
  351. postLabel: "POSTS",
  352. aboutLabel: "HABITANTES",
  353. feedLabel: "FEEDS",
  354. votesLabel: "GOBIERNO",
  355. reportLabel: "REPORTES",
  356. imageLabel: "IMAGENES",
  357. videoLabel: "VIDEOS",
  358. audioLabel: "AUDIOS",
  359. documentLabel: "DOCUMENTOS",
  360. torrentLabel: "TORRENTS",
  361. pdfFallbackLabel: "Documento PDF",
  362. eventLabel: "EVENTOS",
  363. taskLabel: "TAREAS",
  364. transferLabel: "TRANSFERENCIAS",
  365. curriculumLabel: "CURRÍCULUM",
  366. bookmarkLabel: "ENLACES",
  367. tribeLabel: "TRIBUS",
  368. marketLabel: "MERCADO",
  369. shopLabel: "SHOPS",
  370. shopProductLabel: "SHOP PRODUCTS",
  371. mapLabel: "MAPS",
  372. jobLabel: "JOBS",
  373. forumLabel: "FORUMS",
  374. projectLabel: "PROJECTS",
  375. bankWalletLabel: "CARTERAS",
  376. bankClaimLabel: "UBI CLAIMS",
  377. voteLabel: "VOTES",
  378. contactLabel: "CONTACTS",
  379. pubLabel: "PUBS",
  380. cvLabel: "CVs",
  381. submit: "Aplicar",
  382. subjectLabel: "Asunto",
  383. editProfile: "Editar Avatar",
  384. editProfileDescription:
  385. "",
  386. profileName: "Nombre",
  387. profileImage: "Imágen Avatar",
  388. profileDescription: "Descripción",
  389. hashtagDescription:
  390. "Posts de habitantes de tu red que referencian éste #hashtag, ordenados por el más reciente.",
  391. rebuildName: "Reconstruir blockchain",
  392. wallet: "Cartera",
  393. walletAddress: "Dirección",
  394. walletAmount: "Cantidad",
  395. walletAddressLine: ({ address }) => `Dirección: ${address}`,
  396. walletAmountLine: ({ amount }) => `Cantidad: ${amount} ECO`,
  397. walletBack: "Volver",
  398. walletBalanceTitle: "Saldo",
  399. walletWalletSendTitle: "Enviar",
  400. walletReceiveTitle: "Recibir",
  401. walletHistoryTitle: "Historial",
  402. walletBalanceLine: ({ balance }) => `${balance} ECO`,
  403. walletCnfrs: "Conf.",
  404. walletConfirm: "Confirmar",
  405. 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.",
  406. walletDate: "Fecha",
  407. walletFee: "Tasa (Cuanto mayor sea la tasa, más rápido se procesará tu transacción)",
  408. walletFeeLine: ({ fee }) => `Tasa: ECO ${fee}`,
  409. walletHistory: "Historial",
  410. walletReceive: "Recibir",
  411. walletReset: "Resetear",
  412. walletSend: "Enviar",
  413. walletStatus: "Estado",
  414. walletDisconnected: [
  415. "Tienes la ",
  416. strong("cartera de ECOin desconectada"),
  417. ". Revisa ",
  418. a({ href: '/settings' }, "tu configuración"),
  419. " o el estado de tu conexión.",
  420. ],
  421. walletSentToLine: ({ destination, amount }) => `Enviar ECO ${amount} a ${destination}`,
  422. walletSettingsTitle: "Cartera",
  423. walletSettingsDescription: "Integrar Oasis con tu cartera de ECOin.",
  424. walletSettingsDocLink: "Guía de instalación de ECOin",
  425. walletStatusMessages: {
  426. invalid_amount: "Cantidad inválida",
  427. invalid_dest: "Dirección de destino inválida",
  428. invalid_fee: "Tasa inválida",
  429. validation_errors: "Errores en la validación",
  430. send_tx_success: "Transacción realizada",
  431. },
  432. walletTitle: "Cartera",
  433. walletTotalCostLine: ({ totalCost }) => `Coste total: ECO ${totalCost}`,
  434. walletTransactionId: "ID de transacción",
  435. walletTxId: "ID Tx",
  436. walletType: "Tipo",
  437. walletUser: "Usuario",
  438. walletPass: "Contraseña",
  439. walletConfiguration: "Configurar cartera",
  440. cipher: "Cifrador",
  441. cipherTitle: "Cifrador",
  442. cipherDescription: "Encripta y desencripta tu texto de forma simétrica (usando una contraseña compartida).",
  443. randomPassword: "Contraseña Aleatoria",
  444. cipherEncryptTitle: "Encriptar Texto",
  445. cipherEncryptDescription: "Introduce el texto para encriptar",
  446. cipherTextLabel: "Texto para Encriptar",
  447. cipherTextPlaceholder: "Introduce el texto para encriptar...",
  448. cipherPasswordLabel: "Establece una contraseña (mínimo 32 caracteres) para encriptar tu texto",
  449. cipherPasswordDecryptLabel: "Establece una contraseña (mínimo 32 caracteres) para desencriptar tu texto",
  450. cipherPasswordPlaceholder: "Introduce una contraseña...",
  451. cipherEncryptButton: "Encriptar",
  452. cipherDecryptTitle: "Desencriptar Texto",
  453. cipherDecryptDescription: "Introduce el texto para desencriptar",
  454. cipherEncryptedMessageLabel: "Texto Encriptado",
  455. cipherDecryptedMessageLabel: "Texto Desencriptado",
  456. cipherPasswordUsedLabel: "Contraseña usada para encriptar (guárdala!)",
  457. cipherEncryptedTextPlaceholder: "Introduce el texto encriptado...",
  458. cipherIvLabel: "IV",
  459. cipherIvPlaceholder: "Introduce el vector de inicialización...",
  460. cipherDecryptButton: "Desencriptar",
  461. password: "Contraseña",
  462. text: "Texto",
  463. encryptedText: "Texto Encriptado",
  464. iv: "Vector de Inicialización (IV)",
  465. encryptTitle: "Encripta tu texto",
  466. encryptDescription: "Introduce el texto que deseas encriptar y proporciona una contraseña.",
  467. encryptButton: "Encriptar",
  468. decryptTitle: "Desencripta tu texto",
  469. decryptDescription: "Introduce el texto encriptado y proporciona la misma contraseña utilizada para la encriptación.",
  470. decryptButton: "Desencriptar",
  471. passwordLengthError: "La contraseña debe tener al menos 32 caracteres.",
  472. missingFieldsError: "Texto, contraseña o IV no proporcionados.",
  473. encryptionError: "Error al encriptar el texto.",
  474. decryptionError: "Error al desencriptar el texto.",
  475. bookmarkTitle: "Marcadores",
  476. bookmarkDescription: "Descubre y gestiona marcadores en tu red.",
  477. bookmarkAllSectionTitle: "Marcadores",
  478. bookmarkMineSectionTitle: "Tus Marcadores",
  479. bookmarkRecentSectionTitle: "Marcadores recientes",
  480. bookmarkTopSectionTitle: "Marcadores top",
  481. bookmarkFavoritesSectionTitle: "Favoritos",
  482. bookmarkCreateSectionTitle: "Crear marcador",
  483. bookmarkUpdateSectionTitle: "Actualizar marcador",
  484. bookmarkFilterAll: "TODOS",
  485. bookmarkFilterMine: "MÍOS",
  486. bookmarkFilterTop: "TOP",
  487. bookmarkFilterFavorites: "FAVORITOS",
  488. bookmarkFilterRecent: "RECIENTES",
  489. bookmarkCreateButton: "Crear marcador",
  490. bookmarkUpdateButton: "Actualizar",
  491. bookmarkDeleteButton: "Eliminar",
  492. bookmarkAddFavoriteButton: "Añadir favorito",
  493. bookmarkRemoveFavoriteButton: "Quitar favorito",
  494. bookmarkUrlLabel: "Enlace",
  495. bookmarkUrlPlaceholder: "https://ejemplo.com",
  496. bookmarkDescriptionLabel: "Descripción",
  497. bookmarkDescriptionPlaceholder: "Opcional",
  498. bookmarkTagsLabel: "Etiquetas",
  499. bookmarkTagsPlaceholder: "Introduce tags separadas por comas",
  500. bookmarkCategoryLabel: "Categoría",
  501. bookmarkCategoryPlaceholder: "Opcional",
  502. bookmarkLastVisitLabel: "Última visita",
  503. bookmarkSearchPlaceholder: "Buscar URL, tags, categoría, autor...",
  504. bookmarkSortRecent: "Más recientes",
  505. bookmarkSortOldest: "Más antiguos",
  506. bookmarkSortTop: "Más votados",
  507. bookmarkSearchButton: "Buscar",
  508. bookmarkUpdatedAt: "Actualizado",
  509. bookmarkNoMatch: "No hay marcadores que coincidan con tu búsqueda.",
  510. noBookmarks: "No hay marcadores disponibles.",
  511. noUrl: "Sin enlace",
  512. noCategory: "Sin categoría",
  513. noLastVisit: "Sin última visita",
  514. videoTitle: "Vídeos",
  515. videoDescription: "Explora y gestiona contenido de vídeo en tu red.",
  516. videoPluginTitle: "Título",
  517. videoPluginDescription: "Descripción",
  518. videoMineSectionTitle: "Tus vídeos",
  519. videoCreateSectionTitle: "Subir vídeo",
  520. videoUpdateSectionTitle: "Actualizar vídeo",
  521. videoAllSectionTitle: "Vídeos",
  522. videoRecentSectionTitle: "Vídeos recientes",
  523. videoTopSectionTitle: "Vídeos más votados",
  524. videoFavoritesSectionTitle: "Favoritos",
  525. videoFilterAll: "TODOS",
  526. videoFilterMine: "MÍOS",
  527. videoFilterRecent: "RECIENTES",
  528. videoFilterTop: "TOP",
  529. videoFilterFavorites: "FAVORITOS",
  530. videoCreateButton: "Subir vídeo",
  531. videoUpdateButton: "Actualizar",
  532. videoDeleteButton: "Eliminar",
  533. videoAddFavoriteButton: "Añadir a favoritos",
  534. videoRemoveFavoriteButton: "Quitar de favoritos",
  535. videoFileLabel: "Selecciona un archivo de vídeo (.mp4, .webm, .ogv, .mov)",
  536. videoTagsLabel: "Etiquetas",
  537. videoTagsPlaceholder: "Introduce etiquetas separadas por comas",
  538. videoTitleLabel: "Título",
  539. videoTitlePlaceholder: "Opcional",
  540. videoDescriptionLabel: "Descripción",
  541. videoDescriptionPlaceholder: "Opcional",
  542. videoNoFile: "No se ha proporcionado ningún archivo de vídeo",
  543. noVideos: "No hay vídeos disponibles.",
  544. videoSearchPlaceholder: "Buscar por título, etiquetas, autor...",
  545. videoSortRecent: "Más recientes",
  546. videoSortOldest: "Más antiguos",
  547. videoSortTop: "Más votados",
  548. videoSearchButton: "Buscar",
  549. videoMessageAuthorButton: "MP",
  550. videoUpdatedAt: "Actualizado",
  551. videoNoMatch: "Ningún vídeo coincide con tu búsqueda.",
  552. documentTitle: "Documentos",
  553. documentDescription: "Descubre y gestiona documentos en tu red.",
  554. documentAllSectionTitle: "Documentos",
  555. documentMineSectionTitle: "Tus documentos",
  556. documentRecentSectionTitle: "Documentos recientes",
  557. documentTopSectionTitle: "Documentos top",
  558. documentFavoritesSectionTitle: "Favoritos",
  559. documentCreateSectionTitle: "Subir documento",
  560. documentUpdateSectionTitle: "Editar documento",
  561. documentFilterAll: "TODO",
  562. documentFilterMine: "MÍOS",
  563. documentFilterRecent: "RECIENTES",
  564. documentFilterTop: "TOP",
  565. documentFilterFavorites: "FAVORITOS",
  566. documentCreateButton: "Subir documento",
  567. documentUpdateButton: "Actualizar",
  568. documentDeleteButton: "Eliminar",
  569. documentAddFavoriteButton: "Añadir a favoritos",
  570. documentRemoveFavoriteButton: "Quitar de favoritos",
  571. documentMessageAuthorButton: "MP",
  572. documentFileLabel: "Subir documento (.pdf)",
  573. documentTagsLabel: "Etiquetas",
  574. documentTagsPlaceholder: "Introduce etiquetas separadas por comas",
  575. documentTitleLabel: "Título",
  576. documentTitlePlaceholder: "Opcional",
  577. documentDescriptionLabel: "Descripción",
  578. documentDescriptionPlaceholder: "Opcional",
  579. documentNoFile: "Sin archivo.",
  580. noDocuments: "No hay documentos disponibles.",
  581. documentSearchPlaceholder: "Buscar título, etiquetas, descripción, autor...",
  582. documentSortRecent: "Más recientes",
  583. documentSortOldest: "Más antiguos",
  584. documentSortTop: "Más votados",
  585. documentSearchButton: "Buscar",
  586. documentNoMatch: "No hay documentos que coincidan con tu búsqueda.",
  587. documentUpdatedAt: "Actualizado",
  588. audioTitle: "Audios",
  589. audioDescription: "Explora y gestiona contenido de audio en tu red.",
  590. audioPluginTitle: "Título",
  591. audioPluginDescription: "Descripción",
  592. audioMineSectionTitle: "Tus audios",
  593. audioCreateSectionTitle: "Subir audio",
  594. audioUpdateSectionTitle: "Actualizar audio",
  595. audioAllSectionTitle: "Audios",
  596. audioRecentSectionTitle: "Audios recientes",
  597. audioTopSectionTitle: "Audios más votados",
  598. audioFilterAll: "TODOS",
  599. audioFilterMine: "MÍOS",
  600. audioFilterRecent: "RECIENTES",
  601. audioFilterTop: "TOP",
  602. audioCreateButton: "Subir audio",
  603. audioUpdateButton: "Actualizar",
  604. audioDeleteButton: "Eliminar",
  605. audioAddFavoriteButton: "Añadir a favoritos",
  606. audioRemoveFavoriteButton: "Quitar de favoritos",
  607. audioFileLabel: "Selecciona un archivo de audio (.mp3, .wav, .ogg)",
  608. audioTagsLabel: "Etiquetas",
  609. audioTagsPlaceholder: "Introduce etiquetas separadas por comas",
  610. audioTitleLabel: "Título",
  611. audioTitlePlaceholder: "Opcional",
  612. audioDescriptionLabel: "Descripción",
  613. audioDescriptionPlaceholder: "Opcional",
  614. audioNoFile: "No se ha proporcionado ningún archivo de audio",
  615. noAudios: "No hay audios disponibles.",
  616. audioSearchPlaceholder: "Buscar por título, etiquetas, autor...",
  617. audioSortRecent: "Más recientes",
  618. audioSortOldest: "Más antiguos",
  619. audioSortTop: "Más votados",
  620. audioSearchButton: "Buscar",
  621. audioMessageAuthorButton: "MP",
  622. audioUpdatedAt: "Actualizado",
  623. audioNoMatch: "Ningún audio coincide con tu búsqueda.",
  624. audioFavoritesSectionTitle: "Favoritos",
  625. audioFilterFavorites: "FAVORITOS",
  626. favoritesTitle: "Favoritos",
  627. favoritesDescription: "Todos tus elementos marcados como favoritos en un solo lugar.",
  628. favoritesFilterAll: "TODOS",
  629. favoritesFilterRecent: "RECIENTES",
  630. favoritesFilterAudios: "AUDIOS",
  631. favoritesFilterBookmarks: "MARCADORES",
  632. favoritesFilterDocuments: "DOCUMENTOS",
  633. favoritesFilterImages: "IMÁGENES",
  634. favoritesFilterMaps: "MAPAS",
  635. favoritesFilterPads: "PADS",
  636. favoritesFilterChats: "CHATS",
  637. favoritesFilterCalendars: "CALENDARIOS",
  638. favoritesFilterVideos: "VÍDEOS",
  639. favoritesRemoveButton: "Quitar de favoritos",
  640. favoritesNoItems: "Todavía no hay favoritos.",
  641. yourContacts: "Tus Contactos",
  642. allInhabitants: "Habitantes",
  643. allCVs: "Todos los CVs",
  644. discoverPeople: "Descubre habitantes en tu red.",
  645. allInhabitantsButton: "TODOS",
  646. contactsButton: "SOPORTES",
  647. CVsButton: "CVs",
  648. matchSkills: "Coincidir Habilidades",
  649. matchSkillsButton: "COINCIDIR HABILIDADES",
  650. suggestedButton: "SUGERIDOS",
  651. searchInhabitantsPlaceholder: "FILTRAR habitantes POR NOMBRE …",
  652. filterLocation: "FILTRAR habitantes POR UBICACIÓN …",
  653. filterLanguage: "FILTRAR habitantes POR IDIOMA …",
  654. filterSkills: "FILTRAR habitantes POR HABILIDADES …",
  655. applyFilters: "Aplicar Filtros",
  656. locationLabel: "Ubicación",
  657. languagesLabel: "Idiomas",
  658. skillsLabel: "Habilidades",
  659. commonSkills: "Habilidades Comunes",
  660. mutualFollowers: "Seguidores Mutuos",
  661. latestInteractions: "Últimas Interacciones",
  662. viewAvatar: "Ver Avatar",
  663. viewCV: "Ver CV",
  664. suggestedSectionTitle: "Sugeridos",
  665. topkarmaSectionTitle: "Mejor Karma",
  666. topactivitySectionTitle: "Top Actividad",
  667. blockedSectionTitle: "Bloqueados",
  668. gallerySectionTitle: "GALERÍA",
  669. blockedButton: "BLOQUEADOS",
  670. blockedLabel: "Usuario Bloqueado",
  671. inhabitantviewDetails: "Ver Detalles",
  672. viewDetails: "Ver Detalles",
  673. keepReading: "Seguir leyendo...",
  674. oasisId: "ID",
  675. noInhabitantsFound: "No se encontraron habitantes, aún.",
  676. inhabitantActivityLevel: "Nivel Actividad",
  677. deviceLabel: "Dispositivo",
  678. parliamentTitle: "Parlamento",
  679. parliamentDescription: "Explora formas de gobierno y políticas de gestión colectiva.",
  680. parliamentFilterGovernment: "GOBIERNO",
  681. parliamentFilterCandidatures: "CANDIDATURAS",
  682. parliamentFilterProposals: "PROPUESTAS",
  683. parliamentFilterLaws: "LEYES",
  684. parliamentFilterHistorical: "HISTÓRICO",
  685. parliamentFilterLeaders: "LÍDERES",
  686. parliamentFilterRules: "REGLAS",
  687. parliamentGovernmentCard: "Gobierno actual",
  688. parliamentGovMethod: "MÉTODO DE GOBIERNO",
  689. parliamentActorInPowerInhabitant: 'HABITANTE EN EL PODER',
  690. parliamentActorInPowerTribe: 'TRIBU EN EL PODER',
  691. parliamentHistoricalGovernmentsTitle: 'GOBIERNOS',
  692. parliamentHistoricalElectionsTitle: 'CICLOS ELECTORALES',
  693. parliamentHistoricalLawsTitle: 'HISTÓRICO',
  694. parliamentHistoricalLeadersTitle: 'LÍDERES',
  695. parliamentThCycles: 'CICLOS',
  696. parliamentThTimesInPower: 'MANDATOS',
  697. parliamentThTotalCandidatures: 'CANDIDATURAS',
  698. parliamentThProposed: 'LEYES PROPUESTAS',
  699. parliamentThApproved: 'LEYES APROBADAS',
  700. parliamentThDeclined: 'LEYES RECHAZADAS',
  701. parliamentThDiscarded: 'LEYES DESCARTADAS',
  702. parliamentVotesReceived: "VOTOS RECIBIDOS",
  703. parliamentMembers: "MIEMBROS",
  704. parliamentLegSince: "INICIO DEL CICLO",
  705. parliamentLegEnd: "FIN DEL CICLO",
  706. parliamentPoliciesProposal: "PROPUESTAS DE LEYES",
  707. parliamentPoliciesApproved: "LEYES APROBADAS",
  708. parliamentPoliciesDeclined: "LEYES RECHAZADAS",
  709. parliamentPoliciesDiscarded: "LEYES DESCARTADAS",
  710. parliamentEfficiency: "% EFICIENCIA",
  711. parliamentFilterRevocations: 'REVOCACIONES',
  712. parliamentRevocationFormTitle: 'Revocar Ley',
  713. parliamentRevocationLaw: 'Ley',
  714. parliamentRevocationTitle: 'Título',
  715. parliamentRevocationReasons: 'Motivos',
  716. parliamentRevocationPublish: 'Publicar Revocación',
  717. parliamentCurrentRevocationsTitle: 'Revocaciones Actuales',
  718. parliamentFutureRevocationsTitle: 'Revocaciones Futuras',
  719. parliamentPoliciesRevocated: 'LEYES REVOCADAS',
  720. parliamentPoliciesTitle: 'HISTÓRICO',
  721. parliamentLawsTitle: 'LEYES APROBADAS',
  722. parliamentRulesRevocations: 'Cualquier ley aprobada puede ser revocada utilizando el método de gobierno vigente.',
  723. parliamentNoStableGov: "Aún no hay un gobierno elegido.",
  724. parliamentNoGovernments: "Todavía no hay gobiernos en el histórico.",
  725. parliamentCandidatureFormTitle: "Proponer Candidatura",
  726. parliamentCandidatureId: "Candidatura",
  727. parliamentCandidatureIdPh: "Oasis ID (@...) o nombre de la tribu",
  728. parliamentCandidatureSlogan: "Lema (máx. 140 car.)",
  729. parliamentCandidatureSloganPh: "Un lema corto",
  730. parliamentCandidatureMethod: "Método",
  731. parliamentCandidatureProposeBtn: "Publicar Candidatura",
  732. parliamentThType: "Tipo",
  733. parliamentThId: "ID",
  734. parliamentThDate: "Fecha de propuesta",
  735. parliamentThSlogan: "Lema",
  736. parliamentThMethod: "Método",
  737. parliamentThKarma: "Karma",
  738. parliamentThSince: "Perfil desde",
  739. parliamentThVotes: "Votos recibidos",
  740. parliamentThVoteAction: "Votar",
  741. parliamentTypeUser: "Habitante",
  742. parliamentTypeTribe: "Tribu",
  743. parliamentVoteBtn: "Votar",
  744. parliamentProposalFormTitle: "Proponer Ley",
  745. parliamentProposalTitle: "Título",
  746. parliamentProposalDescription: "Descripción (≤1000)",
  747. parliamentProposalPublish: "Publicar Propuesta",
  748. parliamentOpenVote: "Votación abierta",
  749. parliamentFinalize: "Finalizar",
  750. parliamentDeadline: "Fecha límite",
  751. parliamentStatus: "Estado",
  752. parliamentNoProposals: "Aún no hay propuestas de ley.",
  753. parliamentNoLaws: "Aún no hay leyes aprobadas.",
  754. parliamentLawMethod: "Método",
  755. parliamentLawProposer: "Propuesta por",
  756. parliamentLawVotes: "SÍ/Total",
  757. parliamentLawEnacted: "Promulgada el",
  758. parliamentMethodDEMOCRACY: "Democracia",
  759. parliamentMethodMAJORITY: "Mayoría (80%)",
  760. parliamentMethodMINORITY: "Minoría (20%)",
  761. parliamentMethodDICTATORSHIP: "Dictadura",
  762. parliamentMethodKARMATOCRACY: "Karmatocracia",
  763. parliamentMethodANARCHY: "Anarquía",
  764. parliamentThId: "ID",
  765. parliamentThProposalDate: "Fecha de propuesta",
  766. parliamentThMethod: "Método",
  767. parliamentThKarma: "Karma",
  768. parliamentThSupports: "Apoyos",
  769. parliamentThVote: "Votar",
  770. parliamentCurrentProposalsTitle: "Propuestas actuales",
  771. parliamentVotesSlashTotal: "Votos/Total",
  772. parliamentVotesNeeded: "Votos Necesarios",
  773. parliamentFutureLawsTitle: "Futuras leyes",
  774. parliamentNoFutureLaws: "Aún no hay futuras leyes.",
  775. parliamentVoteAction: "Votar",
  776. parliamentLeadersTitle: "Líderes",
  777. parliamentThLeader: "AVATAR",
  778. parliamentPopulation: "Población",
  779. parliamentThType: "Tipo",
  780. parliamentThInPower: "Gobiernos",
  781. parliamentThPresented: "CANDIDATURAS",
  782. parliamentNoLeaders: "Aún no hay líderes.",
  783. typeParliament: "PARLAMENTO",
  784. typeParliamentCandidature: "Parlamento · Candidatura",
  785. typeParliamentTerm: "Parlamento · Ciclo",
  786. typeParliamentProposal: "Parlamento · Propuesta",
  787. typeParliamentLaw: "Parlamento · Nueva Ley",
  788. parliamentLawQuestion: "Pregunta",
  789. parliamentStatus: "Estado",
  790. parliamentCandidaturesListTitle: "Lista de Candidaturas",
  791. parliamentElectionsEnd: "Fin de las elecciones",
  792. parliamentTimeRemaining: "Tiempo restante",
  793. parliamentCurrentLeader: "Candidatura ganadora",
  794. parliamentNoLeader: "Aún no hay candidatura ganadora.",
  795. parliamentElectionsStatusTitle: "Próximo Gobierno",
  796. parliamentElectionsStart: "Inicio de las Elecciones",
  797. parliamentProposalDeadlineLabel: "Fecha límite",
  798. parliamentProposalTimeLeft: "Tiempo restante",
  799. parliamentProposalOnTrack: "Con apoyo suficiente",
  800. parliamentProposalOffTrack: "Apoyo insuficiente",
  801. parliamentRulesTitle: "Cómo funciona el Parlamento",
  802. parliamentRulesIntro: "Las elecciones se resuelven cada 2 meses; las candidaturas son continuas y se reinician cuando se elige un gobierno.",
  803. 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.",
  804. parliamentRulesElection: "Gana la candidatura con más votos en el momento de la resolución.",
  805. 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.",
  806. parliamentRulesFallback: "Si nadie vota, gana la última candidatura propuesta. Si no hay candidaturas, se selecciona una tribu al azar.",
  807. parliamentRulesTerm: "La pestaña Gobierno muestra el gobierno actual y sus estadísticas.",
  808. 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).",
  809. 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.",
  810. 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.",
  811. parliamentRulesLimit: "Cada habitante puede publicar como máximo 3 propuestas de ley por ciclo.",
  812. 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.",
  813. parliamentRulesHistorical: "En Histórico se puede ver cada ciclo de gobierno que ha habido y datos sobre su gestión.",
  814. parliamentRulesLeaders: "En Líderes se puede ver un ranking de habitantes/tribus que han gobernado (o se han presentado), ordenados por eficacia.",
  815. parliamentProposalVoteStatusLabel: "Estado de la votación",
  816. parliamentProposalOnTrackYes: "Umbral alcanzado",
  817. parliamentProposalOnTrackNo: "Por debajo del umbral",
  818. courtsTitle: "Tribunales",
  819. courtsDescription: "Explora formas de resolución de conflictos y de gestión colectiva de la justicia.",
  820. courtsFilterCases: "CASOS",
  821. courtsFilterMyCases: "MÍOS",
  822. courtsFilterJudges: "JUECES",
  823. courtsFilterHistory: "HISTORIAL",
  824. courtsFilterRules: "REGLAS",
  825. courtsFilterOpenCase: "NUEVO CASO",
  826. courtsCaseFormTitle: "Abrir caso",
  827. courtsCaseTitle: "Título",
  828. courtsCaseRespondent: "Acusado / Parte demandada",
  829. courtsCaseRespondentPh: "ID de Oasis (@...) o nombre de Tribu",
  830. courtsCaseMediatorsAccuser: "Mediadores (acusación)",
  831. courtsCaseMediatorsPh: "ID de Oasis, separados por comas",
  832. courtsCaseMethod: "Método de resolución",
  833. courtsCaseDescription: "Descripción (máx. 1000 caracteres)",
  834. courtsCaseEvidenceTitle: "Pruebas del caso",
  835. courtsCaseEvidenceHelp: "Adjunta imágenes, audios, documentos (PDF) o vídeos que apoyen tu caso.",
  836. courtsCaseSubmit: "Presentar caso",
  837. courtsNominateJudge: "Nominar juez",
  838. courtsJudgeId: "Juez",
  839. courtsJudgeIdPh: "ID de Oasis (@...) o nombre de Habitante",
  840. courtsNominateBtn: "Nominar",
  841. courtsAddEvidence: "Añadir pruebas",
  842. courtsEvidenceText: "Texto",
  843. courtsEvidenceLink: "Enlace",
  844. courtsEvidenceLinkPh: "https://…",
  845. courtsEvidenceSubmit: "Adjuntar",
  846. courtsAnswerTitle: "Responder a la reclamación",
  847. courtsAnswerText: "Resumen de la respuesta",
  848. courtsAnswerSubmit: "Enviar respuesta",
  849. courtsStanceDENY: "Negar",
  850. courtsStanceADMIT: "Admitir",
  851. courtsStancePARTIAL: "Parcial",
  852. courtsVerdictTitle: "Emitir veredicto",
  853. courtsVerdictResult: "Resultado",
  854. courtsVerdictOrders: "Órdenes",
  855. courtsVerdictOrdersPh: "Acciones, plazos, pasos restaurativos...",
  856. courtsIssueVerdict: "Emitir veredicto",
  857. courtsMediationPropose: "Proponer acuerdo",
  858. courtsSettlementText: "Términos",
  859. courtsSettlementProposeBtn: "Proponer",
  860. courtsNominationsTitle: "Nominaciones a la judicatura",
  861. courtsThJudge: "Juez",
  862. courtsThSupports: "Apoyos",
  863. courtsThDate: "Fecha",
  864. courtsThVote: "Votar",
  865. courtsNoNominations: "Todavía no hay nominaciones.",
  866. courtsAccuser: "Acusación",
  867. courtsRespondent: "Defensa",
  868. courtsRespondentInvalid: "Debe ser un ID SSB válido (@...ed25519)",
  869. courtsThStatus: "Estado",
  870. courtsThAnswerBy: "Responder antes de",
  871. courtsThEvidenceBy: "Aportar pruebas antes de",
  872. courtsThDecisionBy: "Decisión antes de",
  873. courtsThCase: "Caso",
  874. courtsThCreatedAt: "Fecha de inicio",
  875. courtsThActions: "Acciones",
  876. courtsCaseMediatorsRespondentTitle: "Añadir mediadores de la defensa",
  877. courtsCaseMediatorsRespondent: "Mediadores (defensa)",
  878. courtsMediatorsAccuserLabel: "Mediadores (acusación)",
  879. courtsMediatorsRespondentLabel: "Mediadores (defensa)",
  880. courtsMediatorsSubmit: "Guardar mediadores",
  881. courtsVotesNeeded: "Votos necesarios",
  882. courtsVotesSlashTotal: "SÍ / TOTAL",
  883. courtsOpenVote: "Abrir votación",
  884. courtsPublicPrefLabel: "Visibilidad tras la resolución",
  885. courtsPublicPrefYes: "Acepto que este caso sea totalmente público",
  886. courtsPublicPrefNo: "Prefiero mantener los detalles en privado",
  887. courtsPublicPrefSubmit: "Guardar preferencia de visibilidad",
  888. courtsNoCases: "Sin casos.",
  889. courtsNoMyCases: "Aún no tienes conflictos.",
  890. courtsNoHistory: "Todavía no hay juicios registrados.",
  891. courtsMethodJUDGE: "Juez",
  892. courtsMethodDICTATOR: "Dictador",
  893. courtsMethodPOPULAR: "Popular",
  894. courtsMethodMEDIATION: "Mediación",
  895. courtsMethodKARMATOCRACY: "Karmatocracia",
  896. courtsMethod: "Método",
  897. courtsRulesTitle: "Cómo funcionan los Tribunales",
  898. 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.",
  899. 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).",
  900. 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.",
  901. 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.",
  902. courtsRulesDeliberation: "Las audiencias pueden ser públicas o privadas. Los jueces garantizan el respeto, piden aclaraciones y pueden descartar material irrelevante o ilegal.",
  903. 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.",
  904. 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.",
  905. 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.",
  906. courtsRulesMisconduct: "El acoso, la manipulación o las pruebas fabricadas pueden llevar a una resolución negativa inmediata.",
  907. courtsRulesGlossary: "Caso: registro de un conflicto. Pruebas: materiales que respaldan las afirmaciones. Veredicto: decisión con remedio. Apelación: solicitud para revisar el veredicto.",
  908. courtsFilterActions: "ACCIONES",
  909. courtsNoActions: "No hay acciones pendientes para tu rol.",
  910. courtsCaseTitlePlaceholder: "Breve descripción del conflicto",
  911. courtsCaseSeverity: "Severidad",
  912. courtsCaseSeverityNone: "Sin etiqueta de severidad",
  913. courtsCaseSeverityLOW: "Baja",
  914. courtsCaseSeverityMEDIUM: "Media",
  915. courtsCaseSeverityHIGH: "Alta",
  916. courtsCaseSeverityCRITICAL: "Crítica",
  917. courtsCaseSubject: "Tema",
  918. courtsCaseSubjectNone: "Sin etiqueta de tema",
  919. courtsCaseSubjectBEHAVIOUR: "Comportamiento",
  920. courtsCaseSubjectCONTENT: "Contenido",
  921. courtsCaseSubjectGOVERNANCE: "Gobernanza / normas",
  922. courtsCaseSubjectFINANCIAL: "Finanzas / recursos",
  923. courtsCaseSubjectOTHER: "Otro",
  924. courtsHiddenRespondent: "Oculto (solo visible para los roles implicados).",
  925. courtsThRole: "Rol",
  926. courtsRoleAccuser: "Acusación",
  927. courtsRoleDefence: "Defensa",
  928. courtsRoleMediator: "Mediador",
  929. courtsRoleJudge: "Juez",
  930. courtsRoleDictator: "Dictador",
  931. courtsAssignJudgeTitle: "Elegir juez",
  932. courtsAssignJudgeBtn: "Elegir juez",
  933. trendingTitle: "Tendencias",
  934. exploreTrending: "Explora el contenido más popular en tu red.",
  935. ALLButton: "TODOS",
  936. MINEButton: "MÍAS",
  937. RECENTButton: "RECIENTES",
  938. TOPButton: "TOP",
  939. bookmarkButton: "MARCADORES",
  940. transferButton: "TRANSFERENCIAS",
  941. eventButton: "EVENTOS",
  942. taskButton: "TAREAS",
  943. votesButton: "GOBIERNO",
  944. reportButton: "INFORMES",
  945. feedButton: "FEED",
  946. marketButton: "MERCADO",
  947. imageButton: "IMÁGENES",
  948. audioButton: "AUDIOS",
  949. videoButton: "VIDEOS",
  950. documentButton: "DOCUMENTOS",
  951. torrentButton: "TORRENTS",
  952. author: "Por",
  953. createdAtLabel: "Creado el",
  954. totalVotes: "Total de Votos",
  955. noTrendingFound: "No se encontraron contenidos populares.",
  956. noContentMessage: "No hay contenido popular disponible, aún.",
  957. trendingDescription: "Descripción",
  958. trendingDate: "Fecha",
  959. trendingLocation: "Ubicación",
  960. trendingPrice: "Precio",
  961. trendingUrl: "URL",
  962. trendingCategory: "Categoría",
  963. trendingStart: "Inicio",
  964. trendingEnd: "Fin",
  965. trendingPriority: "Prioridad",
  966. trendingStatus: "Estado",
  967. trendingFrom: "Desde",
  968. trendingTo: "Hasta",
  969. trendingConcept: "Concepto",
  970. trendingAmount: "Cantidad",
  971. trendingDeadline: "Plazo",
  972. trendingItemStatus: "Estado del Artículo",
  973. trendingTotalVotes: "Total de Votos",
  974. trendingTotalOpinions: "Total de Opiniones",
  975. trendingNoContentMessage: "No hay tendencias disponibles, aún.",
  976. trendingAuthor: "Por",
  977. trendingCreatedAtLabel: "Creado el",
  978. trendingTotalCount: "Total de Contadores",
  979. tasksTitle: "Tareas",
  980. tasksDescription: "Descubre y gestiona tareas en tu red.",
  981. taskTitleLabel: "Título",
  982. taskDescriptionLabel: "Descripción",
  983. taskStartTimeLabel: "Fecha de Inicio",
  984. taskEndTimeLabel: "Fecha de Fin",
  985. taskPriorityLabel: "Prioridad",
  986. taskPrioritySelect: "Seleccionar prioridad",
  987. taskPriorityUrgent: "Urgente",
  988. taskPriorityHigh: "Alta",
  989. taskPriorityMedium: "Media",
  990. taskPriorityLow: "Baja",
  991. taskLocationLabel: "Ubicación",
  992. taskTagsLabel: "Etiquetas",
  993. taskVisibilityLabel: "Visibilidad",
  994. taskPublic: "público",
  995. taskPrivate: "privado",
  996. taskCreatedAt: "Creado el",
  997. taskBy: "Por",
  998. taskStatus: "Estado",
  999. taskStatusOpen: "Abierta",
  1000. taskStatusInProgress: "En Progreso",
  1001. taskStatusClosed: "Cerrada",
  1002. taskAssignedTo: "Asignada a",
  1003. taskAssignees: "Asignados",
  1004. taskAssignButton: "Asignar a Mí",
  1005. taskUnassignButton: "Desasignar",
  1006. taskCreateButton: "Crear Tarea",
  1007. taskUpdateButton: "Actualizar",
  1008. taskDeleteButton: "Eliminar",
  1009. taskFilterAll: "TODOS",
  1010. taskFilterMine: "MÍAS",
  1011. taskFilterOpen: "ABIERTAS",
  1012. taskFilterInProgress: "EN-PROCESO",
  1013. taskFilterClosed: "CERRADAS",
  1014. taskFilterAssigned: "ASIGNADAS",
  1015. taskFilterArchived: "ARCHIVADAS",
  1016. taskFilterUrgent: "URGENTES",
  1017. taskFilterHigh: "ALTAS",
  1018. taskFilterMedium: "MEDIAS",
  1019. taskFilterLow: "BAJAS",
  1020. taskAllSectionTitle: "Tareas",
  1021. taskMineSectionTitle: "Tus Tareas",
  1022. taskCreateSectionTitle: "Crear Tarea",
  1023. taskUpdateSectionTitle: "Actualizar",
  1024. taskOpenTitle: "Tareas Abiertas",
  1025. taskInProgressTitle: "Tareas en Progreso",
  1026. taskClosedTitle: "Tareas Cerradas",
  1027. taskAssignedTitle: "Tareas Asignadas",
  1028. taskArchivedTitle: "Tareas Archivadas",
  1029. taskPublicTitle: "Tareas Públicas",
  1030. taskPrivateTitle: "Tareas Privadas",
  1031. notasks: "No hay tareas disponibles.",
  1032. noLocation: "No se especificó ubicación",
  1033. taskSetStatus: "Establecer estado",
  1034. eventTitle: "Eventos",
  1035. eventDateLabel: "Fecha",
  1036. eventsTitle: "Eventos",
  1037. eventsDescription: "Descubre y gestiona eventos en tu red.",
  1038. eventDescription: "Descripción",
  1039. eventPrice: "Precio",
  1040. eventStatus: "Estado",
  1041. eventOrganizer: "Organizador",
  1042. eventAllSectionTitle: "Eventos",
  1043. eventMineSectionTitle: "Tus Eventos",
  1044. eventArchivedTitle: "Eventos Archivados",
  1045. eventCreateSectionTitle: "Crear Evento",
  1046. eventUpdateSectionTitle: "Actualizar Evento",
  1047. eventDeleteButton: "Eliminar",
  1048. eventCreateButton: "Crear Evento",
  1049. eventTitleLabel: "Título",
  1050. eventDescriptionLabel: "Descripción",
  1051. eventDescriptionPlaceholder: "Introduce la descripción del evento...",
  1052. eventUpdateButton: "Actualizar",
  1053. eventAttendeesLabel: "Asistentes",
  1054. eventAttendeesPlaceholder: "Introduce los asistentes, separados por comas...",
  1055. eventTagsLabel: "Etiquetas",
  1056. eventTagsPlaceholder: "Introduce las etiquetas del evento, separadas por comas...",
  1057. eventTags: "Etiquetas",
  1058. eventPriceLabel: "Precio",
  1059. eventUrlLabel: "URL",
  1060. eventAttendees: "Asistentes",
  1061. noAttendees: "Aún no hay asistentes",
  1062. eventCreatedAt: "Creado el",
  1063. eventLocation: "Ubicación",
  1064. eventLocationLabel: "Ubicación",
  1065. eventNoLocation: "No se especificó ubicación",
  1066. eventNoURL: "No se especificó URL",
  1067. eventBy: "Por",
  1068. noevents: "No hay eventos disponibles.",
  1069. eventDate: "Fecha",
  1070. eventDateFormat: "DD:MM:YYYY HH:mm",
  1071. eventAttendButton: "Asistir al Evento",
  1072. eventUnattendButton: "Dejar de asistir al Evento",
  1073. eventCreatedBy: "Creado por",
  1074. eventAttendeesCount: "Número de Asistentes",
  1075. eventCreatedByYou: "Tú creaste este evento",
  1076. eventAttendConfirmation: "Ahora estás asistiendo a este evento",
  1077. eventUnattendConfirmation: "Ya no estás asistiendo a este evento",
  1078. eventFilterAll: "TODOS",
  1079. eventFilterMine: "MIOS",
  1080. eventFilterToday: "HOY",
  1081. eventFilterWeek: "ESTA SEMANA",
  1082. eventFilterMonth: "ESTE MES",
  1083. eventFilterYear: "ESTE AÑO",
  1084. eventFilterArchived: "ARCHIVADOS",
  1085. eventTodayTitle: "Eventos de Hoy",
  1086. eventThisWeekTitle: "Eventos de Esta Semana",
  1087. eventThisMonthTitle: "Eventos de Este Mes",
  1088. eventThisYearTitle: "Eventos de Este Año",
  1089. eventPrivacyLabel: "Visibilidad",
  1090. eventPublic: "Público",
  1091. eventPrivate: "Privado",
  1092. eventPublicTitle: "Eventos Públicos",
  1093. eventNoPrice: "Evento Gratuito",
  1094. eventNoImage: "No se ha subido ninguna imagen",
  1095. eventAttendConfirmation: "Ahora estás asistiendo a este evento",
  1096. eventUnattendConfirmation: "Ya no estás asistiendo a este evento",
  1097. eventAttended: "Asisto",
  1098. eventUnattended: "No asisto",
  1099. eventStatusOpen: "Abierto",
  1100. eventStatusClosed: "Cerrado",
  1101. tagsTitle: "Etiquetas",
  1102. tagsDescription: "Descubre y explora patrones de taxonomía en tu red.",
  1103. tagsAllSectionTitle: "Etiquetas",
  1104. tagsTopSectionTitle: "Etiquetas Principales",
  1105. tagsCloudSectionTitle: "Nube de Etiquetas",
  1106. tagsFilterAll: "TODOS",
  1107. tagsFilterTop: "TOP",
  1108. tagsFilterCloud: "NUBE",
  1109. tagsNoItems: "No hay etiquetas disponibles.",
  1110. tagsTableHeaderTag: "ETIQUETA/ENLACE:",
  1111. tagsTableHeaderCount: "CONTADOR:",
  1112. transfersTitle: "Transferencias",
  1113. transfersDescription: "Descubre y gestiona transferencias en tu red.",
  1114. transfersFrom: "De",
  1115. transfersTo: "A",
  1116. transfersFilterAll: "TODOS",
  1117. transfersFilterMine: "MÍAS",
  1118. transfersFilterUBI: "RBU",
  1119. transfersFilterMarket: "MERCADO",
  1120. transfersFilterTop: "TOP",
  1121. transfersFilterPending: "PENDIENTES",
  1122. transfersFilterUnconfirmed: "NO CONFIRMADAS",
  1123. transfersFilterClosed: "CERRADAS",
  1124. transfersFilterDiscarded: "DESCARTADAS",
  1125. transfersCreateButton: "Crear Transferencia",
  1126. transfersUpdateButton: "Actualizar",
  1127. transfersDeleteButton: "Eliminar",
  1128. transfersToUser: "ID de Oasis",
  1129. transfersToUserValidation: "ID de Oasis válido, ej. @…=.ed25519",
  1130. transfersConcept: "Concepto",
  1131. transfersAmount: "Cantidad",
  1132. transfersDeadline: "Plazo",
  1133. transfersTags: "Etiquetas",
  1134. transfersStatus: "Estado",
  1135. transfersStatusUnconfirmed: "NO CONFIRMADA",
  1136. transfersStatusClosed: "CERRADA",
  1137. transfersStatusDiscarded: "DESCARTADA",
  1138. transfersCreatedAt: "Creado el",
  1139. transfersConfirmations: "CONFIRMACIONES",
  1140. transfersConfirmButton: "Confirmar Transferencia",
  1141. transfersNoItems: "No se encontraron transferencias.",
  1142. transfersMineSectionTitle: "Tus Transferencias",
  1143. transfersUBISectionTitle: "Transferencias RBU",
  1144. transfersMarketSectionTitle: "Transferencias del Mercado",
  1145. transfersTopSectionTitle: "Transferencias Principales",
  1146. transfersPendingSectionTitle: "Transferencias Pendientes",
  1147. transfersUnconfirmedSectionTitle: "Transferencias No Confirmadas",
  1148. transfersClosedSectionTitle: "Transferencias Cerradas",
  1149. transfersDiscardedSectionTitle: "Transferencias Descartadas",
  1150. transfersCreateSectionTitle: "Crear transferencia",
  1151. transfersAllSectionTitle: "Transferencias",
  1152. transfersFilterFavs: "Favoritos",
  1153. transfersFavsSectionTitle: "Transferencias favoritas",
  1154. transfersSearchLabel: "Buscar",
  1155. transfersSearchPlaceholder: "Buscar por concepto, tags, usuarios...",
  1156. transfersMinAmountLabel: "Importe mín.",
  1157. transfersMaxAmountLabel: "Importe máx.",
  1158. transfersSortLabel: "Ordenar por",
  1159. transfersSortRecent: "Más recientes",
  1160. transfersSortAmount: "Mayor importe",
  1161. transfersSortDeadline: "Deadline más próximo",
  1162. transfersSearchButton: "Buscar",
  1163. transfersFavoriteButton: "Favorito",
  1164. transfersUnfavoriteButton: "Quitar favorito",
  1165. transfersMessageUserButton: "Mensaje",
  1166. transfersExpiringSoonBadge: "CADUCA PRONTO",
  1167. transfersExpiredBadge: "CADUCADA",
  1168. transfersUpdatedAt: "Actualizado",
  1169. transfersNoMatch: "No hay transferencias que coincidan con tu búsqueda.",
  1170. votationsTitle: "Votaciones",
  1171. votationsDescription: "Descubre y gestiona votaciones en tu red.",
  1172. voteMineSectionTitle: "Tus Votaciones",
  1173. voteCreateSectionTitle: "Crear Votación",
  1174. voteUpdateSectionTitle: "Actualizar",
  1175. voteOpenTitle: "Votaciones Abiertas",
  1176. voteClosedTitle: "Votaciones Cerradas",
  1177. voteAllSectionTitle: "Gobierno",
  1178. voteCreateButton: "Crear Votación",
  1179. voteUpdateButton: "Actualizar",
  1180. voteDeleteButton: "Eliminar",
  1181. voteOptionYes: "SÍ",
  1182. voteOptionNo: "NO",
  1183. voteOptionAbstention: "ABSTENCIÓN",
  1184. voteConfused: "CONFUNDIDO",
  1185. voteFollowMajority: "SEGUIR MAYORÍA",
  1186. voteNotInterested: "SIN INTERÉS",
  1187. voteFilterAll: "TODOS",
  1188. voteFilterMine: "MÍAS",
  1189. voteFilterOpen: "ABIERTAS",
  1190. voteFilterClosed: "CERRADAS",
  1191. voteQuestionLabel: "Pregunta",
  1192. voteDeadlineLabel: "Plazo",
  1193. voteOptionsLabel: "Tu voto",
  1194. voteBreakdown: "Desglose",
  1195. voteFinalResult: "RESULTADO",
  1196. voteTagsLabel: "Etiquetas",
  1197. voteDeadline: "Plazo",
  1198. voteStatus: "Estado",
  1199. voteTotalVotes: "Total de Votos",
  1200. voteTags: "Etiquetas",
  1201. voteOpinions: "Opiniones",
  1202. novotes: "No hay propuestas de votación disponibles.",
  1203. voteBy: "Por",
  1204. voteCreatedAt: "Creado el",
  1205. voteNoQuestion: "No se proporcionó pregunta",
  1206. voteUnknownCreator: "Creador Desconocido",
  1207. voteUnknownDate: "Fecha Desconocida",
  1208. errorVoteNotFound: "Votación no encontrada",
  1209. errorAlreadyVoted: "Ya has opnado.",
  1210. errorVoteClosedCannotEdit: "No puedes editar una votación cerrada",
  1211. errorVoteDeadlinePassed: "El plazo para esta votación ha pasado",
  1212. errorRetrievingVote: "Error al recuperar votación",
  1213. errorCreatingVote: "Error al crear votación",
  1214. errorVoteAlreadyVoted: "No se puede editar después de haber opinado",
  1215. errorDeletingOldVote: "Error al eliminar opinión anterior",
  1216. errorCreatingUpdatedVote: "Error al crear opinión actualizada",
  1217. errorCreatingTombstone: "Error al crear lápida",
  1218. voteDetailSectionTitle: 'Detalles de la votación',
  1219. voteCommentsLabel: 'Comentarios',
  1220. voteCommentsForumButton: 'Abrir conversación',
  1221. voteCommentsSectionTitle: 'Conversación abierta',
  1222. voteNoCommentsYet: 'Todavía no hay comentarios. Sé la primera persona en opinar.',
  1223. voteNewCommentPlaceholder: 'Escribe aquí tu comentario…',
  1224. voteNewCommentButton: 'Publicar comentario',
  1225. voteNewCommentLabel: 'Añade un comentario',
  1226. cvTitle: "CV",
  1227. cvLabel: "Currículum Vitae (CV)",
  1228. cvEditSectionTitle: "Editar CV",
  1229. cvCreateSectionTitle: "Crear CV",
  1230. cvDescription: "Gestiona y comparte tus habilidades profesionales e información.",
  1231. cvNameLabel: "Nombre Completo",
  1232. cvDescriptionLabel: "Resumen",
  1233. cvPhotoLabel: "Foto",
  1234. cvPersonalExperiencesLabel: "Experiencias Personales",
  1235. cvPersonalSkillsLabel: "Habilidades Personales (separadas por comas)",
  1236. cvOasisExperiencesLabel: "Experiencias de Contribución en Oasis",
  1237. cvOasisSkillsLabel: "Habilidades de Contribución en Oasis (separadas por comas)",
  1238. cvEducationExperiencesLabel: "Experiencias Educativas",
  1239. cvEducationalSkillsLabel: "Habilidades Educativas (separadas por comas)",
  1240. cvProfessionalExperiencesLabel: "Experiencias Profesionales",
  1241. cvProfessionalSkillsLabel: "Habilidades Profesionales (separadas por comas)",
  1242. cvLanguagesLabel: "Idiomas",
  1243. cvLocationLabel: "Ubicación",
  1244. cvStatusLabel: "Estado",
  1245. cvPreferencesLabel: "Preferencias",
  1246. cvOasisContributorLabel: "Contribuyente de Oasis",
  1247. cvPersonal: "Personal",
  1248. cvOasis: "Contribuyente de Oasis (opcional)",
  1249. cvOasisContributorView: "Contribución en Oasis",
  1250. cvEducational: "Educativo (opcional)",
  1251. cvEducationalView: "Educativo",
  1252. cvProfessional: "Profesional (opcional)",
  1253. cvProfessionalView: "Profesional",
  1254. cvAvailability: "Disponibilidad (opcional)",
  1255. cvAvailabilityView: "Disponibilidad",
  1256. cvUpdateButton: "Actualizar",
  1257. cvCreateButton: "Crear CV",
  1258. cvContactLabel: "Contacto",
  1259. cvCreatedAt: "Creado el",
  1260. cvUpdatedAt: "Actualizado el",
  1261. cvEditButton: "Actualizar",
  1262. cvDeleteButton: "Eliminar",
  1263. cvNoCV: "No se encontró ningún CV.",
  1264. blogSubject: "Asunto",
  1265. blogMessage: "Mensaje",
  1266. blogImage: "Subir contenido multimedia (max: 50MB)",
  1267. blogPublish: "Vista previa",
  1268. noPopularMessages: "No se han publicado mensajes populares, aún",
  1269. forumTitle: "Foros",
  1270. forumCategoryLabel: "Categoría",
  1271. forumTitleLabel: "Título",
  1272. forumTitlePlaceholder: "Título del foro...",
  1273. forumCreateButton: "Crear foro",
  1274. forumCreateSectionTitle: "Crear foro",
  1275. forumDescription: "Habla abiertamente con habitantes de tu red.",
  1276. forumFilterAll: "TODOS",
  1277. forumFilterMine: "MÍAS",
  1278. forumFilterRecent: "RECIENTES",
  1279. forumFilterTop: "TOP",
  1280. forumMineSectionTitle: "Tus Foros",
  1281. forumRecentSectionTitle: "Foros Recientes",
  1282. forumAllSectionTitle: "Foros",
  1283. forumDeleteButton: "Borrar",
  1284. forumParticipants: "participantes",
  1285. forumMessages: "mensajes",
  1286. forumLastMessage: "Último mensaje",
  1287. forumMessageLabel: "Mensaje",
  1288. forumMessagePlaceholder: "Escribe tu mensaje...",
  1289. forumSendButton: "Enviar",
  1290. forumVisitForum: "Visitar Foro",
  1291. noForums: "No hay foros disponibles, aún.",
  1292. forumVisitButton: "Visitar foro",
  1293. forumCatGENERAL: "General",
  1294. forumCatOASIS: "Oasis",
  1295. forumCatLARP: "L.A.R.P.",
  1296. forumCatPOLITICS: "Política",
  1297. forumCatTECH: "Tecnología",
  1298. forumCatSCIENCE: "Ciencia",
  1299. forumCatMUSIC: "Música",
  1300. forumCatART: "Arte",
  1301. forumCatGAMING: "Videojuegos",
  1302. forumCatBOOKS: "Libros",
  1303. forumCatFILMS: "Cine",
  1304. forumCatPHILOSOPHY: "Filosofía",
  1305. forumCatSOCIETY: "Sociedad",
  1306. forumCatPRIVACY: "Privacidad",
  1307. forumCatCYBERWARFARE: "Ciberguerra",
  1308. forumCatSURVIVALISM: "Supervivencia",
  1309. imageTitle: "Imágenes",
  1310. imageDescription: "Explora y gestiona contenido de imágenes en tu red.",
  1311. imagePluginTitle: "Título",
  1312. imagePluginDescription: "Descripción",
  1313. imageMineSectionTitle: "Tus imágenes",
  1314. imageCreateSectionTitle: "Subir imagen",
  1315. imageUpdateSectionTitle: "Actualizar imagen",
  1316. imageAllSectionTitle: "Imágenes",
  1317. imageRecentSectionTitle: "Imágenes recientes",
  1318. imageTopSectionTitle: "Top imágenes",
  1319. imageFavoritesSectionTitle: "Favoritos",
  1320. imageGallerySectionTitle: "Galería",
  1321. imageMemeSectionTitle: "Memes",
  1322. imageFilterAll: "TODAS",
  1323. imageFilterMine: "MÍAS",
  1324. imageFilterRecent: "RECIENTES",
  1325. imageFilterTop: "TOP",
  1326. imageFilterFavorites: "FAVORITOS",
  1327. imageFilterGallery: "GALERÍA",
  1328. imageFilterMeme: "MEMES",
  1329. imageCreateButton: "Subir imagen",
  1330. imageUpdateButton: "Actualizar",
  1331. imageDeleteButton: "Eliminar",
  1332. imageAddFavoriteButton: "Añadir favorito",
  1333. imageRemoveFavoriteButton: "Quitar favorito",
  1334. imageFileLabel: "Selecciona un archivo de imagen (.jpeg, .jpg, .png, .gif)",
  1335. imageTagsLabel: "Etiquetas",
  1336. imageTagsPlaceholder: "Introduce etiquetas separadas por comas",
  1337. imageTitleLabel: "Título",
  1338. imageTitlePlaceholder: "Opcional",
  1339. imageDescriptionLabel: "Descripción",
  1340. imageDescriptionPlaceholder: "Opcional",
  1341. imageMemeLabel: "¿MEME?",
  1342. imageNoFile: "No se ha proporcionado ningún archivo de imagen",
  1343. noImages: "No hay imágenes disponibles.",
  1344. imageSearchPlaceholder: "Buscar por título, etiquetas, descripción, autor...",
  1345. imageSortRecent: "Más recientes",
  1346. imageSortOldest: "Más antiguas",
  1347. imageSortTop: "Más votadas",
  1348. imageSearchButton: "Buscar",
  1349. imageMessageAuthorButton: "Mensaje",
  1350. imageUpdatedAt: "Actualizado",
  1351. imageNoMatch: "Ninguna imagen coincide con tu búsqueda.",
  1352. feedTitle: "Feed",
  1353. feedDetailTitle: "Feed",
  1354. feedOpenDiscussion: "Abrir discusión",
  1355. feedPostComment: "Publicar comentario",
  1356. noComments: "Aún no hay comentarios",
  1357. createFeedTitle: "Crear Feed",
  1358. createFeedButton: "Enviar Feed!",
  1359. feedPlaceholder: "¿Qué está pasando? (máximo 280 caracteres)",
  1360. ALLButton: "Feeds",
  1361. MINEButton: "Tus Feeds",
  1362. TODAYButton: "HOY",
  1363. TOPButton: "Feeds Principales",
  1364. CREATEButton: "Crear Feed",
  1365. totalOpinions: "Total de Opiniones",
  1366. moreVoted: "Más Votado",
  1367. alreadyVoted: "Ya has opinado.",
  1368. noFeedsFound: "No se encontraron feeds.",
  1369. author: "Por",
  1370. createdAtLabel: "Creado el",
  1371. FeedshareYourOpinions: "Descubre y comparte textos breves en tu red.",
  1372. refeedButton: "Realimentar",
  1373. alreadyRefeeded: "Ya has realimentado esto.",
  1374. activityTitle: "Actividad",
  1375. yourActivity: "Tu actividad",
  1376. globalActivity: "Actividad global",
  1377. activityList: "Actividad",
  1378. activityDesc: "Consulta la actividad más reciente de tu red.",
  1379. allButton: "TODO",
  1380. mineButton: "MÍAS",
  1381. noActions: "No hay actividad disponible.",
  1382. performed: "→",
  1383. from: "De",
  1384. to: "A",
  1385. amount: "Cantidad",
  1386. concept: "Concepto",
  1387. description: "Descripción",
  1388. meme: "Meme",
  1389. activityContact: "Contacto",
  1390. activityBy: "Nombre",
  1391. activityPixelia: "Nuevo píxel añadido",
  1392. viewImage: "Ver imagen",
  1393. playAudio: "Reproducir audio",
  1394. playVideo: "Reproducir vídeo",
  1395. typeRecent: "RECIENTE",
  1396. errorActivity: "Error al recuperar la actividad",
  1397. typePost: "PUBLICACIÓN",
  1398. typeTribe: "TRIBUS",
  1399. typeAbout: "HABITANTES",
  1400. typeCurriculum: "CV",
  1401. typeImage: "IMÁGENES",
  1402. typeBookmark: "MARCADORES",
  1403. typeDocument: "DOCUMENTOS",
  1404. typeVotes: "VOTACIONES",
  1405. typeAudio: "AUDIOS",
  1406. typeMarket: "MERCADO",
  1407. typeJob: "TRABAJOS",
  1408. typeProject: "PROYECTOS",
  1409. typeVideo: "VÍDEOS",
  1410. typeVote: "DIFUSIÓN",
  1411. typeEvent: "EVENTOS",
  1412. typeTransfer: "TRANSFERENCIA",
  1413. typeTask: "TAREAS",
  1414. typePixelia: "PIXELIA",
  1415. typeForum: "FORO",
  1416. typeReport: "REPORTES",
  1417. typeFeed: "FEED",
  1418. typeContact: "CONTACTO",
  1419. typePub: "PUB",
  1420. typeTombstone: "ELIMINADO",
  1421. typeBanking: "BANCA",
  1422. typeBankWallet: "BANCA/MONEDERO",
  1423. typeBankClaim: "BANCA/UBI",
  1424. typeKarmaScore: "KARMA",
  1425. typeParliament: "PARLAMENTO",
  1426. typeSpread: "RÉPLICAS",
  1427. typeParliamentCandidature: "Parlamento · Candidatura",
  1428. typeParliamentTerm: "Parlamento · Mandato",
  1429. typeParliamentProposal:"Parlamento · Propuesta",
  1430. typeParliamentRevocation:"Parlamento · Revocación",
  1431. typeParliamentLaw: "Parlamento · Nueva ley",
  1432. typeCourts: "TRIBUNALES",
  1433. typeCourtsCase: "Tribunales · Caso",
  1434. typeCourtsEvidence: "Tribunales · Prueba",
  1435. typeCourtsAnswer: "Tribunales · Respuesta",
  1436. typeCourtsVerdict: "Tribunales · Veredicto",
  1437. typeCourtsSettlement: "Tribunales · Acuerdo",
  1438. typeCourtsSettlementProposal: "Tribunales · Propuesta de acuerdo",
  1439. typeCourtsSettlementAccepted: "Tribunales · Acuerdo aceptado",
  1440. typeCourtsNomination: "Tribunales · Nominación",
  1441. typeCourtsNominationVote: "Tribunales · Votación de nominación",
  1442. activitySupport: "Nueva alianza forjada",
  1443. activityJoin: "Nuevo PUB unido",
  1444. question: "Pregunta",
  1445. deadline: "Fecha límite",
  1446. status: "Estado",
  1447. votes: "Votos",
  1448. totalVotes: "Votos totales",
  1449. voteTotalVotes: "Votos totales",
  1450. name: "Nombre",
  1451. skills: "Habilidades",
  1452. tags: "Etiquetas",
  1453. title: "Título",
  1454. date: "Fecha",
  1455. category: "Categoría",
  1456. attendees: "Asistentes",
  1457. activitySpread: "->",
  1458. visitLink: "Visitar enlace",
  1459. viewDocument: "Ver documento",
  1460. location: "Ubicación",
  1461. contentWarning: "Asunto",
  1462. personName: "Nombre del habitante",
  1463. bankWalletConnected: "Monedero ECOin",
  1464. bankUbiReceived: "UBI recibido",
  1465. bankTx: "Tx",
  1466. bankEpochShort: "Época",
  1467. bankAllocId: "ID de asignación",
  1468. viewDetails: "Ver detalles",
  1469. link: "Enlace",
  1470. aiSnippetsLearned: "Fragmentos aprendidos",
  1471. tribeFeedRefeeds: "Reenvíos",
  1472. activityProjectFollow: "%OASIS% ahora está %ACTION% este proyecto %PROJECT%",
  1473. activityProjectUnfollow: "%OASIS% ahora está %ACTION% este proyecto %PROJECT%",
  1474. activityProjectPledged: "%OASIS% ha %ACTION% %AMOUNT% al proyecto %PROJECT%",
  1475. following: "SIGUIENDO",
  1476. unfollowing: "DEJANDO DE SEGUIR",
  1477. pledged: "APORTADO",
  1478. parliamentCandidatureId: "Candidatura",
  1479. parliamentGovMethod: "Método",
  1480. parliamentVotesReceived: "Votos recibidos",
  1481. parliamentMethodANARCHY: "Anarquía",
  1482. parliamentMethodVOTE: "Votación comunitaria",
  1483. parliamentMethodRANKED: "Voto preferencial",
  1484. parliamentMethodPLURALITY: "Pluralidad",
  1485. parliamentMethodCOUNCIL: "Consejo",
  1486. parliamentMethodJURY: "Jurado",
  1487. parliamentAnarchy: "ANARQUÍA",
  1488. parliamentElectionsStart: "Inicio de elecciones",
  1489. parliamentElectionsEnd: "Fin de elecciones",
  1490. parliamentCurrentLeader: "Candidatura ganadora",
  1491. parliamentProposalTitle: "Título",
  1492. parliamentOpenVote: "Votación abierta",
  1493. parliamentStatus: "Estado",
  1494. parliamentLawQuestion: "Pregunta",
  1495. parliamentLawMethod: "Método",
  1496. parliamentLawProposer: "Proponente",
  1497. parliamentLawEnacted: "Promulgada",
  1498. parliamentLawVotes: "Votos",
  1499. createdAt: "Creado el",
  1500. courtsCaseTitle: "Caso",
  1501. courtsMethod: "Método",
  1502. courtsMethodJUDGE: "Juez",
  1503. courtsMethodJUDGES: "Panel de jueces",
  1504. courtsMethodSINGLE_JUDGE: "Juez único",
  1505. courtsMethodJURY: "Jurado",
  1506. courtsMethodCOUNCIL: "Consejo",
  1507. courtsMethodCOMMUNITY: "Comunidad",
  1508. courtsMethodMEDIATION: "Mediación",
  1509. courtsMethodARBITRATION: "Arbitraje",
  1510. courtsMethodVOTE: "Votación comunitaria",
  1511. courtsAccuser: "Acusación",
  1512. courtsRespondent: "Defensa",
  1513. courtsThStatus: "Estado",
  1514. courtsThAnswerBy: "Responder antes de",
  1515. courtsThEvidenceBy: "Pruebas hasta",
  1516. courtsThDecisionBy: "Decisión antes de",
  1517. courtsVotesNeeded: "Votos necesarios",
  1518. courtsVotesSlashTotal: "SÍ/TOTAL",
  1519. courtsOpenVote: "Votación abierta",
  1520. courtsAnswerTitle: "Respuesta",
  1521. courtsStanceADMIT: "Admite",
  1522. courtsStanceDENY: "Niega",
  1523. courtsStancePARTIAL: "Parcial",
  1524. courtsStanceCOUNTERCLAIM: "Reconvención",
  1525. courtsStanceNEUTRAL: "Neutral",
  1526. courtsVerdictResult: "Resultado",
  1527. courtsVerdictOrders: "Órdenes",
  1528. courtsSettlementText: "Acuerdo",
  1529. courtsSettlementAccepted: "Aceptado",
  1530. courtsSettlementPending: "Pendiente",
  1531. courtsJudge: "Juez",
  1532. courtsThSupports: "Apoyos",
  1533. courtsFilterOpenCase: 'Abrir caso',
  1534. courtsEvidenceFileLabel: 'Archivo de prueba (imagen, audio, vídeo o PDF)',
  1535. courtsCaseMediators: 'Mediadores',
  1536. courtsCaseMediatorsPh: 'IDs de Oasis de mediadores, separados por comas',
  1537. courtsMediatorsLabel: 'Mediadores',
  1538. courtsThCase: 'Caso',
  1539. courtsThCreatedAt: 'Fecha de inicio',
  1540. courtsThActions: 'Acciones',
  1541. courtsPublicPrefLabel: 'Visibilidad tras la resolución',
  1542. courtsPublicPrefYes: 'Acepto que este caso sea totalmente público',
  1543. courtsPublicPrefNo: 'Prefiero mantener privados los detalles',
  1544. courtsPublicPrefSubmit: 'Guardar preferencia de visibilidad',
  1545. courtsMethodMEDIATION: 'Mediación',
  1546. courtsNoCases: 'No hay casos.',
  1547. reportsTitle: "Informes",
  1548. reportsDescription: "Gestiona y realiza un seguimiento de los informes relacionados con problemas, errores, abusos y advertencias de contenido en tu red.",
  1549. reportsFilterAll: "TODOS",
  1550. reportsFilterMine: "MIOS",
  1551. reportsFilterFeatures: "FUNCIONES",
  1552. reportsFilterBugs: "ERRORES",
  1553. reportsFilterAbuse: "ABUSOS",
  1554. reportsFilterContent: "CONTENIDO",
  1555. reportsFilterConfirmed: "CONFIRMADOS",
  1556. reportsFilterResolved: "RESUELTOS",
  1557. reportsFilterOpen: "ABIERTOS",
  1558. reportsFilterUnderReview: "EN REVISIÓN",
  1559. reportsFilterInvalid: "INVALIDOS",
  1560. reportsCreateButton: "Crear Informe",
  1561. reportsTitleLabel: "Título",
  1562. reportsDescriptionLabel: "Descripción",
  1563. reportsDescriptionPlaceholder: "Por favor, proporciona una descripción detallada.",
  1564. reportsCategory: "Categoría",
  1565. reportsCategoryLabel: "Categoría",
  1566. reportsCategoryFeatures: "Funciones",
  1567. reportsCategoryBugs: "Errores",
  1568. reportsCategoryAbuse: "Abuso",
  1569. reportsCategoryContent: "Problemas de Contenido",
  1570. reportsUpdateButton: "Actualizar",
  1571. reportsDeleteButton: "Eliminar",
  1572. reportsDateLabel: "Fecha",
  1573. reportsUploadFile: "Subir contenido multimedia (max: 50MB)",
  1574. reportsCreatedBy: "Por",
  1575. reportsMineSectionTitle: "Tus Informes",
  1576. reportsFeaturesSectionTitle: "Solicitudes de Funciones",
  1577. reportsBugsSectionTitle: "Errores",
  1578. reportsAbuseSectionTitle: "Informes de Abuso",
  1579. reportsContentSectionTitle: "Problemas de Contenido",
  1580. reportsAllSectionTitle: "Informes",
  1581. reportsNoItems: "No hay informes disponibles.",
  1582. reportsValidationTitle: "Por favor, ingresa un título válido.",
  1583. reportsValidationDescription: "La descripción no puede estar vacía.",
  1584. reportsValidationCategory: "Por favor, selecciona una categoría.",
  1585. reportsCreatedAt: "Creado el",
  1586. reportsCreatedBy: "Por",
  1587. reportsSeverity: "Gravedad",
  1588. reportsSeverityLow: "Baja",
  1589. reportsSeverityMedium: "Media",
  1590. reportsSeverityHigh: "Alta",
  1591. reportsSeverityCritical: "Crítica",
  1592. reportsStatus: "Estado",
  1593. reportsStatusOpen: "Abierto",
  1594. reportsStatusUnderReview: "En Revisión",
  1595. reportsStatusResolved: "Resuelto",
  1596. reportsStatusInvalid: "Inválido",
  1597. reportsUpdateStatusButton: "Actualizar Estado",
  1598. reportsAnonymityOption: "Enviar de forma anónima",
  1599. reportsAnonymousAuthor: "Anónimo",
  1600. reportsConfirmButton: "CONFIRMAR INFORME!",
  1601. reportsConfirmations: "Confirmaciones",
  1602. reportsConfirmedSectionTitle: "Informes Confirmados",
  1603. reportsCreateTaskButton: "CREAR TAREA",
  1604. reportsOpenSectionTitle: "Informes Abiertos",
  1605. reportsUnderReviewSectionTitle: "Informes en Revisión",
  1606. reportsResolvedSectionTitle: "Informes Resueltos",
  1607. reportsInvalidSectionTitle: "Informes Inválidos",
  1608. reportsTemplateSectionTitle: 'Plantilla de reporte',
  1609. reportsBugTemplateTitle: 'Datos para reproducir (Bugs)',
  1610. reportsFeatureTemplateTitle: 'Detalles (Features)',
  1611. reportsAbuseTemplateTitle: 'Detalles (Abuso)',
  1612. reportsContentTemplateTitle: 'Detalles (Problemas de Contenido)',
  1613. reportsStepsToReproduceLabel: 'Pasos para reproducir',
  1614. reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
  1615. reportsExpectedBehaviorLabel: 'Resultado esperado',
  1616. reportsExpectedBehaviorPlaceholder: '¿Qué debería pasar?',
  1617. reportsActualBehaviorLabel: 'Resultado actual',
  1618. reportsActualBehaviorPlaceholder: '¿Qué pasa realmente?',
  1619. reportsEnvironmentLabel: 'Entorno',
  1620. reportsEnvironmentPlaceholder: 'Versión, dispositivo, OS, navegador, configuración, logs, etc.',
  1621. reportsReproduceRateLabel: 'Frecuencia',
  1622. reportsReproduceRateAlways: 'Siempre',
  1623. reportsReproduceRateOften: 'A menudo',
  1624. reportsReproduceRateSometimes: 'A veces',
  1625. reportsReproduceRateRarely: 'Rara vez',
  1626. reportsReproduceRateUnable: 'No se puede reproducir',
  1627. reportsReproduceRateUnknown: 'No especificado',
  1628. reportsProblemStatementLabel: 'Problema / necesidad',
  1629. reportsProblemStatementPlaceholder: '¿Qué problema resuelve esta feature?',
  1630. reportsUserStoryLabel: 'Historia de habitante',
  1631. reportsUserStoryPlaceholder: 'Como <habitante>, quiero <acción>, para <beneficio>.',
  1632. reportsAcceptanceCriteriaLabel: 'Criterios de aceptación',
  1633. reportsAcceptanceCriteriaPlaceholder: '- Dado...\n- Cuando...\n- Entonces...',
  1634. reportsWhatHappenedLabel: '¿Qué ocurrió?',
  1635. reportsWhatHappenedPlaceholder: 'Describe el incidente con contexto y fechas aproximadas.',
  1636. reportsReportedUserLabel: 'Habitante / entidad reportada',
  1637. reportsReportedUserPlaceholder: '@habitante, feed, ID, enlace, etc.',
  1638. reportsEvidenceLinksLabel: 'Evidencia / enlaces',
  1639. reportsEvidenceLinksPlaceholder: 'Pega enlaces, IDs de mensajes, capturas (si aplica), etc.',
  1640. reportsContentLocationLabel: 'Dónde está el contenido',
  1641. reportsContentLocationPlaceholder: 'Enlace, ID, canal, hilo, autor, etc.',
  1642. reportsWhyInappropriateLabel: '¿Por qué es inapropiado?',
  1643. reportsWhyInappropriatePlaceholder: 'Explica el motivo y el impacto.',
  1644. reportsRequestedActionLabel: 'Acción solicitada',
  1645. reportsRequestedActionPlaceholder: 'Eliminar, ocultar, marcar, advertir, etc.',
  1646. tribesTitle: "Tribus",
  1647. tribeAllSectionTitle: "Tribus",
  1648. tribeMineSectionTitle: "Tus Tribus",
  1649. tribeCreateSectionTitle: "Crear Tribu",
  1650. tribeUpdateSectionTitle: "Actualizar Tribu",
  1651. tribeGallerySectionTitle: "Galería de Tribus",
  1652. tribeLarpSectionTitle: "L.A.R.P.",
  1653. tribeRecentSectionTitle: "Tribus Recientes",
  1654. tribeTopSectionTitle: "Tribus Populares",
  1655. tribeviewTribeButton: "Visitar Tribu",
  1656. tribeDescription: "Explora o crea tribus en tu red.",
  1657. tribeFilterAll: "TODOS",
  1658. tribeFilterMine: "MÍAS",
  1659. tribeFilterMembership: "MIEMBROS",
  1660. tribeFilterRecent: "RECIENTES",
  1661. tribeFilterLarp: "L.A.R.P.",
  1662. tribeFilterTop: "TOP",
  1663. tribeFilterSubtribes: "SUB-TRIBUS",
  1664. tribeFilterGallery: "GALERÍA",
  1665. tribeMainTribeLabel: "TRIBU PRINCIPAL",
  1666. tribeCreateButton: "Crear Tribu",
  1667. tribeUpdateButton: "Actualizar",
  1668. tribeDeleteButton: "Eliminar",
  1669. tribeImageLabel: "Subir contenido multimedia (max: 50MB)",
  1670. tribeTitleLabel: "Título",
  1671. searchTribesPlaceholder: "FILTRAR tribus POR NOMBRE …",
  1672. tribeTitlePlaceholder: "Nombre de la tribu",
  1673. tribeDescriptionLabel: "Descripción",
  1674. tribeDescriptionPlaceholder: "Describe esta tribu",
  1675. tribeLocationLabel: "Ubicación",
  1676. tribeLocationPlaceholder: "¿Dónde está ubicada esta tribu?",
  1677. tribeTagsLabel: "Etiquetas",
  1678. tribeTagsPlaceholder: "Introduce etiquetas separadas por comas",
  1679. tribeIsLARPLabel: "¿Tribu L.A.R.P.?",
  1680. tribeInviteMode: "Modo de invitación",
  1681. tribeLARPLabel: "L.A.R.P.",
  1682. tribeModeLabel: "MODO",
  1683. tribeIsAnonymousLabel: "ESTADO",
  1684. tribeMembersCount: "Miembros",
  1685. tribeInviteCodePlaceholder: "Introduce el código de invitación",
  1686. tribeJoinByCodeButton: "Unirse con código",
  1687. tribeJoinButton: "UNIRSE",
  1688. tribeLeaveButton: "DEJAR",
  1689. tribeYes: "SÍ",
  1690. tribeNo: "NO",
  1691. tribePublic: "PÚBLICA",
  1692. tribePrivate: "PRIVADA",
  1693. tribeGenerateInvite: "GENERAR CÓDIGO",
  1694. tribeCreatedAt: "Creado el",
  1695. tribeAuthor: "Por",
  1696. tribeAuthorLabel: "AUTOR",
  1697. tribeStrict: "Estricto",
  1698. tribeOpen: "Abierta",
  1699. tribeFeedFilterRECENT: "RECIENTES",
  1700. tribeFeedFilterMINE: "MIOS",
  1701. tribeFeedFilterALL: "TODOS",
  1702. tribeFeedFilterTOP: "TOP",
  1703. tribeFeedRefeeds: "Redifusiones",
  1704. tribeFeedRefeed: "Redifundir",
  1705. tribeFeedMessagePlaceholder: "Escribe un feed…",
  1706. tribeFeedSend: "Enviar",
  1707. tribeFeedEmpty: "No hay mensajes de feed disponibles, aún.",
  1708. noTribes: "No se encontraron tribus, aún.",
  1709. tribeNotFound: "Tribu no encontrada!",
  1710. createTribeTitle: "Crear Tribu",
  1711. updateTribeTitle: "Actualizar Tribu",
  1712. tribeSectionOverview: "Resumen",
  1713. tribeSectionInhabitants: "Habitantes",
  1714. tribeSectionVotations: "VOTACIONES",
  1715. tribeSectionEvents: "EVENTOS",
  1716. tribeSectionReports: "Reportes",
  1717. tribeSectionTasks: "TAREAS",
  1718. tribeSectionFeed: "FEED",
  1719. tribeSectionForum: "FORO",
  1720. tribeSectionMarket: "Mercado",
  1721. tribeSectionJobs: "Empleos",
  1722. tribeSectionProjects: "Proyectos",
  1723. tribeSectionMedia: "Multimedia",
  1724. tribeSectionImages: "IMÁGENES",
  1725. tribeSectionAudios: "AUDIOS",
  1726. tribeSectionVideos: "VÍDEOS",
  1727. tribeSectionDocuments: "DOCUMENTOS",
  1728. tribeSectionBookmarks: "MARCADORES",
  1729. tribeSectionMaps: "MAPS",
  1730. tribeSectionPads: "PADS",
  1731. tribeSectionChats: "CHATS",
  1732. tribeSectionCalendars: "CALENDARS",
  1733. tribePadCreate: "Create Pad",
  1734. tribeChatCreate: "Create Chat",
  1735. tribeCalendarCreate: "Create Calendar",
  1736. tribePadsEmpty: "No pads, yet.",
  1737. tribeChatsEmpty: "No chats, yet.",
  1738. tribeCalendarsEmpty: "No calendars, yet.",
  1739. tribeInhabitantsEmpty: "No hay habitantes en esta tribu, aún.",
  1740. tribeEventCreate: "Crear Evento",
  1741. tribeEventsEmpty: "No hay eventos, aún.",
  1742. tribeEventTitle: "Título",
  1743. tribeEventDescription: "Descripción",
  1744. tribeEventDate: "Fecha",
  1745. tribeEventLocation: "Ubicación",
  1746. tribeEventAttend: "ASISTIR",
  1747. tribeEventUnattend: "NO ASISTIR",
  1748. tribeEventAttendees: "Asistentes",
  1749. tribeTaskCreate: "Crear Tarea",
  1750. tribeTasksEmpty: "No hay tareas, aún.",
  1751. tribeTaskTitle: "Título",
  1752. tribeTaskDescription: "Descripción",
  1753. tribeTaskPriority: "Prioridad",
  1754. tribeTaskDeadline: "Fecha límite",
  1755. tribeTaskAssignees: "Asignados",
  1756. tribeTaskStatusInProgress: "EN PROGRESO",
  1757. tribeTaskStatusClosed: "CERRAR",
  1758. tribeTaskAssign: "ASIGNAR",
  1759. tribeTaskUnassign: "DESASIGNAR",
  1760. tribeReportCreate: "Crear Reporte",
  1761. tribeReportsEmpty: "No hay reportes, aún.",
  1762. tribeReportTitle: "Título",
  1763. tribeReportDescription: "Descripción",
  1764. tribeReportCategory: "Categoría",
  1765. tribeVotationCreate: "Crear Votación",
  1766. tribeVotationsEmpty: "No hay votaciones, aún.",
  1767. tribeVotationTitle: "Título",
  1768. tribeVotationDescription: "Descripción",
  1769. tribeVotationOptions: "Opciones",
  1770. tribeVotationDeadline: "Fecha límite",
  1771. tribeVotationVote: "VOTAR",
  1772. tribeVotationResults: "Votos",
  1773. tribeVotationClose: "CERRAR VOTACIÓN",
  1774. tribeVotationOptionPlaceholder: "Opción",
  1775. tribeForumCreate: "Crear Forum",
  1776. tribeForumEmpty: "No hay hilos, aún.",
  1777. tribeForumTitle: "Título",
  1778. tribeForumText: "Mensaje",
  1779. tribeForumCategory: "Categoría",
  1780. tribeForumReply: "Responder",
  1781. tribeForumReplies: "Respuestas",
  1782. tribeMarketCreate: "Crear Anuncio",
  1783. tribeMarketEmpty: "No hay anuncios, aún.",
  1784. tribeMarketTitle: "Título",
  1785. tribeMarketDescription: "Descripción",
  1786. tribeMarketPrice: "Precio",
  1787. tribeMarketImage: "Imagen",
  1788. tribeMarketCategory: "Categoría",
  1789. tribeJobCreate: "Crear Empleo",
  1790. tribeJobsEmpty: "No hay empleos, aún.",
  1791. tribeJobTitle: "Título",
  1792. tribeJobDescription: "Descripción",
  1793. tribeJobLocation: "Ubicación",
  1794. tribeJobSalary: "Salario",
  1795. tribeJobDeadline: "Fecha límite",
  1796. tribeProjectCreate: "Crear Proyecto",
  1797. tribeProjectsEmpty: "No hay proyectos, aún.",
  1798. tribeProjectTitle: "Título",
  1799. tribeProjectDescription: "Descripción",
  1800. tribeProjectGoal: "Objetivo",
  1801. tribeProjectFunded: "Financiado",
  1802. tribeProjectDeadline: "Fecha límite",
  1803. tribeMediaUpload: "Subir Media",
  1804. readDocument: "Leer Documento",
  1805. tribeCreateImage: "Crear Imagen",
  1806. tribeCreateAudio: "Crear Audio",
  1807. tribeCreateVideo: "Crear Video",
  1808. tribeCreateDocument: "Crear Documento",
  1809. tribeCreateBookmark: "Crear Marcador",
  1810. tribeMediaEmpty: "No hay media, aún.",
  1811. tribeMediaTitle: "Título",
  1812. tribeMediaDescription: "Descripción",
  1813. tribeMediaType: "Tipo",
  1814. tribeMediaTypeImage: "Imagen",
  1815. tribeMediaTypeVideo: "Vídeo",
  1816. tribeMediaTypeAudio: "Audio",
  1817. tribeMediaTypeDocument: "Documento",
  1818. tribeMediaTypeBookmark: "Marcador",
  1819. tribeContentDelete: "ELIMINAR",
  1820. tribeInviteCodeText: "Código de invitación: ",
  1821. tribeGroupTribe: "Tribu",
  1822. tribeGroupOffice: "Oficina",
  1823. tribeGroupNetwork: "Red",
  1824. tribeGroupEconomy: "Economía",
  1825. tribeGroupMedia: "Multimedia",
  1826. tribeStatusOpen: "ABIERTO",
  1827. tribeStatusClosed: "CERRADO",
  1828. tribeStatusInProgress: "EN PROGRESO",
  1829. tribePriorityLow: "BAJA",
  1830. tribePriorityMedium: "MEDIA",
  1831. tribePriorityHigh: "ALTA",
  1832. tribePriorityCritical: "CRÍTICA",
  1833. tribeTaskFilterAll: "TODOS",
  1834. tribeMediaFilterAll: "TODOS",
  1835. tribeReportCatBug: "ERROR",
  1836. tribeReportCatAbuse: "ABUSO",
  1837. tribeReportCatContent: "CONTENIDO",
  1838. tribeReportCatOther: "OTRO",
  1839. tribeForumCatGeneral: "GENERAL",
  1840. tribeForumCatProposal: "PROPUESTA",
  1841. tribeForumCatQuestion: "PREGUNTA",
  1842. tribeForumCatAnnouncement: "ANUNCIO",
  1843. tribeMarketCatGoods: "BIENES",
  1844. tribeMarketCatServices: "SERVICIOS",
  1845. tribeMarketCatFood: "ALIMENTACIÓN",
  1846. tribeMarketCatOther: "OTRO",
  1847. tribeStatusLabel: "Estado",
  1848. tribeSubTribes: "SUB-TRIBUS",
  1849. tribeSubTribesCreate: "Crear Sub-Tribu",
  1850. tribeSubTribesEmpty: "No se han creado sub-tribus, aún.",
  1851. tribeLarpCreateForbidden: "No se pueden crear tribus L.A.R.P.",
  1852. tribeLarpUpdateForbidden: "No se pueden actualizar tribus L.A.R.P.",
  1853. tribeActivityJoined: "UNIDO",
  1854. tribeActivityLeft: "SALIDO",
  1855. tribeActivityFeed: "FEED",
  1856. tribeActivityRefeed: "REFEED",
  1857. tribeGroupAnalytics: "Analíticas",
  1858. tribeGroupCreative: "Creativo",
  1859. tribeSectionActivity: "ACTIVIDAD",
  1860. tribeSectionTrending: "TENDENCIAS",
  1861. tribeSectionOpinions: "OPINIONES",
  1862. tribeSectionPixelia: "PIXELIA",
  1863. tribeSectionTags: "ETIQUETAS",
  1864. tribeSectionSearch: "BUSCAR",
  1865. tribeActivityEmpty: "Sin actividad aún.",
  1866. tribeActivityCreated: "creó",
  1867. tribeActivityPosted: "publicó",
  1868. tribeActivityReplied: "respondió",
  1869. tribeTrendingEmpty: "Sin contenido en tendencia aún.",
  1870. tribeTrendingPeriodDay: "Hoy",
  1871. tribeTrendingPeriodWeek: "Esta Semana",
  1872. tribeTrendingPeriodAll: "Todo",
  1873. tribeTrendingEngagement: "interacción",
  1874. tribeOpinionsEmpty: "Sin opiniones aún.",
  1875. tribeOpinionsCast: "Votar",
  1876. tribeOpinionsRankings: "Clasificaciones",
  1877. tribeOpinionsAlreadyVoted: "Ya has votado",
  1878. tribeTopCategory: "Más votado",
  1879. tribePixeliaTitle: "Pixelia",
  1880. tribePixeliaDescription: "Lienzo colaborativo de pixel art.",
  1881. tribePixeliaPaint: "Pintar",
  1882. tribePixeliaContributors: "contribuidores",
  1883. tribePixeliaTotalPixels: "píxeles pintados",
  1884. tribeTagsEmpty: "No se encontraron etiquetas.",
  1885. tribeTagsCloud: "Nube de Etiquetas",
  1886. tribeTagsContentWith: "Contenido con etiqueta",
  1887. tribeSearchPlaceholder: "Buscar contenido de la tribu...",
  1888. tribeSearchEmpty: "Sin resultados.",
  1889. tribeSearchResults: "Resultados",
  1890. tribeSearchMinChars: "Introduce al menos 2 caracteres para buscar.",
  1891. agendaTitle: "Agenda",
  1892. agendaDescription: "Aquí puedes encontrar todos tus elementos asignados.",
  1893. agendaFilterAll: "TODOS",
  1894. agendaFilterOpen: "ABIERTOS",
  1895. agendaFilterClosed: "CERRADOS",
  1896. agendaFilterTasks: "TAREAS",
  1897. agendaFilterMarket: "MERCADO",
  1898. agendaFilterTribes: "TRIBUS",
  1899. agendaFilterEvents: "EVENTOS",
  1900. agendaFilterReports: "INFORMES",
  1901. agendaFilterTransfers: "TRANSFERENCIAS",
  1902. agendaFilterJobs: "TRABAJOS",
  1903. agendaFilterProjects: "PROYECTOS",
  1904. agendaFilterCalendars: "CALENDARIOS",
  1905. agendaNoItems: "No se encontraron asignaciones.",
  1906. agendaDiscardButton: "Descartar",
  1907. agendaRestoreButton: "Restaurar",
  1908. agendaAuthor: "Por",
  1909. agendaCreatedAt: "Creado el",
  1910. agendaTitleLabel: "Título",
  1911. agendaMembersCount: "Miembros",
  1912. agendaDescriptionLabel: "Descripción",
  1913. agendaStatus: "Estado",
  1914. agendaVisibility: "Visibilidad",
  1915. agendaEventDate: "Fecha del Evento",
  1916. agendaEventLocation: "Ubicación",
  1917. agendaEventPrice: "Precio",
  1918. agendaEventUrl: "URL",
  1919. agendaTaskStart: "Hora de Inicio",
  1920. agendaLocationLabel: "Ubicación",
  1921. agendaLARPLabel: "L.A.R.P.",
  1922. agendaYes: "SÍ",
  1923. agendaNo: "NO",
  1924. agendaInviteModeLabel: "Modo de invitación",
  1925. agendaAnonymousLabel: "Modo Anónimo",
  1926. agendaMembersLabel: "Miembros",
  1927. agendareportCategory: "Categoría",
  1928. agendareportSeverity: "Gravedad",
  1929. agendareportStatus: "Estado",
  1930. agendareportDescription: "Descripción",
  1931. agendaTaskEnd: "Hora de Fin",
  1932. agendaTaskPriority: "Prioridad",
  1933. agendaTransferFrom: "De",
  1934. agendaTransferTo: "A",
  1935. agendaTransferConcept: "Concepto",
  1936. agendaTransferAmount: "Cantidad",
  1937. agendaTransferDeadline: "Plazo",
  1938. agendaTransferFrom: "De",
  1939. agendaTransferTo: "A",
  1940. agendaTransferConcept: "Concepto",
  1941. agendaTransferAmount: "Cantidad",
  1942. agendaTransferDeadline: "Plazo",
  1943. opinionsTitle: "Opiniones",
  1944. shareYourOpinions: "Descubre y vota por opiniones en tu red.",
  1945. author: "Por",
  1946. voteNow: "Vota ahora",
  1947. alreadyVoted: "Ya has opinado.",
  1948. noOpinionsFound: "No se encontraron opiniones.",
  1949. ALLButton: "TODOS",
  1950. MINEButton: "MIOS",
  1951. RECENTButton: "RECIENTES",
  1952. TOPButton: "TOP",
  1953. interestingButton: "INTERESANTE",
  1954. necessaryButton: "NECESARIO",
  1955. funnyButton: "DIVERTIDO",
  1956. disgustingButton: "ASQUEROSO",
  1957. sensibleButton: "SENSIBLE",
  1958. propagandaButton: "PROPAGANDA",
  1959. adultOnlyButton: "SOLO ADULTOS",
  1960. boringButton: "ABURRIDO",
  1961. confusingButton: "CONFUSO",
  1962. inspiringButton: "INSPIRADOR",
  1963. spamButton: "SPAM",
  1964. usefulButton: "UTIL",
  1965. informativeButton: "INFORMATIVO",
  1966. wellResearchedButton: "BIEN INVESTIGADO",
  1967. accurateButton: "CONCISO",
  1968. needsSourcesButton: "NECESITA FUENTES",
  1969. wrongButton: "INCORRECTO",
  1970. lowQualityButton: "BAJA CALIDAD",
  1971. creativeButton: "CREATIVO",
  1972. insightfulButton: "PERSPECTIVO",
  1973. actionableButton: "ACCIONABLE",
  1974. inspiringButton: "INSPIRADOR",
  1975. loveButton: "AMOR",
  1976. clearButton: "CLARO",
  1977. upliftingButton: "EMPODERANTE",
  1978. unnecessaryButton: "INNECESARIO",
  1979. rejectedButton: "RECHAZADO",
  1980. misleadingButton: "ENGAÑOSO",
  1981. offTopicButton: "FUERA DE TEMA",
  1982. duplicateButton: "DUPLICADO",
  1983. clickbaitButton: "CEBO DE CLICS",
  1984. spamButton: "SPAM",
  1985. trollButton: "TROLL",
  1986. nsfwButton: "NSFW",
  1987. violentButton: "VIOLENTO",
  1988. toxicButton: "TOXICO",
  1989. harassmentButton: "ACOSO",
  1990. hateButton: "ODIO",
  1991. scamButton: "ESTAFA",
  1992. triggeringButton: "PROVOCADOR",
  1993. opinionsCreatedAt: "Creado en",
  1994. opinionsTotalCount: "Total de opiniones",
  1995. voteInteresting: "Interesante",
  1996. voteNecessary: "Necesario",
  1997. voteUseful: "Útil",
  1998. voteInformative: "Informativo",
  1999. voteWellResearched: "Bien investigado",
  2000. voteNeedsSources: "Necesita fuentes",
  2001. voteWrong: "Incorrecto",
  2002. voteLowQuality: "Baja calidad",
  2003. voteLove: "Amor",
  2004. voteClear: "Claro",
  2005. voteMisleading: "Engañoso",
  2006. voteOffTopic: "Fuera de tema",
  2007. voteDuplicate: "Duplicado",
  2008. voteClickbait: "Cebo de clics",
  2009. votePropaganda: "Propaganda",
  2010. voteFunny: "Divertido",
  2011. voteInspiring: "Inspirador",
  2012. voteUplifting: "Empoderante",
  2013. voteUnnecessary: "Innecesario",
  2014. voteRejected: "Rechazado",
  2015. voteConfusing: "Confuso",
  2016. voteTroll: "Troll",
  2017. voteNsfw: "NSFW",
  2018. voteViolent: "Violento",
  2019. voteToxic: "Tóxico",
  2020. voteHarassment: "Acoso",
  2021. voteHate: "Odio",
  2022. voteScam: "Estafa",
  2023. voteTriggering: "Provocador",
  2024. voteInsightful: "Perspicaz",
  2025. voteAccurate: "Conciso",
  2026. voteActionable: "Accionable",
  2027. voteCreative: "Creativo",
  2028. voteSpam: "Spam",
  2029. voteAdultOnly: "Solo adultos",
  2030. publishBlog: "Publicar Blog",
  2031. privateMessage: "MP",
  2032. pmSendTitle: "Mensajes Privados",
  2033. pmSend: "Enviar!",
  2034. pmDescription: "Usa este formulario para enviar un mensaje cifrado a otros habitantes.",
  2035. pmRecipients: "Destinatarios",
  2036. pmRecipientsHint: "Introduce los IDs de Oasis separados por comas",
  2037. pmSubject: "Asunto",
  2038. pmSubjectHint: "Introduce el asunto del mensaje",
  2039. pmText: "Mensaje",
  2040. pmFile: "Archivo adjunto",
  2041. private: "Privados",
  2042. privateDescription: "Tus mensajes cifrados.",
  2043. privateInbox: "Bandeja",
  2044. privateSent: "Enviados",
  2045. privateDelete: "Borrar",
  2046. pmCreateButton: "Escribir MP",
  2047. noPrivateMessages: "No hay mensajes privados.",
  2048. pmReply: "Responder",
  2049. pmReplies: "respuestas",
  2050. pmNew: "nuevas",
  2051. pmMarkRead: "Marcar como leido",
  2052. inReplyTo: "EN RESPUESTA A",
  2053. pmPreview: "Previsualizar",
  2054. pmPreviewTitle: "Vista previa",
  2055. performed: "→",
  2056. pmFromLabel: "De:",
  2057. pmToLabel: "Para:",
  2058. pmInvalidMessage: "Mensaje no válido",
  2059. pmNoSubject: "(sin asunto)",
  2060. pmSubjectLabel: "Asunto:",
  2061. pmBodyLabel: "Cuerpo",
  2062. pmBotJobs: "42-EmpleosBOT",
  2063. pmBotProjects: "42-ProyectosBOT",
  2064. pmBotMarket: "42-MercadoBOT",
  2065. inboxJobSubscribedTitle: "Nueva suscripción a tu oferta de trabajo",
  2066. pmInhabitantWithId: "Habitante con ID OASIS:",
  2067. pmHasSubscribedToYourJobOffer: "se ha suscrito a tu oferta de trabajo",
  2068. inboxProjectCreatedTitle: "Nuevo proyecto creado",
  2069. pmHasCreatedAProject: "ha creado un proyecto",
  2070. inboxMarketItemSoldTitle: "Artículo vendido",
  2071. pmYourItem: "Tu artículo",
  2072. pmHasBeenSoldTo: "se ha vendido a",
  2073. pmFor: "por",
  2074. inboxProjectPledgedTitle: "Nueva aportación a tu proyecto",
  2075. pmHasPledged: "ha aportado",
  2076. pmToYourProject: "a tu proyecto",
  2077. blockchain: 'Explorador',
  2078. blockchainTitle: 'Explorador',
  2079. blockchainDescription: 'Explora y visualiza los bloques de la cadena.',
  2080. blockchainNoBlocks: 'No se encontraron bloques en la cadena.',
  2081. blockchainBlockID: 'ID del Bloque',
  2082. blockchainBlockAuthor: 'Autoría',
  2083. blockchainBlockType: 'Tipo',
  2084. blockchainBlockTimestamp: 'Marca de tiempo',
  2085. blockchainBlockContent: 'Bloque',
  2086. blockchainBlockURL: 'URL:',
  2087. blockchainContent: 'Bloque',
  2088. blockchainContentPreview: 'Vista previa del contenido del bloque',
  2089. blockchainLatestDatagram: 'Último Datagrama',
  2090. blockchainDatagram: 'Datagrama',
  2091. blockchainDetails: 'Ver detalles del bloque',
  2092. blockchainBlockInfo: 'Información del Bloque',
  2093. blockchainBlockDetails: 'Detalles del bloque seleccionado',
  2094. blockchainBack: 'Volver al Blockexplorer',
  2095. blockchainContentDeleted: 'Contenido eliminado',
  2096. visitContent: 'Visitar contenido',
  2097. banking: 'Banking',
  2098. bankingTitle: 'Banking',
  2099. 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.',
  2100. bankOverview: 'Resumen',
  2101. bankEpochs: 'Épocas',
  2102. bankRules: 'Reglas',
  2103. pending: 'Pendientes',
  2104. closed: 'Cerradas',
  2105. bankBack: 'Volver a Banking',
  2106. bankViewTx: 'Ver Tx',
  2107. bankClaimNow: 'Reclamar',
  2108. bankClaimUBI: '¡Reclamar RBU!',
  2109. bankClaimAndPay: 'Claim & Pay',
  2110. bankClaimedPending: 'Claim pending...',
  2111. bankStatusUnclaimed: 'Unclaimed',
  2112. bankStatusClaimed: 'Claimed',
  2113. bankStatusExpired: 'Expired',
  2114. bankPubOnly: 'PUB-only operation',
  2115. bankNoPendingUBI: 'No hay asignaciones RBU pendientes para esta época.',
  2116. bankPubBalance: 'Saldo del PUB',
  2117. bankEpoch: 'Época',
  2118. bankPool: 'Fondo (esta época)',
  2119. bankWeightsSum: 'Suma de pesos',
  2120. bankAllocations: 'Asignaciones',
  2121. bankNoAllocations: 'No se encontraron asignaciones.',
  2122. bankNoEpochs: 'No se encontraron épocas.',
  2123. bankEpochAllocations: 'Asignaciones de la época',
  2124. bankAllocId: 'ID de asignación',
  2125. bankAllocDate: 'Fecha',
  2126. bankAllocConcept: 'Concepto',
  2127. bankAllocFrom: 'De',
  2128. bankAllocTo: 'Para',
  2129. bankAllocAmount: 'Cantidad',
  2130. bankAllocStatus: 'Estado',
  2131. bankEpochId: 'ID de época',
  2132. bankRuleHash: 'Hash del snapshot de reglas',
  2133. bankViewEpoch: 'Ver época',
  2134. bankUserBalance: 'Tu saldo',
  2135. ecoWalletNotConfigured: 'Cartera de ECOin no configurada',
  2136. editWallet: 'Editar cartera',
  2137. addWallet: 'Añadir cartera',
  2138. bankAddresses: 'Direcciones',
  2139. bankNoAddresses: 'No se encontraron direcciones.',
  2140. bankUser: 'ID de Oasis',
  2141. bankAddress: 'Dirección',
  2142. bankAddAddressTitle: 'Añadir dirección de ECOIN',
  2143. bankAddAddressUser: 'ID de Oasis',
  2144. bankAddAddressAddress: 'Dirección de ECOIN',
  2145. bankAddAddressSave: 'Guardar',
  2146. bankAddressAdded: 'Dirección añadida',
  2147. bankAddressUpdated: 'Dirección actualizada',
  2148. bankAddressExists: 'La dirección ya existe',
  2149. bankAddressInvalid: 'Dirección no válida',
  2150. bankAddressDeleted: 'Dirección eliminada',
  2151. bankAddressNotFound: 'Dirección no encontrada',
  2152. bankAddressTotal: 'Total de Direcciones',
  2153. bankAddressSearch: 'Buscar @habitante o dirección',
  2154. bankAddressActions: 'Acciones',
  2155. bankAddressDelete: 'Eliminar',
  2156. bankAddressSource: 'Fuente',
  2157. bankAddressDeleteConfirm: 'Eliminar esta dirección?',
  2158. search: 'Buscar!',
  2159. bankLocal: 'Local',
  2160. bankFromOasis: 'Oasis',
  2161. bankMyAddress: 'Tu dirección',
  2162. bankRemoveMyAddress: 'Eliminar mi dirección',
  2163. bankNotRemovableOasis: 'Las direcciones no se pueden eliminar localmente',
  2164. bankingFutureUBI: "UBI",
  2165. pubIdTitle: "PUB Wallet",
  2166. pubIdDescription: "Set the PUB OASIS ID. This will be used for PUB transactions (including the UBI).",
  2167. pubIdLabel: "PUB ID",
  2168. pubIdSave: "Save configuration",
  2169. pubIdPlaceholder: "@PUB_ID.ed25519",
  2170. bankUbiAvailability: "Disponibilidad UBI",
  2171. bankUbiAvailableOk: "OK",
  2172. bankUbiAvailableNo: "SIN FONDOS!",
  2173. bankAlreadyClaimedThisMonth: "Ya reclamado este mes",
  2174. bankUbiThisMonth: "UBI (este mes)",
  2175. bankUbiLastClaimed: "UBI (última reclamada)",
  2176. bankUbiNeverClaimed: "Nunca reclamado",
  2177. bankUbiTotalClaimed: "UBI (total reclamado)",
  2178. bankUbiPub: "PUB",
  2179. bankUbiInhabitant: "HABITANTE",
  2180. bankUbiClaimedAmount: "RECLAMADO (ECO)",
  2181. typeBankUbiResult: "BANCARIO - UBI",
  2182. bankNoPubConfigured: "Sin PUB configurado. Establece tu ID de PUB en Ajustes.",
  2183. shopsTitle: "Tiendas",
  2184. shopDescription: "Descubre y gestiona tiendas en la red.",
  2185. shopTitle: "Tienda",
  2186. shopFilterAll: "TODAS",
  2187. shopFilterMine: "MÍAS",
  2188. shopFilterRecent: "RECIENTES",
  2189. shopFilterTop: "TOP",
  2190. shopFilterProducts: "PRODUCTOS",
  2191. shopFilterPrices: "PRECIOS",
  2192. shopFilterFavorites: "FAVORITAS",
  2193. shopUpload: "Crear Tienda",
  2194. shopAllSectionTitle: "Tiendas",
  2195. shopMineSectionTitle: "Mis Tiendas",
  2196. shopRecentSectionTitle: "Tiendas Recientes",
  2197. shopTopSectionTitle: "Tiendas Destacadas",
  2198. shopProductsSectionTitle: "Productos Destacados",
  2199. shopPricesSectionTitle: "Productos por Precio",
  2200. shopFavoritesSectionTitle: "Favoritas",
  2201. shopCreateSectionTitle: "Crear Tienda",
  2202. shopUpdateSectionTitle: "Actualizar Tienda",
  2203. shopCreate: "Crear",
  2204. shopUpdate: "Actualizar",
  2205. shopDelete: "Eliminar",
  2206. shopAddFavorite: "Añadir Favorito",
  2207. shopRemoveFavorite: "Quitar Favorito",
  2208. shopOpen: "ABIERTA",
  2209. shopClosed: "CERRADA",
  2210. shopOpenShop: "Abrir Tienda",
  2211. shopCloseShop: "Cerrar Tienda",
  2212. shopProducts: "Productos",
  2213. shopProductAdd: "Añadir Producto",
  2214. shopProductTitle: "Producto",
  2215. shopProductUpdate: "Actualizar Producto",
  2216. shopProductPrice: "Precio (ECO)",
  2217. shopProductStock: "Stock",
  2218. shopProductUntitled: "Producto sin título",
  2219. shopUntitled: "Tienda sin título",
  2220. shopNoItems: "No se encontraron tiendas.",
  2221. shopNoProducts: "Aún no hay productos.",
  2222. shopOutOfStock: "Agotado",
  2223. shopBuy: "Comprar",
  2224. shopBackToShop: "Volver a la Tienda",
  2225. shopShareUrl: "URL para compartir",
  2226. shopVisitShop: "VISITAR TIENDA",
  2227. shopStatus: "ESTADO",
  2228. shopCreatedAt: "CREADO",
  2229. shopSearchPlaceholder: "Buscar tiendas...",
  2230. shopUrl: "URL",
  2231. shopLocation: "Ubicación",
  2232. shopTags: "Etiquetas",
  2233. shopVisibility: "Visibilidad",
  2234. shopImage: "Imagen",
  2235. shopShortDescription: "Descripcion Corta",
  2236. shopShortDescriptionPlaceholder: "Descripcion breve para las tarjetas (max 160 caracteres)",
  2237. shopTitlePlaceholder: "Nombre de tu tienda",
  2238. shopDescriptionPlaceholder: "Descripcion detallada de tu tienda",
  2239. shopUrlPlaceholder: "https://url-de-tu-tienda.com",
  2240. shopLocationPlaceholder: "Ciudad, Pais",
  2241. shopTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3",
  2242. mapTitlePlaceholder: "Titulo del mapa",
  2243. shopProductFeatured: "Producto Destacado",
  2244. shopSendToMarket: "Send to Market",
  2245. typeShop: "TIENDA",
  2246. typeShopProduct: "PRODUCTO DE TIENDA",
  2247. bankExchange: 'Intercambio',
  2248. bankExchangeCurrentValue: 'Valor de ECOin (1h)',
  2249. bankTotalSupply: 'Suministro Total de ECOin',
  2250. bankEcoinHours: 'Horas ECOin',
  2251. bankHoursOfWork: 'horas',
  2252. bankUnitMs: "ms",
  2253. bankUnitSeconds: "segundos",
  2254. bankUnitMinutes: "minutos",
  2255. bankUnitDays: "días",
  2256. bankExchangeNoData: 'No hay datos disponibles',
  2257. bankExchangeIndex: 'Valor de ECOin (1h)',
  2258. bankInflation: 'Inflación de ECOin (anual)',
  2259. bankInflationMonthly: 'Inflación de ECOin (mensual)',
  2260. bankCurrentSupply: 'Suministro Actual de ECOin',
  2261. bankingSyncStatus: 'Estado de ECOin',
  2262. bankingSyncStatusSynced: 'Sincronizado',
  2263. bankingSyncStatusOutdated: 'Desactualizado',
  2264. statsTitle: 'Estadísticas',
  2265. statistics: "Estadísticas",
  2266. statsInhabitant: "Estadísticas del Habitante",
  2267. statsDescription: "Descubre estadísticas sobre tu red.",
  2268. ALLButton: "TODO",
  2269. MINEButton: "MÍAS",
  2270. TOMBSTONEButton: "ELIMINADOS",
  2271. statsYou: "Tú",
  2272. statsUserId: "ID de Oasis",
  2273. statsCreatedAt: "Creado el",
  2274. statsYourContent: "Contenido",
  2275. statsYourOpinions: "Opiniones",
  2276. statsYourTombstone: "Eliminados",
  2277. statsNetwork: "Red",
  2278. statsTotalInhabitants: "Habitantes",
  2279. statsDiscoveredTribes: "Tribus (Públicas)",
  2280. statsPrivateDiscoveredTribes: "Tribus (Privadas)",
  2281. statsNetworkContent: "Contenido",
  2282. statsYourMarket: "Mercado",
  2283. statsYourJob: "Empleos",
  2284. statsYourProject: "Proyectos",
  2285. statsYourTransfer: "Transferencias",
  2286. statsYourForum: "Foros",
  2287. statsNetworkOpinions: "Opiniones",
  2288. statsDiscoveredMarket: "Mercado",
  2289. statsDiscoveredJob: "Empleos",
  2290. statsDiscoveredProject: "Proyectos",
  2291. statsBankingTitle: "Banca",
  2292. statsEcoWalletLabel: "Billetera ECOIN",
  2293. statsEcoWalletNotConfigured: "¡No configurada!",
  2294. statsTotalEcoAddresses: "Direcciones totales",
  2295. statsDiscoveredTransfer: "Transferencias",
  2296. statsDiscoveredForum: "Foros",
  2297. statsNetworkTombstone: "Eliminados",
  2298. statsBookmark: "Marcadores",
  2299. statsEvent: "Eventos",
  2300. statsTask: "Tareas",
  2301. statsVotes: "Votos",
  2302. statsMarket: "Mercado",
  2303. statsForum: "Foros",
  2304. statsJob: "Empleos",
  2305. statsProject: "Proyectos",
  2306. statsReport: "Reportes",
  2307. statsFeed: "Publicaciones",
  2308. statsTribe: "Tribus",
  2309. statsImage: "Imágenes",
  2310. statsAudio: "Audios",
  2311. statsVideo: "Vídeos",
  2312. statsDocument: "Documentos",
  2313. statsMap: "Mapas",
  2314. statsShop: "Tiendas",
  2315. statsShopProduct: "Productos de tienda",
  2316. statsTransfer: "Transferencias",
  2317. statsAiExchange: "IA",
  2318. statsPUBs: 'PUBs',
  2319. statsPost: "Publicaciones",
  2320. statsOasisID: "ID de Oasis",
  2321. statsSize: "Total (tamaño)",
  2322. statsBlockchainSize: "Blockchain (tamaño)",
  2323. statsBlobsSize: "Blobs (tamaño)",
  2324. statsActivity7d: "Actividad (últimos 7 días)",
  2325. statsActivity7dTotal: "Total 7 días",
  2326. statsActivity30dTotal: "Total 30 días",
  2327. statsKarmaScore: "Puntuación KARMA",
  2328. statsPublic: "Público",
  2329. statsPrivate: "Privado",
  2330. day: "Día",
  2331. messages: "Mensajes",
  2332. statsProject: "Proyectos",
  2333. statsProjectsTitle: "Proyectos",
  2334. statsProjectsTotal: "Total de proyectos",
  2335. statsProjectsActive: "Activos",
  2336. statsProjectsCompleted: "Completados",
  2337. statsProjectsPaused: "Pausados",
  2338. statsProjectsCancelled: "Cancelados",
  2339. statsProjectsGoalTotal: "Meta total",
  2340. statsProjectsPledgedTotal: "Aportación total",
  2341. statsProjectsSuccessRate: "Tasa de éxito",
  2342. statsProjectsAvgProgress: "Progreso medio",
  2343. statsProjectsMedianProgress: "Progreso mediano",
  2344. statsProjectsActiveFundingAvg: "Financiación activa media",
  2345. statsJobsTitle: "Empleos",
  2346. statsJobsTotal: "Total de empleos",
  2347. statsJobsOpen: "Abiertos",
  2348. statsJobsClosed: "Cerrados",
  2349. statsJobsOpenVacants: "Vacantes abiertas",
  2350. statsJobsSubscribersTotal: "Suscriptores totales",
  2351. statsJobsAvgSalary: "Salario medio",
  2352. statsJobsMedianSalary: "Salario mediano",
  2353. statsMarketTitle: "Mercado",
  2354. statsMarketTotal: "Artículos totales",
  2355. statsMarketForSale: "En venta",
  2356. statsMarketReserved: "Reservados",
  2357. statsMarketClosed: "Cerrados",
  2358. statsMarketSold: "Vendidos",
  2359. statsMarketRevenue: "Ingresos",
  2360. statsMarketAvgSoldPrice: "Precio medio vendido",
  2361. statsUsersTitle: "Habitantes",
  2362. user: "Habitante",
  2363. statsTombstoneTitle: "Eliminados",
  2364. statsNetworkTombstones: "Eliminados en la red",
  2365. statsTombstoneRatio: "Ratio de eliminados (%)",
  2366. statsAITraining: "Entrenamiento de IA",
  2367. statsAIExchanges: "Intercambios",
  2368. bankingUserEngagementScore: "Puntuación de KARMA",
  2369. statsParliamentCandidature: "Candidaturas de parlamento",
  2370. statsParliamentTerm: "Mandatos de parlamento",
  2371. statsParliamentProposal: "Propuestas de parlamento",
  2372. statsParliamentRevocation: "Revocaciones de parlamento",
  2373. statsParliamentLaw: "Leyes de parlamento",
  2374. statsCourtsCase: "Casos judiciales",
  2375. statsCourtsEvidence: "Evidencias judiciales",
  2376. statsCourtsAnswer: "Respuestas judiciales",
  2377. statsCourtsVerdict: "Veredictos judiciales",
  2378. statsCourtsSettlement: "Acuerdos judiciales",
  2379. statsCourtsSettlementProposal: "Propuestas de acuerdo",
  2380. statsCourtsSettlementAccepted: "Acuerdos aceptados",
  2381. statsCourtsNomination: "Nominaciones de jueces",
  2382. statsCourtsNominationVote: "Votos de nominación",
  2383. ai: "IA",
  2384. aiTitle: "IA",
  2385. aiDescription: "Una Inteligencia Artificial Colectiva (IAC) llamada '42' que aprende de tu red.",
  2386. aiInputPlaceholder: "Qué quieres saber?",
  2387. aiUserQuestion: "Pregunta",
  2388. aiResponseTitle: "Respuesta",
  2389. aiSubmitButton: "Enviar!",
  2390. aiSettingsDescription: "Configura tu prompt (máx 128 caracteres) para el modelo de IA.",
  2391. aiPrompt: "Proporciona una respuesta informativa y precisa.",
  2392. aiConfiguration: "Configurar prompt",
  2393. aiPromptUsed: "Indicación",
  2394. aiClearHistory: "Borrar historial de chat",
  2395. aiSharePrompt: "Añadir esta respuesta al entrenamiento colectivo?",
  2396. aiShareYes: "Sí",
  2397. aiShareNo: "No",
  2398. aiSharedLabel: "Añadida al entrenamiento",
  2399. aiRejectedLabel: "No añadida al entrenamiento",
  2400. aiServerError: "La IA no ha podido responder. Inténtalo de nuevo.",
  2401. aiInputPlaceholder: "¿Qué es Oasis?",
  2402. typeAiExchange: "IA",
  2403. aiApproveTrain: "Añadir al entrenamiento colectivo",
  2404. aiRejectTrain: "No entrenar",
  2405. aiTrainPending: "Pendiente de aprobación",
  2406. aiTrainApproved: "Aprobado para entrenamiento",
  2407. aiTrainRejected: "Rechazado para entrenamiento",
  2408. aiSnippetsUsed: "Fragmentos usados",
  2409. aiSnippetsLearned: "Fragmentos aprendidos",
  2410. statsAITraining: "Entrenamiento de IA",
  2411. aiApproveCustomTrain: "Entrenar con esta respuesta personalizada",
  2412. aiCustomAnswerPlaceholder: "Escribe tu respuesta personalizada…",
  2413. statsAIExchanges: "Intercambio de Modelos",
  2414. marketMineSectionTitle: "Tus artículos",
  2415. marketCreateSectionTitle: "Crear artículo",
  2416. marketUpdateSectionTitle: "Actualizar",
  2417. marketAllSectionTitle: "Mercado",
  2418. marketRecentSectionTitle: "Mercado reciente",
  2419. marketTitle: "Mercado",
  2420. marketDescription: "Un mercado para intercambiar bienes o servicios en tu red.",
  2421. marketFilterAll: "TODOS",
  2422. marketFilterMine: "MÍOS",
  2423. marketFilterAuctions: "SUBASTAS",
  2424. marketFilterItems: "INTERCAMBIO",
  2425. marketFilterNew: "NUEVO",
  2426. marketFilterUsed: "USADO",
  2427. marketFilterBroken: "ROTO",
  2428. marketFilterForSale: "EN VENTA",
  2429. marketFilterSold: "VENDIDO",
  2430. marketFilterDiscarded: "DESCARTADO",
  2431. marketFilterRecent: "RECIENTE",
  2432. marketFilterMyBids: "PUJAS",
  2433. marketCreateButton: "Crear artículo",
  2434. marketItemType: "Tipo",
  2435. marketItemTitle: "Título",
  2436. marketItemAvailable: "Fecha límite",
  2437. marketItemDescription: "Descripción",
  2438. marketItemDescriptionPlaceholder: "Describe el artículo que estás vendiendo",
  2439. marketItemStatus: "Estado",
  2440. marketShopLabel: "Tienda",
  2441. marketItemCondition: "Condición",
  2442. marketItemPrice: "Precio",
  2443. marketItemTags: "Etiquetas",
  2444. marketItemTagsPlaceholder: "Introduce etiquetas separadas por comas",
  2445. marketItemDeadline: "Fecha límite",
  2446. marketItemIncludesShipping: "¿Incluye envío?",
  2447. marketItemHighestBid: "Puja más alta",
  2448. marketItemHighestBidder: "Mejor postor",
  2449. marketItemStock: "Existencias",
  2450. marketOutOfStock: "Sin stock",
  2451. marketItemBidTime: "Fecha de la puja",
  2452. marketActionsUpdate: "Actualizar",
  2453. marketUpdateButton: "¡Actualizar artículo!",
  2454. marketActionsDelete: "Eliminar",
  2455. marketActionsSold: "Marcar como vendido",
  2456. marketActionsChangeStatus: "CAMBIAR ESTADO",
  2457. marketActionsBuy: "¡COMPRAR!",
  2458. marketAuctionBids: "Pujas actuales",
  2459. marketPlaceBidButton: "Pujar",
  2460. marketItemSeller: "Vendedor",
  2461. marketNoItems: "Aún no hay artículos disponibles.",
  2462. marketYourBid: "Tu puja",
  2463. marketCreateFormImageLabel: "Subir contenido multimedia (max: 50MB)",
  2464. marketSearchLabel: "Buscar",
  2465. marketSearchPlaceholder: "Buscar por título o etiquetas",
  2466. marketMinPriceLabel: "Precio mínimo",
  2467. marketMaxPriceLabel: "Precio máximo",
  2468. marketSortLabel: "Ordenar por",
  2469. marketSortRecent: "Más recientes",
  2470. marketSortPrice: "Precio",
  2471. marketSortDeadline: "Fecha límite",
  2472. marketSearchButton: "Buscar",
  2473. marketAuctionEndsIn: "Termina",
  2474. marketAuctionEnded: "Terminó",
  2475. marketMyBidBadge: "Has pujado",
  2476. marketNoItemsMatch: "No hay artículos que coincidan con tu búsqueda.",
  2477. jobsTitle: "Laboral",
  2478. jobsDescription: "Descubre y gestiona ofertas de trabajo en tu red.",
  2479. jobsFilterRecent: "RECIENTES",
  2480. jobsFilterMine: "MIOS",
  2481. jobsFilterAll: "TODOS",
  2482. jobsFilterRemote: "REMOTOS",
  2483. jobsFilterOpen: "ABIERTOS",
  2484. jobsFilterClosed: "CERRADOS",
  2485. jobsCV: "CVs",
  2486. jobsCreateJob: "Publicar Trabajo",
  2487. jobsRecentTitle: "Trabajos Recientes",
  2488. jobsMineTitle: "Tus Trabajos",
  2489. jobsAllTitle: "Ofertas de Trabajo",
  2490. jobsRemoteTitle: "Trabajos Remotos",
  2491. jobsOpenTitle: "Trabajos Abiertos",
  2492. jobsClosedTitle: "Trabajos Cerrados",
  2493. jobsCVTitle: "CVs",
  2494. jobsFilterPresencial: "PRESENCIAL",
  2495. jobsFilterFreelancer: "FREELANCE",
  2496. jobsFilterEmployee: "EMPLEADO",
  2497. jobsPresencialTitle: "Trabajos Presenciales",
  2498. jobsFreelancerTitle: "Trabajos Freelance",
  2499. jobsEmployeeTitle: "Trabajos de Empleado",
  2500. jobTitle: "Título",
  2501. jobLocation: "Ubicación",
  2502. jobSalary: "Salario (ECO/1h)",
  2503. jobVacants: "Vacantes",
  2504. jobDescription: "Descripción",
  2505. jobRequirements: "Requisitos",
  2506. jobLanguages: "Idiomas",
  2507. jobStatus: "Estado",
  2508. jobStatusOPEN: "ABIERTA",
  2509. jobStatusCLOSED: "CERRADA",
  2510. jobSetOpen: "Marcar como ABIERTA",
  2511. jobSetClosed: "Marcar como CERRADA",
  2512. jobSubscribeButton: "Unirse a esta oferta!",
  2513. jobUnsubscribeButton: "Salir de esta oferta!",
  2514. jobTitlePlaceholder: "Introduce el título del trabajo",
  2515. jobDescriptionPlaceholder: "Describe el puesto",
  2516. jobRequirementsPlaceholder: "Introduce los requisitos",
  2517. jobLanguagesPlaceholder: "Inglés, Francés, Español, Euskera...",
  2518. jobTasksPlaceholder: "Lista de tareas",
  2519. jobLocationPresencial: "Presencial",
  2520. jobLocationRemote: "Remoto",
  2521. jobVacantsPlaceholder: "Número de vacantes",
  2522. jobSalaryPlaceholder: "Salario en ECO por 1 hora dedicada",
  2523. jobImage: "Subir contenido multimedia (max: 50MB)",
  2524. jobTasks: "Tareas",
  2525. jobType: "Tipo de Trabajo",
  2526. jobTime: "Tiempo de Trabajo",
  2527. jobSubscribers: "Suscriptores",
  2528. noSubscribers: "Sin suscriptores",
  2529. jobsFilterTop: "TOP",
  2530. jobsTopTitle: "Trabajos Mejor Pagados",
  2531. createJobButton: "Publicar Trabajo",
  2532. viewDetailsButton: "Ver Detalles",
  2533. noJobsFound: "No se encontraron ofertas de trabajo.",
  2534. jobAuthor: "Por",
  2535. jobTypeFreelance: "Autónomo",
  2536. jobTypeSalary: "Empleado",
  2537. jobTimePartial: "Parcial",
  2538. jobTimeComplete: "Completo",
  2539. jobsDeleteButton: "ELIMINAR",
  2540. jobsUpdateButton: "ACTUALIZAR",
  2541. jobsFilterApplied: "CANDIDATURA",
  2542. jobsAppliedTitle: "Mis candidaturas",
  2543. jobsAppliedBadge: "Inscrito",
  2544. jobsFilterFavs: "Favoritos",
  2545. jobsFavsTitle: "Favoritos",
  2546. jobsFilterNeeds: "Necesita ayuda",
  2547. jobsNeedsTitle: "Necesita ayuda",
  2548. jobsSearchLabel: "Buscar",
  2549. jobsSearchPlaceholder: "Buscar por título, tags, descripción...",
  2550. jobsMinSalaryLabel: "Salario mín.",
  2551. jobsMaxSalaryLabel: "Salario máx.",
  2552. jobsSortLabel: "Ordenar por",
  2553. jobsSortRecent: "Más recientes",
  2554. jobsSortSalary: "Mayor salario",
  2555. jobsSortSubscribers: "Más candidatos",
  2556. jobsSearchButton: "Buscar",
  2557. jobsFavoriteButton: "Favorito",
  2558. jobsUnfavoriteButton: "Quitar favorito",
  2559. jobsMessageAuthorButton: "MP",
  2560. jobsApplicants: "Candidatos",
  2561. jobsUpdatedAt: "Actualizado",
  2562. jobSetOpen: "Marcar abierto",
  2563. jobNewBadge: "NUEVO",
  2564. jobsTagsLabel: "Etiquetas",
  2565. jobsTagsPlaceholder: "etiqueta1, etiqueta2, etiqueta3",
  2566. noJobsMatch: "No hay ofertas que coincidan con tu búsqueda.",
  2567. projectsTitle: "Proyectos",
  2568. projectsDescription: "Crea, financia y sigue proyectos impulsados por la comunidad en tu red.",
  2569. projectCreateProject: "Crear Proyecto",
  2570. projectCreateButton: "Crear Proyecto",
  2571. projectUpdateButton: "ACTUALIZAR",
  2572. projectDeleteButton: "ELIMINAR",
  2573. projectNoProjectsFound: "No se encontraron proyectos.",
  2574. projectFilterAll: "TODOS",
  2575. projectFilterMine: "MIS PROYECTOS",
  2576. projectFilterActive: "ACTIVOS",
  2577. projectFilterPaused: "PONDERADOS",
  2578. projectFilterCompleted: "COMPLETADOS",
  2579. projectFilterFollowing: "SEGUIDOS",
  2580. projectFilterRecent: "RECIENTES",
  2581. projectFilterTop: "TOP",
  2582. projectAllTitle: "Proyectos",
  2583. projectMineTitle: "Tus Proyectos",
  2584. projectActiveTitle: "Proyectos Activos",
  2585. projectPausedTitle: "Proyectos Pausados",
  2586. projectCompletedTitle: "Proyectos Completados",
  2587. projectFollowingTitle: "Proyectos Seguidos",
  2588. projectRecentTitle: "Proyectos Recientes",
  2589. projectTopTitle: "Mejor Financiados",
  2590. projectTitlePlaceholder: "Nombre del proyecto",
  2591. projectImage: "Subir contenido multimedia (max: 50MB)",
  2592. projectDescription: "Descripción",
  2593. projectDescriptionPlaceholder: "Cuenta la historia y los objetivos…",
  2594. projectGoal: "Meta (ECO)",
  2595. projectGoalPlaceholder: "50000",
  2596. projectDeadline: "Fecha límite",
  2597. projectProgress: "Progreso inicial (%)",
  2598. projectStatus: "Estado",
  2599. projectFunding: "Financiamiento",
  2600. projectPledged: "Prometido",
  2601. projectSetStatus: "Establecer estado",
  2602. projectSetProgress: "Actualizar progreso",
  2603. projectFollowButton: "SEGUIR",
  2604. projectUnfollowButton: "DEJAR DE SEGUIR",
  2605. projectStatusACTIVE: "ACTIVO",
  2606. projectStatusPAUSED: "PAUSADO",
  2607. projectStatusCOMPLETED: "COMPLETADO",
  2608. projectStatusCANCELLED: "CANCELADO",
  2609. projectPledgeTitle: "Apoya este proyecto",
  2610. projectPledgePlaceholder: "Cantidad en ECO",
  2611. projectBounties: "Recompensas",
  2612. projectBountiesInputLabel: "Recompensas (una por línea: Título|Cantidad [ECO]|Descripción)",
  2613. projectBountiesPlaceholder: "Arreglar error en UI|100|Enlace al problema\nEscribir documentación|250|Ejemplos de uso",
  2614. projectNoBounties: "No se encontraron recompensas.",
  2615. projectTitle: "Título",
  2616. projectAddBountyTitle: "Añadir nueva recompensa",
  2617. projectBountyTitle: "Título de la recompensa",
  2618. projectBountyAmount: "Cantidad (ECO)",
  2619. projectBountyDescription: "Descripción",
  2620. projectMilestoneSelect: "Seleccionar hito",
  2621. projectBountyCreateButton: "Crear recompensa",
  2622. projectBountyStatus: "Estado de la recompensa",
  2623. projectBountyOpen: "abierta",
  2624. projectBountyClaimed: "reclamada",
  2625. projectBountyDone: "completada",
  2626. projectBountyClaimedBy: "reclamada por",
  2627. projectBountyClaimButton: "reclamar",
  2628. projectBountyCompleteButton: "Marcar como completada",
  2629. projectMilestones: "Hitos",
  2630. projectAddMilestoneTitle: "Nuevo hito",
  2631. projectMilestoneTitle: "Título del hito",
  2632. projectMilestoneTargetPercent: "Porcentaje (%)",
  2633. projectMilestoneDueDate: "Fecha",
  2634. projectMilestoneCreateButton: "Crear hito",
  2635. projectMilestoneStatus: "Estado del hito",
  2636. projectMilestoneOpen: "abierto",
  2637. projectMilestoneDone: "completado",
  2638. projectMilestoneMarkDone: "Marcar como completado",
  2639. projectMilestoneDue: "debido",
  2640. projectNoMilestones: "No se encontraron hitos.",
  2641. projectMilestoneMarkDone: "Marcar como hecho",
  2642. projectMilestoneTitlePlaceholder: "Ingresa el título del hito",
  2643. projectMilestoneDescriptionPlaceholder: "Ingresa la descripción de este hito",
  2644. projectMilestoneDescription: "Descripción del hito",
  2645. projectBudgetGoal: "Presupuesto (Objetivo)",
  2646. projectBudgetAssigned: "Asignado a recompensas",
  2647. projectBudgetRemaining: "Restante",
  2648. projectBudgetOver: "⚠ Presupuesto excedido: lo asignado supera el objetivo",
  2649. projectFollowers: "Seguidores",
  2650. projectFollowersTitle: "Seguidores",
  2651. projectFollowersNone: "Aún no hay seguidores.",
  2652. projectMore: "más",
  2653. projectYouFollowHint: "Sigues este proyecto",
  2654. projectBackers: "Patrocinadores",
  2655. projectBackersTitle: "Patrocinadores",
  2656. projectBackersTotal: "Total de patrocinadores",
  2657. projectBackersTotalPledged: "Total aportado",
  2658. projectBackersYourPledge: "Tu aportación",
  2659. projectBackersNone: "Aún no hay aportaciones.",
  2660. projectNoRemainingBudget: "No queda presupuesto.",
  2661. projectFilterBackers: "MECENAS",
  2662. projectFilterApplied: "APORTANDO",
  2663. projectAppliedTitle: "APORTANDO",
  2664. projectBackersLeaderboardTitle: "Mecenas destacados",
  2665. projectNoBackersFound: "No hay mecenas.",
  2666. projectBackerAmount: "Total aportado",
  2667. projectBackerPledges: "Aportaciones",
  2668. projectBackerProjects: "Proyectos",
  2669. projectPledgeAmount: "Cantidad",
  2670. projectSelectMilestoneOrBounty: "Seleccionar Hito o Recompensa",
  2671. projectPledgeButton: "Aportar",
  2672. footerLicense: "GPLv3",
  2673. footerPackage: "Paquete",
  2674. footerVersion: "Versión",
  2675. modulesModuleName: "Nombre",
  2676. modulesModuleDescription: "Descripción",
  2677. modulesModuleStatus: "Estado",
  2678. modulesTotalModulesLabel: "Módulos Cargados",
  2679. modulesEnabledModulesLabel: "Habilitados",
  2680. modulesDisabledModulesLabel: "Deshabilitados",
  2681. modulesPopularLabel: "Popular",
  2682. modulesPopularDescription: "Módulo para recibir publicaciones que son tendencia, más vistas o más comentadas.",
  2683. modulesTopicsLabel: "Temas",
  2684. modulesTopicsDescription: "Módulo para recibir categorías de discusión basadas en intereses compartidos.",
  2685. modulesSummariesLabel: "Resúmenes",
  2686. modulesSummariesDescription: "Módulo para recibir resúmenes de discusiones o publicaciones largas.",
  2687. modulesLatestLabel: "Últimos",
  2688. modulesLatestDescription: "Módulo para recibir las publicaciones y discusiones más recientes.",
  2689. modulesThreadsLabel: "Hilos",
  2690. modulesThreadsDescription: "Módulo para recibir conversaciones agrupadas por tema o pregunta.",
  2691. modulesMultiverseLabel: "Multiverso",
  2692. modulesMultiverseDescription: "Módulo para recibir contenido de otros pares federados.",
  2693. modulesInvitesLabel: "Invitaciones",
  2694. modulesInvitesDescription: "Módulo para gestionar y aplicar códigos de invitación.",
  2695. modulesWalletLabel: "Cartera",
  2696. modulesWalletDescription: "Módulo para gestionar tus activos digitales (ECOin).",
  2697. modulesLegacyLabel: "Legado",
  2698. modulesLegacyDescription: "Módulo para gestionar tu secreto (clave privada) de forma rápida y segura.",
  2699. modulesCipherLabel: "Cifrado",
  2700. modulesCipherDescription: "Módulo para encriptar y desencriptar tu texto de forma simétrica (usando una contraseña compartida).",
  2701. modulesBookmarksLabel: "Marcadores",
  2702. modulesBookmarksDescription: "Módulo para descubrir y gestionar marcadores.",
  2703. modulesVideosLabel: "Videos",
  2704. modulesVideosDescription: "Módulo para descubrir y gestionar videos.",
  2705. modulesDocsLabel: "Documentos",
  2706. modulesDocsDescription: "Módulo para descubrir y gestionar documentos.",
  2707. modulesAudiosLabel: "Audios",
  2708. modulesAudiosDescription: "Módulo para descubrir y gestionar audios.",
  2709. modulesTagsLabel: "Etiquetas",
  2710. modulesTagsDescription: "Módulo para descubrir y explorar patrones de taxonomía (etiquetas).",
  2711. modulesImagesLabel: "Imágenes",
  2712. modulesImagesDescription: "Módulo para descubrir y gestionar imágenes.",
  2713. modulesTrendingLabel: "Tendencias",
  2714. modulesTrendingDescription: "Módulo para explorar el contenido más popular.",
  2715. modulesEventsLabel: "Eventos",
  2716. modulesEventsDescription: "Módulo para descubrir y gestionar eventos.",
  2717. modulesTasksLabel: "Tareas",
  2718. modulesTasksDescription: "Módulo para descubrir y gestionar tareas.",
  2719. modulesMarketLabel: "Mercado",
  2720. modulesMarketDescription: "Módulo para intercambiar bienes o servicios.",
  2721. modulesShopsLabel: "Tiendas",
  2722. modulesShopsDescription: "Módulo para gestionar y descubrir tiendas.",
  2723. modulesTribesLabel: "Tribus",
  2724. modulesTribesDescription: "Módulo para explorar o crear tribus (grupos).",
  2725. modulesVotationsLabel: "Votaciones",
  2726. modulesVotationsDescription: "Módulo para descubrir y gestionar votaciones.",
  2727. modulesParliamentLabel: "Parlamento",
  2728. modulesParliamentDescription: "Módulo para elegir gobiernos y votar leyes.",
  2729. modulesCourtsLabel: "Juzgados",
  2730. modulesCourtsDescription: "Módulo para resolver conflictos y emitir veredictos.",
  2731. modulesReportsLabel: "Informes",
  2732. modulesReportsDescription: "Módulo para gestionar y hacer un seguimiento de informes relacionados con problemas, errores, abusos y advertencias de contenido.",
  2733. modulesOpinionsLabel: "Opiniones",
  2734. modulesOpinionsDescription: "Módulo para descubrir y votar opiniones.",
  2735. modulesTransfersLabel: "Transferencias",
  2736. modulesTransfersDescription: "Módulo para descubrir y gestionar contratos inteligentes (transferencias).",
  2737. modulesFeedLabel: "Feed",
  2738. modulesFeedDescription: "Módulo para descubrir y compartir textos breves (feeds).",
  2739. modulesPixeliaLabel: "Pixelia",
  2740. modulesPixeliaDescription: "Módulo para dibujar en una cuadrícula colaborativa.",
  2741. modulesAgendaLabel: "Agenda",
  2742. modulesAgendaDescription: "Módulo para gestionar todos tus elementos asignados.",
  2743. modulesAILabel: "AI",
  2744. modulesAIDescription: "Módulo para hablar con un LLM llamado '42'.",
  2745. modulesForumLabel: "Foros",
  2746. modulesForumDescription: "Módulo para descubrir y gestionar foros.",
  2747. modulesJobsLabel: "Trabajos",
  2748. modulesJobsDescription: "Modulo para descubrir y gestionar ofertas de trabajo.",
  2749. modulesProjectsLabel: "Proyectos",
  2750. modulesProjectsDescription: "Módulo para explorar, financiar y gestionar proyectos.",
  2751. modulesBankingLabel: "Banca",
  2752. modulesBankingDescription: "Módulo para conocer el valor real de ECOIN y distribuir una RBU utilizando la tesorería común.",
  2753. modulesFavoritesLabel: "Favoritos",
  2754. modulesFavoritesDescription: "Módulo para gestionar tu contenido favorito.",
  2755. fileTooLargeTitle: "Archivo demasiado grande",
  2756. fileTooLargeMessage: "El archivo supera el tamaño máximo permitido (50 MB). Por favor, selecciona un archivo más pequeño.",
  2757. goBack: "Volver",
  2758. directConnect: "Conexión Directa",
  2759. 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.",
  2760. peerHost: "IP / Nombre de host",
  2761. peerPort: "Puerto (por defecto: 8008)",
  2762. peerPublicKey: "Clave Pública (@...ed25519)",
  2763. connectAndFollow: "Conectar",
  2764. deviceSourceLabel: "Dispositivo",
  2765. modulesPresetTitle: "Configuraciones Comunes",
  2766. modulesPreset_minimal: "Mínimo",
  2767. modulesPreset_basic: "Básico",
  2768. modulesPreset_social: "Social",
  2769. modulesPreset_economy: "Economía",
  2770. modulesPreset_full: "Completo",
  2771. statsCarbonFootprintTitle: "Huella de Carbono",
  2772. statsCarbonFootprintNetwork: "Huella de carbono de la red",
  2773. statsCarbonFootprintYours: "Tu huella de carbono",
  2774. statsCarbonTombstone: "Huella del tombstoning",
  2775. feedSuccessMsg: "¡Feed publicado correctamente!",
  2776. dominantOpinionLabel: "Opinión predominante",
  2777. uploadMedia: "Subir contenido multimedia (max: 50MB)",
  2778. invitesUnfollow: "Dejar de seguir",
  2779. invitesFollow: "Seguir",
  2780. invitesUnfollowedInvites: "Redes no federadas",
  2781. invitesNoUnfollowed: "Sin redes no federadas.",
  2782. reportsWhyInappropriateLabel: "¿Por qué es inapropiado?",
  2783. blockchainContentDeleted: "Este contenido ha sido eliminado",
  2784. visitContent: "Visitar contenido",
  2785. bankEcoinHours: "Equivalencia ECOin en tiempo",
  2786. mapsLabel: "Mapas",
  2787. mapTitle: "Mapas",
  2788. mapDescription: "Explora y gestiona mapas offline en tu red.",
  2789. mapMineSectionTitle: "Tus Mapas",
  2790. mapCreateSectionTitle: "Crear Mapa",
  2791. mapUpdateSectionTitle: "Actualizar Mapa",
  2792. mapAllSectionTitle: "Mapas",
  2793. mapRecentSectionTitle: "Mapas Recientes",
  2794. mapFavoritesSectionTitle: "Favoritos",
  2795. mapFilterAll: "TODOS",
  2796. mapFilterMine: "MÍOS",
  2797. mapFilterRecent: "RECIENTES",
  2798. mapFilterFavorites: "FAVORITOS",
  2799. mapUploadButton: "Crear Mapa",
  2800. mapCreateButton: "Crear Mapa",
  2801. mapUpdateButton: "Actualizar",
  2802. mapDeleteButton: "Eliminar",
  2803. mapAddFavoriteButton: "Añadir favorito",
  2804. mapRemoveFavoriteButton: "Quitar favorito",
  2805. mapLatLabel: "Latitud",
  2806. mapLatPlaceholder: "ej. 40.4168",
  2807. mapLngLabel: "Longitud",
  2808. mapLngPlaceholder: "ej. -3.7038",
  2809. mapDescriptionLabel: "Descripción",
  2810. mapDescriptionPlaceholder: "Describe el mapa o ubicación...",
  2811. mapTypeLabel: "Tipo de mapa",
  2812. mapTypeSingle: "ÚNICO (solo ubicación inicial)",
  2813. mapTypeOpen: "ABIERTO (cualquiera añade marcadores)",
  2814. mapTypeClosed: "CERRADO (solo el creador añade marcadores)",
  2815. mapTagsLabel: "Etiquetas",
  2816. mapTagsPlaceholder: "Introduce etiquetas separadas por comas",
  2817. mapUrlLabel: "URL del mapa",
  2818. mapPickCoordLabel: "O selecciona una ubicación en la cuadrícula:",
  2819. mapMarkersLabel: "marcadores",
  2820. mapMarkersTitle: "Marcadores",
  2821. mapMarkerDefault: "Marcador",
  2822. mapMarkerLatLabel: "Latitud del marcador",
  2823. mapMarkerLngLabel: "Longitud del marcador",
  2824. mapMarkerLabelField: "Etiqueta del marcador",
  2825. mapMarkerLabelPlaceholder: "Describe este marcador...",
  2826. markerImageLabel: "Imagen del Marker",
  2827. mapAddMarkerTitle: "Añadir Marcador",
  2828. mapAddMarkerButton: "Añadir Marcador",
  2829. mapCleanMarkerButton: "Clean Marker",
  2830. mapApplyZoom: "Aplicar Zoom",
  2831. mapSearchPlaceholder: "Buscar descripción, etiquetas, autor...",
  2832. mapSearchButton: "Buscar",
  2833. mapClickToCreate: "Haz click en el mapa para seleccionar ubicación",
  2834. mapClickToAddMarker: "Haz click en el mapa para añadir un marcador",
  2835. mapUpdatedAt: "Actualizado",
  2836. mapNoMatch: "Ningún mapa coincide con tu búsqueda.",
  2837. noMaps: "No hay mapas disponibles.",
  2838. mapLocationTitle: "Ubicación",
  2839. mapVisitLabel: "Visitar mapa",
  2840. typeMap: "MAPAS",
  2841. typeMapMarker: "MARCADOR DE MAPA",
  2842. modulesMapLabel: "Mapas",
  2843. modulesMapDescription: "Módulo para gestionar y compartir mapas offline.",
  2844. padsTitle: "Pads",
  2845. padTitle: "Pad",
  2846. modulesPadsLabel: "Pads",
  2847. modulesPadsDescription: "Módulo para gestionar editores de texto colaborativos.",
  2848. padFilterAll: "TODOS",
  2849. padFilterMine: "MÍO",
  2850. padFilterRecent: "RECIENTE",
  2851. padFilterOpen: "ABIERTO",
  2852. padFilterClosed: "CERRADO",
  2853. padCreate: "Crear Pad",
  2854. padUpdate: "Actualizar Pad",
  2855. padDelete: "Eliminar Pad",
  2856. padTitleLabel: "Título",
  2857. padTitlePlaceholder: "Escribe el título del pad...",
  2858. padStatusLabel: "Estado",
  2859. padStatusOpen: "ABIERTO",
  2860. padStatusInviteOnly: "SOLO INVITADOS",
  2861. padStatusClosed: "CERRADO",
  2862. padDeadlineLabel: "Fecha límite",
  2863. padTagsLabel: "Etiquetas",
  2864. padTagsPlaceholder: "etiqueta1, etiqueta2, ...",
  2865. padMembersLabel: "Miembros",
  2866. padVisitPad: "Visitar Pad",
  2867. padShareUrl: "Compartir URL",
  2868. padCreated: "Creado",
  2869. padAuthor: "Autor",
  2870. padGenerateCode: "Generar Código",
  2871. padInviteCodeLabel: "Código de Invitación",
  2872. padInviteCodePlaceholder: "Introduce el código de invitación...",
  2873. padValidateInvite: "Validar",
  2874. padStartEditing: "¡EMPEZAR A EDITAR!",
  2875. padEditorPlaceholder: "Empieza a escribir...",
  2876. padSubmitEntry: "Enviar",
  2877. padNoEntries: "Sin entradas aún.",
  2878. padAllSectionTitle: "Todos los Pads",
  2879. padMineSectionTitle: "Mis Pads",
  2880. padRecentSectionTitle: "Pads Recientes",
  2881. padOpenSectionTitle: "Pads Abiertos",
  2882. padClosedSectionTitle: "Pads Cerrados",
  2883. padCreateSectionTitle: "Crear Nuevo Pad",
  2884. padUpdateSectionTitle: "Actualizar Pad",
  2885. padInviteGenerated: "Código de Invitación Generado",
  2886. typePad: "PAD",
  2887. padNew: "NUEVO",
  2888. padAddFavorite: "Añadir a Favoritos",
  2889. padRemoveFavorite: "Quitar de Favoritos",
  2890. padClose: "Cerrar Pad",
  2891. padBackToEditor: "Volver al editor",
  2892. padSearchPlaceholder: "Buscar pads...",
  2893. calendarsTitle: "Calendarios",
  2894. calendarTitle: "Calendario",
  2895. modulesCalendarsLabel: "Calendarios",
  2896. modulesCalendarsDescription: "Módulo para descubrir y gestionar calendarios.",
  2897. typeCalendar: "CALENDARIO",
  2898. calendarFilterAll: "TODOS",
  2899. calendarFilterMine: "MÍOs",
  2900. calendarFilterOpen: "ABIERTOS",
  2901. calendarFilterClosed: "CERRADOS",
  2902. calendarFilterRecent: "RECIENTES",
  2903. calendarFilterFavorites: "FAVORITOS",
  2904. calendarCreate: "Crear Calendario",
  2905. calendarUpdate: "Actualizar",
  2906. calendarDelete: "Eliminar",
  2907. calendarTitleLabel: "Título",
  2908. calendarTitlePlaceholder: "Título del calendario...",
  2909. calendarStatusLabel: "Estado",
  2910. calendarStatusOpen: "ABIERTO",
  2911. calendarStatusClosed: "CERRADO",
  2912. calendarDeadlineLabel: "Deadline",
  2913. calendarTagsLabel: "Etiquetas",
  2914. calendarTagsPlaceholder: "etiqueta1, etiqueta2...",
  2915. calendarParticipantsLabel: "Participantes",
  2916. calendarParticipantsCount: "Participantes",
  2917. calendarVisitCalendar: "Ver Calendario",
  2918. calendarCreated: "Creado",
  2919. calendarAuthor: "Autor",
  2920. calendarJoin: "Unirse al Calendario",
  2921. calendarJoined: "Unido",
  2922. calendarAddDate: "Añadir Fecha",
  2923. calendarAddNote: "Añadir Nota",
  2924. calendarDateLabel: "Fecha",
  2925. calendarDatePlaceholder: "Describe esta fecha...",
  2926. calendarNoteLabel: "Nota",
  2927. calendarNotePlaceholder: "Añadir una nota...",
  2928. calendarFirstDateLabel: "Fecha",
  2929. calendarFirstNoteLabel: "Notas",
  2930. calendarIntervalLabel: "Interval",
  2931. calendarIntervalWeekly: "Weekly",
  2932. calendarIntervalMonthly: "Monthly",
  2933. calendarIntervalYearly: "Yearly",
  2934. calendarFormDescription: "Descripción",
  2935. calendarNoDates: "No hay fechas añadidas.",
  2936. calendarNoNotes: "Sin notas.",
  2937. calendarsNoItems: "No se encontraron calendarios.",
  2938. calendarsDescription: "Descubre y gestiona calendarios en tu red.",
  2939. calendarMonthPrev: "\u2190 Anterior",
  2940. calendarMonthNext: "Siguiente \u2192",
  2941. calendarMonthLabel: "Fechas",
  2942. calendarsShareUrl: "URL para compartir",
  2943. calendarAllSectionTitle: "Calendarios",
  2944. calendarRecentSectionTitle: "Calendarios Recientes",
  2945. calendarFavoritesSectionTitle: "Favoritos",
  2946. calendarMineSectionTitle: "Tus Calendarios",
  2947. calendarOpenSectionTitle: "Calendarios Abiertos",
  2948. calendarClosedSectionTitle: "Calendarios Cerrados",
  2949. calendarCreateSectionTitle: "Crear Nuevo Calendario",
  2950. calendarUpdateSectionTitle: "Actualizar Calendario",
  2951. calendarAddFavorite: "Añadir a Favoritos",
  2952. calendarDeleteNote: "Delete",
  2953. calendarRemoveFavorite: "Quitar de Favoritos",
  2954. calendarSearchPlaceholder: "Buscar calendarios...",
  2955. calendarAddEntry: "Añadir Entrada",
  2956. calendarLeave: "Salir del Calendario",
  2957. statsCalendar: "Calendarios",
  2958. statsCalendarDate: "Fechas de Calendario",
  2959. statsCalendarNote: "Notas de Calendario",
  2960. modulesChatsLabel: "Chats",
  2961. modulesChatsDescription: "Módulo para descubrir y gestionar chats cifrados.",
  2962. typeChat: "CHAT",
  2963. typeChatMessage: "MENSAJE DE CHAT",
  2964. chatLabel: "CHATS",
  2965. chatMessageLabel: "MENSAJES DE CHAT",
  2966. chatsTitle: "Chats",
  2967. chatMineSectionTitle: "Your Chats",
  2968. chatRecentTitle: "Recent Chats",
  2969. chatFavoritesTitle: "Favoritos",
  2970. chatOpenTitle: "Open Chats",
  2971. chatClosedTitle: "Closed Chats",
  2972. chatDescription: "Descripción",
  2973. chatCategory: "Categoría",
  2974. chatStatus: "ESTADO",
  2975. chatFilterAll: "TODOS",
  2976. chatFilterMine: "MÍO",
  2977. chatFilterRecent: "RECIENTE",
  2978. chatFilterFavorites: "FAVORITOS",
  2979. chatFilterOpen: "ABIERTO",
  2980. chatFilterClosed: "CERRADO",
  2981. chatCreate: "Crear Chat",
  2982. chatUpdate: "Actualizar Chat",
  2983. chatDelete: "Eliminar Chat",
  2984. chatClose: "Cerrar Chat",
  2985. chatVisitChat: "VER CHAT",
  2986. chatUntitled: "Chat sin título",
  2987. chatNoItems: "No se encontraron chats.",
  2988. chatParticipants: "Participantes",
  2989. chatStartChatting: "¡EMPEZAR A CHATEAR!",
  2990. chatGenerateCode: "Generar Código",
  2991. chatShareUrl: "Compartir URL",
  2992. chatCreatedAt: "CREADO",
  2993. chatSearchPlaceholder: "Buscar chats...",
  2994. chatStatusOpen: "ABIERTO",
  2995. chatStatusInviteOnly: "SOLO INVITADOS",
  2996. chatStatusClosed: "CERRADO",
  2997. chatSendMessage: "Enviar",
  2998. chatMessagePlaceholder: "Escribe tu mensaje...",
  2999. chatNoMessages: "Sin mensajes aún.",
  3000. chatLeave: "Salir del Chat",
  3001. chatInviteCodeLabel: "Introduce el código de invitación",
  3002. chatJoinByInvite: "Unirse",
  3003. chatTitlePlaceholder: "Título del chat",
  3004. chatDescriptionPlaceholder: "Descripción del chat",
  3005. chatTagsPlaceholder: "etiqueta1, etiqueta2",
  3006. chatImageLabel: "Selecciona un archivo de imagen (.jpeg, .jpg, .png, .gif)",
  3007. chatInviteCode: "Código de Invitación",
  3008. chatAuthor: "Autor",
  3009. chatCreated: "Creado",
  3010. chatAddFavorite: "Añadir a Favoritos",
  3011. chatRemoveFavorite: "Quitar de Favoritos",
  3012. chatPM: "MP",
  3013. chatStatusLabel: "Estado",
  3014. chatCategoryLabel: "Categoría",
  3015. chatParticipantsLabel: "Participantes",
  3016. gamesTitle: "Juegos",
  3017. gamesDescription: "Descubre y juega algunos juegos.",
  3018. gamesFilterAll: "TODOS",
  3019. gamesPlayButton: "¡JUGAR!",
  3020. gamesBackToGames: "Volver a Juegos",
  3021. modulesGamesLabel: "Juegos",
  3022. modulesGamesDescription: "Módulo para descubrir y jugar algunos juegos.",
  3023. gamesCocolandTitle: "Cocoland",
  3024. gamesCocolandDesc: "Un coco con ojos saltando palmeras y coleccionando ECOins. ¿Hasta dónde puedes llegar?",
  3025. gamesTheFlowTitle: "ECOinflow",
  3026. gamesTheFlowDesc: "Conecta PUBs a habitantes mediante validadores, tiendas y acumuladores. ¡Sobrevive a la amenaza CBDC!",
  3027. gamesNeonInfiltratorTitle: "Neon Infiltrator",
  3028. gamesNeonInfiltratorDesc: "Infiltra la cuadricula, recolecta datos confidenciales, evade los drones de seguridad y escapa. ¿Cuantos niveles puedes superar?",
  3029. gamesSpaceInvadersTitle: "Space Invaders",
  3030. gamesSpaceInvadersDesc: "¡Detén la invasión alienígena! Destruye oleadas de invasores antes de que lleguen al suelo.",
  3031. gamesArkanoidTitle: "Arkanoid",
  3032. gamesArkanoidDesc: "Rompe todos los ladrillos con tu paleta y pelota. Un clásico desafío arcade.",
  3033. gamesPingPongTitle: "PingPong",
  3034. gamesPingPongDesc: "Ping-pong clásico contra una IA. El primero en llegar a 5 puntos gana.",
  3035. gamesOutrunTitle: "Outrun",
  3036. gamesOutrunDesc: "¡Corre contra el tiempo! Esquiva el tráfico y llega a la meta antes de que se acabe el tiempo.",
  3037. gamesAsteroidsTitle: "Asteroids",
  3038. gamesAsteroidsDesc: "Pilota tu nave por un campo de asteroides mortal. Dispárales antes de que te alcancen.",
  3039. gamesRockPaperScissorsTitle: "Piedra Papel Tijeras",
  3040. gamesRockPaperScissorsDesc: "Piedra, papel o tijera contra una IA. Gana el mejor de tres rondas.",
  3041. gamesTikTakToeTitle: "TikTakToe",
  3042. gamesTikTakToeDesc: "Tres en raya clásico contra la IA. Consigue tres en línea para ganar.",
  3043. gamesFlipFlopTitle: "FlipFlop",
  3044. gamesFlipFlopDesc: "Lanza una moneda y apuesta cara o cruz. ¿Cuánta suerte tienes?",
  3045. games8BallTitle: "8Ball Pool",
  3046. games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
  3047. gamesArtilleryTitle: "Artillery",
  3048. gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
  3049. gamesLabyrinthTitle: "Labyrinth",
  3050. gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
  3051. gamesCocomanTitle: "Cocoman",
  3052. gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.",
  3053. gamesTetrisTitle: "Tetris",
  3054. gamesAudioPendulumTitle: "Audio Pendulum",
  3055. gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
  3056. gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
  3057. gamesQuakeTitle: "Quake Arena",
  3058. gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
  3059. gamesFilterScoring: "SCORING",
  3060. gamesHallOfFame: "Hall of Fame",
  3061. gamesHallPlayer: "Player",
  3062. gamesHallScore: "Score",
  3063. gamesNoScores: "No scores yet.",
  3064. chatAccessDenied: "No tienes acceso a este chat. Solicita una invitación para acceder al contenido.",
  3065. padAccessDenied: "No tienes acceso a este pad. Solicita una invitación para acceder al contenido.",
  3066. contentAccessDenied: "No tienes acceso a este contenido.",
  3067. blockAccessRestricted: "Acceso restringido",
  3068. tribeContentAccessDenied: "Acceso Denegado",
  3069. tribeContentAccessDeniedMsg: "Este contenido pertenece a una tribu. Debes ser miembro para acceder.",
  3070. tribeViewTribes: "Ver Tribus",
  3071. torrentsTitle: "Torrents",
  3072. torrentsDescription: "Explora y gestiona torrents en tu red.",
  3073. torrentAllSectionTitle: "Torrents",
  3074. torrentMineSectionTitle: "Tus Torrents",
  3075. torrentRecentSectionTitle: "Torrents Recientes",
  3076. torrentTopSectionTitle: "Torrents Destacados",
  3077. torrentFavoritesSectionTitle: "Favoritos",
  3078. torrentFilterAll: "TODOS",
  3079. torrentFilterMine: "MÍOS",
  3080. torrentFilterRecent: "RECIENTES",
  3081. torrentFilterTop: "DESTACADOS",
  3082. torrentFilterFavorites: "FAVORITOS",
  3083. torrentCreateSectionTitle: "Subir Torrent",
  3084. torrentUpdateSectionTitle: "Actualizar Torrent",
  3085. torrentCreateButton: "Subir Torrent",
  3086. torrentUpdateButton: "Actualizar",
  3087. torrentDeleteButton: "Eliminar",
  3088. torrentAddFavoriteButton: "Añadir Favorito",
  3089. torrentRemoveFavoriteButton: "Quitar Favorito",
  3090. torrentFileLabel: "Seleccionar archivo torrent (.torrent)",
  3091. torrentTitleLabel: "Título",
  3092. torrentTitlePlaceholder: "Título",
  3093. torrentDescriptionLabel: "Descripción",
  3094. torrentDescriptionPlaceholder: "Descripción",
  3095. torrentTagsLabel: "Etiquetas",
  3096. torrentTagsPlaceholder: "Introduce etiquetas separadas por comas",
  3097. torrentSizeLabel: "Tamaño",
  3098. torrentDownloadButton: "DOWNLOAD IT!",
  3099. torrentNoFile: "Sin archivo torrent",
  3100. noTorrents: "No se encontraron torrents.",
  3101. torrentSearchPlaceholder: "Buscar título, etiquetas, autor...",
  3102. torrentSearchButton: "Buscar",
  3103. torrentSortRecent: "Más recientes",
  3104. torrentSortOldest: "Más antiguos",
  3105. torrentSortTop: "Más votados",
  3106. torrentNoMatch: "No se encontraron torrents coincidentes.",
  3107. torrentMessageAuthorButton: "Enviar Mensaje al Autor",
  3108. torrentUpdatedAt: "Actualizado",
  3109. statsTorrent: "Torrents",
  3110. typeTorrent: "TORRENTS",
  3111. modulesTorrentsLabel: "Torrents",
  3112. modulesTorrentsDescription: "Módulo para descubrir y gestionar torrents.",
  3113. favoritesFilterTorrents: "TORRENTS",
  3114. tribeSectionTorrents: "TORRENTS",
  3115. tribeCreateTorrent: "Subir Torrent",
  3116. tribeMediaTypeTorrent: "Torrent",
  3117. settingsWishTitle: "Deseo",
  3118. settingsWishDesc: "Configura el deseo de tu Avatar. Determina cómo accedes a todo el contenido y tu experiencia en la red Oasis.",
  3119. settingsWishWhole: "Multiverse",
  3120. settingsWishMutuals: "Only mutual-support",
  3121. settingsPmVisibilityTitle: "Mensajes Privados",
  3122. settingsPmVisibilityDesc: "Configura el nivel de exposición a mensajes privados que deseas tener en la red.",
  3123. settingsPmVisibilityWhole: "Multiverse",
  3124. settingsPmVisibilityMutuals: "Only mutual-support",
  3125. pmMutualNotice: "El envío es una barrera de UX. La recepción es un filtro de atención (el cifrado ya está replicado).",
  3126. pmBlockedNonMutual: "Solo puedes enviar mensajes privados a habitantes con apoyo mutuo.",
  3127. inhabitantsPendingFollowsTitle: "Solicitudes de apoyo pendientes",
  3128. inhabitantsPendingAccept: "Aceptar",
  3129. inhabitantsPendingReject: "Rechazar",
  3130. bxEncrypted: "CIFRADO",
  3131. bxEncryptedHexLabel: "Texto cifrado (vista previa)",
  3132. tribeSectionGovernance: "GOBIERNO",
  3133. tribeSubStatusPublic: "PÚBLICA",
  3134. tribeSubStatusPrivate: "PRIVADA",
  3135. tribeSubInheritedPrivate: "PRIVADA (heredada de la tribu principal)",
  3136. tribePadInviteRequired: "No tienes acceso al pad. Pide una invitación para acceder al contenido.",
  3137. tribeChatInviteRequired: "No tienes acceso al chat. Pide una invitación para acceder al contenido.",
  3138. tribeGovernanceDesc: "Gobierno interno de esta tribu.",
  3139. tribeGovernanceNoGov: "Sin gobierno activo",
  3140. tribeGovernanceNoGovDesc: "Esta tribu aún no tiene gobierno. Propón candidaturas para iniciar el proceso.",
  3141. tribeGovernanceAlreadyPublished: "Esta tribu ya tiene una candidatura abierta en el ciclo actual del parlamento global.",
  3142. tribeGovernanceProposeInternal: "Proponer candidatura interna",
  3143. tribeGovernanceInternalCandidatures: "Candidaturas internas",
  3144. tribeGovernanceNoCandidatures: "Sin candidaturas abiertas.",
  3145. tribeGovernanceAddRule: "Añadir regla",
  3146. tribeGovernanceNoRules: "Sin reglas todavía.",
  3147. tribeGovernanceNoLeaders: "Sin líderes elegidos todavía.",
  3148. tribeGovernanceComingSoon: "Próximamente en el módulo de gobierno de esta tribu."
  3149. }
  3150. };