| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078 |
- const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
- module.exports = {
- en: {
- languageName: "English",
- extended: "Multiverse",
- extendedDescription: [
- "When you support someone you may download posts from the inhabitants they support, and those posts show up here, sorted by recency.",
- ],
- popular: "Highlights",
- popularDescription: [
- "Posts from inhabitants in your network, ",
- strong("sorted by spreads"),
- ". Select the period of time, to get a list.",
- ],
- day: "DAY",
- week: "WEEK",
- month: "MONTH",
- year: "YEAR",
- latest: "Latest",
- latestDescription: [
- strong("Posts"),
- " from yourself and inhabitants you support, sorted by recency.",
- ],
- topics: "Topics",
- topicsDescription: [
- strong("Topics"),
- " from yourself and inhabitants you support, sorted by recency.",
- ],
- summaries: "Summaries",
- summariesDescription: [
- strong("Topics that have comments"),
- " from yourself and inhabitants you support, sorted by recency.",
- ],
- threads: "Threads",
- threadsDescription: [
- strong("Posts that have comments"),
- " from inhabitants you support (included from multiverse), sorted by recency.",
- ],
- profile: "Avatar",
- inhabitants: "Inhabitants",
- manualMode: "Manual Mode",
- mentions: "Mentions",
- mentionsDescription: [
- strong("Posts that @mention you"),
- ", sorted by recency.",
- ],
- nextPage: "Next",
- previousPage: "Previous",
- noMentions: "You haven't received @mentions, yet.",
- private: "Inbox",
- privateDescription: "View and manage your private messages.",
- privateInbox: "INBOX",
- privateSent: "SENT",
- privateFrom: "From",
- privateTo: "To",
- privateDate: "Date",
- privateDelete: "Delete",
- pmCreateButton: "Write a PM",
- pmReply: "Reply",
- pmReplies: "replies",
- pmNew: "new",
- pmMarkRead: "Mark as read",
- inReplyTo: "IN REPLY TO",
- pmPreview: "Preview",
- pmPreviewTitle: "Message preview",
- noPrivateMessages: "You haven't received any private message, yet.",
- peers: "Peers",
- privateDescription: ["Private messages are ",strong("encrypted for your public key")," and have a maximum of 7 recipients."],
- search: "Search",
- searchDescription: "Description",
- imageSearch: "Image Search",
- searchPlaceholder: "Seek for @inhabitants, #tags and keywords...",
- settings: "Settings",
- continueReading: "Continue reading",
- moreComments: "more comment",
- readThread: "read the rest of the thread",
- pixeliaTitle: 'Pixelia',
- pixeliaDescription: 'Draw pixels on the grid and collaborARTe with others in your network.',
- coordLabel: 'Coordinate (e.g., A3)',
- coordPlaceholder: 'Enter coordinate',
- contributorsTitle: "Contributors",
- pixeliaBy: "by",
- colorLabel: 'Pick a color',
- paintButton: 'Paint it!',
- invalidCoordinate: 'Incorrect coordinate',
- goToMuralButton: "View Mural",
- totalPixels: 'Total Pixels',
- modules: "Modules",
- modulesViewTitle: "Modules",
- modulesViewDescription: "Set your environment by enabling or disabling modules.",
- inbox: "Inbox",
- multiverse: "Multiverse",
- popularLabel: "Highlights",
- topicsLabel: "Topics",
- latestLabel: "Latest",
- summariesLabel: "Summaries",
- threadsLabel: "Threads",
- multiverseLabel: "Multiverse",
- inboxLabel: "Inbox",
- invitesLabel: "Invites",
- walletLabel: "Wallet",
- legacyLabel: "Keys",
- cipherLabel: "Crypter",
- bookmarksLabel: "Bookmarks",
- videosLabel: "Videos",
- torrentsLabel: "Torrents",
- docsLabel: "Documents",
- audiosLabel: "Audios",
- tagsLabel: "Tags",
- imagesLabel: "Images",
- inhabitantsLabel: "Inhabitants",
- trendingLabel: "Trending",
- eventsLabel: "Events",
- tasksLabel: "Tasks",
- transfersTitle: "Transfers",
- marketTitle: "Market",
- opinionsTitle: "Opinions",
- saveSettings: "Save configuration",
- apply: "Apply",
- menuPersonal: "Personal",
- menuContent: "Content",
- menuGovernance: "Governance",
- menuOffice: "Office",
- menuMultiverse: "Multiverse",
- menuNetwork: "Network",
- menuCreative: "Creative",
- menuEconomy: "Economy",
- menuMedia: "Media",
- menuTools: "Tools",
- comment: "Comment",
- subtopic: "Subtopic",
- json: "JSON",
- createdAt: "Created At",
- createdBy: "by",
- unfollow: "Unsupport",
- follow: "Support",
- block: "Block",
- unblock: "Unblock",
- newerPosts: "Newer posts",
- olderPosts: "Older posts",
- feedRangeEmpty: "The given range is empty for this feed. Try viewing the ",
- seeFullFeed: "full feed",
- feedEmpty: "The Oasis network has never seen posts from this account.",
- beginningOfFeed: "This is the beginning of the feed",
- noNewerPosts: "No newer posts have been received yet.",
- relationshipNotFollowing: "You are not supported",
- relationshipTheyFollow: "Supports you",
- relationshipMutuals: "Mutual support",
- relationshipFollowing: "You are supporting",
- relationshipYou: "You",
- relationshipBlocking: "You are blocking",
- relationshipBlockedBy: "You are blocked",
- relationshipMutualBlock: "Mutual block",
- relationshipNone: "You are not supporting",
- relationshipConflict: "Conflict",
- relationshipBlockingPost: "Blocked post",
- viewLikes: "View spreads",
- spreadedDescription: "List of posts spread by the inhabitant.",
- totalspreads: "Total spreads",
- attachFiles: "Attach files",
- preview: "Preview",
- publish: "Write",
- contentWarningPlaceholder: "Add a subject to the post (optional)",
- privateWarningPlaceholder: "Add inhabitants to send a private post (optional)",
- publishWarningPlaceholder: "...",
- publishCustomDescription: [
- "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
- ],
- commentWarning: [
- "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
- ],
- commentPublic: "public",
- commentPrivate: "private",
- commentLabel: ({ publicOrPrivate, markdownUrl }) => [
- ],
- publishLabel: ({ markdownUrl, linkTarget }) => [
- "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
- ],
- replyLabel: ({ markdownUrl }) => [
- "REMEMBER: Due to blockchain technology, once a post is published it cannot be edited or deleted.",
- ],
- publishCustomInfo: ({ href }) => [
- "If you have experience, you can also ",
- a({ href }, "write an advanced post"),
- ".",
- ],
- publishBasicInfo: ({ href }) => [
- "If you have not experience, you should ",
- a({ href }, "write a post"),
- ".",
- ],
- publishCustom: "Write advanced post",
- subtopicLabel: "Create a subtopic of this post",
- messagePreview: "Post Preview",
- mentionsMatching: "Matching Mentions",
- mentionsName: "Name",
- mentionsRelationship: "Relationship",
- updateit: "GET UPDATES!",
- updateBannerText: "A new version of Oasis is available.",
- updateBannerAction: "Update now →",
- info: "Info",
- settingsIntro: ({ version }) => [
- `[SNH] ꖒ OASIS [ v.${version} ]`,
- ],
- timeAgo: "ago",
- sendTime: "about ",
- theme: "Theme",
- legacy: "Keys",
- legacyTitle: "Keys",
- legacyDescription: "Manage your secret (private key) quickly and safely.",
- legacyExportButton: "Export",
- legacyImportButton: "Import",
- ssbLogStream: "Blokchain",
- ssbLogStreamDescription: "Configure the message limit for Blockchain streams.",
- saveSettings: "Save settings",
- exportTitle: "Export data",
- exportDescription: "Set password (min 32 characters long) to encrypt your key",
- exportDataTitle: "Backup",
- exportDataDescription: "Download your data (secret key excluded!)",
- exportDataButton: "Download database",
- pubWallet: "PUB Wallet",
- pubWalletDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
- pubWalletConfiguration: "Save configuration",
- importTitle: "Import data",
- importDescription: "Import your encrypted secret (private key) to enable your avatar",
- importAttach: "Attach encrypted file (.enc)",
- passwordLengthInfo: "Password must be at least 32 characters long.",
- passwordImport: "Write your password to decrypt data that will be saved at your system home (name: secret)",
- randomPassword: "Random password",
- exportPasswordPlaceholder: "Use lowercase, uppercase, numbers & symbols",
- fileInfo: "Your encrypted secret key will be saved at your system home (name: oasis.enc)",
- themeIntro:
- "Choose a theme.",
- setTheme: "Set theme",
- language: "Language",
- languageDescription:
- "If you'd like to use another language, select it here.",
- setLanguage: "Set language",
- status: "Status",
- peerConnections: "Peers",
- peerConnectionsIntro: "Manage all your connections with other peers.",
- online: "Online",
- offline: "Offline",
- discovered: 'Discovered',
- unknown: 'Unknown',
- pub: 'PUB',
- supported: "Supported",
- recommended: "Recommended",
- blocked: "Blocked",
- noConnections: "No peers connected.",
- noDiscovered: "No peers discovered.",
- noSupportedConnections: "No peers supported.",
- noBlockedConnections: "No peers blocked.",
- noRecommendedConnections: "No peers recommended.",
- connectionActionIntro:
- "",
- startNetworking: "Start networking",
- stopNetworking: "Stop networking",
- restartNetworking: "Restart networking",
- sync: "Sync network",
- indexes: "Indexes",
- indexesDescription:
- "Rebuilding your indexes is safe, and may fix some types of bugs.",
- homePageTitle: "Home",
- homePageDescription: "Select which module you want as your home page.",
- saveHomePage: "Set home",
- invites: "Invites",
- invitesTitle: "Invites",
- invitesInvites: "Invitations",
- invitesDescription: "Manage and apply invite codes in your network.",
- invitesTribesTitle: "Tribes",
- invitesTribeInviteCodePlaceholder: "Enter tribe invite code",
- invitesTribeJoinButton: "Join Tribe",
- invitesPubsTitle: "PUBs",
- invitesPubInviteCodePlaceholder: "Enter PUB invite code",
- invitesAcceptInvite: "Join PUB",
- invitesAcceptedInvites: "Federated Networks",
- invitesNoInvites: "No invitations accepted, yet.",
- invitesUnfollow: "Unfollow",
- invitesFollow: "Follow",
- invitesUnfollowedInvites: "Unfederated Networks",
- invitesNoFederatedPubs: "No federated networks.",
- invitesNoUnfollowed: "No unfederated networks.",
- invitesUnreachablePubs: "Unreachable Networks",
- invitesNoUnreachablePubs: "No unreachable networks.",
- currentlyUnreachable: "ERROR!",
- errorDetails: "Error Details",
- genericError: "An error occurred.",
- panicMode: "Panic Mode!",
- encryptData: "Set password (min 32 characters long) to encrypt your blockchain",
- decryptData: "Enter password to decrypt your blockchain",
- panicModeDescription: "Encrypt/Decrypt or DELETE your blockchain",
- removeDataDescription: "WARNING: This process cannot be undone.",
- encryptPanicButton: "Encrypt blockchain",
- decryptPanicButton: "Decrypt blockchain",
- removePanicButton: "DELETE ALL YOUR DATA!",
- searchTitle: "Search",
- searchDescriptionLabel: "Search for content in your network.",
- searchLanguagesLabel: "Languages",
- searchSkillsLabel: "Skills",
- searchPlaceholder:"Search for content...",
- searchSubmit:"Search!",
- tribeLocationLabel:"Location",
- tribeModeLabel:"Invite Mode",
- tribeMembersCount:"Members Count",
- searchDateLabel:"Date",
- searchLocationLabel:"Location",
- searchPriceLabel:"Price",
- searchUrlLabel:"URL",
- searchCategoryLabel:"Category",
- searchStartLabel:"Start Time",
- searchEndLabel:"End Time",
- searchPriorityLabel:"Priority",
- searchStatusLabel:"Status",
- statusLabel:"Status",
- totalVotesLabel:"Total Votes",
- votesLabel:"Votes",
- noResultsFound:"No results found.",
- author:"Author",
- createdAtLabel:"Created at",
- hashtagDescription:"Explore the content associated with this hashtag",
- tribeDescriptionLabel:"Description",
- votesOption:"Vote Options",
- voteYesLabel:"Yes",
- voteNoLabel:"No",
- allTypesLabel: "UNLIMITED",
- ABSTENTIONLabel:"ABSTENTION",
- YESLabel:"YES",
- NOLabel:"NO",
- FOLLOW_MAJORITYLabel: "FOLLOW MAJORITY",
- CONFUSEDLabel: "CONFUSED",
- NOT_INTERESTEDLabel: "NOT INTERESTED",
- voteOptionYes:"Yes",
- voteOptionNo:"No",
- voteOptionAbstention:"Abstention",
- StatusLabel:"Status",
- votesOptionYesLabel:"Yes",
- votesOptionNoLabel:"No",
- votesOptionAbstentionLabel:"Abstention",
- votesQuestionLabel:"Question",
- votesCreatedByLabel:"Created by",
- voteStatusOpen:"OPEN",
- voteStatusClosed:"CLOSED",
- imageSearchLabel: "Enter words to search for images labelled with them.",
- commentDescription: ({ parentUrl }) => [
- " commented on ",
- a({ href: parentUrl }, " thread"),
- ],
- commentTitle: ({ authorName }) => [`Comment on @${authorName}'s post`],
- subtopicDescription: ({ parentUrl }) => [
- " created a subtopic from ",
- a({ href: parentUrl }, " a post"),
- ],
- subtopicTitle: ({ authorName }) => [`Subtopic on @${authorName}'s post`],
- mysteryDescription: "posted a mysterious post",
- oasisDescription: "OASIS Project Network",
- searchSubmit: "Let's Search...",
- hashtagDescription: "Posts tagged with this hashtag.",
- postLabel: "POSTS",
- aboutLabel: "INHABITANTS",
- feedLabel: "FEEDS",
- votesLabel: "VOTATIONS",
- reportLabel: "REPORTS",
- imageLabel: "IMAGES",
- videoLabel: "VIDEOS",
- audioLabel: "AUDIOS",
- documentLabel: "DOCUMENTS",
- pdfFallbackLabel: "PDF Document",
- eventLabel: "EVENTS",
- taskLabel: "TASKS",
- transferLabel: "TRANSFERS",
- curriculumLabel: "CURRICULUM",
- bookmarkLabel: "BOOKMARKS",
- tribeLabel: "TRIBES",
- marketLabel: "MARKET",
- shopLabel: "SHOPS",
- shopProductLabel: "SHOP PRODUCTS",
- mapLabel: "MAPS",
- jobLabel: "JOBS",
- forumLabel: "FORUMS",
- projectLabel: "PROJECTS",
- bankWalletLabel: "WALLETS",
- bankClaimLabel: "UBI CLAIMS",
- voteLabel: "VOTES",
- contactLabel: "CONTACTS",
- pubLabel: "PUBS",
- cvLabel: "CVs",
- submit: "Submit",
- subjectLabel: "Subject",
- editProfile: "Edit Avatar",
- editProfileDescription:
- "",
- profileName: "Name",
- profileImage: "Avatar Image",
- profileDescription: "Description",
- hashtagDescription:
- "Posts from inhabitants in your network that reference this #hashtag, sorted by recency.",
- rebuildName: "Rebuild database",
- wallet: "Wallet",
- walletAddress: "Address",
- walletAmount: "Amount",
- walletAddressLine: ({ address }) => `Address: ${address}`,
- walletAmountLine: ({ amount }) => `Amount: ${amount} ECO`,
- walletBack: "Back",
- walletBalanceTitle: "Balance",
- walletWalletSendTitle: "Send",
- walletReceiveTitle: "Receive",
- walletHistoryTitle: "History",
- walletBalanceLine: ({ balance }) => `${balance} ECO`,
- walletCnfrs: "Cnfrs",
- walletConfirm: "Confirm",
- walletDescription: "Manage your digital assets, including sending and receiving ECOin, viewing your balance, and accessing your transaction history.",
- walletDate: "Date",
- walletFee: "Fee (The higher the fee, the faster your transaction will be processed)",
- walletFeeLine: ({ fee }) => `Fee: ECO ${fee}`,
- walletHistory: "History",
- walletReceive: "Receive",
- walletReset: "Reset",
- walletSend: "Send",
- walletStatus: "Status",
- walletDisconnected: [
- "ECOin ",
- strong("wallet disconnected"),
- ". Check ",
- a({ href: '/settings' }, "your settings"),
- " or connection status.",
- ],
- walletSentToLine: ({ destination, amount }) => `Sent ECO ${amount} to ${destination}`,
- walletSettingsTitle: "Wallet",
- walletSettingsDescription: "Integrate Oasis with your ECOin wallet.",
- walletSettingsDocLink: "ECOin installation guide",
- walletStatusMessages: {
- invalid_amount: "Invalid amount",
- invalid_dest: "Invalid destination address",
- invalid_fee: "Invalid fee",
- validation_errors: "Validation errors",
- send_tx_success: "Transaction successful",
- },
- walletTitle: "Wallet",
- walletTotalCostLine: ({ totalCost }) => `Total cost: ECO ${totalCost}`,
- walletTransactionId: "Transaction ID",
- walletTxId: "Tx ID",
- walletType: "Type",
- walletUser: "Username",
- walletPass: "Password",
- walletConfiguration: "Set wallet",
- cipher: "Crypter",
- cipherTitle: "Crypter",
- cipherDescription: "Encrypt and decrypt your text symmetrically (using a shared password).",
- randomPassword: "Random Password",
- cipherEncryptTitle: "Encrypt Text",
- cipherEncryptDescription: "Enter text to encrypt",
- cipherTextLabel: "Text to Encrypt",
- cipherTextPlaceholder: "Enter text to encrypt...",
- cipherPasswordLabel: "Set password (min 32 characters long) to encrypt your text",
- cipherPasswordDecryptLabel: "Set password (min 32 characters long) to decrypt your text",
- cipherPasswordPlaceholder: "Enter a password...",
- cipherEncryptButton: "Encrypt",
- cipherDecryptTitle: "Decrypt Text",
- cipherDecryptDescription: "Enter text to decrypt",
- cipherEncryptedMessageLabel: "Encrypted Text",
- cipherDecryptedMessageLabel: "Decrypted Text",
- cipherPasswordUsedLabel: "Password used to encrypt (keep it!)",
- cipherEncryptedTextPlaceholder: "Enter the encrypted text...",
- cipherIvLabel: "IV",
- cipherIvPlaceholder: "Enter the initialization vector...",
- cipherDecryptButton: "Decrypt",
- password: "Password",
- text: "Text",
- encryptedText: "Encrypted Text",
- iv: "Initialization Vector (IV)",
- encryptTitle: "Encrypt your text",
- encryptDescription: "Enter the text you want to encrypt and provide a password.",
- encryptButton: "Encrypt",
- decryptTitle: "Decrypt your text",
- decryptDescription: "Enter the encrypted text and provide the same password used for encryption.",
- decryptButton: "Decrypt",
- passwordLengthError: "Password must be at least 32 characters long.",
- missingFieldsError: "Text, password or IV not provided.",
- encryptionError: "Error encrypting text.",
- decryptionError: "Error decrypting text.",
- bookmarkTitle: "Bookmarks",
- bookmarkDescription: "Discover and manage bookmarks in your network.",
- bookmarkAllSectionTitle: "Bookmarks",
- bookmarkMineSectionTitle: "Your Bookmarks",
- bookmarkRecentSectionTitle: "Recent Bookmarks",
- bookmarkTopSectionTitle: "Top Bookmarks",
- bookmarkFavoritesSectionTitle: "Favorites",
- bookmarkCreateSectionTitle: "Create Bookmark",
- bookmarkUpdateSectionTitle: "Update Bookmark",
- bookmarkFilterAll: "ALL",
- bookmarkFilterMine: "MINE",
- bookmarkFilterTop: "TOP",
- bookmarkFilterFavorites: "FAVORITES",
- bookmarkFilterRecent: "RECENT",
- bookmarkCreateButton: "Create Bookmark",
- bookmarkUpdateButton: "Update",
- bookmarkDeleteButton: "Delete",
- bookmarkAddFavoriteButton: "Add favorite",
- bookmarkRemoveFavoriteButton: "Remove favorite",
- bookmarkUrlLabel: "Link",
- bookmarkUrlPlaceholder: "https://example.com",
- bookmarkDescriptionLabel: "Description",
- bookmarkDescriptionPlaceholder: "Optional",
- bookmarkTagsLabel: "Tags",
- bookmarkTagsPlaceholder: "Enter tags separated by commas",
- bookmarkCategoryLabel: "Category",
- bookmarkCategoryPlaceholder: "Optional",
- bookmarkLastVisitLabel: "Last Visit",
- bookmarkSearchPlaceholder: "Search URL, tags, category, author...",
- bookmarkSortRecent: "Most recent",
- bookmarkSortOldest: "Oldest",
- bookmarkSortTop: "Most voted",
- bookmarkSearchButton: "Search",
- bookmarkUpdatedAt: "Updated",
- bookmarkNoMatch: "No bookmarks match your search.",
- noBookmarks: "No bookmarks available.",
- noUrl: "No link",
- noCategory: "No category",
- noLastVisit: "No last visit",
- videoTitle: "Videos",
- videoDescription: "Explore and manage video content in your network.",
- videoPluginTitle: "Title",
- videoPluginDescription: "Description",
- videoMineSectionTitle: "Your Videos",
- videoCreateSectionTitle: "Upload Video",
- videoUpdateSectionTitle: "Update Video",
- videoAllSectionTitle: "Videos",
- videoRecentSectionTitle: "Recent Videos",
- videoTopSectionTitle: "Top Videos",
- videoFavoritesSectionTitle: "Favorites",
- videoFilterAll: "ALL",
- videoFilterMine: "MINE",
- videoFilterRecent: "RECENT",
- videoFilterTop: "TOP",
- videoFilterFavorites: "FAVORITES",
- videoCreateButton: "Upload Video",
- videoUpdateButton: "Update",
- videoDeleteButton: "Delete",
- videoAddFavoriteButton: "Add favorite",
- videoRemoveFavoriteButton: "Remove favorite",
- videoFileLabel: "Select a video file (.mp4, .webm, .ogv, .mov)",
- videoTagsLabel: "Tags",
- videoTagsPlaceholder: "Enter tags separated by commas",
- videoTitleLabel: "Title",
- videoTitlePlaceholder: "Optional",
- videoDescriptionLabel: "Description",
- videoDescriptionPlaceholder: "Optional",
- videoNoFile: "No video file provided",
- noVideos: "No videos available.",
- videoSearchPlaceholder: "Search title, tags, author...",
- videoSortRecent: "Most recent",
- videoSortOldest: "Oldest",
- videoSortTop: "Most voted",
- videoSearchButton: "Search",
- videoMessageAuthorButton: "PM",
- videoUpdatedAt: "Updated",
- videoNoMatch: "No videos match your search.",
- documentTitle: "Documents",
- documentDescription: "Discover and manage documents in your network.",
- documentAllSectionTitle: "Documents",
- documentMineSectionTitle: "Your Documents",
- documentRecentSectionTitle: "Recent Documents",
- documentTopSectionTitle: "Top Documents",
- documentFavoritesSectionTitle: "Favorites",
- documentCreateSectionTitle: "Upload Document",
- documentUpdateSectionTitle: "Edit Document",
- documentFilterAll: "ALL",
- documentFilterMine: "MINE",
- documentFilterRecent: "RECENT",
- documentFilterTop: "TOP",
- documentFilterFavorites: "FAVORITES",
- documentCreateButton: "Upload Document",
- documentUpdateButton: "Update",
- documentDeleteButton: "Delete",
- documentAddFavoriteButton: "Add favorite",
- documentRemoveFavoriteButton: "Remove from favorites",
- documentMessageAuthorButton: "PM",
- documentFileLabel: "Upload Document (.pdf)",
- documentTagsLabel: "Tags",
- documentTagsPlaceholder: "Enter tags separated by commas",
- documentTitleLabel: "Title",
- documentTitlePlaceholder: "Optional",
- documentDescriptionLabel: "Description",
- documentDescriptionPlaceholder: "Optional",
- documentNoFile: "No file.",
- noDocuments: "No documents available.",
- documentSearchPlaceholder: "Search title, tags, description, author...",
- documentSortRecent: "Most recent",
- documentSortOldest: "Oldest",
- documentSortTop: "Most voted",
- documentSearchButton: "Search",
- documentNoMatch: "No documents match your search.",
- documentUpdatedAt: "Updated",
- audioTitle: "Audios",
- audioDescription: "Explore and manage audio content in your network.",
- audioPluginTitle: "Title",
- audioPluginDescription: "Description",
- audioMineSectionTitle: "Your Audios",
- audioCreateSectionTitle: "Upload Audio",
- audioUpdateSectionTitle: "Update Audio",
- audioAllSectionTitle: "Audios",
- audioRecentSectionTitle: "Recent Audios",
- audioTopSectionTitle: "Top Audios",
- audioFilterAll: "ALL",
- audioFilterMine: "MINE",
- audioFilterRecent: "RECENT",
- audioFilterTop: "TOP",
- audioCreateButton: "Upload Audio",
- audioUpdateButton: "Update",
- audioDeleteButton: "Delete",
- audioAddFavoriteButton: "Add favorite",
- audioRemoveFavoriteButton: "Remove favorite",
- audioFileLabel: "Select an audio file (.mp3, .wav, .ogg)",
- audioTagsLabel: "Tags",
- audioTagsPlaceholder: "Enter tags separated by commas",
- audioTitleLabel: "Title",
- audioTitlePlaceholder: "Optional",
- audioDescriptionLabel: "Description",
- audioDescriptionPlaceholder: "Optional",
- audioNoFile: "No audio file provided",
- noAudios: "No audios available.",
- audioSearchPlaceholder: "Search title, tags, author...",
- audioSortRecent: "Most recent",
- audioSortOldest: "Oldest",
- audioSortTop: "Most voted",
- audioSearchButton: "Search",
- audioMessageAuthorButton: "PM",
- audioUpdatedAt: "Updated",
- audioNoMatch: "No audios match your search.",
- audioFavoritesSectionTitle: "Favorites",
- audioFilterFavorites: "FAVORITES",
- favoritesTitle: "Favorites",
- favoritesDescription: "All your favorited media in one place.",
- favoritesFilterAll: "ALL",
- favoritesFilterRecent: "RECENT",
- favoritesFilterAudios: "AUDIOS",
- favoritesFilterBookmarks: "BOOKMARKS",
- favoritesFilterDocuments: "DOCUMENTS",
- favoritesFilterImages: "IMAGES",
- favoritesFilterMaps: "MAPS",
- favoritesFilterPads: "PADS",
- favoritesFilterChats: "CHATS",
- favoritesFilterCalendars: "CALENDARS",
- favoritesFilterVideos: "VIDEOS",
- favoritesRemoveButton: "Remove from favorites",
- favoritesNoItems: "No favorites yet.",
- yourContacts: "Your Contacts",
- allInhabitants: "Inhabitants",
- allCVs: "All CVs",
- discoverPeople: "Discover inhabitants in your network.",
- allInhabitantsButton: "ALL",
- contactsButton: "SUPPORTS",
- CVsButton: "CVs",
- matchSkills: "Match Skills",
- matchSkillsButton: "MATCH SKILLS",
- suggestedButton: "SUGGESTED",
- searchInhabitantsPlaceholder: "FILTER inhabitants BY NAME …",
- filterLocation: "FILTER inhabitants BY LOCATION …",
- filterLanguage: "FILTER inhabitants BY LANGUAGE …",
- filterSkills: "FILTER inhabitants BY SKILLS …",
- applyFilters: "Apply Filters",
- locationLabel: "Location",
- languagesLabel: "Languages",
- skillsLabel: "Skills",
- commonSkills: "Common Skills",
- mutualFollowers: "Mutual Followers",
- latestInteractions: "Latest Interactions",
- viewAvatar: "View Avatar",
- viewCV: "View CV",
- suggestedSectionTitle: "Suggested",
- topkarmaSectionTitle: "Top Karma",
- topactivitySectionTitle: "Top Activity",
- blockedSectionTitle: "Blocked",
- gallerySectionTitle: "GALLERY",
- blockedButton: "BLOCKED",
- blockedLabel: "Blocked User",
- inhabitantviewDetails: "View Details",
- viewDetails: "View Details",
- keepReading: "Keep reading...",
- oasisId: "ID",
- noInhabitantsFound: "No inhabitants found, yet.",
- inhabitantActivityLevel: "Activity Level",
- deviceLabel: "Device",
- parliamentTitle: "Parliament",
- parliamentDescription: "Explore forms of government and collective management laws.",
- parliamentFilterGovernment: "GOVERMENT",
- parliamentFilterCandidatures: "CANDIDATURES",
- parliamentFilterProposals: "PROPOSALS",
- parliamentFilterLaws: "LAWS",
- parliamentFilterHistorical: "HISTORICAL",
- parliamentFilterLeaders: "LEADERS",
- parliamentFilterRules: "RULES",
- parliamentGovernmentCard: "Current Government",
- parliamentGovMethod: "GOVERMENT METHOD",
- parliamentActorInPowerInhabitant: 'INHABITANT RULING',
- parliamentActorInPowerTribe: 'TRIBE RULING',
- parliamentHistoricalGovernmentsTitle: 'GOVERMENTS',
- parliamentHistoricalElectionsTitle: 'ELECTION CYCLES',
- parliamentHistoricalLawsTitle: 'HISTORICAL',
- parliamentHistoricalLeadersTitle: 'LEADERS',
- parliamentThCycles: 'CYCLES',
- parliamentThTimesInPower: 'RULING',
- parliamentThTotalCandidatures: 'CANDIDATURES',
- parliamentThProposed: 'LAWS PROPOSED',
- parliamentThApproved: 'LAWS APPROVED',
- parliamentThDeclined: 'LAWS DECLINED',
- parliamentThDiscarded: 'LAWS DISCARDED',
- parliamentVotesReceived: "VOTES RECIEVED",
- parliamentMembers: "MEMBERS",
- parliamentLegSince: "CYCLE SINCE",
- parliamentLegEnd: "CYCLE END",
- parliamentPoliciesProposal: "LAWS PROPOSAL",
- parliamentPoliciesApproved: "LAWS APPROVED",
- parliamentPoliciesDeclined: "LAWS DECLINED",
- parliamentPoliciesDiscarded: "LAWS DISCARDED",
- parliamentEfficiency: "% EFFICIENCY",
- parliamentFilterRevocations: 'REVOCATIONS',
- parliamentRevocationFormTitle: 'Revocate Law',
- parliamentRevocationLaw: 'Law',
- parliamentRevocationTitle: 'Title',
- parliamentRevocationReasons: 'Reasons',
- parliamentRevocationPublish: 'Publish Revocation',
- parliamentCurrentRevocationsTitle: 'Current Revocations',
- parliamentFutureRevocationsTitle: 'Future Revocations',
- parliamentPoliciesRevocated: 'LAWS REVOCATED',
- parliamentPoliciesTitle: 'HISTORICAL',
- parliamentLawsTitle: 'LAWS APPROVED',
- parliamentRulesRevocations: 'Any approved law can be revocate using current goverment method ruling.',
- parliamentNoStableGov: "No goverment choosen, yet.",
- parliamentNoGovernments: "There are not governments, yet.",
- parliamentCandidatureFormTitle: "Propose Candidature",
- parliamentCandidatureId: "Candidature",
- parliamentCandidatureIdPh: "Oasis ID (@...) or Tribe name",
- parliamentCandidatureSlogan: "Slogan (max 140 chars)",
- parliamentCandidatureSloganPh: "A short motto",
- parliamentCandidatureMethod: "Method",
- parliamentCandidatureProposeBtn: "Publish Candidature",
- parliamentThType: "Type",
- parliamentThId: "ID",
- parliamentThDate: "Proposal date",
- parliamentThSlogan: "Slogan",
- parliamentThMethod: "Method",
- parliamentThKarma: "Karma",
- parliamentThSince: "Profile since",
- parliamentThVotes: "Votes recieved",
- parliamentThVoteAction: "Vote",
- parliamentTypeUser: "Inhabitant",
- parliamentTypeTribe: "Tribe",
- parliamentVoteBtn: "Vote",
- parliamentProposalFormTitle: "Propose Law",
- parliamentProposalTitle: "Title",
- parliamentProposalDescription: "Description (≤1000)",
- parliamentProposalPublish: "Publish Proposal",
- parliamentOpenVote: "Open vote",
- parliamentFinalize: "Finalize",
- parliamentDeadline: "Deadline",
- parliamentStatus: "Status",
- parliamentNoProposals: "There are not law proposals, yet.",
- parliamentNoLaws: "There are not laws approved, yet.",
- parliamentLawMethod: "Method",
- parliamentLawProposer: "Proposed by",
- parliamentLawVotes: "YES/Total",
- parliamentLawEnacted: "Enacted at",
- parliamentMethodDEMOCRACY: "Democracy",
- parliamentMethodMAJORITY: "Majority (80%)",
- parliamentMethodMINORITY: "Minority (20%)",
- parliamentMethodDICTATORSHIP: "Dictatorship",
- parliamentMethodKARMATOCRACY: "Karmatocracy",
- parliamentMethodANARCHY: "Anarchy",
- parliamentThId: "ID",
- parliamentThProposalDate: "Proposal date",
- parliamentThMethod: "Method",
- parliamentThKarma: "Karma",
- parliamentThSupports: "Supports",
- parliamentThVote: "Vote",
- parliamentCurrentProposalsTitle: "Current Proposals",
- parliamentVotesSlashTotal: "Votes/Total",
- parliamentVotesNeeded: "Votes Needed",
- parliamentFutureLawsTitle: "Future Laws",
- parliamentNoFutureLaws: "No future laws, yet.",
- parliamentVoteAction: "Vote",
- parliamentLeadersTitle: "Leaders",
- parliamentThLeader: "AVATAR",
- parliamentPopulation: "Population",
- parliamentThType: "Type",
- parliamentThInPower: "In power",
- parliamentThPresented: "CANDIDATURES",
- parliamentNoLeaders: "No leaders, yet.",
- typeParliament: "PARLIAMENT",
- typeParliamentCandidature: "Parliament · Candidature",
- typeParliamentTerm: "Parliament · Term",
- typeParliamentProposal: "Parliament · Proposal",
- typeParliamentLaw: "Parliament · New Law",
- typeCourts: "Courts",
- parliamentLawQuestion: "Question",
- parliamentStatus: "Status",
- parliamentCandidaturesListTitle: "List of Candidatures",
- parliamentElectionsEnd: "Election end",
- parliamentTimeRemaining: "Time remaining",
- parliamentCurrentLeader: "Winning candidature",
- parliamentNoLeader: "No winning candidature, yet.",
- parliamentElectionsStatusTitle: "Next Government",
- parliamentElectionsStart: "Election start",
- parliamentProposalDeadlineLabel: "Deadline",
- parliamentProposalTimeLeft: "Time left",
- parliamentProposalOnTrack: "On track to pass",
- parliamentProposalOffTrack: "Not enough support yet",
- parliamentRulesTitle: "How Parliament works",
- parliamentRulesIntro: "Election resolve every 2 months; candidatures are continuous and reset when a government is chosen.",
- parliamentRulesCandidates: "Any inhabitant may propose themself, another inhabitant, or any tribe. Each inhabitant can propose up to 3 candidatures per cycle; duplicates in the same cycle are rejected.",
- parliamentRulesElection: "The winner is the candidature with the most votes at resolution time.",
- parliamentRulesTies: "Tie-break order: highest inhabitant karma; if tied, oldest profile; if still tied, earliest proposal; then lexicographic by ID.",
- parliamentRulesFallback: "If no one votes, the latest proposed candidature wins. If there are no candidatures, a random tribe is selected.",
- parliamentRulesTerm: "The Government tab shows the current government and stats.",
- parliamentRulesMethods: "Forms: Anarchy (simple majority), Democracy (50%+1), Majority (80%), Minority (20%), Karmatocracy (highest-karma proposals), Dictatorship (instant approval).",
- parliamentRulesAnarchy: "Anarchy is the default mode: if no candidature is elected at resolution, Anarchy is proclaimed. Under Anarchy, any inhabitant can propose laws.",
- parliamentRulesProposals: "If you are the ruling inhabitant or a member of the ruling tribe, you can publish law proposals. Non-dictatorship methods create a public vote.",
- parliamentRulesLimit: "Each inhabitant may publish at most 3 law proposals per cycle.",
- parliamentRulesLaws: "When a proposal meets its threshold, it becomes a Law and appears in the Laws tab with its enactment date.",
- parliamentRulesHistorical: "In the Historical tab you can see every government cycle that has occurred and data about its management.",
- parliamentRulesLeaders: "In the Leaders tab you can see a ranking of inhabitants/tribes that have governed (or stood as candidates), ordered by efficiency.",
- parliamentProposalVoteStatusLabel: "Vote status",
- parliamentProposalOnTrackYes: "Threshold reached",
- parliamentProposalOnTrackNo: "Below threshold",
- courtsTitle: "Courts",
- courtsDescription: "Explore forms of conflict resolution and collective justice management.",
- courtsFilterCases: "CASES",
- courtsFilterMyCases: "MINE",
- courtsFilterJudges: "JUDGES",
- courtsFilterHistory: "HISTORY",
- courtsFilterRules: "RULES",
- courtsFilterOpenCase: "OPEN CASE",
- courtsCaseFormTitle: "Open Case",
- courtsCaseTitle: "Title",
- courtsCaseRespondent: "Accused / Respondent",
- courtsCaseRespondentPh: "Oasis ID (@...) or Tribe name",
- courtsCaseMediatorsAccuser: "Mediators (accuser)",
- courtsCaseMediatorsPh: "Oasis IDs, separated by comma",
- courtsCaseMethod: "Resolution method",
- courtsCaseDescription: "Description (max 1000 chars.)",
- courtsCaseEvidenceTitle: "Case evidence",
- courtsCaseEvidenceHelp: "Attach images, audios, documents (PDF) or videos that support your case.",
- courtsCaseSubmit: "File Case",
- courtsNominateJudge: "Nominate Judge",
- courtsJudgeId: "Judge",
- courtsJudgeIdPh: "Oasis ID (@...) or Inhabitant name",
- courtsNominateBtn: "Nominate",
- courtsAddEvidence: "Add evidence",
- courtsEvidenceText: "Text",
- courtsEvidenceLink: "Link",
- courtsEvidenceLinkPh: "https://…",
- courtsEvidenceSubmit: "Attach",
- courtsAnswerTitle: "Answer the claim",
- courtsAnswerText: "Response brief",
- courtsAnswerSubmit: "Send response",
- courtsStanceDENY: "Deny",
- courtsStanceADMIT: "Admit",
- courtsStancePARTIAL: "Partial",
- courtsVerdictTitle: "Issue verdict",
- courtsVerdictResult: "Result",
- courtsVerdictOrders: "Orders",
- courtsVerdictOrdersPh: "Actions, deadlines, restorative steps ...",
- courtsIssueVerdict: "Issue verdict",
- courtsMediationPropose: "Propose settlement",
- courtsSettlementText: "Terms",
- courtsSettlementProposeBtn: "Propose",
- courtsNominationsTitle: "Judiciary nominations",
- courtsThJudge: "Judge",
- courtsThSupports: "Supports",
- courtsThDate: "Date",
- courtsThVote: "Vote",
- courtsNoNominations: "No nominations yet.",
- courtsAccuser: "Accuser",
- courtsRespondent: "Respondent",
- courtsRespondentInvalid: "Must be a valid SSB ID (@...ed25519)",
- courtsThStatus: "Status",
- courtsThAnswerBy: "Answer by",
- courtsThEvidenceBy: "Evidence by",
- courtsThDecisionBy: "Decision by",
- courtsThCase: "Case",
- courtsThCreatedAt: "Start date",
- courtsThActions: "Actions",
- courtsCaseMediatorsRespondentTitle: "Add defence mediators",
- courtsCaseMediatorsRespondent: "Mediators (defence)",
- courtsMediatorsAccuserLabel: "Mediators (accuser)",
- courtsMediatorsRespondentLabel: "Mediators (defence)",
- courtsMediatorsSubmit: "Save mediators",
- courtsVotesNeeded: "Votes needed",
- courtsVotesSlashTotal: "YES / TOTAL",
- courtsOpenVote: "Open vote",
- courtsPublicPrefLabel: "Visibility after resolution",
- courtsPublicPrefYes: "I agree this case can be fully public",
- courtsPublicPrefNo: "I prefer to keep the details private",
- courtsPublicPrefSubmit: "Save visibility preference",
- courtsNoCases: "No cases.",
- courtsNoMyCases: "You have no conflicts yet.",
- courtsNoHistory: "No recorded trials yet.",
- courtsMethodJUDGE: "Judge",
- courtsMethodDICTATOR: "Dictator",
- courtsMethodPOPULAR: "Popular",
- courtsMethodMEDIATION: "Mediation",
- courtsMethodKARMATOCRACY: "Karmatocracy",
- courtsMethod: "Method",
- courtsRulesTitle: "How Courts work",
- courtsRulesIntro: "Courts are a community-run process to resolve conflicts and promote restorative justice. Dialogue, clear evidence, and proportional remedies are prioritized.",
- courtsRulesLifecycle: "Process: 1) Open case 2) Select method 3) Submit evidence 4) Hearing and deliberation 5) Verdict and remedy 6) Compliance and closure 7) Appeal (if applicable).",
- courtsRulesRoles: "Accuser: opens the case. Defence: accused person or tribe. Method: mechanism chosen by the community to facilitate, assess evidence, and issue a verdict. Witness: provides testimony or evidence. Mediators: neutral people invited by the accuser and/or the defence, with access to all details, who help de-escalate the conflict and co-create agreements.",
- courtsRulesEvidence: "Description up to 1000 characters. Attach relevant and lawful images, audio, video, and PDF documents. Do not share sensitive private data without consent.",
- courtsRulesDeliberation: "Hearings may be public or private. Judges ensure respect, request clarifications, and may discard irrelevant or unlawful material.",
- courtsRulesVerdict: "Restoration is prioritized: apologies, mediation agreements, content moderation, temporary restrictions, or other proportional measures. The reasoning must be recorded.",
- courtsRulesAppeals: "Appeal: allowed when there is new evidence or a clear procedural error. Must be filed within 7 days unless otherwise stated.",
- courtsRulesPrivacy: "Respect privacy and safety. Doxing, hate, or threats are removed. Judges may edit or seal parts of the record to protect people at risk.",
- courtsRulesMisconduct: "Harassment, manipulation, or fabricated evidence may lead to immediate negative resolution.",
- courtsRulesGlossary: "Case: record of a conflict. Evidence: materials that support claims. Verdict: decision with remedy. Appeal: request to review the verdict.",
- courtsFilterActions: "ACTIONS",
- courtsNoActions: "No pending actions for your role.",
- courtsCaseTitlePlaceholder: "Short description of the conflict",
- courtsCaseSeverity: "Severity",
- courtsCaseSeverityNone: "No severity tag",
- courtsCaseSeverityLOW: "Low",
- courtsCaseSeverityMEDIUM: "Medium",
- courtsCaseSeverityHIGH: "High",
- courtsCaseSeverityCRITICAL: "Critical",
- courtsCaseSubject: "Topic",
- courtsCaseSubjectNone: "No topic tag",
- courtsCaseSubjectBEHAVIOUR: "Behaviour",
- courtsCaseSubjectCONTENT: "Content",
- courtsCaseSubjectGOVERNANCE: "Governance / rules",
- courtsCaseSubjectFINANCIAL: "Financial / resources",
- courtsCaseSubjectOTHER: "Other",
- courtsHiddenRespondent: "Hidden (only visible to involved roles).",
- courtsThRole: "Role",
- courtsRoleAccuser: "Accuser",
- courtsRoleDefence: "Defence",
- courtsRoleMediator: "Mediator",
- courtsRoleJudge: "Judge",
- courtsRoleDictator: "Dictator",
- courtsAssignJudgeTitle: "Choose judge",
- courtsAssignJudgeBtn: "Choose judge",
- trendingTitle: "Trending",
- exploreTrending: "Explore the most popular content in your network.",
- ALLButton: "ALL",
- MINEButton: "MINE",
- RECENTButton: "RECENT",
- TOPButton: "TOP",
- bookmarkButton: "BOOKMARKS",
- transferButton: "TRANSFERS",
- eventButton: "EVENTS",
- taskButton: "TASKS",
- votesButton: "VOTATIONS",
- reportButton: "REPORTS",
- feedButton: "FEED",
- marketButton: "MARKET",
- imageButton: "IMAGES",
- audioButton: "AUDIOS",
- videoButton: "VIDEOS",
- documentButton: "DOCUMENTS",
- author: "By",
- createdAtLabel: "Created At",
- totalVotes: "Total Votes",
- noTrendingFound: "No trending content found.",
- noContentMessage: "No trending content available, yet.",
- trendingDescription: "Description",
- trendingDate: "Date",
- trendingLocation: "Location",
- trendingPrice: "Price",
- trendingUrl: "URL",
- trendingCategory: "Category",
- trendingStart: "Start",
- trendingEnd: "End",
- trendingPriority: "Priority",
- trendingStatus: "Status",
- trendingFrom: "From",
- trendingTo: "To",
- trendingConcept: "Concept",
- trendingAmount: "Amount",
- trendingDeadline: "Deadline",
- trendingItemStatus: "Item Status",
- trendingTotalVotes: "Total Votes",
- trendingTotalOpinions: "Total Opinions",
- trendingNoContentMessage: "No trending content available, yet.",
- trendingAuthor: "By",
- trendingCreatedAtLabel: "Created At",
- trendingTotalCount: "Total Count",
- tasksTitle: "Tasks",
- tasksDescription: "Discover and manage tasks in your network.",
- taskTitleLabel: "Title",
- taskDescriptionLabel: "Description",
- taskStartTimeLabel: "Start Time",
- taskEndTimeLabel: "End Time",
- taskPriorityLabel: "Priority",
- taskPrioritySelect: "Select priority",
- taskPriorityUrgent: "Urgent",
- taskPriorityHigh: "High",
- taskPriorityMedium: "Medium",
- taskPriorityLow: "Low",
- taskLocationLabel: "Location",
- taskTagsLabel: "Tags",
- taskVisibilityLabel: "Visibility",
- taskPublic: "public",
- taskPrivate: "private",
- taskCreatedAt: "Created At",
- taskBy: "By",
- taskStatus: "Status",
- taskStatusOpen: "Open",
- taskStatusInProgress: "In Progress",
- taskStatusClosed: "Closed",
- taskAssignedTo: "Assigned to",
- taskAssignees: "Assignees",
- taskAssignButton: "Assign to Me",
- taskUnassignButton: "Unassign",
- taskCreateButton: "Create Task",
- taskUpdateButton: "Update",
- taskDeleteButton: "Delete",
- taskFilterAll: "ALL",
- taskFilterMine: "MINE",
- taskFilterOpen: "OPEN",
- taskFilterInProgress: "IN-PROGRESS",
- taskFilterClosed: "CLOSED",
- taskFilterAssigned: "ASSIGNED",
- taskFilterArchived: "ARCHIVED",
- taskFilterUrgent: "URGENT",
- taskFilterHigh: "HIGH",
- taskFilterMedium: "MEDIUM",
- taskFilterLow: "LOW",
- taskAllSectionTitle: "Tasks",
- taskMineSectionTitle: "Your Tasks",
- taskCreateSectionTitle: "Create Task",
- taskUpdateSectionTitle: "Update",
- taskOpenTitle: "Open Tasks",
- taskInProgressTitle: "In Progress Tasks",
- taskClosedTitle: "Closed Tasks",
- taskAssignedTitle: "Assigned Tasks",
- taskArchivedTitle: "Archived Tasks",
- taskPublicTitle: "Public Tasks",
- taskPrivateTitle: "Private Tasks",
- notasks: "No tasks available.",
- noLocation: "No location specified",
- taskSetStatus: "Set Status",
- eventTitle: "Events",
- eventDateLabel: "Date",
- eventsTitle: "Events",
- eventsDescription: "Discover and manage events in your network.",
- eventDescription: "Description",
- eventPrice: "Price",
- eventStatus: "Status",
- eventOrganizer: "Organizer",
- eventAllSectionTitle: "Events",
- eventMineSectionTitle: "Your Events",
- eventArchivedTitle: "Archived Events",
- eventCreateSectionTitle: "Create Event",
- eventUpdateSectionTitle: "Update Event",
- eventDeleteButton: "Delete",
- eventCreateButton: "Create Event",
- eventTitleLabel: "Title",
- eventDescriptionLabel: "Description",
- eventDescriptionPlaceholder: "Enter event description...",
- eventUpdateButton: "Update",
- eventAttendeesLabel: "Attendees",
- eventAttendeesPlaceholder: "Enter attendees, separated by commas...",
- eventTagsLabel: "Tags",
- eventTagsPlaceholder: "Enter event tags, separated by commas...",
- eventTags: "Tags",
- eventPriceLabel: "Price",
- eventUrlLabel: "URL",
- eventAttendees: "Attendees",
- noAttendees: "No attendees yet",
- eventCreatedAt: "Created At",
- eventLocation: "Location",
- eventLocationLabel: "Location",
- eventNoLocation: "No location specified",
- eventNoURL: "No URL specified",
- eventBy: "By",
- noevents: "No events available.",
- eventDate: "Date",
- eventDateFormat: "DD:MM:YYYY HH:mm",
- eventAttendButton: "Attend Event",
- eventUnattendButton: "Unattend Event",
- eventCreatedBy: "Created By",
- eventAttendeesCount: "Attendees Count",
- eventCreatedByYou: "You created this event",
- eventAttendConfirmation: "You are now attending this event",
- eventUnattendConfirmation: "You are no longer attending this event",
- eventFilterAll: "ALL",
- eventFilterMine: "MINE",
- eventFilterToday: "TODAY",
- eventFilterWeek: "THIS WEEK",
- eventFilterMonth: "THIS MONTH",
- eventFilterYear: "THIS YEAR",
- eventFilterArchived: "ARCHIVED",
- eventTodayTitle: "Today's Events",
- eventThisWeekTitle: "This Week's Events",
- eventThisMonthTitle: "This Month's Events",
- eventThisYearTitle: "This Year's Events",
- eventPrivacyLabel: "Visibility",
- eventPublic: "Public",
- eventPrivate: "Private",
- eventPublicTitle: "Public Events",
- eventNoPrice: "Free Event",
- eventNoImage: "No image uploaded",
- eventAttendConfirmation: "You are now attending this event",
- eventUnattendConfirmation: "You are no longer attending this event",
- eventAttended: "Attended",
- eventUnattended: "Unattended",
- eventStatusOpen: "Open",
- eventStatusClosed: "Closed",
- tagsTitle: "Tags",
- tagsDescription: "Discover and explore taxonomy patterns in your network.",
- tagsAllSectionTitle: "Tags",
- tagsTopSectionTitle: "Top Tags",
- tagsCloudSectionTitle: "Tags Cloud",
- tagsFilterAll: "ALL",
- tagsFilterTop: "TOP",
- tagsFilterCloud: "CLOUD",
- tagsNoItems: "No tags available.",
- tagsTableHeaderTag: "TAG/LINK:",
- tagsTableHeaderCount: "COUNTER:",
- transfersTitle: "Transfers",
- transfersDescription: "Discover and manage transfers in your network.",
- transfersFrom: "From",
- transfersTo: "To",
- transfersFilterAll: "ALL",
- transfersFilterMine: "MINE",
- transfersFilterUBI: "UBI",
- transfersFilterMarket: "MARKET",
- transfersFilterTop: "TOP",
- transfersFilterPending: "PENDING",
- transfersFilterUnconfirmed: "UNCONFIRMED",
- transfersFilterClosed: "CLOSED",
- transfersFilterDiscarded: "DISCARDED",
- transfersCreateButton: "Create Transfer",
- transfersUpdateButton: "Update",
- transfersDeleteButton: "Delete",
- transfersToUser: "Oasis ID",
- transfersToUserValidation: "Valid Oasis ID, e.g. @…=.ed25519",
- transfersConcept: "Concept",
- transfersAmount: "Amount",
- transfersDeadline: "Deadline",
- transfersTags: "Tags",
- transfersStatus: "Status",
- transfersStatusUnconfirmed: "UNCONFIRMED",
- transfersStatusClosed: "CLOSED",
- transfersStatusDiscarded: "DISCARDED",
- transfersCreatedAt: "Created At",
- transfersConfirmations: "CONFIRMATIONS",
- transfersConfirmButton: "Confirm Transfer",
- transfersNoItems: "No transfers found.",
- transfersMineSectionTitle: "Your Transfers",
- transfersUBISectionTitle: "UBI Transfers",
- transfersMarketSectionTitle: "Market Transfers",
- transfersTopSectionTitle: "Top Transfers",
- transfersPendingSectionTitle: "Pending Transfers",
- transfersUnconfirmedSectionTitle: "Unconfirmed Transfers",
- transfersClosedSectionTitle: "Closed Transfers",
- transfersDiscardedSectionTitle: "Discarded Transfers",
- transfersCreateSectionTitle: "Create transfer",
- transfersAllSectionTitle: "Transfers",
- transfersFilterFavs: "Favorites",
- transfersFavsSectionTitle: "Favorite transfers",
- transfersSearchLabel: "Search",
- transfersSearchPlaceholder: "Search concept, tags, users...",
- transfersMinAmountLabel: "Min amount",
- transfersMaxAmountLabel: "Max amount",
- transfersSortLabel: "Sort by",
- transfersSortRecent: "Most recent",
- transfersSortAmount: "Highest amount",
- transfersSortDeadline: "Closest deadline",
- transfersSearchButton: "Search",
- transfersFavoriteButton: "Favorite",
- transfersUnfavoriteButton: "Unfavorite",
- transfersMessageUserButton: "Message",
- transfersExpiringSoonBadge: "EXPIRING",
- transfersExpiredBadge: "EXPIRED",
- transfersUpdatedAt: "Updated",
- transfersNoMatch: "No transfers match your search.",
- votationsTitle: "Votations",
- votationsDescription: "Discover and manage votations in your network.",
- voteMineSectionTitle: "Your Votations",
- voteCreateSectionTitle: "Create Votation",
- voteUpdateSectionTitle: "Update",
- voteOpenTitle: "Open Votations",
- voteClosedTitle: "Closed Votations",
- voteAllSectionTitle: "Votations",
- voteCreateButton: "Create Votation",
- voteUpdateButton: "Update",
- voteDeleteButton: "Delete",
- voteOptionYes: "YES",
- voteOptionNo: "NO",
- voteOptionAbstention: "ABSTENTION",
- voteConfused: "CONFUSED",
- voteFollowMajority: "FOLLOW MAJORITY",
- voteNotInterested: "NOT INTERESTED",
- voteFilterAll: "ALL",
- voteFilterMine: "MINE",
- voteFilterOpen: "OPEN",
- voteFilterClosed: "CLOSED",
- voteQuestionLabel: "Question",
- voteDeadlineLabel: "Deadline",
- voteOptionsLabel: "Your vote",
- voteBreakdown: "Breakdown",
- voteFinalResult: "RESULT",
- voteTagsLabel: "Tags",
- voteDeadline: "Deadline",
- voteStatus: "Status",
- voteTotalVotes: "Total Votes",
- voteTags: "Tags",
- voteOpinions: "Opinions",
- novotes: "No voting proposals available.",
- voteBy: "By",
- voteCreatedAt: "Created At",
- voteNoQuestion: "No question provided",
- voteUnknownCreator: "Unknown Creator",
- voteUnknownDate: "Unknown Date",
- errorVoteNotFound: "Vote not found",
- errorAlreadyVoted: "You have already opined.",
- errorVoteClosedCannotEdit: "You cannot edit a closed votation",
- errorVoteDeadlinePassed: "The deadline for this votation has passed",
- errorRetrievingVote: "Error retrieving vote",
- errorCreatingVote: "Error creating vote",
- errorVoteAlreadyVoted: "Cannot edit after opinion has been cast",
- errorDeletingOldVote: "Error deleting old opinion",
- errorCreatingUpdatedVote: "Error creating updated opinion",
- errorCreatingTombstone: "Error creating tombstone",
- voteDetailSectionTitle: 'Vote details',
- voteCommentsLabel: 'Comments',
- voteCommentsForumButton: 'Open discussion',
- voteCommentsSectionTitle: 'Open discussion',
- voteNoCommentsYet: 'There are no comments yet. Be the first to reply.',
- voteNewCommentPlaceholder: 'Write your comment here…',
- voteNewCommentButton: 'Post comment',
- voteNewCommentLabel: 'Add a comment',
- cvTitle: "CV",
- cvLabel: "Curriculum Vitae (CV)",
- cvEditSectionTitle: "Edit CV",
- cvCreateSectionTitle: "Create CV",
- cvDescription: "Manage and share your professional skills and information.",
- cvNameLabel: "Full Name",
- cvDescriptionLabel: "Summary",
- cvPhotoLabel: "Photo",
- cvPersonalExperiencesLabel: "Personal Experiences",
- cvPersonalSkillsLabel: "Personal Skills (comma-separated)",
- cvOasisExperiencesLabel: "Oasis Contribution Experiences",
- cvOasisSkillsLabel: "Oasis Contribution Skills (comma-separated)",
- cvEducationExperiencesLabel: "Educational Experiences",
- cvEducationalSkillsLabel: "Educational Skills (comma-separated)",
- cvProfessionalExperiencesLabel: "Professional Experiences",
- cvProfessionalSkillsLabel: "Professional Skills (comma-separated)",
- cvLanguagesLabel: "Languages",
- cvLocationLabel: "Location",
- cvStatusLabel: "Status",
- cvPreferencesLabel: "Preferences",
- cvOasisContributorLabel: "Oasis Contributor",
- cvPersonal: "Personal",
- cvOasis: "Oasis Contributor (optional)",
- cvOasisContributorView: "Oasis Contribution",
- cvEducational: "Educational (optional)",
- cvEducationalView: "Educational",
- cvProfessional: "Professional (optional)",
- cvProfessionalView: "Professional",
- cvAvailability: "Availability (optional)",
- cvAvailabilityView: "Availability",
- cvUpdateButton: "Update",
- cvCreateButton: "Create CV",
- cvContactLabel: "Contact",
- cvCreatedAt: "Created At",
- cvUpdatedAt: "Updated At",
- cvEditButton: "Update",
- cvDeleteButton: "Delete",
- cvNoCV: "No CV found.",
- blogSubject: "Subject",
- blogMessage: "Message",
- blogImage: "Upload media (max-size: 50MB)",
- blogPublish: "Preview",
- noPopularMessages: "No popular messages published, yet",
- forumTitle: "Forums",
- forumCategoryLabel: "Category",
- forumTitleLabel: "Title",
- forumTitlePlaceholder: "Forum title...",
- forumCreateButton: "Create forum",
- forumCreateSectionTitle: "Create forum",
- forumDescription: "Talk openly with other inhabitants in your network.",
- forumFilterAll: "ALL",
- forumFilterMine: "MINE",
- forumFilterRecent: "RECENT",
- forumFilterTop: "TOP",
- forumMineSectionTitle: "Your Forums",
- forumRecentSectionTitle: "Recent Forums",
- forumAllSectionTitle: "Forums",
- forumDeleteButton: "Delete",
- forumParticipants: "participants",
- forumMessages: "messages",
- forumLastMessage: "Last message",
- forumMessageLabel: "Message",
- forumMessagePlaceholder: "Write your message...",
- forumSendButton: "Send",
- forumVisitForum: "Visit Forum",
- noForums: "No forums found.",
- forumVisitButton: "Visit forum",
- forumCatGENERAL: "General",
- forumCatOASIS: "Oasis",
- forumCatLARP: "L.A.R.P.",
- forumCatPOLITICS: "Politics",
- forumCatTECH: "Tech",
- forumCatSCIENCE: "Science",
- forumCatMUSIC: "Music",
- forumCatART: "Art",
- forumCatGAMING: "Gaming",
- forumCatBOOKS: "Books",
- forumCatFILMS: "Films",
- forumCatPHILOSOPHY: "Philosophy",
- forumCatSOCIETY: "Society",
- forumCatPRIVACY: "Privacy",
- forumCatCYBERWARFARE: "Cyberwarfare",
- forumCatSURVIVALISM: "Survivalism",
- imageTitle: "Images",
- imageDescription: "Explore and manage image content in your network.",
- imagePluginTitle: "Title",
- imagePluginDescription: "Description",
- imageMineSectionTitle: "Your Images",
- imageCreateSectionTitle: "Upload Image",
- imageUpdateSectionTitle: "Update Image",
- imageAllSectionTitle: "Images",
- imageRecentSectionTitle: "Recent Images",
- imageTopSectionTitle: "Top Images",
- imageFavoritesSectionTitle: "Favorites",
- imageGallerySectionTitle: "Gallery",
- imageMemeSectionTitle: "Memes",
- imageFilterAll: "ALL",
- imageFilterMine: "MINE",
- imageFilterRecent: "RECENT",
- imageFilterTop: "TOP",
- imageFilterFavorites: "FAVORITES",
- imageFilterGallery: "GALLERY",
- imageFilterMeme: "MEMES",
- imageCreateButton: "Upload Image",
- imageUpdateButton: "Update",
- imageDeleteButton: "Delete",
- imageAddFavoriteButton: "Add favorite",
- imageRemoveFavoriteButton: "Remove favorite",
- imageFileLabel: "Select an image file (.jpeg, .jpg, .png, .gif)",
- imageTagsLabel: "Tags",
- imageTagsPlaceholder: "Enter tags separated by commas",
- imageTitleLabel: "Title",
- imageTitlePlaceholder: "Optional",
- imageDescriptionLabel: "Description",
- imageDescriptionPlaceholder: "Optional",
- imageMemeLabel: "¿MEME?",
- imageNoFile: "No image file provided",
- noImages: "No images available.",
- imageSearchPlaceholder: "Search title, tags, description, author...",
- imageSortRecent: "Most recent",
- imageSortOldest: "Oldest",
- imageSortTop: "Most voted",
- imageSearchButton: "Search",
- imageMessageAuthorButton: "Message",
- imageUpdatedAt: "Updated",
- imageNoMatch: "No images match your search.",
- feedTitle: "Feed",
- feedDetailTitle: "Feed",
- feedOpenDiscussion: "Open discussion",
- feedPostComment: "Post comment",
- noComments: "No comments yet",
- createFeedTitle: "Create Feed",
- createFeedButton: "Send Feed!",
- feedPlaceholder: "What's happening? (max 280 characters)",
- ALLButton: "Feeds",
- MINEButton: "Your Feeds",
- TODAYButton: "TODAY",
- TOPButton: "Top Feeds",
- CREATEButton: "Create Feed",
- totalOpinions: "Total Opinions",
- moreVoted: "More Voted",
- alreadyVoted: "You have already opined.",
- noFeedsFound: "No feeds found.",
- author: "By",
- createdAtLabel: "Created at",
- FeedshareYourOpinions: "Discover and share short-texts in your network.",
- refeedButton: "Refeed",
- alreadyRefeeded: "You already refeeded this.",
- activityTitle: "Activity",
- yourActivity: "Your Activity",
- globalActivity: "Global Activity",
- activityList: "Activity",
- activityDesc: "See the latest activity in your network.",
- allButton: "ALL",
- mineButton: "MINE",
- noActions: "No activity available.",
- performed: "→",
- from: "From",
- to: "To",
- amount: "Amount",
- concept: "Concept",
- description: "Description",
- meme: "Meme",
- activityContact: "Contact",
- activityBy: "Name",
- activityPixelia: "New pixel added",
- viewImage: "View image",
- playAudio: "Play audio",
- playVideo: "Play video",
- typeRecent: "RECENT",
- errorActivity: "Error retrieving activity",
- typePost: "POST",
- typeTribe: "TRIBES",
- typeAbout: "INHABITANTS",
- typeCurriculum: "CV",
- typeImage: "IMAGES",
- typeBookmark: "BOOKMARKS",
- typeDocument: "DOCUMENTS",
- typeVotes: "VOTATIONS",
- typeAudio: "AUDIOS",
- typeMarket: "MARKET",
- typeJob: "JOBS",
- typeProject: "PROJECTS",
- typeVideo: "VIDEOS",
- typeVote: "SPREAD",
- typeEvent: "EVENTS",
- typeTransfer: "TRANSFER",
- typeTask: "TASKS",
- typePixelia: "PIXELIA",
- typeForum: "FORUM",
- typeReport: "REPORTS",
- typeFeed: "FEED",
- typeContact: "CONTACT",
- typePub: "PUB",
- typeTombstone: "TOMBSTONE",
- typeBanking: "BANKING",
- typeBankWallet: "BANKING/WALLET",
- typeBankClaim: "BANKING/UBI",
- typeKarmaScore: "KARMA",
- typeParliament: "PARLIAMENT",
- typeSpread: "SPREADS",
- typeParliamentCandidature: "Parliament · Candidature",
- typeParliamentTerm: "Parliament · Term",
- typeParliamentProposal:"Parliament · Proposal",
- typeParliamentRevocation:"Parliament · Revocation",
- typeParliamentLaw: "Parliament · New Law",
- typeCourts: "COURTS",
- typeCourtsCase: "Courts · Case",
- typeCourtsEvidence: "Courts · Evidence",
- typeCourtsAnswer: "Courts · Answer",
- typeCourtsVerdict: "Courts · Verdict",
- typeCourtsSettlement: "Courts · Settlement",
- typeCourtsSettlementProposal: "Courts · Settlement Proposal",
- typeCourtsSettlementAccepted: "Courts · Settlement Accepted",
- typeCourtsNomination: "Courts · Nomination",
- typeCourtsNominationVote: "Courts · Nomination Vote",
- activitySupport: "New alliance forged",
- activityJoin: "New PUB joined",
- question: "Question",
- deadline: "Deadline",
- status: "Status",
- votes: "Votes",
- totalVotes: "Total Votes",
- voteTotalVotes: "Total Votes",
- name: "Name",
- skills: "Skills",
- tags: "Tags",
- title: "Title",
- date: "Date",
- category: "Category",
- attendees: "Attendees",
- activitySpread: "->",
- visitLink: "Visit Link",
- viewDocument: "View Document",
- location: "Location",
- contentWarning: "Subject",
- personName: "Inhabitant Name",
- bankWalletConnected: "ECOin Wallet",
- bankUbiReceived: "UBI Received",
- bankTx: "Tx",
- bankEpochShort: "Epoch",
- bankAllocId: "Allocation ID",
- bankingUserEngagementScore: "KARMA Scoring",
- viewDetails: "View details",
- link: "Link",
- aiSnippetsLearned: "Snippets learned",
- tribeFeedRefeeds: "Refeeds",
- activityProjectFollow: "%OASIS% is now %ACTION% this project %PROJECT%",
- activityProjectUnfollow: "%OASIS% is now %ACTION% this project %PROJECT%",
- activityProjectPledged: "%OASIS% has %ACTION% %AMOUNT% to project %PROJECT%",
- following: "FOLLOWING",
- unfollowing: "UNFOLLOWING",
- pledged: "PLEDGED",
- parliamentCandidatureId: "Candidature",
- parliamentGovMethod: "Method",
- parliamentVotesReceived: "Votes received",
- parliamentMethodANARCHY: "Anarchy",
- parliamentMethodVOTE: "Community Vote",
- parliamentMethodRANKED: "Ranked Choice",
- parliamentMethodPLURALITY: "Plurality",
- parliamentMethodCOUNCIL: "Council",
- parliamentMethodJURY: "Jury",
- parliamentAnarchy: "ANARCHY",
- parliamentElectionsStart: "Elections start",
- parliamentElectionsEnd: "Elections end",
- parliamentCurrentLeader: "Winning candidature",
- parliamentProposalTitle: "Title",
- parliamentOpenVote: "Open vote",
- parliamentStatus: "Status",
- parliamentLawQuestion: "Question",
- parliamentLawMethod: "Method",
- parliamentLawProposer: "Proposer",
- parliamentLawEnacted: "Enacted at",
- parliamentLawVotes: "Votes",
- createdAt: "Created at",
- courtsCaseTitle: "Case",
- courtsMethod: "Method",
- courtsMethodJUDGE: "Judge",
- courtsMethodJUDGES: "Judges Panel",
- courtsMethodSINGLE_JUDGE: "Single Judge",
- courtsMethodJURY: "Jury",
- courtsMethodCOUNCIL: "Council",
- courtsMethodCOMMUNITY: "Community",
- courtsMethodMEDIATION: "Mediation",
- courtsMethodARBITRATION: "Arbitration",
- courtsMethodVOTE: "Community Vote",
- courtsAccuser: "Accuser",
- courtsRespondent: "Respondent",
- courtsThStatus: "Status",
- courtsThAnswerBy: "Answer by",
- courtsThEvidenceBy: "Evidence by",
- courtsThDecisionBy: "Decision by",
- courtsVotesNeeded: "Votes needed",
- courtsVotesSlashTotal: "YES/TOTAL",
- courtsOpenVote: "Open vote",
- courtsAnswerTitle: "Answer",
- courtsStanceADMIT: "Admit",
- courtsStanceDENY: "Deny",
- courtsStancePARTIAL: "Partial",
- courtsStanceCOUNTERCLAIM: "Counterclaim",
- courtsStanceNEUTRAL: "Neutral",
- courtsVerdictResult: "Result",
- courtsVerdictOrders: "Orders",
- courtsSettlementText: "Settlement",
- courtsSettlementAccepted: "Accepted",
- courtsSettlementPending: "Pending",
- courtsJudge: "Judge",
- courtsThSupports: "Supports",
- courtsFilterOpenCase: 'Open Case',
- courtsEvidenceFileLabel: 'Evidence file (image, audio, video or PDF)',
- courtsCaseMediators: 'Mediators',
- courtsCaseMediatorsPh: 'Mediator Oasis IDs, separated by comma',
- courtsMediatorsLabel: 'Mediators',
- courtsThCase: 'Case',
- courtsThCreatedAt: 'Start date',
- courtsThActions: 'Actions',
- courtsPublicPrefLabel: 'Visibility after resolution',
- courtsPublicPrefYes: 'I agree this case can be fully public',
- courtsPublicPrefNo: 'I prefer to keep the details private',
- courtsPublicPrefSubmit: 'Save visibility preference',
- courtsMethodMEDIATION: 'Mediation',
- courtsNoCases: 'No cases.',
- reportsTitle: "Reports",
- reportsDescription: "Manage and track reports related to issues, bugs, abuses and content warnings in your network.",
- reportsFilterAll: "ALL",
- reportsFilterMine: "MINE",
- reportsFilterFeatures: "FEATURES",
- reportsFilterBugs: "BUGS",
- reportsFilterAbuse: "ABUSE",
- reportsFilterContent: "CONTENT",
- reportsFilterConfirmed: "CONFIRMED",
- reportsFilterResolved: "RESOLVED",
- reportsFilterOpen: "OPEN",
- reportsFilterUnderReview: "UNDER REVIEW",
- reportsFilterInvalid: "INVALID",
- reportsCreateButton: "Create Report",
- reportsTitleLabel: "Title",
- reportsDescriptionLabel: "Description",
- reportsDescriptionPlaceholder: "Please provide a detailed description.",
- reportsCategory: "Category",
- reportsCategoryLabel: "Category",
- reportsCategoryFeatures: "Features",
- reportsCategoryBugs: "Bugs",
- reportsCategoryAbuse: "Abuse",
- reportsCategoryContent: "Content Issues",
- reportsUpdateButton: "Update",
- reportsDeleteButton: "Delete",
- reportsDateLabel: "Date",
- reportsUploadFile: "Upload media (max-size: 50MB)",
- reportsCreatedBy: "By",
- reportsMineSectionTitle: "Your Reports",
- reportsFeaturesSectionTitle: "Feature Requests",
- reportsBugsSectionTitle: "Bugs",
- reportsAbuseSectionTitle: "Abuse Reports",
- reportsContentSectionTitle: "Content Issues",
- reportsAllSectionTitle: "Reports",
- reportsNoItems: "No reports available.",
- reportsValidationTitle: "Please enter a valid title.",
- reportsValidationDescription: "Description cannot be empty.",
- reportsValidationCategory: "Please select a category.",
- reportsCreatedAt: "Created At",
- reportsCreatedBy: "By",
- reportsSeverity: "Severity",
- reportsSeverityLow: "Low",
- reportsSeverityMedium: "Medium",
- reportsSeverityHigh: "High",
- reportsSeverityCritical: "Critical",
- reportsStatus: "Status",
- reportsStatusOpen: "Open",
- reportsStatusUnderReview: "Under Review",
- reportsStatusResolved: "Resolved",
- reportsStatusInvalid: "Invalid",
- reportsUpdateStatusButton: "Update Status",
- reportsAnonymityOption: "Submit Anonymously",
- reportsAnonymousAuthor: "Anonymous",
- reportsConfirmButton: "CONFIRM REPORT!",
- reportsConfirmations: "Confirmations",
- reportsConfirmedSectionTitle: "Confirmed Reports",
- reportsCreateTaskButton: "CREATE TASK",
- reportsOpenSectionTitle: "Open Reports",
- reportsUnderReviewSectionTitle: "Under Review Reports",
- reportsResolvedSectionTitle: "Resolved Reports",
- reportsInvalidSectionTitle: "Invalid Reports",
- reportsTemplateSectionTitle: 'Report template',
- reportsBugTemplateTitle: 'Reproduction details (Bugs)',
- reportsFeatureTemplateTitle: 'Details (Features)',
- reportsAbuseTemplateTitle: 'Details (Abuse)',
- reportsContentTemplateTitle: 'Details (Content Issues)',
- reportsStepsToReproduceLabel: 'Steps to reproduce',
- reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
- reportsExpectedBehaviorLabel: 'Expected result',
- reportsExpectedBehaviorPlaceholder: 'What should happen?',
- reportsActualBehaviorLabel: 'Actual result',
- reportsActualBehaviorPlaceholder: 'What actually happens?',
- reportsEnvironmentLabel: 'Environment',
- reportsEnvironmentPlaceholder: 'Version, device, OS, browser, settings, logs, etc.',
- reportsReproduceRateLabel: 'Reproduction rate',
- reportsReproduceRateAlways: 'Always',
- reportsReproduceRateOften: 'Often',
- reportsReproduceRateSometimes: 'Sometimes',
- reportsReproduceRateRarely: 'Rarely',
- reportsReproduceRateUnable: 'Unable to reproduce',
- reportsReproduceRateUnknown: 'Not specified',
- reportsProblemStatementLabel: 'Problem / need',
- reportsProblemStatementPlaceholder: 'What problem does this feature solve?',
- reportsUserStoryLabel: 'Inhabitant story',
- reportsUserStoryPlaceholder: 'As a <inhabitant>, I want <action>, so that <benefit>.',
- reportsAcceptanceCriteriaLabel: 'Acceptance criteria',
- reportsAcceptanceCriteriaPlaceholder: '- Given...\n- When...\n- Then...',
- reportsWhatHappenedLabel: 'What happened?',
- reportsWhatHappenedPlaceholder: 'Describe the incident with context and approximate dates.',
- reportsReportedUserLabel: 'Reported inhabitant / entity',
- reportsReportedUserPlaceholder: '@inhabitant, feed, ID, link, etc.',
- reportsEvidenceLinksLabel: 'Evidence / links',
- reportsEvidenceLinksPlaceholder: 'Paste links, message IDs, screenshots (if applicable), etc.',
- reportsContentLocationLabel: 'Where the content is',
- reportsContentLocationPlaceholder: 'Link, ID, channel, thread, author, etc.',
- reportsWhyInappropriateLabel: "Why it's inappropriate",
- reportsWhyInappropriatePlaceholder: 'Explain the reason and impact.',
- reportsRequestedActionLabel: 'Requested action',
- reportsRequestedActionPlaceholder: 'Remove, hide, tag, warn, etc.',
- tribesTitle: "Tribes",
- tribeAllSectionTitle: "Tribes",
- tribeMineSectionTitle: "Your Tribes",
- tribeCreateSectionTitle: "Create Tribe",
- tribeUpdateSectionTitle: "Update Tribe",
- tribeGallerySectionTitle: "Tribes Gallery",
- tribeLarpSectionTitle: "L.A.R.P",
- tribeRecentSectionTitle: "Recent Tribes",
- tribeTopSectionTitle: "Popular Tribes",
- tribeviewTribeButton: "Visit Tribe",
- tribeDescription: "Explore or create tribes on your network.",
- tribeFilterAll: "ALL",
- tribeFilterMine: "MINE",
- tribeFilterMembership: "MEMBERSHIP",
- tribeFilterRecent: "RECENT",
- tribeFilterLarp: "L.A.R.P.",
- tribeFilterTop: "TOP",
- tribeFilterSubtribes: "SUB-TRIBES",
- tribeFilterGallery: "GALLERY",
- tribeMainTribeLabel: "MAIN TRIBE",
- tribeCreateButton: "Create Tribe",
- tribeUpdateButton: "Update",
- tribeDeleteButton: "Delete",
- tribeImageLabel: "Upload media (max-size: 50MB)",
- tribeTitleLabel: "Title",
- searchTribesPlaceholder: "FILTER tribes BY NAME …",
- tribeTitlePlaceholder: "Name of the tribe",
- tribeDescriptionLabel: "Description",
- tribeDescriptionPlaceholder: "Describe this tribe",
- tribeLocationLabel: "Location",
- tribeLocationPlaceholder: "Where is this tribe located?",
- tribeTagsLabel: "Tags",
- tribeTagsPlaceholder: "Enter tags separated by commas",
- tribeIsLARPLabel: "L.A.R.P. Tribe?",
- tribeInviteMode: "Invite mode",
- tribeLARPLabel: "L.A.R.P.",
- tribeModeLabel: "MODE",
- tribeIsAnonymousLabel: "STATUS",
- tribeMembersCount: "Members",
- tribeInviteCodePlaceholder: "Enter invite code",
- tribeJoinByCodeButton: "Join with code",
- tribeJoinButton: "JOIN",
- tribeLeaveButton: "LEAVE",
- tribeYes: "YES",
- tribeNo: "NO",
- tribePublic: "PUBLIC",
- tribePrivate: "PRIVATE",
- tribeGenerateInvite: "GENERATE CODE",
- tribeCreatedAt: "Created at",
- tribeAuthor: "By",
- tribeAuthorLabel: "AUTHOR",
- tribeStrict: "Strict",
- tribeOpen: "Open",
- tribeFeedFilterRECENT: "RECENT",
- tribeFeedFilterMINE: "MINE",
- tribeFeedFilterALL: "ALL",
- tribeFeedFilterTOP: "TOP",
- tribeFeedRefeeds: "Refeeds",
- tribeFeedRefeed: "Refeed",
- tribeFeedMessagePlaceholder: "Write a feed…",
- tribeFeedSend: "Send",
- tribeFeedEmpty: "No feed messages available, yet.",
- noTribes: "No tribes found, yet.",
- tribeNotFound: "Tribe not found!",
- createTribeTitle: "Create Tribe",
- updateTribeTitle: "Update Tribe",
- tribeSectionOverview: "Overview",
- tribeSectionInhabitants: "Inhabitants",
- tribeSectionVotations: "Votations",
- tribeSectionEvents: "Events",
- tribeSectionReports: "Reports",
- tribeSectionTasks: "Tasks",
- tribeSectionFeed: "Feed",
- tribeSectionForum: "Forum",
- tribeSectionMarket: "Market",
- tribeSectionJobs: "Jobs",
- tribeSectionProjects: "Projects",
- tribeSectionMedia: "Media",
- tribeSectionImages: "IMAGES",
- tribeSectionAudios: "AUDIOS",
- tribeSectionVideos: "VIDEOS",
- tribeSectionDocuments: "DOCUMENTS",
- tribeSectionBookmarks: "BOOKMARKS",
- tribeSectionMaps: "MAPS",
- tribeSectionPads: "PADS",
- tribeSectionChats: "CHATS",
- tribeSectionCalendars: "CALENDARS",
- tribePadCreate: "Create Pad",
- tribeChatCreate: "Create Chat",
- tribeCalendarCreate: "Create Calendar",
- tribePadsEmpty: "No pads, yet.",
- tribeChatsEmpty: "No chats, yet.",
- tribeCalendarsEmpty: "No calendars, yet.",
- tribeInhabitantsEmpty: "No inhabitants in this tribe, yet.",
- tribeEventCreate: "Create Event",
- tribeEventsEmpty: "No events, yet.",
- tribeEventTitle: "Title",
- tribeEventDescription: "Description",
- tribeEventDate: "Date",
- tribeEventLocation: "Location",
- tribeEventAttend: "ATTEND",
- tribeEventUnattend: "LEAVE",
- tribeEventAttendees: "Attendees",
- tribeTaskCreate: "Create Task",
- tribeTasksEmpty: "No tasks, yet.",
- tribeTaskTitle: "Title",
- tribeTaskDescription: "Description",
- tribeTaskPriority: "Priority",
- tribeTaskDeadline: "Deadline",
- tribeTaskAssignees: "Assignees",
- tribeTaskStatusInProgress: "IN PROGRESS",
- tribeTaskStatusClosed: "CLOSE",
- tribeTaskAssign: "ASSIGN",
- tribeTaskUnassign: "UNASSIGN",
- tribeReportCreate: "Create Report",
- tribeReportsEmpty: "No reports, yet.",
- tribeReportTitle: "Title",
- tribeReportDescription: "Description",
- tribeReportCategory: "Category",
- tribeVotationCreate: "Create Votation",
- tribeVotationsEmpty: "No votations, yet.",
- tribeVotationTitle: "Title",
- tribeVotationDescription: "Description",
- tribeVotationOptions: "Options",
- tribeVotationDeadline: "Deadline",
- tribeVotationVote: "VOTE",
- tribeVotationResults: "Votes",
- tribeVotationClose: "CLOSE VOTATION",
- tribeVotationOptionPlaceholder: "Option",
- tribeForumCreate: "Create Forum",
- tribeForumEmpty: "No threads, yet.",
- tribeForumTitle: "Title",
- tribeForumText: "Message",
- tribeForumCategory: "Category",
- tribeForumReply: "Reply",
- tribeForumReplies: "Replies",
- tribeMarketCreate: "Create Listing",
- tribeMarketEmpty: "No listings, yet.",
- tribeMarketTitle: "Title",
- tribeMarketDescription: "Description",
- tribeMarketPrice: "Price",
- tribeMarketImage: "Image",
- tribeMarketCategory: "Category",
- tribeJobCreate: "Create Job",
- tribeJobsEmpty: "No jobs, yet.",
- tribeJobTitle: "Title",
- tribeJobDescription: "Description",
- tribeJobLocation: "Location",
- tribeJobSalary: "Salary",
- tribeJobDeadline: "Deadline",
- tribeProjectCreate: "Create Project",
- tribeProjectsEmpty: "No projects, yet.",
- tribeProjectTitle: "Title",
- tribeProjectDescription: "Description",
- tribeProjectGoal: "Goal",
- tribeProjectFunded: "Funded",
- tribeProjectDeadline: "Deadline",
- tribeMediaUpload: "Upload Media",
- readDocument: "Read Document",
- tribeCreateImage: "Create Image",
- tribeCreateAudio: "Create Audio",
- tribeCreateVideo: "Create Video",
- tribeCreateDocument: "Create Document",
- tribeCreateBookmark: "Create Bookmark",
- tribeMediaEmpty: "No media, yet.",
- tribeMediaTitle: "Title",
- tribeMediaDescription: "Description",
- tribeMediaType: "Type",
- tribeMediaTypeImage: "Image",
- tribeMediaTypeVideo: "Video",
- tribeMediaTypeAudio: "Audio",
- tribeMediaTypeDocument: "Document",
- tribeMediaTypeBookmark: "Bookmark",
- tribeContentDelete: "DELETE",
- tribeInviteCodeText: "Invite code: ",
- tribeGroupTribe: "Tribe",
- tribeGroupOffice: "Office",
- tribeGroupNetwork: "Network",
- tribeGroupEconomy: "Economy",
- tribeGroupMedia: "Media",
- tribeStatusOpen: "OPEN",
- tribeStatusClosed: "CLOSED",
- tribeStatusInProgress: "IN PROGRESS",
- tribePriorityLow: "LOW",
- tribePriorityMedium: "MEDIUM",
- tribePriorityHigh: "HIGH",
- tribePriorityCritical: "CRITICAL",
- tribeTaskFilterAll: "ALL",
- tribeMediaFilterAll: "ALL",
- tribeReportCatBug: "BUG",
- tribeReportCatAbuse: "ABUSE",
- tribeReportCatContent: "CONTENT",
- tribeReportCatOther: "OTHER",
- tribeForumCatGeneral: "GENERAL",
- tribeForumCatProposal: "PROPOSAL",
- tribeForumCatQuestion: "QUESTION",
- tribeForumCatAnnouncement: "ANNOUNCEMENT",
- tribeMarketCatGoods: "GOODS",
- tribeMarketCatServices: "SERVICES",
- tribeMarketCatFood: "FOOD",
- tribeMarketCatOther: "OTHER",
- tribeStatusLabel: "Status",
- tribeSubTribes: "SUB-TRIBES",
- tribeSubTribesCreate: "Create Sub-Tribe",
- tribeSubTribesEmpty: "No sub-tribes created, yet.",
- tribeLarpCreateForbidden: "L.A.R.P. tribes cannot be created.",
- tribeLarpUpdateForbidden: "L.A.R.P. tribes cannot be updated.",
- tribeActivityJoined: "JOINED",
- tribeActivityLeft: "LEFT",
- tribeActivityFeed: "FEED",
- tribeActivityRefeed: "REFEED",
- tribeGroupAnalytics: "Analytics",
- tribeGroupCreative: "Creative",
- tribeSectionActivity: "ACTIVITY",
- tribeSectionTrending: "TRENDING",
- tribeSectionOpinions: "OPINIONS",
- tribeSectionPixelia: "PIXELIA",
- tribeSectionTags: "TAGS",
- tribeSectionSearch: "SEARCH",
- tribeActivityEmpty: "No activity yet.",
- tribeActivityCreated: "created",
- tribeActivityPosted: "posted",
- tribeActivityReplied: "replied",
- tribeTrendingEmpty: "No trending content yet.",
- tribeTrendingPeriodDay: "Today",
- tribeTrendingPeriodWeek: "This Week",
- tribeTrendingPeriodAll: "All Time",
- tribeTrendingEngagement: "engagement",
- tribeOpinionsEmpty: "No opinions yet.",
- tribeOpinionsCast: "Vote",
- tribeOpinionsRankings: "Rankings",
- tribeOpinionsAlreadyVoted: "Already voted",
- tribeTopCategory: "More Voted",
- tribePixeliaTitle: "Pixelia",
- tribePixeliaDescription: "Collaborative pixel art canvas.",
- tribePixeliaPaint: "Paint",
- tribePixeliaContributors: "contributors",
- tribePixeliaTotalPixels: "pixels painted",
- tribeTagsEmpty: "No tags found.",
- tribeTagsCloud: "Tag Cloud",
- tribeTagsContentWith: "Content with tag",
- tribeSearchPlaceholder: "Search tribe content...",
- tribeSearchEmpty: "No results found.",
- tribeSearchResults: "Results",
- tribeSearchMinChars: "Enter at least 2 characters to search.",
- agendaTitle: "Agenda",
- agendaDescription: "Here you can find all your assigned items.",
- agendaFilterAll: "ALL",
- agendaFilterOpen: "OPEN",
- agendaFilterClosed: "CLOSED",
- agendaFilterTasks: "TASKS",
- agendaFilterMarket: "MARKET",
- agendaFilterTribes: "TRIBES",
- agendaFilterEvents: "EVENTS",
- agendaFilterReports: "REPORTS",
- agendaFilterTransfers: "TRANSFERS",
- agendaFilterJobs: "JOBS",
- agendaFilterProjects: "PROJECTS",
- agendaFilterCalendars: "CALENDARS",
- agendaNoItems: "No assignments found.",
- agendaAuthor: "By",
- agendaDiscardButton: "Discard",
- agendaRestoreButton: "Restore",
- agendaCreatedAt: "Created At",
- agendaTitleLabel: "Title",
- agendaMembersCount: "Members",
- agendaDescriptionLabel: "Description",
- agendaStatus: "Status",
- agendaVisibility: "Visibility",
- agendaEventDate: "Event Date",
- agendaEventLocation: "Location",
- agendaEventPrice: "Price",
- agendaEventUrl: "URL",
- agendaTaskStart: "Start Time",
- agendaLocationLabel: "Location",
- agendaLARPLabel: "L.A.R.P.",
- agendaYes: "YES",
- agendaNo: "NO",
- agendaInviteModeLabel: "Status",
- agendaAnonymousLabel: "Anonymous",
- agendaMembersLabel: "Members",
- agendareportCategory: "Category",
- agendareportSeverity: "Severity",
- agendareportStatus: "Status",
- agendareportDescription: "Description",
- agendaTaskEnd: "End Time",
- agendaTaskPriority: "Priority",
- agendaTransferFrom: "From",
- agendaTransferTo: "To",
- agendaTransferConcept: "Concept",
- agendaTransferAmount: "Amount",
- agendaTransferDeadline: "Deadline",
- agendaTransferFrom: "From",
- agendaTransferTo: "To",
- agendaTransferConcept: "Concept",
- agendaTransferAmount: "Amount",
- agendaTransferDeadline: "Deadline",
- opinionsTitle: "Opinions",
- shareYourOpinions: "Discover and vote for opinions in your network.",
- author: "By",
- voteNow: "Vote now",
- alreadyVoted: "You have already opined.",
- noOpinionsFound: "No opinions found.",
- ALLButton: "ALL",
- MINEButton: "MINE",
- RECENTButton: "RECENT",
- TOPButton: "TOP",
- interestingButton: "INTERESTING",
- necessaryButton: "NECESSARY",
- funnyButton: "FUNNY",
- disgustingButton: "DISGUSTING",
- sensibleButton: "SENSIBLE",
- propagandaButton: "PROPAGANDA",
- adultOnlyButton: "ADULT ONLY",
- boringButton: "BORING",
- confusingButton: "CONFUSING",
- inspiringButton: "INSPIRING",
- spamButton: "SPAM",
- usefulButton: "USEFUL",
- informativeButton: "INFORMATIVE",
- wellResearchedButton: "WELL RESEARCHED",
- accurateButton: "ACCURATE",
- needsSourcesButton: "NEEDS SOURCES",
- wrongButton: "WRONG",
- lowQualityButton: "LOW QUALITY",
- creativeButton: "CREATIVE",
- insightfulButton: "INSIGHTFUL",
- actionableButton: "ACTIONABLE",
- inspiringButton: "INSPIRING",
- loveButton: "LOVE",
- clearButton: "CLEAR",
- upliftingButton: "UPLIFTING",
- unnecessaryButton: "UNNECESSARY",
- rejectedButton: "REJECTED",
- misleadingButton: "MISLEADING",
- offTopicButton: "OFF TOPIC",
- duplicateButton: "DUPLICATE",
- clickbaitButton: "CLICKBAIT",
- spamButton: "SPAM",
- trollButton: "TROLL",
- nsfwButton: "NSFW",
- violentButton: "VIOLENT",
- toxicButton: "TOXIC",
- harassmentButton: "HARASSMENT",
- hateButton: "HATE",
- scamButton: "SCAM",
- triggeringButton: "TRIGGERING",
- opinionsCreatedAt: "Created At",
- opinionsTotalCount: "Total Opinions",
- voteInteresting: "Interesting",
- voteNecessary: "Necessary",
- voteUseful: "Useful",
- voteInformative: "Informative",
- voteWellResearched: "Well researched",
- voteNeedsSources: "Needs sources",
- voteWrong: "Wrong",
- voteLowQuality: "Low quality",
- voteLove: "Love",
- voteClear: "Clear",
- voteMisleading: "Misleading",
- voteOffTopic: "Off topic",
- voteDuplicate: "Duplicate",
- voteClickbait: "Clickbait",
- votePropaganda: "Propaganda",
- voteFunny: "Funny",
- voteInspiring: "Inspiring",
- voteUplifting: "Uplifting",
- voteUnnecessary: "Unnecessary",
- voteRejected: "Rejected",
- voteConfusing: "Confusing",
- voteTroll: "Troll",
- voteNsfw: "NSFW",
- voteViolent: "Violent",
- voteToxic: "Toxic",
- voteHarassment: "Harassment",
- voteHate: "Hate",
- voteScam: "Scam",
- voteTriggering: "Triggering",
- voteInsightful: "Insightful",
- voteAccurate: "Accurate",
- voteActionable: "Actionable",
- voteCreative: "Creative",
- voteSpam: "Spam",
- voteAdultOnly: "Adult Only",
- publishBlog: "Publish Blog",
- privateMessage: "PM",
- pmSendTitle: "Private Messages",
- pmSend: "Send!",
- pmDescription: "Use this form to send an encrypted message to other inhabitants.",
- pmRecipients: "Recipients",
- pmRecipientsHint: "Enter Oasis IDs separated by commas",
- pmSubject: "Subject",
- pmSubjectHint: "Enter the message subject",
- pmText: "Message",
- pmFile: "Attachment",
- private: "Private",
- privateDescription: "Your encrypted messages.",
- privateInbox: "Inbox",
- privateSent: "Sent",
- privateDelete: "Delete",
- pmCreateButton: "Write a PM",
- noPrivateMessages: "No private messages.",
- pmFromLabel: "From:",
- pmToLabel: "To:",
- pmInvalidMessage: "Invalid message",
- pmNoSubject: "(no subject)",
- pmSubjectLabel: "Subject:",
- pmBodyLabel: "Body",
- pmBotJobs: "42-JobsBOT",
- pmBotProjects: "42-ProjectsBOT",
- pmBotMarket: "42-MarketBOT",
- inboxJobSubscribedTitle: "New subscription to your job offer",
- pmInhabitantWithId: "Inhabitant with OASIS ID:",
- pmHasSubscribedToYourJobOffer: "has subscribed to your job offer",
- inboxProjectCreatedTitle: "New project created",
- pmHasCreatedAProject: "has created a project",
- inboxMarketItemSoldTitle: "Item Sold",
- pmYourItem: "Your item",
- pmHasBeenSoldTo: "has been sold to",
- pmFor: "for",
- inboxProjectPledgedTitle: "New pledge to your project",
- pmHasPledged: "has pledged",
- pmToYourProject: "to your project",
- blockchain: 'BlockExplorer',
- blockchainTitle: 'BlockExplorer',
- blockchainDescription: 'Explore and visualize the blocks in the blockchain.',
- blockchainNoBlocks: 'No blocks found in the blockchain.',
- blockchainBlockID: 'Block ID',
- blockchainBlockAuthor: 'Author',
- blockchainBlockType: 'Type',
- blockchainBlockTimestamp: 'Timestamp',
- blockchainBlockContent: 'Block',
- blockchainBlockURL: 'URL:',
- blockchainContent: 'Block',
- blockchainContentPreview: 'Preview of the block content',
- blockchainLatestDatagram: 'Latest Datagram',
- blockchainDatagram: 'Datagram',
- blockchainDetails: 'View block details',
- blockchainBlockInfo: 'Block Information',
- blockchainBlockDetails: 'Details of the selected block',
- blockchainBack: 'Back to Blockexplorer',
- blockchainContentDeleted: "This content has been tombstoned",
- visitContent: "Visit Content",
- banking: 'Banking',
- bankingTitle: 'Banking',
- bankingDescription: 'Explore the current value of ECOin and the corresponding UBI allocation, distributed per epoch based on participation and trust.',
- bankOverview: 'Overview',
- bankEpochs: 'Epochs',
- bankRules: 'Rules',
- pending: 'Pending',
- closed: 'Closed',
- bankBack: 'Back to Banking',
- bankViewTx: 'View Tx',
- bankClaimNow: 'Claim now',
- bankClaimUBI: 'Claim UBI!',
- bankClaimAndPay: 'Claim & Pay',
- bankClaimedPending: 'Claim pending...',
- bankStatusUnclaimed: 'Unclaimed',
- bankStatusClaimed: 'Claimed',
- bankStatusExpired: 'Expired',
- bankPubOnly: 'PUB-only operation',
- bankNoPendingUBI: 'No pending UBI allocations for this epoch.',
- bankPubBalance: 'PUB Balance',
- bankEpoch: 'Epoch',
- bankPool: 'Pool (this epoch)',
- bankWeightsSum: 'Sum of weights',
- bankAllocations: 'Allocations',
- bankNoAllocations: 'No allocations found.',
- bankNoEpochs: 'No epochs found.',
- bankEpochAllocations: 'Epoch allocations',
- bankAllocId: 'Allocation ID',
- bankAllocDate: 'Date',
- bankAllocConcept: 'Concept',
- bankAllocFrom: 'From',
- bankAllocTo: 'To',
- bankAllocAmount: 'Amount',
- bankAllocStatus: 'Status',
- bankEpochId: 'Epoch ID',
- bankRuleHash: 'Rules Snapshot Hash',
- bankViewEpoch: 'View Epoch',
- bankUserBalance: 'Your Balance',
- ecoWalletNotConfigured: 'ECOin Wallet not configured',
- editWallet: 'Edit wallet',
- addWallet: 'Add wallet',
- bankAddresses: 'Addresses',
- bankNoAddresses: 'No addresses found.',
- bankUser: 'Oasis ID',
- bankAddress: 'Address',
- bankAddAddressTitle: 'Add ECOIN address',
- bankAddAddressUser: 'Oasis ID',
- bankAddAddressAddress: 'ECOIN Address',
- bankAddAddressSave: 'Save',
- bankAddressAdded: 'Address added',
- bankAddressUpdated: 'Address updated',
- bankAddressExists: 'Address already exists',
- bankAddressInvalid: 'Invalid address',
- bankAddressDeleted: 'Address deleted',
- bankAddressNotFound: 'Address not found',
- bankAddressTotal: 'Total Addresses',
- bankAddressSearch: 'Search @inhabitant or address',
- bankAddressActions: 'Actions',
- bankAddressDelete: 'Delete',
- bankAddressSource: 'Source',
- bankAddressDeleteConfirm: 'Delete this address?',
- search: 'Search!',
- bankLocal: 'Local',
- bankFromOasis: 'Oasis',
- bankMyAddress: 'Your address',
- bankRemoveMyAddress: 'Remove my address',
- bankNotRemovableOasis: 'Addresses cannot be removed locally',
- bankingFutureUBI: "UBI",
- pubIdTitle: "PUB Wallet",
- pubIdDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
- pubIdLabel: "PUB ID",
- pubIdSave: "Save configuration",
- pubIdPlaceholder: "@PUB_ID.ed25519",
- bankUbiAvailability: "UBI Availability",
- bankUbiAvailableOk: "OK",
- bankUbiAvailableNo: "NO FUNDS!",
- bankAlreadyClaimedThisMonth: "Already claimed this month",
- bankUbiThisMonth: "UBI (this month)",
- bankUbiLastClaimed: "UBI (last claimed)",
- bankUbiNeverClaimed: "Never claimed",
- bankUbiTotalClaimed: "UBI (total claimed)",
- bankUbiPub: "PUB",
- bankUbiInhabitant: "INHABITANT",
- bankUbiClaimedAmount: "CLAIMED (ECO)",
- typeBankUbiResult: "BANKING - UBI",
- bankNoPubConfigured: "No PUB configured. Set your PUB ID in Settings.",
- shopsTitle: "Shops",
- shopDescription: "Discover and manage shops in the network.",
- shopTitle: "Shop",
- shopFilterAll: "ALL",
- shopFilterMine: "MINE",
- shopFilterRecent: "RECENT",
- shopFilterTop: "TOP",
- shopFilterProducts: "PRODUCTS",
- shopFilterPrices: "PRICES",
- shopFilterFavorites: "FAVORITES",
- shopUpload: "Create Shop",
- shopAllSectionTitle: "Shops",
- shopMineSectionTitle: "Your Shops",
- shopRecentSectionTitle: "Recent Shops",
- shopTopSectionTitle: "Top Shops",
- shopProductsSectionTitle: "Top Products",
- shopPricesSectionTitle: "Products by Price",
- shopFavoritesSectionTitle: "Favorites",
- shopCreateSectionTitle: "Create Shop",
- shopUpdateSectionTitle: "Update Shop",
- shopCreate: "Create",
- shopUpdate: "Update",
- shopDelete: "Delete",
- shopAddFavorite: "Add Favorite",
- shopRemoveFavorite: "Remove Favorite",
- shopOpen: "OPEN",
- shopClosed: "CLOSED",
- shopOpenShop: "Open Shop",
- shopCloseShop: "Close Shop",
- shopProducts: "Products",
- shopProductAdd: "Add Product",
- shopProductTitle: "Product",
- shopProductUpdate: "Update Product",
- shopProductPrice: "Price (ECO)",
- shopProductStock: "Stock",
- shopProductUntitled: "Untitled Product",
- shopUntitled: "Untitled Shop",
- shopNoItems: "No shops found.",
- shopNoProducts: "No products yet.",
- shopOutOfStock: "Out of stock",
- shopBuy: "Buy",
- shopBackToShop: "Back to Shop",
- shopShareUrl: "Share URL",
- shopVisitShop: "VISIT SHOP",
- shopStatus: "STATUS",
- shopCreatedAt: "CREATED",
- shopSearchPlaceholder: "Search shops...",
- shopUrl: "URL",
- shopLocation: "Location",
- shopTags: "Tags",
- shopVisibility: "Visibility",
- shopImage: "Image",
- shopShortDescription: "Short Description",
- shopShortDescriptionPlaceholder: "Brief description of your shop",
- shopTitlePlaceholder: "Name of your shop",
- shopDescriptionPlaceholder: "Detailed description of your shop",
- shopUrlPlaceholder: "https://your-shop-url.com",
- shopLocationPlaceholder: "City, Country",
- shopTagsPlaceholder: "tag1, tag2, tag3",
- mapTitlePlaceholder: "Map title",
- shopProductFeatured: "Featured Product",
- shopSendToMarket: "Send to Market",
- typeShop: "SHOP",
- typeShopProduct: "SHOP PRODUCT",
- bankExchange: 'Exchange',
- bankExchangeCurrentValue: 'ECOin Value (1h)',
- bankTotalSupply: 'ECOin Total Supply',
- bankEcoinHours: "ECOin Equivalence in Time",
- bankHoursOfWork: 'hours',
- bankExchangeNoData: 'No data available',
- bankExchangeIndex: 'ECOin Value (1h)',
- bankInflation: 'ECOin Inflation',
- bankCurrentSupply: 'ECOin Current Supply',
- bankingSyncStatus: 'ECOin Status',
- bankingSyncStatusSynced: 'Synced',
- bankingSyncStatusOutdated: 'Outdated',
- statsTitle: 'Statistics',
- statistics: "Statistics",
- statsInhabitant: "Inhabitant Stats",
- statsDescription: "Discover statistics about your network.",
- ALLButton: "ALL",
- MINEButton: "MINE",
- TOMBSTONEButton: "TOMBSTONES",
- statsYou: "You",
- statsUserId: "Oasis ID",
- statsCreatedAt: "Created At",
- statsYourContent: "Content",
- statsYourOpinions: "Opinions",
- statsYourTombstone: "Tombstones",
- statsNetwork: "Network",
- statsTotalInhabitants: "Inhabitants",
- statsDiscoveredTribes: "Tribes (Public)",
- statsPrivateDiscoveredTribes: "Tribes (Private)",
- statsNetworkContent: "Content",
- statsYourMarket: "Market",
- statsYourJob: "Jobs",
- statsYourProject: "Projects",
- statsYourTransfer: "Transfers",
- statsYourForum: "Forums",
- statsNetworkOpinions: "Opinions",
- statsDiscoveredMarket: "Market",
- statsDiscoveredJob: "Jobs",
- statsDiscoveredProject: "Projects",
- statsBankingTitle: "Banking",
- statsEcoWalletLabel: "ECOIN Wallet",
- statsEcoWalletNotConfigured: "Not configured!",
- statsTotalEcoAddresses: "Total addresses",
- statsDiscoveredTransfer: "Transfers",
- statsDiscoveredForum: "Forums",
- statsNetworkTombstone: "Tombstones",
- statsBookmark: "Bookmarks",
- statsEvent: "Events",
- statsTask: "Tasks",
- statsVotes: "Votes",
- statsMarket: "Market",
- statsForum: "Forums",
- statsJob: "Jobs",
- statsProject: "Projects",
- statsReport: "Reports",
- statsFeed: "Feeds",
- statsTribe: "Tribes",
- statsImage: "Images",
- statsAudio: "Audios",
- statsVideo: "Videos",
- statsDocument: "Documents",
- statsMap: "Maps",
- statsShop: "Shops",
- statsShopProduct: "Shop products",
- statsTransfer: "Transfers",
- statsAiExchange: "AI",
- statsPUBs: 'PUBs',
- statsPost: "Posts",
- statsOasisID: "Oasis ID",
- statsSize: "Total (size)",
- statsBlockchainSize: "Blockchain (size)",
- statsBlobsSize: "Blobs (size)",
- statsActivity7d: "Activity (last 7 days)",
- statsActivity7dTotal: "7-day total",
- statsActivity30dTotal: "30-day total",
- statsKarmaScore: "KARMA Score",
- statsPublic: "Public",
- statsPrivate: "Private",
- day: "Day",
- messages: "Messages",
- statsProject: "Projects",
- statsProjectsTitle: "Projects",
- statsProjectsTotal: "Total projects",
- statsProjectsActive: "Active",
- statsProjectsCompleted: "Completed",
- statsProjectsPaused: "Paused",
- statsProjectsCancelled: "Cancelled",
- statsProjectsGoalTotal: "Total goal",
- statsProjectsPledgedTotal: "Total pledged",
- statsProjectsSuccessRate: "Success rate",
- statsProjectsAvgProgress: "Average progress",
- statsProjectsMedianProgress: "Median progress",
- statsProjectsActiveFundingAvg: "Avg. active funding",
- statsJobsTitle: "Jobs",
- statsJobsTotal: "Total jobs",
- statsJobsOpen: "Open",
- statsJobsClosed: "Closed",
- statsJobsOpenVacants: "Open vacants",
- statsJobsSubscribersTotal: "Total subscribers",
- statsJobsAvgSalary: "Average salary",
- statsJobsMedianSalary: "Median salary",
- statsMarketTitle: "Market",
- statsMarketTotal: "Total items",
- statsMarketForSale: "For sale",
- statsMarketReserved: "Reserved",
- statsMarketClosed: "Closed",
- statsMarketSold: "Sold",
- statsMarketRevenue: "Revenue",
- statsMarketAvgSoldPrice: "Avg. sold price",
- statsUsersTitle: "Inhabitants",
- user: "Inhabitant",
- statsTombstoneTitle: "Tombstones",
- statsNetworkTombstones: "Network tombstones",
- statsTombstoneRatio: "Tombstone ratio (%)",
- statsAITraining: "AI Training",
- statsAIExchanges: "Exchanges",
- statsParliamentCandidature: "Parliament candidatures",
- statsParliamentTerm: "Parliament terms",
- statsParliamentProposal: "Parliament proposals",
- statsParliamentRevocation: "Parliament revocations",
- statsParliamentLaw: "Parliament laws",
- statsCourtsCase: "Court cases",
- statsCourtsEvidence: "Court evidence",
- statsCourtsAnswer: "Court answers",
- statsCourtsVerdict: "Court verdicts",
- statsCourtsSettlement: "Court settlements",
- statsCourtsSettlementProposal: "Settlement proposals",
- statsCourtsSettlementAccepted: "Settlements accepted",
- statsCourtsNomination: "Judge nominations",
- statsCourtsNominationVote: "Nomination votes",
- ai: "AI",
- aiTitle: "AI",
- aiDescription: "A Collective Artificial Intelligence (CAI) called '42' that learns from your network.",
- aiInputPlaceholder: "What's up?",
- aiUserQuestion: "Question",
- aiResponseTitle: "Reply",
- aiSubmitButton: "Send!",
- aiSettingsDescription: "Set your prompt (max 128 characters) for the AI model.",
- aiPrompt: "Provide an informative and precise response.",
- aiConfiguration: "Set prompt",
- aiPromptUsed: "Prompt",
- aiClearHistory: "Clear chat history",
- aiSharePrompt: "Add this answer to collective training?",
- aiShareYes: "Yes",
- aiShareNo: "No",
- aiSharedLabel: "Added to training",
- aiRejectedLabel: "Not added to training",
- aiServerError: "The AI could not answer. Please try again.",
- aiInputPlaceholder: "What is Oasis?",
- typeAiExchange: "AI",
- aiApproveTrain: "Add to collective training",
- aiRejectTrain: "Do not train",
- aiTrainPending: "Pending approval",
- aiTrainApproved: "Approved for training",
- aiTrainRejected: "Rejected for training",
- aiSnippetsUsed: "Snippets used",
- aiSnippetsLearned: "Snippets learned",
- statsAITraining: "AI training",
- aiApproveCustomTrain: "Train using this custom answer",
- aiCustomAnswerPlaceholder: "Write your custom answer…",
- statsAIExchanges: "Model Exchanges",
- marketMineSectionTitle: "Your Items",
- marketCreateSectionTitle: "Create Item",
- marketUpdateSectionTitle: "Update",
- marketAllSectionTitle: "Market",
- marketRecentSectionTitle: "Recent Market",
- marketTitle: "Market",
- marketDescription: "A marketplace for exchanging goods or services in your network.",
- marketFilterAll: "ALL",
- marketFilterMine: "MINE",
- marketFilterAuctions: "AUCTIONS",
- marketFilterItems: "EXCHANGE",
- marketFilterNew: "NEW",
- marketFilterUsed: "USED",
- marketFilterBroken: "BROKEN",
- marketFilterForSale: "FOR SALE",
- marketFilterSold: "SOLD",
- marketFilterDiscarded: "DISCARDED",
- marketFilterRecent: "RECENT",
- marketFilterMyBids: "BIDS",
- marketCreateButton: "Create Item",
- marketItemType: "Type",
- marketItemTitle: "Title",
- marketItemAvailable: "Deadline",
- marketItemDescription: "Description",
- marketItemDescriptionPlaceholder: "Describe the item you're selling",
- marketItemStatus: "Status",
- marketShopLabel: "Shop",
- marketItemCondition: "Condition",
- marketItemPrice: "Price",
- marketItemTags: "Tags",
- marketItemTagsPlaceholder: "Enter tags separated by commas",
- marketItemDeadline: "Deadline",
- marketItemIncludesShipping: "Includes Shipping?",
- marketItemHighestBid: "Highest Bid",
- marketItemHighestBidder: "Highest Bidder",
- marketItemStock: "Stock",
- marketOutOfStock: "Out of stock",
- marketItemBidTime: "Bid Time",
- marketActionsUpdate: "Update",
- marketUpdateButton: "Update Item!",
- marketActionsDelete: "Delete",
- marketActionsSold: "Mark as Sold",
- marketActionsChangeStatus: "CHANGE STATUS",
- marketActionsBuy: "BUY!",
- marketAuctionBids: "Current Bids",
- marketPlaceBidButton: "Place Bid",
- marketItemSeller: "Seller",
- marketNoItems: "No items available, yet.",
- marketYourBid: "Your Bid",
- marketCreateFormImageLabel: "Upload media (max-size: 50MB)",
- marketSearchLabel: "Search",
- marketSearchPlaceholder: "Search title or tags",
- marketMinPriceLabel: "Min price",
- marketMaxPriceLabel: "Max price",
- marketSortLabel: "Sort by",
- marketSortRecent: "Most recent",
- marketSortPrice: "Price",
- marketSortDeadline: "Deadline",
- marketSearchButton: "Search",
- marketAuctionEndsIn: "Ends",
- marketAuctionEnded: "Ended",
- marketMyBidBadge: "You bid",
- marketNoItemsMatch: "No items match your search.",
- jobsTitle: "Jobs",
- jobsDescription: "Discover and manage jobs in your network.",
- jobsFilterRecent: "RECENT",
- jobsFilterMine: "MINE",
- jobsFilterAll: "ALL",
- jobsFilterRemote: "REMOTE",
- jobsFilterOpen: "OPEN",
- jobsFilterClosed: "CLOSED",
- jobsCV: "CVs",
- jobsCreateJob: "Create Job",
- jobsRecentTitle: "Recent Jobs",
- jobsMineTitle: "Your Jobs",
- jobsAllTitle: "Jobs",
- jobsRemoteTitle: "Remote Jobs",
- jobsOpenTitle: "Open Jobs",
- jobsClosedTitle: "Closed Jobs",
- jobsCVTitle: "CVs",
- jobsFilterPresencial: "PRESENCIAL",
- jobsFilterFreelancer: "FREELANCER",
- jobsFilterEmployee: "EMPLOYEE",
- jobsPresencialTitle: "Presential Jobs",
- jobsFreelancerTitle: "Freelance Jobs",
- jobsEmployeeTitle: "Employee Jobs",
- jobTitle: "Title",
- jobLocation: "Location",
- jobSalary: "Salary (ECO/1h)",
- jobVacants: "Vacants",
- jobDescription: "Description",
- jobRequirements: "Requirements",
- jobLanguages: "Languages",
- jobStatus: "Status",
- jobStatusOPEN: "OPEN",
- jobStatusCLOSED: "CLOSED",
- jobSetOpen: "Set as OPEN",
- jobSetClosed: "Set as CLOSED",
- jobSubscribeButton: "Join this offer!",
- jobUnsubscribeButton: "Leave this offer!",
- jobTitlePlaceholder: "Enter job title",
- jobDescriptionPlaceholder: "Describe the job",
- jobRequirementsPlaceholder: "Enter requirements",
- jobLanguagesPlaceholder: "English, Spanish, French, Basque...",
- jobTasksPlaceholder: "List tasks",
- jobLocationPresencial: "On-place",
- jobLocationRemote: "Remote",
- jobVacantsPlaceholder: "Number of positions",
- jobSalaryPlaceholder: "Salary in ECO for 1 dedicated hour",
- jobImage: "Upload media (max-size: 50MB)",
- jobTasks: "Tasks",
- jobType: "Job Type",
- jobTime: "Job Time",
- jobSubscribers: "Subscribers",
- noSubscribers: "No subscribers",
- jobsFilterTop: "TOP",
- jobsTopTitle: "Top Salary Jobs",
- createJobButton: "Publish Job",
- viewDetailsButton: "View Details",
- noJobsFound: "No job offers found.",
- jobAuthor: "By",
- jobTypeFreelance: "Freelancer",
- jobTypeSalary: "Employee",
- jobTimePartial: "Part-time",
- jobTimeComplete: "Full-time",
- jobsDeleteButton: "DELETE",
- jobsUpdateButton: "UPDATE",
- jobsFilterApplied: "APPLIED",
- jobsAppliedTitle: "My applications",
- jobsAppliedBadge: "Applied",
- jobsFilterFavs: "Favorites",
- jobsFavsTitle: "Favorites",
- jobsFilterNeeds: "Needs help",
- jobsNeedsTitle: "Needs help",
- jobsSearchLabel: "Search",
- jobsSearchPlaceholder: "Search title, tags, description...",
- jobsMinSalaryLabel: "Min salary",
- jobsMaxSalaryLabel: "Max salary",
- jobsSortLabel: "Sort by",
- jobsSortRecent: "Most recent",
- jobsSortSalary: "Highest salary",
- jobsSortSubscribers: "Most applicants",
- jobsSearchButton: "Search",
- jobsFavoriteButton: "Favorite",
- jobsUnfavoriteButton: "Unfavorite",
- jobsMessageAuthorButton: "PM",
- jobsApplicants: "Applicants",
- jobsUpdatedAt: "Updated",
- jobSetOpen: "Set open",
- jobNewBadge: "NEW",
- jobsTagsLabel: "Tags",
- jobsTagsPlaceholder: "tag1, tag2, tag3",
- noJobsMatch: "No jobs match your search.",
- projectsTitle: "Projects",
- projectsDescription: "Create, fund, and follow community-driven projects in your network.",
- projectCreateProject: "Create Project",
- projectCreateButton: "Create Project",
- projectUpdateButton: "UPDATE",
- projectDeleteButton: "DELETE",
- projectNoProjectsFound: "No projects found.",
- projectFilterAll: "ALL",
- projectFilterMine: "MINE",
- projectFilterActive: "ACTIVE",
- projectFilterPaused: "PAUSED",
- projectFilterCompleted: "COMPLETED",
- projectFilterFollowing: "FOLLOWING",
- projectFilterRecent: "RECENT",
- projectFilterTop: "TOP",
- projectAllTitle: "Projects",
- projectMineTitle: "Your Projects",
- projectActiveTitle: "Active Projects",
- projectPausedTitle: "Paused Projects",
- projectCompletedTitle: "Completed Projects",
- projectFollowingTitle: "Following Projects",
- projectRecentTitle: "Recent Projects",
- projectTopTitle: "Top Funded",
- projectTitlePlaceholder: "Project name",
- projectImage: "Upload media (max-size: 50MB)",
- projectDescription: "Description",
- projectDescriptionPlaceholder: "Tell the story and goals…",
- projectGoal: "Goal (ECO)",
- projectGoalPlaceholder: "50000",
- projectDeadline: "Deadline",
- projectProgress: "Starting Progress (%)",
- projectStatus: "Status",
- projectFunding: "Funding",
- projectPledged: "Pledged",
- projectSetStatus: "Set Status",
- projectSetProgress: "Update Progress",
- projectFollowButton: "FOLLOW",
- projectUnfollowButton: "UNFOLLOW",
- projectStatusACTIVE: "ACTIVE",
- projectStatusPAUSED: "PAUSED",
- projectStatusCOMPLETED: "COMPLETED",
- projectStatusCANCELLED: "CANCELLED",
- projectPledgeTitle: "Back this project",
- projectPledgePlaceholder: "Amount in ECO",
- projectBounties: "Bounties",
- projectBountiesInputLabel: "Bounties (one per line: Title|Amount [ECO]|Description)",
- projectBountiesPlaceholder: "Fix UI bug|100|Link to issue\nWrite docs|250|Outline usage examples",
- projectNoBounties: "No bounties found.",
- projectTitle: "Title",
- projectAddBountyTitle: "New Bounty",
- projectBountyTitle: "Bounty Title",
- projectBountyAmount: "Amount (ECO)",
- projectBountyDescription: "Description",
- projectMilestoneSelect: "Select Milestone",
- projectBountyCreateButton: "Create Bounty",
- projectBountyStatus: "Bounty Status",
- projectBountyOpen: "open",
- projectBountyClaimed: "claimed",
- projectBountyDone: "completed",
- projectBountyClaimedBy: "claimed by",
- projectBountyClaimButton: "claim",
- projectBountyCompleteButton: "Mark Completed",
- projectMilestones: "Milestones",
- projectAddMilestoneTitle: "New milestone",
- projectMilestoneTitle: "Milestone Title",
- projectMilestoneTargetPercent: "Percent (%)",
- projectMilestoneDueDate: "Date",
- projectMilestoneCreateButton: "Create Milestone",
- projectMilestoneStatus: "Milestone Status",
- projectMilestoneOpen: "open",
- projectMilestoneDone: "completed",
- projectMilestoneMarkDone: "Mark as Completed",
- projectMilestoneDue: "due",
- projectNoMilestones: "No milestones found.",
- projectMilestoneMarkDone: "Mark as Done",
- projectMilestoneTitlePlaceholder: "Enter milestone title",
- projectMilestoneDescriptionPlaceholder: "Enter description for this milestone",
- projectMilestoneDescription: "Milestone Description",
- projectBudgetGoal: "Budget (Goal)",
- projectBudgetAssigned: "Assigned to bounties",
- projectBudgetRemaining: "Remaining",
- projectBudgetOver: "⚠ Over budget: assigned exceeds goal",
- projectFollowers: "Followers",
- projectFollowersTitle: "Followers",
- projectFollowersNone: "No followers yet.",
- projectMore: "more",
- projectYouFollowHint: "You follow this project",
- projectBackers: "Backers",
- projectBackersTitle: "Backers",
- projectBackersTotal: "Total backers",
- projectBackersTotalPledged: "Total pledged",
- projectBackersYourPledge: "Your pledge",
- projectBackersNone: "No pledges yet.",
- projectNoRemainingBudget: "No remaining budget.",
- projectFilterBackers: "BACKERS",
- projectFilterApplied: "APPLIED",
- projectAppliedTitle: "APPLIED",
- projectBackersLeaderboardTitle: "Top Backers",
- projectNoBackersFound: "No backers found.",
- projectBackerAmount: "Total contributed",
- projectBackerPledges: "Pledges",
- projectBackerProjects: "Projects",
- projectPledgeAmount: "Amount",
- projectSelectMilestoneOrBounty: "Select Milestone or Bounty",
- projectPledgeButton: "Pledge",
- footerLicense: "GPLv3",
- footerPackage: "Package",
- footerVersion: "Version",
- modulesModuleName: "Name",
- modulesModuleDescription: "Description",
- modulesModuleStatus: "Status",
- modulesTotalModulesLabel: "Loaded Modules",
- modulesEnabledModulesLabel: "Enabled",
- modulesDisabledModulesLabel: "Disabled",
- modulesPopularLabel: "Popular",
- modulesPopularDescription: "Module to receive posts that are trending, most viewed, or most commented on.",
- modulesTopicsLabel: "Topics",
- modulesTopicsDescription: "Module to receive discussion categories based on shared interests.",
- modulesSummariesLabel: "Summaries",
- modulesSummariesDescription: "Module to receive summaries of long discussions or posts.",
- modulesLatestLabel: "Latest",
- modulesLatestDescription: "Module to receive the most recent posts and discussions.",
- modulesThreadsLabel: "Threads",
- modulesThreadsDescription: "Module to receive conversations grouped by topic or question.",
- modulesMultiverseLabel: "Multiverse",
- modulesMultiverseDescription: "Module to receive content from other federated peers.",
- modulesInvitesLabel: "Invites",
- modulesInvitesDescription: "Module to manage and apply invite codes.",
- modulesWalletLabel: "Wallet",
- modulesWalletDescription: "Module to manage your digital assets (ECOin).",
- modulesLegacyLabel: "Legacy",
- modulesLegacyDescription: "Module to manage your secret (private key) quickly and securely.",
- modulesCipherLabel: "Cipher",
- modulesCipherDescription: "Module to encrypt and decrypt your text symmetrically (using a shared password).",
- modulesBookmarksLabel: "Bookmarks",
- modulesBookmarksDescription: "Module to discover and manage bookmarks.",
- modulesVideosLabel: "Videos",
- modulesVideosDescription: "Module to discover and manage videos.",
- modulesDocsLabel: "Documents",
- modulesDocsDescription: "Module to discover and manage documents.",
- modulesAudiosLabel: "Audios",
- modulesAudiosDescription: "Module to discover and manage audios.",
- modulesTagsLabel: "Tags",
- modulesTagsDescription: "Module to discover and explore taxonomy patterns (tags).",
- modulesImagesLabel: "Images",
- modulesImagesDescription: "Module to discover and manage images.",
- modulesTrendingLabel: "Trending",
- modulesTrendingDescription: "Module to explore the most popular content.",
- modulesEventsLabel: "Events",
- modulesEventsDescription: "Module to discover and manage events.",
- modulesTasksLabel: "Tasks",
- modulesTasksDescription: "Module to discover and manage tasks.",
- modulesMarketLabel: "Market",
- modulesMarketDescription: "Module to exchange goods or services.",
- modulesShopsLabel: "Shops",
- modulesShopsDescription: "Module to manage and discover shops.",
- modulesTribesLabel: "Tribes",
- modulesTribesDescription: "Module to explore or create tribes (groups).",
- modulesVotationsLabel: "Votations",
- modulesVotationsDescription: "Module to discover and manage votations.",
- modulesReportsLabel: "Reports",
- modulesReportsDescription: "Module to manage and track reports related to issues, bugs, abuses, and content warnings.",
- modulesOpinionsLabel: "Opinions",
- modulesOpinionsDescription: "Module to discover and vote on opinions.",
- modulesTransfersLabel: "Transfers",
- modulesTransfersDescription: "Module to discover and manage smart-contracts (transfers).",
- modulesFeedLabel: "Feed",
- modulesFeedDescription: "Module to discover and share short-texts (feeds).",
- modulesParliamentLabel: "Parliament",
- modulesParliamentDescription: "Module to elect governments and vote on laws.",
- modulesCourtsLabel: "Courts",
- modulesCourtsDescription: "Module to resolve conflicts and emit veredicts.",
- modulesPixeliaLabel: "Pixelia",
- modulesPixeliaDescription: "Module to draw on a collaborative grid.",
- modulesAgendaLabel: "Agenda",
- modulesAgendaDescription: "Module to manage all your assigned items.",
- modulesAILabel: "AI",
- modulesAIDescription: "Module to talk with a LLM called '42'.",
- modulesForumLabel: "Forums",
- modulesForumDescription: "Module to discover and manage forums.",
- modulesJobsLabel: "Jobs",
- modulesJobsDescription: "Module to discover and manage jobs.",
- modulesProjectsLabel: "Projects",
- modulesProjectsDescription: "Module to explore, crowd-funding and manage projects.",
- modulesBankingLabel: "Banking",
- modulesBankingDescription: "Module to determine the real value of ECOIN and distribute a UBI using the common treasury.",
- modulesFavoritesLabel: "Favorites",
- modulesFavoritesDescription: "Module to manage your favorite content.",
- fileTooLargeTitle: "File too large",
- fileTooLargeMessage: "The file exceeds the maximum allowed size (50 MB). Please select a smaller file.",
- goBack: "Go back",
- directConnect: "Direct Connect",
- directConnectDescription: "Connect directly to a peer by entering their IP address, port and public key. The peer will be added as a followed connection.",
- peerHost: "IP / Hostname",
- peerPort: "Port (default: 8008)",
- peerPublicKey: "Public Key (@...ed25519)",
- connectAndFollow: "Connect",
- deviceSourceLabel: "Device source",
- modulesPresetTitle: "Common Configurations",
- modulesPreset_minimal: "Minimal",
- modulesPreset_basic: "Basic",
- modulesPreset_social: "Social",
- modulesPreset_economy: "Economy",
- modulesPreset_full: "Full",
- statsCarbonFootprintTitle: "Carbon Footprint",
- statsCarbonFootprintNetwork: "Network carbon footprint",
- statsCarbonFootprintYours: "Your carbon footprint",
- statsCarbonTombstone: "Tombstoning footprint",
- feedSuccessMsg: "Feed published successfully!",
- dominantOpinionLabel: "Dominant opinion",
- uploadMedia: "Upload media (max-size: 50MB)",
- mapsLabel: "Maps",
- mapTitle: "Maps",
- mapDescription: "Explore and manage offline maps in your network.",
- mapMineSectionTitle: "Your Maps",
- mapCreateSectionTitle: "Create Map",
- mapUpdateSectionTitle: "Update Map",
- mapAllSectionTitle: "Maps",
- mapRecentSectionTitle: "Recent Maps",
- mapFavoritesSectionTitle: "Favorites",
- mapFilterAll: "ALL",
- mapFilterMine: "MINE",
- mapFilterRecent: "RECENT",
- mapFilterFavorites: "FAVORITES",
- mapUploadButton: "Upload Map",
- mapCreateButton: "Create Map",
- mapUpdateButton: "Update",
- mapDeleteButton: "Delete",
- mapAddFavoriteButton: "Add favorite",
- mapRemoveFavoriteButton: "Remove favorite",
- mapLatLabel: "Latitude",
- mapLatPlaceholder: "e.g. 40.4168",
- mapLngLabel: "Longitude",
- mapLngPlaceholder: "e.g. -3.7038",
- mapDescriptionLabel: "Description",
- mapDescriptionPlaceholder: "Describe the map or location...",
- mapTypeLabel: "Map type",
- mapTypeSingle: "SINGLE (only initial location)",
- mapTypeOpen: "OPEN (anyone can add markers)",
- mapTypeClosed: "CLOSED (only creator adds markers)",
- mapTagsLabel: "Tags",
- mapTagsPlaceholder: "Enter tags separated by commas",
- mapUrlLabel: "Map URL",
- mapPickCoordLabel: "Or select a location on the grid:",
- mapMarkersLabel: "markers",
- mapMarkersTitle: "Markers",
- mapMarkerDefault: "Marker",
- mapMarkerLatLabel: "Marker latitude",
- mapMarkerLngLabel: "Marker longitude",
- mapMarkerLabelField: "Marker label",
- mapMarkerLabelPlaceholder: "Describe this marker...",
- markerImageLabel: "Marker Image",
- mapAddMarkerTitle: "Add Marker",
- mapAddMarkerButton: "Add Marker",
- mapCleanMarkerButton: "Clean Marker",
- mapApplyZoom: "Apply Zoom",
- mapSearchPlaceholder: "Search description, tags, author...",
- mapSearchButton: "Search",
- mapZoomIn: "Zoom +",
- mapZoomOut: "Zoom −",
- mapClickToCreate: "Click on the map to select a location",
- mapClickToAddMarker: "Click on the map to add a marker",
- mapUpdatedAt: "Updated",
- mapNoMatch: "No maps match your search.",
- noMaps: "No maps available.",
- mapLocationTitle: "Map Location",
- mapVisitLabel: "Visit map",
- mapUrlPlaceholder: "/maps/MAP_ID",
- typeMap: "MAPS",
- typeMapMarker: "MAP MARKER",
- modulesMapLabel: "Maps",
- modulesMapDescription: "Module to manage and share offline maps.",
- padsTitle: "Pads",
- padTitle: "Pad",
- modulesPadsLabel: "Pads",
- modulesPadsDescription: "Module to manage collaborative text editors.",
- padFilterAll: "ALL",
- padFilterMine: "MINE",
- padFilterRecent: "RECENT",
- padFilterOpen: "OPEN",
- padFilterClosed: "CLOSED",
- padCreate: "Create Pad",
- padUpdate: "Update Pad",
- padDelete: "Delete Pad",
- padTitleLabel: "Title",
- padTitlePlaceholder: "Enter pad title...",
- padStatusLabel: "Status",
- padStatusOpen: "OPEN",
- padStatusInviteOnly: "INVITE-ONLY",
- padStatusClosed: "CLOSED",
- padDeadlineLabel: "Deadline",
- padTagsLabel: "Tags",
- padTagsPlaceholder: "tag1, tag2, ...",
- padMembersLabel: "Members",
- padVisitPad: "Visit Pad",
- padShareUrl: "Share URL",
- padCreated: "Created",
- padAuthor: "Author",
- padGenerateCode: "Generate Code",
- padInviteCodeLabel: "Invite Code",
- padInviteCodePlaceholder: "Enter invite code...",
- padValidateInvite: "Validate",
- padStartEditing: "START EDITING!",
- padEditorPlaceholder: "Start writing...",
- padSubmitEntry: "Submit",
- padNoEntries: "No entries yet.",
- padAllSectionTitle: "Pads",
- padMineSectionTitle: "Your Pads",
- padsNoItems: "No pads found.",
- padsDescription: "Manage collaborative encrypted text editors in your network.",
- padVersionHistory: "Version History",
- padVersionView: "View",
- padRecentSectionTitle: "Recent Pads",
- padOpenSectionTitle: "Open Pads",
- padClosedSectionTitle: "Closed Pads",
- padCreateSectionTitle: "Create New Pad",
- padUpdateSectionTitle: "Update Pad",
- padInviteGenerated: "Invite Code Generated",
- typePad: "PAD",
- padNew: "NEW",
- padAddFavorite: "Add to Favorites",
- padRemoveFavorite: "Remove from Favorites",
- padClose: "Close Pad",
- padBackToEditor: "Back to editor",
- padSearchPlaceholder: "Search pads...",
- calendarsTitle: "Calendars",
- calendarTitle: "Calendar",
- modulesCalendarsLabel: "Calendars",
- modulesCalendarsDescription: "Module to discover and manage calendars.",
- typeCalendar: "CALENDAR",
- calendarFilterAll: "ALL",
- calendarFilterMine: "MINE",
- calendarFilterOpen: "OPEN",
- calendarFilterClosed: "CLOSED",
- calendarFilterRecent: "RECENT",
- calendarFilterFavorites: "FAVORITES",
- calendarCreate: "Create Calendar",
- calendarUpdate: "Update",
- calendarDelete: "Delete",
- calendarTitleLabel: "Title",
- calendarTitlePlaceholder: "Calendar title...",
- calendarStatusLabel: "Status",
- calendarStatusOpen: "OPEN",
- calendarStatusClosed: "CLOSED",
- calendarDeadlineLabel: "Deadline",
- calendarTagsLabel: "Tags",
- calendarTagsPlaceholder: "tag1, tag2...",
- calendarParticipantsLabel: "Participants",
- calendarParticipantsCount: "Participants",
- calendarVisitCalendar: "Visit Calendar",
- calendarCreated: "Created",
- calendarAuthor: "Author",
- calendarJoin: "Join Calendar",
- calendarJoined: "Joined",
- calendarAddDate: "Add Date",
- calendarAddNote: "Add Note",
- calendarDateLabel: "Date",
- calendarDatePlaceholder: "Describe this date...",
- calendarNoteLabel: "Note",
- calendarNotePlaceholder: "Add a note...",
- calendarFirstDateLabel: "Date",
- calendarFirstNoteLabel: "Notes",
- calendarIntervalLabel: "Interval",
- calendarIntervalWeekly: "Weekly",
- calendarIntervalMonthly: "Monthly",
- calendarIntervalYearly: "Yearly",
- calendarFormDescription: "Description",
- calendarNoDates: "No dates added yet.",
- calendarNoNotes: "No notes.",
- calendarsNoItems: "No calendars found.",
- calendarsDescription: "Discover and manage calendars in your network.",
- calendarMonthPrev: "\u2190 Prev",
- calendarMonthNext: "Next \u2192",
- calendarMonthLabel: "Dates",
- calendarsShareUrl: "Share URL",
- calendarAllSectionTitle: "All Calendars",
- calendarRecentSectionTitle: "Recent Calendars",
- calendarFavoritesSectionTitle: "Favorites",
- calendarMineSectionTitle: "Your Calendars",
- calendarOpenSectionTitle: "Open Calendars",
- calendarClosedSectionTitle: "Closed Calendars",
- calendarCreateSectionTitle: "Create New Calendar",
- calendarUpdateSectionTitle: "Update Calendar",
- calendarAddFavorite: "Add to Favorites",
- calendarDeleteNote: "Delete",
- calendarRemoveFavorite: "Remove from Favorites",
- calendarSearchPlaceholder: "Search calendars...",
- calendarAddEntry: "Add Entry",
- calendarLeave: "Leave Calendar",
- statsCalendar: "Calendars",
- statsCalendarDate: "Calendar Dates",
- statsCalendarNote: "Calendar Notes",
- modulesChatsLabel: "Chats",
- modulesChatsDescription: "Module to discover and manage encrypted chats.",
- typeChat: "CHAT",
- typeChatMessage: "CHAT MESSAGE",
- chatLabel: "CHATS",
- chatMessageLabel: "CHAT MESSAGES",
- chatsTitle: "Chats",
- chatMineSectionTitle: "Your Chats",
- chatRecentTitle: "Recent Chats",
- chatFavoritesTitle: "Favorites",
- chatOpenTitle: "Open Chats",
- chatClosedTitle: "Closed Chats",
- chatDescription: "Description",
- chatCategory: "Category",
- chatStatus: "STATUS",
- chatFilterAll: "ALL",
- chatFilterMine: "MINE",
- chatFilterRecent: "RECENT",
- chatFilterFavorites: "FAVORITES",
- chatFilterOpen: "OPEN",
- chatFilterClosed: "CLOSED",
- chatCreate: "Create Chat",
- chatUpdate: "Update Chat",
- chatDelete: "Delete Chat",
- chatClose: "Close Chat",
- chatVisitChat: "VISIT CHAT",
- chatUntitled: "Untitled Chat",
- chatNoItems: "No chats found.",
- chatParticipants: "Participants",
- chatStartChatting: "START CHATTING!",
- chatGenerateCode: "Generate Code",
- chatShareUrl: "Share URL",
- chatCreatedAt: "CREATED",
- chatSearchPlaceholder: "Search chats...",
- chatStatusOpen: "OPEN",
- chatStatusInviteOnly: "INVITE-ONLY",
- chatStatusClosed: "CLOSED",
- chatSendMessage: "Send",
- chatMessagePlaceholder: "Type your message...",
- chatNoMessages: "No messages yet.",
- chatLeave: "Leave Chat",
- chatInviteCodeLabel: "Enter invite code",
- chatJoinByInvite: "Join",
- chatTitlePlaceholder: "Chat title",
- chatDescriptionPlaceholder: "Chat description",
- chatTagsPlaceholder: "tag1, tag2, tag3",
- chatImageLabel: "Select an image file (.jpeg, .jpg, .png, .gif)",
- chatInviteCode: "Invite Code",
- chatAuthor: "Author",
- chatCreated: "Created",
- chatAddFavorite: "Add to Favorites",
- chatRemoveFavorite: "Remove from Favorites",
- chatPM: "PM",
- chatStatusLabel: "Status",
- chatCategoryLabel: "Category",
- chatParticipantsLabel: "Participants",
- gamesTitle: "Games",
- gamesDescription: "Discover and play some mini-games in your network.",
- gamesFilterAll: "ALL",
- gamesPlayButton: "PLAY!",
- gamesBackToGames: "Back to Games",
- modulesGamesLabel: "Games",
- modulesGamesDescription: "Module to discover and play some games.",
- gamesCocolandTitle: "Cocoland",
- gamesCocolandDesc: "A coconut with eyes jumping over palm trees and collecting ECOins. How far can you go?",
- gamesTheFlowTitle: "ECOinflow",
- gamesTheFlowDesc: "Connect PUBs to habitants through validators, shops and accumulators. Survive the CBDC threat!",
- gamesNeonInfiltratorTitle: "Neon Infiltrator",
- gamesNeonInfiltratorDesc: "Infiltrate the grid, collect confidential data, evade security drones and escape. How many levels can you clear?",
- gamesSpaceInvadersTitle: "Space Invaders",
- gamesSpaceInvadersDesc: "Stop the alien invasion! Shoot down waves of invaders before they reach the ground.",
- gamesArkanoidTitle: "Arkanoid",
- gamesArkanoidDesc: "Break all the bricks with your paddle and ball. A classic arcade challenge.",
- gamesPingPongTitle: "PingPong",
- gamesPingPongDesc: "Classic ping-pong against an AI opponent. First to 5 points wins.",
- gamesOutrunTitle: "Outrun",
- gamesOutrunDesc: "Race against time! Dodge traffic and reach the finish line before the clock runs out.",
- gamesAsteroidsTitle: "Asteroids",
- gamesAsteroidsDesc: "Pilot your ship through a deadly asteroid field. Shoot them down before they hit you.",
- gamesRockPaperScissorsTitle: "Rock Paper Scissors",
- gamesRockPaperScissorsDesc: "Rock, Paper, Scissors against an AI. Best of three rounds wins.",
- gamesTikTakToeTitle: "TikTakToe",
- gamesTikTakToeDesc: "Classic Tic-Tac-Toe against an AI. Get three in a row to win.",
- gamesFlipFlopTitle: "FlipFlop",
- gamesFlipFlopDesc: "Flip a coin and bet on heads or tails. How lucky are you?",
- games8BallTitle: "8Ball Pool",
- games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
- gamesArtilleryTitle: "Artillery",
- gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
- gamesLabyrinthTitle: "Labyrinth",
- gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
- gamesCocomanTitle: "Cocoman",
- gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Ghosts move in real time — keep moving!",
- gamesTetrisTitle: "Tetris",
- gamesAudioPendulumTitle: "Audio Pendulum",
- gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
- gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
- gamesQuakeTitle: "Quake Arena",
- gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
- gamesFilterScoring: "SCORING",
- gamesHallOfFame: "Hall of Fame",
- gamesHallPlayer: "Player",
- gamesHallScore: "Score",
- gamesNoScores: "No scores yet.",
- gamesHallDate: "Date",
- typeGameScore: "GAME SCORE",
- gamesNewRecord: "New Record",
- gameScoreLabel: "GAME SCORES",
- statsChat: "Chats",
- statsChatMessage: "Chat messages",
- statsPad: "Pads",
- statsPadEntry: "Pad entries",
- statsGameScore: "Game scores",
- chatAccessDenied: "You do not have access to the chat. Ask for an invitation to access the content.",
- padAccessDenied: "You do not have access to the pad. Ask for an invitation to access the content.",
- contentAccessDenied: "You do not have access to content.",
- blockAccessRestricted: "Access restricted",
- tribeContentAccessDenied: "Access Denied",
- tribeContentAccessDeniedMsg: "This content belongs to a tribe. You must be a member to access it.",
- tribeViewTribes: "View Tribes"
- }
- };
|